notmuch/bindings/python
Michael J Gruber 3771832b01 python: adjust legacy bindings to py 3.12
Py 3.12 finally pulled the plug on the `SafeConfigParser` class which
has been deprecated since py 3.2.

We use it in the legacy bindings only, so take the easy route of
importing `ConfigParser` as `SafeConfigParser` and monkey-patching so
that the class has the expected interface.
2023-07-09 11:43:21 -03:00
..
docs python: fix threads.__str__ automethod documentation 2019-02-16 09:03:56 -04:00
notmuch python: adjust legacy bindings to py 3.12 2023-07-09 11:43:21 -03:00
.gitignore Use rooted paths in .gitignore files 2017-08-18 19:42:35 -03:00
MANIFEST.in Move everything down into a bindings/python directory. 2010-04-21 17:29:34 -07:00
README fix typo 2017-08-18 19:47:40 -03:00
setup.py python: convert shebangs to python3 2021-02-15 16:32:31 -04:00

notmuch -- The python interface to notmuch
==========================================

This module makes the functionality of the notmuch library
(`https://notmuchmail.org`_) available to python. Successful import of
this module depends on a libnotmuch.so|dll being available on the
user's system.

If you have downloaded the full source tarball, you can create the
documentation with sphinx installed, go to the docs directory and
"make html". A static version of the documentation is available at:

  https://notmuch.readthedocs.io/projects/notmuch-python/

To build the python bindings, do

  python setup.py install --prefix=path/to/your/preferred/location