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 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.8.tar.gz
(26.7 kB
view details)
File details
Details for the file falkordb-1.0.8.tar.gz
.
File metadata
- Download URL: falkordb-1.0.8.tar.gz
- Upload date:
- Size: 26.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.1 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14a68ab9d684553caf8302602c18c8148c403a0d124a8a5f45de9ea43529b2c6 |
|
MD5 | d960a94208dec51b936ac38b48938c46 |
|
BLAKE2b-256 | 2cf3523b6f1d3c1cb0e9f9a0dab95c3414797d76a41dd6a51b354c0a32a996e4 |