notmuch clon
Find a file
Sebastian Spaeth 9182b97e26 add sphinx docs stubs (they don't make sense yet)
--HG--
extra : transplant_source : %F3A%2C%D95%02%BF%1B%A1%D7%17%07%EDqh%23l8%93%20
2010-03-16 20:36:04 +01:00
cnotmuch implement Message.get_date() and Message.get_header() 2010-03-16 17:10:57 +01:00
docs add sphinx docs stubs (they don't make sense yet) 2010-03-16 20:36:04 +01:00
.hgignore hgignore: update to ignore static documentation 2010-03-16 20:35:34 +01:00
notmuch implement Message.get_date() and Message.get_header() 2010-03-16 17:10:57 +01:00
README improve README example session to reflect reality 2010-03-15 17:12:52 +01:00

>>>from cnotmuch import notmuch
>>>db = notmuch.Database("/home/spaetz/mail")
db.get_path()
'/home/spaetz/mail'
>>>tags = db.get_all_tags()
inited tags with 44762960 'Notmuch DB /home/spaetz/mail'
>>>for tag in tags: 
>>>  print tag
inbox
...
maildir::draft
Freeing the Tags now

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

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

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

>>>tags = notmuch.Database("/home/spaetz/mail").get_all_tags()
>>>del(tags)
Freeing the Tags now
Freeing the database now