Python Driver for ArangoDB
Project description
Welcome to the GitHub page for python-arango, a Python driver for ArangoDB’s REST API.
Features
Clean, Pythonic interface
Lightweight
95%+ API coverage
Compatibility
Tested with Python versions 2.7.x, 3.4.x and 3.5.x
Latest version of python-arango (3.x) works with ArangoDB 3.x only
Older versions of python-arango (2.x) work with ArangoDB 2.x only
Installation
To install a stable version from PyPi:
pip install python-arango
To install the latest version directly from GitHub:
git clone https://github.com/joowani/python-arango.git
cd python-arango
python setup.py install
You may need to use sudo depending on your environment.
Getting Started
Here is an example code snippet showing how python-arango can be used to communicate with an ArangoDB server:
from arango import ArangoClient
# Initialize the client for ArangoDB
client = ArangoClient(
protocol='http',
host="localhost",
port=8529,
username='root',
password='',
enable_logging=True
)
# Create a new database named "my_database"
db = client.create_database('my_database')
# Create a new user with access to "my_database"
client.create_user('admin', 'password')
client.grant_user_access('admin', 'my_database')
# Create a new collection named "students"
students = db.create_collection('students')
# Add a hash index to the collection
students.add_hash_index(fields=['name'], unique=True)
# Insert new documents into the collection
students.insert({'name': 'jane', 'age': 19})
students.insert({'name': 'josh', 'age': 13})
students.insert({'name': 'jake', 'age': 21})
# Execute an AQL query and iterate through the result cursor
cursor = db.aql.execute('FOR s IN students RETURN s')
print(student['name'] for student in cursor)
Please read the full API documentation for more details!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file python-arango-3.0.0.tar.gz.
File metadata
- Download URL: python-arango-3.0.0.tar.gz
- Upload date:
- Size: 56.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f17b54419e7fdedeb8c01de62a23a945badc91f7105d9f4d6fd5c818a8d7964
|
|
| MD5 |
f578b119c6075fe3fdb41171697e5aea
|
|
| BLAKE2b-256 |
06ca3ce661138c97d947c8691ecdb1fba2371b7f19dcaa6ef4145459bfa95cfc
|