Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

The official ArangoDB async Python driver

License

NotificationsYou must be signed in to change notification settings

arangodb/python-arango-async

Repository files navigation

Logo

CircleCICodeQLLast commit

PyPI version badgePython versions badge

LicenseCode style: blackDownloads

python-arango-async

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.

Requirements

  • ArangoDB version 3.11+
  • Python version 3.9+

Installation

pip install python-arango-async --upgrade

Getting Started

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.


[8]ページ先頭

©2009-2025 Movatter.jp