如何使用Python在Couchdb中显示所有文档

时间:2016-05-05 12:07:55

标签: python database couchdb printdocument

我最近开始使用Python。我有一个名为student in Couchdb的数据库。我有它的属性,如[英语,数学,科学,总数,百分比]。我想使用python显示学生数据库中的所有文档。我无法访问所有文件。我尝试了以下代码,但没有工作

couch = couchdb.Server()
db = couch['student']
rows = db.view('_all_docs', include_docs=True)
for row in rows:
    doc = db.get(row)
    print(doc['english'])

1 个答案:

答案 0 :(得分:5)

import couchdb
couch = couchdb.Server('localhost:5984/')

db = couch['newtweets']
count = 0
for docid in db.view('_all_docs'):
    i = docid['id']
#and you are in each document