GraphLight: A Lightweight, Distributed Graph Database
GraphLight is an innovative graph database designed for high performance and scalability, leveraging the power of Python for ease of use and flexibility. Built with a focus on in-memory data storage akin to Redis and incorporating the robust querying capabilities of OpenCypher, GraphLight aims to provide developers with a fast, efficient, and intuitive tool for managing graph-based data.
Key Features
-
In-Memory Data Storage: Optimized for speed, GraphLight stores your graph data entirely in RAM, ensuring rapid access and manipulation of data points.
-
OpenCypher Query Support: Utilize the power of the OpenCypher query language to interact with your graphs. From simple lookups to complex traversals, GraphLight brings you the flexibility of graph querying right at your fingertips.
-
Distributed Computing: GraphLight is designed from the ground up to support distributed operations. With its secure peer-to-peer (P2P) networking capabilities, it allows for clustering of data across multiple compute nodes, enhancing both the scalability and resilience of your database.
-
Multi-threaded Query Processing: To ensure maximum efficiency, GraphLight employs multi-threaded processing for handling queries, allowing for concurrent execution and reduced response times.
-
Easy Integration: As a Python-based solution, GraphLight integrates seamlessly into your existing Python ecosystem, enabling straightforward implementation and interaction within your projects.
Getting Started
To get started with GraphLight, simply install the package via pip:
pip install graphlight
For detailed documentation on installation, configuration, and usage, please refer to our official documentation (Link to Documentation - ToDo).
Example Usage
Here's a quick snippet to give you a taste of what working with GraphLight looks like:
from graphlight import Graph
# Initialize your graph
my_graph = Graph()
# Add nodes and edges
my_graph.add_node("Alice")
my_graph.add_node("Bob")
my_graph.add_edge("Alice", "Bob", "knows")
# Query your graph
results = my_graph.query("MATCH (person)-[relation]->(friend) RETURN person, relation, friend")
print(results)
Contributing
We welcome contributions from the community! Whether it's adding new features, improving documentation, or reporting bugs, your help makes GraphLight better for everyone. Check out our contributing guidelines for more information on how to get involved.
Release files for graphlight 0.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| graphlight-0.0.2.tar.gz | 6.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| graphlight-0.0.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 13.9 kB
Release files / graphlight-0.0.2.tar.gz
| Download URL | graphlight-0.0.2.tar.gz |
|---|---|
| Size | 6.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
dcd622bd50741e3256c0e29eba2a3a493badceed05bad21c890a4e0910458767
|
|
BLAKE2b-256 checksum How to use checksums |
6e5c7fccb1b6409cbe7d96ae06d969b320f478665bbec0be3d5ffe18f56945d2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.6
|
Release files / graphlight-0.0.2-py3-none-any.whl
| Download URL | graphlight-0.0.2-py3-none-any.whl |
|---|---|
| Size | 7.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6480742ba098fc33dfaee2db0a0f4ec8a4e3651bb94cb3c5ed896dcb12efebcd
|
|
BLAKE2b-256 checksum How to use checksums |
9c885d912811d3249b4d20ffd40f2db10d84b050b5bcabb11f11f1ee35b010c4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.6
|