cloudant-labs / cloudant-python

Asynchronous Cloudant / CouchDB interface for Python
http://cloudant-labs.github.io/cloudant-python/
37 stars 17 forks source link

Add documentation to connect to a CouchDB instance #36

Closed mgmarino closed 10 years ago

mgmarino commented 10 years ago

There's no obvious documentation how to connect to a simple CouchDB instance. This adds a few lines to the relevant files to show how this is done.

The goal is to show that this works just as well with non-Cloudant CouchDB instances.

garbados commented 10 years ago

Actually, it connects to http://localhost:5984 by default: https://github.com/cloudant-labs/cloudant-python/blob/master/cloudant/account.py#L39

But I added some more docs to make it clearer.

Thanks!