Pure Python Ultipa Driver
Project description
Ultipa Python Driver
Official Python driver for Ultipa graph database (GQL).
Requirements
- Python 3.9+
Installation
pip install ultipa
Note: This is the v6.x driver for Ultipa Graph. If you are using Ultipa v4.x, please install ultipa==4.5.2. If you are using Ultipa v5.x, please install ultipa==5.2.1.
Quick Start
from gqldb import GqldbClient
from gqldb.config import GqldbConfig
# Create client
config = GqldbConfig(
hosts=["localhost:60061"],
username="admin",
password="password",
default_graph="myGraph"
)
client = GqldbClient(config)
client.login("admin", "password")
# Execute query
response = client.gql("MATCH (n) RETURN n LIMIT 10")
print(f"Rows: {len(response.rows)}")
print(f"Columns: {response.columns}")
# Close
client.close()
Features
- GQL query execution with parameters
- Streaming results for large datasets
- Transaction support (begin, commit, rollback)
- Graph management (create, drop, list)
- Bulk import for high-throughput loading
- Algorithm support (CALL algo.pagerank, algo.degree, etc.)
- Type hints support
- Health checks
Documentation
See Quick Start for detailed usage.
License
MIT License
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
ultipa-6.0.16.tar.gz
(129.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
ultipa-6.0.16-py3-none-any.whl
(157.0 kB
view details)
File details
Details for the file ultipa-6.0.16.tar.gz.
File metadata
- Download URL: ultipa-6.0.16.tar.gz
- Upload date:
- Size: 129.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb494f3472f512bb85c9e96e584bb08ace46323fce3a940022830686a3b33a0d
|
|
| MD5 |
7aac5f70fb725f5742eaf61a41f7e712
|
|
| BLAKE2b-256 |
e1ddbf0daa267fa7e22a849334fe0cfa1f6c6d4209ae4d42448c929870dc2ce4
|
File details
Details for the file ultipa-6.0.16-py3-none-any.whl.
File metadata
- Download URL: ultipa-6.0.16-py3-none-any.whl
- Upload date:
- Size: 157.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed07c8721e0f078bb3f607d819031392ab930bec0f565e99ad9f117de047c17f
|
|
| MD5 |
3df36352d709d83939c2e07c69761e63
|
|
| BLAKE2b-256 |
7df57c9b225c54fdda77820efd4a62d90379f1d6442b59cb1b323c077257ddaa
|