views:

855

answers:

3

I've been hunting around for a Python CouchDB tutorial and haven't been able to find anything very thorough. The only thing I've really found is this site, which I haven't gotten to work because I keep getting a 'connection refused' error when I try to create a database.

Does anyone know where I would look for a tutorial to help me with this?

A: 

This library called CouchDB Kit is pretty interesting. http://github.com/benoitc/couchdbkit

Jason Christa
+1  A: 

This focuses on using it with Django, but has some good general set up and usage examples.

Tom
+4  A: 

Here a simple tutorial on Apache Wiki.

Here a full documentation of CouchDbkit, a framework to access Couchdb from python.

Here a simple example on how to access CouchDb from python using couchdb-python

Here a nice video tutorial with python and CouchDb

systempuntoout