https://github.com/weilbith/notmuch2-python-bindings
Pythonic bindings for the notmuch mail database using CFFI.
https://github.com/weilbith/notmuch2-python-bindings
cffi notmuch python
Last synced: 5 months ago
JSON representation
Pythonic bindings for the notmuch mail database using CFFI.
- Host: GitHub
- URL: https://github.com/weilbith/notmuch2-python-bindings
- Owner: weilbith
- License: gpl-3.0
- Created: 2020-06-18T11:07:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-09-03T07:23:03.000Z (9 months ago)
- Last Synced: 2025-10-27T20:43:45.002Z (7 months ago)
- Topics: cffi, notmuch, python
- Language: Python
- Homepage:
- Size: 57.6 KB
- Stars: 2
- Watchers: 2
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Notmuch2 Python Bindings
**If you are using notmuch v1, please checkout [notmuch](https://pypi.org/project/notmuch/)**
Pythonic bindings for the notmuch mail database using CFFI. This module makes
the functionality of the notmuch library (`https://notmuchmail.org`) available
to python using [CFFI](https://cffi.readthedocs.io/en/latest/)
_Disclaimer:_
Notmuch version 2 is still not released yet even it has already a second release
candidate. Please expect possible breaking changes.
## Installation
The intention of this repository is to make these bindings easily available for
dependency management. It is originally taken from
`https://git.notmuchmail.org/git/notmuch/bindings/python-cffi`.
### PyPI
Install the build project from [PyPI](https://pypi.org/).
```shell
$ pip install notmuch2
```
```shell
$ poetry add notmuch2
```
### Git
Reference the pure sources from
[GitHub](https://github.com/weilbith/notmuch-python-bindings2).
```shell
pip install from git+https://github.com/weilbith/notmuch2
```
```shell
poetry add --git=https://github.com/weilbith/notmuch2
```