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

How to display all documents in Couchdb using Python

我最近开始使用 Python。我在 Couchdb 中有一个名为 student 的数据库。我在其中有一些属性,比如 [英语、数学、科学、总计、百分比]。我想使用 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'])
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