Python library for working with CouchDB
.. image:: https://travis-ci.org/djc/couchdb-python.svg :target: https://travis-ci.org/djc/couchdb-python
Note: CouchDB-Python is no longer being maintained. After 8 years of maintaining CouchDB-Python, I no longer have time to address open issues and new bug reports. Consider https://github.com/cloudant/python-cloudant as an alternative. If you're interested in taking over maintenance of CouchDB-Python, please start a discussion on the mailing list, or open an issue or PR.
A Python library for working with CouchDB. Downloads
_ are available via PyPI
.
Our documentation
is also hosted there. We have a mailing list
_.
This package currently encompasses four primary modules:
couchdb.client
: the basic client librarycouchdb.design
: management of design documentscouchdb.mapping
: a higher-level API for mapping between CouchDB documents and Python objectscouchdb.view
: a CouchDB view server that allows writing view functions in PythonIt also provides a couple of command-line tools:
couchdb-dump
: writes a snapshot of a CouchDB database (including documents, attachments, and design documents) to MIME multipart filecouchdb-load
: reads a MIME multipart file as generated by couchdb-dump and loads all the documents, attachments, and design documents into a CouchDB databasecouchdb-replicate
: can be used as an update-notification script to trigger replication between databases when data is changedPrerequisites:
simplejson
will be used if installed.
.. _Downloads: http://pypi.python.org/pypi/CouchDB .. _PyPI: http://pypi.python.org/ .. _documentation: http://couchdb-python.readthedocs.io/en/latest/ .. _mailing list: http://groups.google.com/group/couchdb-python