CouchDB
Python library for working with CouchDB
What it is and what it does
CouchDB-Python is a client library for working with CouchDB, a document-oriented database. It provides four main modules: a basic client library, a design document manager, an object-mapping layer that bridges CouchDB documents and Python objects, and a view server for writing view functions in Python. The package also includes command-line utilities for dumping and loading databases, and for triggering replication.
However, this package has been unmaintained since 2019 and its repository is archived. The original maintainer explicitly recommends an alternative and is no longer addressing issues or bug reports. It should be considered for legacy systems only, not for new projects.
Use it for:
- Querying and updating documents in an existing CouchDB instance from Python code
- Automating database administration tasks like snapshots and replication via command-line tools
- Mapping CouchDB documents to Python objects for application logic in older codebases
- Writing custom view functions in Python instead of JavaScript for CouchDB design documents
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A Python client library for interacting with CouchDB databases, providing document CRUD operations, design document management, object-to-document mapping, and command-line tools for database administration.
No, unless you are maintaining legacy code already using this library. The package is abandoned (last release 2018-02-09, last commit 2019-03-26, repository archived), and the maintainer explicitly recommends alternatives for new work. No known vulnerabilities exist, but lack of maintenance means security issues and compatibility problems will not be addressed.
Install
couchdb on PyPI
pip
pip install couchdbuv
uv add couchdbpoetry
poetry add couchdbInstalling CouchDB
Before you install
Installation is low-friction (pure Python wheel), but the package is abandoned as of 2019 with no active maintenance. The maintainer explicitly recommends considering an alternative. Use only if you are committed to maintaining a fork or working with legacy systems.
License in practice
BSD license is permissive and imposes no restrictions on use, modification, or distribution in proprietary or open-source projects.
Quickstart
pip install CouchDB==1.2
from couchdb import Server
server = Server('http://localhost/')
db = server['mydb']
doc = db['docid']
print(doc)
Requires a running CouchDB server (0.10.x or later) accessible at the specified URL; Python 2.7 or 3.4+ as stated in package metadata.
Verify before relying
- Whether the package remains compatible with modern CouchDB server versions beyond 0.10.x
- Current state of simplejson optional dependency and whether it is still beneficial
- Whether Python 3.4 and 3.5 support claims remain valid given the 2019 abandonment date
Package facts
| License | BSD (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | abandoned — 3,108 days since the last release |
| Last repo commit | (repository archived) |
| First released | |
| Downloads | 300,152/month — #7,846 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: CouchDB-1.2-py2.py3-none-any.whl
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
cloudantA Python client library for connecting to and…
permissive · top 15,000 on PyPI
ibmcloudantPython client library for IBM Cloudant and…
permissive · top 5,000 on PyPI
nocodb-simple-clientA Python client library for NocoDB that…
permissive · top 15,000 on PyPI
happybaseHappyBase is a Python library that provides a…
permissive · top 15,000 on PyPI
ydbYDB Python SDK is the official client library…
permissive · top 1,000 on PyPI
querysourceQuerySource provides a unified async interface…
permissive · top 15,000 on PyPI
mongoengineMongoEngine provides an Object-Document Mapper…
permissive · top 5,000 on PyPI
plyvelPlyvel is a Python interface to LevelDB, a fast…
permissive · top 5,000 on PyPI
google-cloud-firestorePython client library for Google Cloud…
permissive · top 1,000 on PyPI
pyodbcpyodbc provides Python access to ODBC databases…
permissive · top 1,000 on PyPI