mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
notmuch clon
632762cd1a
--HG-- extra : transplant_source : %0BI%C9%899k%80%8C4j%07%85%038%86%04%2A%FE%A6%A3 |
||
---|---|---|
cnotmuch | ||
docs | ||
.hgignore | ||
README |
>>>from cnotmuch import notmuch >>>db = notmuch.Database("/home/spaetz/mail") >>>db.get_path() >>>tags = db.get_all_tags() >>>for tag in tags: >>> print tag #--------------------------------------------- >>>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