'How can I get the complete documents inside a collection

IIs 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 dict. e.g.:

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