Python client for interacting with FalkorDB database
Project description
FalkorDB
FalkorDB python client
see docs
Installation
pip install FalkorDB
Usage
Run FalkorDB instance
Docker:
docker run --rm -p 6379:6379 falkordb/falkordb
Or use our sandbox
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)
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.1.tar.gz
(16.1 kB
view details)
File details
Details for the file falkordb-1.0.1.tar.gz
.
File metadata
- Download URL: falkordb-1.0.1.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.0 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0645e46e39a74892a535fbc087fb99378171dbdd1d2f18c52308177a57eb3301 |
|
MD5 | 26698b117f6acb7575a7a6c0f26f3d2e |
|
BLAKE2b-256 | 5664c1759e4ba8dfecb604491624bcd2242445b151a4fe8f5fa7a58f5dd2bd39 |