我正在使用库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)
1条答案
按热度按时间vcirk6k61#
您可以将此转换为列表: