notmuch clon
Find a file
Sebastian Spaeth 0b57cb8ed9 Add Database.create_query() as a shorthand for db=Database();q=Query(db,"")
This is a convenience extension to the C API. I hardly saves any typing, but
let's us automatically free the top-level Database() object when we delete
the Query().
2010-03-19 10:55:06 +01:00
cnotmuch Add Database.create_query() as a shorthand for db=Database();q=Query(db,"") 2010-03-19 10:55:06 +01:00
docs Add Database.create_query() as a shorthand for db=Database();q=Query(db,"") 2010-03-19 10:55:06 +01:00
test add original notmuch testsuite 2010-03-18 19:04:49 +01:00
.hgignore hgignore: ignore test/test* 2010-03-19 09:38:43 +01:00
notmuch notmuch restore: only delete a message's old tags if they are not a subset of the new ones. 2010-03-19 09:39:23 +01:00
README README: add link to static docs 2010-03-17 09:28:39 +01:00

cnotmuch -- The python interface to notmuch.so
==============================================
To create the documentation with sphinx installed, go to the docs directory and
"make html". A static version of the documentation is available at:

http://spaetz.bitbucket.org

All code is available under the GNU GPLv3+ (see docs/COPYING) unless specified otherwise.

Usage
-----
For more examples of how to use the cnotmuch interface, have a look at the
notmuch "binary" and the generated documentation.

Example session:
>>>from cnotmuch import notmuch
>>>db = notmuch.Database("/home/spaetz/mail")
db.get_path()
'/home/spaetz/mail'
>>>tags = db.get_all_tags()
>>>for tag in tags: 
>>>  print tag
inbox
...
maildir::draft
#---------------------------------------------

q = notmuch.Query(db,'from:Sebastian')
count = len(q.search_messages())
1300

#---------------------------------------------

>>>db = notmuch.Database("/home/spaetz/mailHAHA")
NotmuchError: Could not open the specified database

#---------------------------------------------

>>>tags = notmuch.Database("/home/spaetz/mail").get_all_tags()
>>>del(tags)