ArangoDB 如何阅读收藏中的完整文档

jhdbpxl9  于 2022-12-09  发布在  Go
关注(0)|答案(1)|浏览(144)

我正在使用库python-arango。是否有一个选项可以读取Collection(例如students)中的完整文档?我的目标是可以看到 Dataframe (例如import pandas as pd; df=pd.json_normalize(result['...']['...']))中的完整文档。

from arango import ArangoClient

# Initialize the ArangoDB client.
client = ArangoClient()

# Connect to database as  user.
db = client.db(<db>, username=<username>, password=<password>)

print(db.collections())
students = db.collection('students')
print(students)
vcirk6k6

vcirk6k61#

您可以将此转换为列表:

students = list(db.collection('students'))

相关问题