py-simplecouchdb is a simple Python library to allow your Python applications use CouchDB.
With simplecouchdb, you can manage documents like you do directly with CouchDB, schema-free. So document instance (see :ref:schema-ref) are completly dynamic, you could add/delete properties in your documents, retrieve them without any schema ... .
from simplecouchdb import schema
class Greeting(schema.Document):
author = schema.StringPropertty()
content = schema.StringProperty()
date = schema.DateTimePropertty()
Getting started:
* Install the latest release:
easy_install py-simplecouchdb
* Or, install the development version:
hg clone https://dev.e-engura.org/hg/py-simplecouchdb
Product's homepage
Requirements:
· Python