/aiocouchdb

Python 3 CouchDB client built on top of aiohttp (asyncio).

Primary LanguagePythonBSD 2-Clause "Simplified" LicenseBSD-2-Clause

aiocouchdb

source:https://github.com/aio-libs/aiocouchdb
documentation:http://aiocouchdb.readthedocs.org/en/latest/
license:BSD

Installation pip install git+git://github.com/Tarokan/aiocouchdb

CouchDB client built on top of aiohttp and made for asyncio.

Current status: beta. aiocouchdb has all CouchDB API implements up to 1.6.1 release. However, it may lack of some usability and stability bits, but work is in progress. Feel free to send pull request or open issue if you'd found something that should be fixed.

Features

aiocouchdb now supports a create_doc() method that can be called on a database instance, which takes in a JSON or JSON string, and additional optional parameters.

  • Modern CouchDB client for Python 3.3+ based on aiohttp
  • Complete CouchDB API support (JSON and Multipart) up to 1.6.1 version
  • Multiuser workflow with Basic Auth, Cookie, Proxy and OAuth support
  • Stateless behavior
  • Stream-like handling views, changes feeds and bulk docs upload

Requirements