• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

CouchDB.egg-info/H03-May-2022-2322

couchdb/H05-Aug-2016-6,3634,901

doc/H05-Aug-2016-384146

COPYINGH A D03-Feb-20161.4 KiB2925

ChangeLog.rstH A D05-Aug-201611.5 KiB253212

MANIFEST.inH A D03-Feb-201693 65

MakefileH A D05-Jun-2016298 2114

PKG-INFOH A D05-Aug-2016915 2322

README.rstH A D03-Feb-20161.5 KiB3323

setup.cfgH A D05-Aug-2016203 1712

setup.pyH A D05-Aug-20162.2 KiB6954

README.rst

1CouchDB-Python Library
2======================
3
4.. image:: https://travis-ci.org/djc/couchdb-python.svg
5    :target: https://travis-ci.org/djc/couchdb-python
6
7A Python library for working with CouchDB. `Downloads`_ are available via `PyPI`_.
8Our `documentation`_ is also hosted there. We have a `mailing list`_.
9
10This package currently encompasses four primary modules:
11
12* ``couchdb.client``: the basic client library
13* ``couchdb.design``: management of design documents
14* ``couchdb.mapping``: a higher-level API for mapping between CouchDB documents and Python objects
15* ``couchdb.view``: a CouchDB view server that allows writing view functions in Python
16
17It also provides a couple of command-line tools:
18
19* ``couchdb-dump``: writes a snapshot of a CouchDB database (including documents, attachments, and design documents) to MIME multipart file
20* ``couchdb-load``: reads a MIME multipart file as generated by couchdb-dump and loads all the documents, attachments, and design documents into a CouchDB database
21* ``couchdb-replicate``: can be used as an update-notification script to trigger replication between databases when data is changed
22
23Prerequisites:
24
25* simplejson (or Python >= 2.6, which comes with a simplejson-based JSON module in the standard library)
26* Python 2.6 or later
27* CouchDB 0.10.x or later (0.9.x should probably work, as well)
28
29.. _Downloads: http://pypi.python.org/pypi/CouchDB
30.. _PyPI: http://pypi.python.org/
31.. _documentation: http://packages.python.org/CouchDB/
32.. _mailing list: http://groups.google.com/group/couchdb-python
33