]> git.cworth.org Git - notmuch-wiki/blobdiff - howto.mdwn
Add description of tag notmuch::stale
[notmuch-wiki] / howto.mdwn
index ab5f20d55c344cd6cac0c11e121e6fc6eb686b89..4dad0b6040a36428f985a1ac5fe455ed3b22ca36 100644 (file)
@@ -28,7 +28,7 @@ various "third party" notmuch utilities.
 
   See the [[initial_tagging]] page for more info on intial tagging of messages.
 
-* <span id="print_filenames">**Print only filenames of a search (python bindings)**</span>
+* <span id="python">**Use notmuch from python**</span>
 
   Notmuch includes python bindings to the notmuch shared
   library. Extensive API documentation [is
@@ -37,13 +37,14 @@ various "third party" notmuch utilities.
   The bindings are very simple to use.  As an example, given you have
   the python bindings installed (or simply set your PYTHONPATH
   environment variable to point to the .../bindings/python directory),
-  this script will print the filenames of a matching search:
-
-      >>> import notmuch
-      >>> db = notmuch.Database()
-      >>> query = db.create_query('tag:inbox AND NOT tag:killed')
-      >>> list(query.search_messages()) # doctest:+ELLIPSIS
-      [...]
+  this snippet will produce a list of mails matching the given
+  expression:
+
+          >>> import notmuch
+          >>> db = notmuch.Database()
+          >>> query = db.create_query('tag:inbox AND NOT tag:killed')
+          >>> list(query.search_messages()) # doctest:+ELLIPSIS
+          [...]
 
 * <span id="sync_maildir_flags">**Sync notmuch tags and maildir flags**</span>