119
Python CouchDB Connectivity
To connect with CouchDB by using the Python. We must have the following packages installed.
- Python interpreter
- CouchDB database
- python-couchdb driver
We are executing this example in Linux (Ubuntu 16.04). this example includes the following steps.
1) Install python-couchdb driver
2) Start MongoDB Service
3) Create a Python Script
// python-couch-connectivity.py
4) Access CouchDB
Follow this URL http://localhost:5984/_utils to access the database on localhost.
5) Execute Python Script
6) Access Created Database
See, the stored value.
Next TopicNode.js CouchDB