rhizo-core 0.1.3__cp312-cp312-macosx_11_0_arm64.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.
_rhizo/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from ._rhizo import *
2
+
3
+ __doc__ = _rhizo.__doc__
4
+ if hasattr(_rhizo, "__all__"):
5
+ __all__ = _rhizo.__all__
Binary file
@@ -0,0 +1,59 @@
1
+ Metadata-Version: 2.4
2
+ Name: rhizo-core
3
+ Version: 0.1.3
4
+ Classifier: Development Status :: 3 - Alpha
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.9
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Rust
13
+ Classifier: Topic :: Database
14
+ Classifier: Topic :: Software Development :: Libraries
15
+ Summary: Data, connected. Content-addressable storage with cross-table ACID transactions.
16
+ Keywords: data,storage,versioning,transactions,parquet,duckdb
17
+ License: MIT
18
+ Requires-Python: >=3.9
19
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
20
+ Project-URL: Homepage, https://rhizodata.dev
21
+ Project-URL: Repository, https://github.com/rhizodata/rhizo
22
+
23
+ # rhizo-core
24
+
25
+ Low-level Rust bindings for [Rhizo](https://github.com/rhizodata/rhizo).
26
+
27
+ **Most users should install `rhizo` instead**, which includes these bindings plus the high-level Python API:
28
+
29
+ ```bash
30
+ pip install rhizo
31
+ ```
32
+
33
+ ## What is rhizo-core?
34
+
35
+ This package provides the native Rust components:
36
+
37
+ - `PyChunkStore` - Content-addressable storage with BLAKE3 hashing
38
+ - `PyCatalog` - Versioned table catalog
39
+ - `PyBranchManager` - Git-like branching
40
+ - `PyTransactionManager` - Cross-table ACID transactions
41
+ - `PyParquetEncoder/Decoder` - High-performance Parquet I/O
42
+ - Merkle tree operations for incremental deduplication
43
+
44
+ ## When to use rhizo-core directly
45
+
46
+ Only if you're building custom tooling on top of the low-level primitives. For normal usage, install `rhizo` which provides a simple API:
47
+
48
+ ```python
49
+ import rhizo
50
+
51
+ db = rhizo.open("./mydata")
52
+ db.write("users", df)
53
+ result = db.sql("SELECT * FROM users")
54
+ ```
55
+
56
+ ## License
57
+
58
+ MIT
59
+
@@ -0,0 +1,5 @@
1
+ _rhizo/__init__.py,sha256=4VVoZAY1qMsr-YUBCaKEI_bRr446bTLmfld0efb4ii4,107
2
+ _rhizo/_rhizo.cpython-312-darwin.so,sha256=DpsV8nOvAe9PTeeoTMYVC-gMlJO6VNdMVdGnuHl_aug,13442608
3
+ rhizo_core-0.1.3.dist-info/METADATA,sha256=Bqkpvl8E-y7JVA7saC5NXdxNUYsh35G9AXCSEjm58Js,1867
4
+ rhizo_core-0.1.3.dist-info/WHEEL,sha256=qr8B0oB3ZR0cwIaW0mxUADH9b4sNRMHcgJlpYNTDAPw,105
5
+ rhizo_core-0.1.3.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.11.5)
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-macosx_11_0_arm64