grafeo 0.1.1__cp314-cp314-musllinux_1_2_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of grafeo might be problematic. Click here for more details.
grafeo/__init__.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Grafeo - A high-performance, embeddable graph database.
|
|
3
|
+
|
|
4
|
+
This module provides Python bindings for the Grafeo graph database,
|
|
5
|
+
offering a Pythonic interface for graph operations and GQL queries.
|
|
6
|
+
|
|
7
|
+
Example:
|
|
8
|
+
>>> from grafeo import GrafeoDB
|
|
9
|
+
>>> db = GrafeoDB()
|
|
10
|
+
>>> node = db.create_node(["Person"], {"name": "Alice", "age": 30})
|
|
11
|
+
>>> result = db.execute("MATCH (n:Person) RETURN n")
|
|
12
|
+
>>> for row in result:
|
|
13
|
+
... print(row)
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
from grafeo.grafeo import (
|
|
17
|
+
GrafeoDB,
|
|
18
|
+
Node,
|
|
19
|
+
Edge,
|
|
20
|
+
QueryResult,
|
|
21
|
+
Value,
|
|
22
|
+
__version__,
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
__all__ = [
|
|
26
|
+
"GrafeoDB",
|
|
27
|
+
"Node",
|
|
28
|
+
"Edge",
|
|
29
|
+
"QueryResult",
|
|
30
|
+
"Value",
|
|
31
|
+
"__version__",
|
|
32
|
+
]
|
|
Binary file
|
grafeo/py.typed
ADDED
|
File without changes
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: grafeo
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Classifier: Development Status :: 3 - Alpha
|
|
5
|
+
Classifier: Intended Audience :: Developers
|
|
6
|
+
Classifier: Intended Audience :: Science/Research
|
|
7
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
13
|
+
Classifier: Programming Language :: Rust
|
|
14
|
+
Classifier: Topic :: Database
|
|
15
|
+
Classifier: Topic :: Database :: Database Engines/Servers
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Classifier: Typing :: Typed
|
|
18
|
+
Requires-Dist: pytest>=9.0.2 ; extra == 'dev'
|
|
19
|
+
Requires-Dist: pytest-asyncio>=1.3.0 ; extra == 'dev'
|
|
20
|
+
Requires-Dist: ty>=0.13.0 ; extra == 'dev'
|
|
21
|
+
Requires-Dist: ruff>=0.1 ; extra == 'dev'
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Summary: A high-performance, embeddable graph database with Python bindings
|
|
24
|
+
Keywords: graph,database,gql,knowledge-graph,embedded
|
|
25
|
+
Author: Grafeo Contributors
|
|
26
|
+
License: Apache-2.0
|
|
27
|
+
Requires-Python: >=3.12
|
|
28
|
+
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
29
|
+
Project-URL: Documentation, https://grafeo.tech
|
|
30
|
+
Project-URL: Homepage, https://grafeo.tech
|
|
31
|
+
Project-URL: Issues, https://github.com/StevenBtw/grafeo/issues
|
|
32
|
+
Project-URL: Repository, https://github.com/StevenBtw/grafeo
|
|
33
|
+
|
|
34
|
+
# pygrafeo
|
|
35
|
+
|
|
36
|
+
Python bindings for Grafeo, a pure-Rust, high-performance, embeddable graph database.
|
|
37
|
+
|
|
38
|
+
## Installation
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install pygrafeo
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import pygrafeo
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
Apache-2.0
|
|
53
|
+
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
grafeo/__init__.py,sha256=k_RJXamdSIXvR1VOVd5higAea76QziQpMIKmmpp4pBc,666
|
|
2
|
+
grafeo/grafeo.cpython-314-x86_64-linux-musl.so,sha256=eD8HJCv1wFK6O9r-w4p5DYfmmJKCbsyiotwmpLnOndE,4460057
|
|
3
|
+
grafeo/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
grafeo-0.1.1.dist-info/METADATA,sha256=qQNDwTsWtNQweHIhqywgbUPbVZmamkZDXNxaguMadNQ,1634
|
|
5
|
+
grafeo-0.1.1.dist-info/WHEEL,sha256=oa8SNC6Vd44dsqPOuLxr4WPl5uPDnUWDxDR_svz6-6M,108
|
|
6
|
+
grafeo.libs/libgcc_s-f685abf1.so.1,sha256=rZiUpi-nw8tNSOJeN-vr3RTEAMCMaHf73gTNGVqRdKs,536145
|
|
7
|
+
grafeo-0.1.1.dist-info/RECORD,,
|
|
Binary file
|