I can get a database object with the code:
import pyArango.database as DAT
db = DAT.Database(connection, dbName)
and according to the documentation, I can get a collection with the code:
import pyArango.collection as COL
collection = COL.Collection(database, jsonData)
How do I format jsonData to return my collection? I could not find how to do this in the documentation. My collection has name="testCollection"
Thanks!