internaut / py-couchdb

Modern pure python CouchDB Client.

Home Page:https://py-couchdb.readthedocs.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

py-couchdb

https://travis-ci.org/histrio/py-couchdb.svg?branch=master https://img.shields.io/pypi/v/pycouchdb.svg?style=flat https://img.shields.io/pypi/dm/pycouchdb.svg?style=flat

Modern pure python CouchDB Client.

Currently there are several libraries in python to connect to couchdb. Why one more? It's very simple.

All seems not be maintained, all libraries used standard Python libraries for http requests, and are not compatible with python3.

Advantages of py-couchdb

  • Use requests for http requests (much faster than the standard library)
  • Python2 and Python3 compatible with same codebase (with one exception, python view server that uses 2to3)
  • Also compatible with pypy.

Example:

>>> import pycouchdb
>>> server = pycouchdb.Server("http://admin:admin@localhost:5984/")
>>> server.info()['version']
'1.2.1'

Installation

To install py-couchdb, simply:

pip install pycouchdb

Documentation

Documentation is available at http://pycouchdb.readthedocs.org.

Test

To test py-couchdb, simply run:

python tests.py

About

Modern pure python CouchDB Client.

https://py-couchdb.readthedocs.org/

License:Other


Languages

Language:Python 100.0%