Python CouchDB连接详细实现

通过使用Python与CouchDB连接。我们必须安装以下软件包。

  • Python解释器
  • CouchDB数据库
  • python-couchdb驱动程序
【Python CouchDB连接详细实现】我们正在Linux(Ubuntu 16.04)中执行此示例。此示例包括以下步骤。
1)安装python-couchdb驱动程序
# pip install couchdb

Python CouchDB连接详细实现

文章图片
2)启动MongoDB服务
# service couchdb start

Python CouchDB连接详细实现

文章图片
3)创建一个Python脚本
# vi python-couch-connectivity.py

Python CouchDB连接详细实现

文章图片
// python-couch-connectivity.py
import couchdb# importing couchdb # Connecting with couchdb Server couch = couchdb.Server() # Creating Database db = couch.create('srcmini') print("Database created"); # Creating document doc = {'name':'Employee'} db.save(doc) # Saving document print("Document created") # Fetching document from the database print("Name is: "+doc['name'])

4)访问CouchDB
按照此URL http:// localhost:5984 / _utils访问localhost上的数据库。
Python CouchDB连接详细实现

文章图片
5)执行Python脚本
# python python-couch-connectivity.py

Python CouchDB连接详细实现

文章图片
6)访问创建的数据库
Python CouchDB连接详细实现

文章图片
参见, 储值。
Python CouchDB连接详细实现

文章图片

    推荐阅读