'How can I read the complete documents inside a collection

I am using the libary python-arango. Is there an option to read inside a Collection e.g. students the complete documents? My aim is that I can see the complete documents inside a dataframe, e.g. 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)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source