Python client for interacting with FalkorDB database
Project description
falkordb-py
FalkorDB Python client
see docs
Installation
pip install FalkorDB
Usage
Run FalkorDB instance
Docker:
docker run --rm -p 6379:6379 falkordb/falkordb
Or use FalkorDB Cloud
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()
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
falkordb-1.0.11.tar.gz
(26.9 kB
view details)
File details
Details for the file falkordb-1.0.11.tar.gz
.
File metadata
- Download URL: falkordb-1.0.11.tar.gz
- Upload date:
- Size: 26.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.12.1 Linux/6.8.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf376c56f7a99b129a3708d3fd4e9221af92b2dfb180efe89aea043e6f607029 |
|
MD5 | d457e071ba0aa252efd0453fd4a7fbc2 |
|
BLAKE2b-256 | 7231498c6393fbf9bb61b1ce30ad270f5197bd13034c3ab848974ea881a1bd77 |