- Notifications
You must be signed in to change notification settings - Fork2
The official ArangoDB async Python driver
License
NotificationsYou must be signed in to change notification settings
arangodb/python-arango-async
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Python driver forArangoDB, a scalable multi-modeldatabase natively supporting documents, graphs and search.
This is theasyncio alternative of the officially supportedpython-arangodriver.
Note: This project is still in active development, features might be added or removed.
- ArangoDB version 3.11+
- Python version 3.9+
pip install python-arango-async --upgrade
Here is a simple usage example:
fromarangoasyncimportArangoClientfromarangoasync.authimportAuthasyncdefmain():# Initialize the client for ArangoDB.asyncwithArangoClient(hosts="http://localhost:8529")asclient:auth=Auth(username="root",password="passwd")# Connect to "_system" database as root user.sys_db=awaitclient.db("_system",auth=auth)# Create a new database named "test".awaitsys_db.create_database("test")# Connect to "test" database as root user.db=awaitclient.db("test",auth=auth)# Create a new collection named "students".students=awaitdb.create_collection("students")# Add a persistent index to the collection.awaitstudents.add_index(type="persistent",fields=["name"],options={"unique":True})# Insert new documents into the collection.awaitstudents.insert({"name":"jane","age":39})awaitstudents.insert({"name":"josh","age":18})awaitstudents.insert({"name":"judy","age":21})# Execute an AQL query and iterate through the result cursor.cursor=awaitdb.aql.execute("FOR doc IN students RETURN doc")asyncwithcursor:student_names= []asyncfordocincursor:student_names.append(doc["name"])
Please see thedocumentation for more details.
About
The official ArangoDB async Python driver
Topics
Resources
License
Stars
Watchers
Forks
Packages0
No packages published