FalkorDB Python client (fork with additional fixes)
Project description
kiarina-falkordb
ℹ️ This is a fork of falkordb-py with additional fixes.
Original work by the FalkorDB team.
This fork includes bug fixes and improvements that are pending upstream merge.
FalkorDB Python client
see docs
Installation
pip install kiarina-falkordb
Differences from upstream
- ✅ redis-py 7.0.0 support - Compatible with redis-py >= 7.0.0
- ✅ Python 3.9+ required - Dropped Python 3.8 support for redis-py 7.x compatibility
- ✅ Fixed async
from_url()to correctly use host/port from URL - ✅ All original functionality preserved
- 🔄 Actively maintained with upstream compatibility
Usage
Run FalkorDB instance
Docker:
docker run --rm -p 6379:6379 falkordb/falkordb
Or use FalkorDB Cloud
Synchronous Example
from falkordb import FalkorDB
# Connect to FalkorDB
db = FalkorDB(host='localhost', port=6379)
# Select the social graph
g = db.select_graph('social')
# Create 100 nodes and return a handful
nodes = g.query('UNWIND range(0, 100) AS i CREATE (n {v:1}) RETURN n LIMIT 10').result_set
for n in nodes:
print(n)
# Read-only query the graph for the first 10 nodes
nodes = g.ro_query('MATCH (n) RETURN n LIMIT 10').result_set
# Copy the Graph
copy_graph = g.copy('social_copy')
# Delete the Graph
g.delete()
Asynchronous Example
import asyncio
from falkordb.asyncio import FalkorDB
from redis.asyncio import BlockingConnectionPool
async def main():
# Connect to FalkorDB
pool = BlockingConnectionPool(max_connections=16, timeout=None, decode_responses=True)
db = FalkorDB(connection_pool=pool)
# Select the social graph
g = db.select_graph('social')
# Execute query asynchronously
result = await g.query('UNWIND range(0, 100) AS i CREATE (n {v:1}) RETURN n LIMIT 10')
# Process results
for n in result.result_set:
print(n)
# Run multiple queries concurrently
tasks = [
g.query('MATCH (n) WHERE n.v = 1 RETURN count(n) AS count'),
g.query('CREATE (p:Person {name: "Alice"}) RETURN p'),
g.query('CREATE (p:Person {name: "Bob"}) RETURN p')
]
results = await asyncio.gather(*tasks)
# Process concurrent results
print(f"Node count: {results[0].result_set[0][0]}")
print(f"Created Alice: {results[1].result_set[0][0]}")
print(f"Created Bob: {results[2].result_set[0][0]}")
# Close the connection when done
await pool.aclose()
# Run the async example
if __name__ == "__main__":
asyncio.run(main())
Development
Running Tests
Start a FalkorDB instance:
docker run -d --rm --name falkordb-test -p 6379:6379 falkordb/falkordb:latest
Install dependencies and run tests:
poetry install
poetry run pytest -v
Stop the test instance:
docker stop falkordb-test
Release
Build and publish to PyPI:
poetry build
poetry publish
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
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
File details
Details for the file kiarina_falkordb-1.3.0.tar.gz.
File metadata
- Download URL: kiarina_falkordb-1.3.0.tar.gz
- Upload date:
- Size: 29.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.13.5 Darwin/25.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
786ee07e0aaa3f901b0a013dc0a3a76afe8617aa5ea7cc6826bdf35dbf06702a
|
|
| MD5 |
540b10eecf41bd1d7d68d6d77c44e089
|
|
| BLAKE2b-256 |
af16e03a3e8710e064087a8abc8de268392537d1545bcd27838e783bec321dad
|
File details
Details for the file kiarina_falkordb-1.3.0-py3-none-any.whl.
File metadata
- Download URL: kiarina_falkordb-1.3.0-py3-none-any.whl
- Upload date:
- Size: 35.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.4 CPython/3.13.5 Darwin/25.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56da45c968465784c1617c0c583ccf03ba1e4182229cf1754495b93026bf83f7
|
|
| MD5 |
7b8d3c9bf7601275b56669e293a244fe
|
|
| BLAKE2b-256 |
b812b205afe995c0fb0fc0bb2a4dabfc45d336996a8e9dcf483ca0d425e1f23e
|