【发布时间】:2022-06-13 16:18:29
【问题描述】:
我正在使用库 python-arango。是否可以选择在 Collection 中阅读,例如students 完整的文件?
我的目标是我可以在数据框中看到完整的文档,例如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)
【问题讨论】:
标签: python arangodb python-arango