posixlake 0.1.6__cp311-cp311-win_amd64.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.
- posixlake/__init__.py +17 -0
- posixlake/posixlake.dll +0 -0
- posixlake/posixlake.py +3222 -0
- posixlake-0.1.6.dist-info/METADATA +1010 -0
- posixlake-0.1.6.dist-info/RECORD +7 -0
- posixlake-0.1.6.dist-info/WHEEL +5 -0
- posixlake-0.1.6.dist-info/top_level.txt +1 -0
posixlake/__init__.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""
|
|
2
|
+
posixlake - POSIX interface to Delta Lake
|
|
3
|
+
|
|
4
|
+
Python bindings for posixlake, providing high-performance Delta Lake database
|
|
5
|
+
with POSIX interface via Rust and UniFFI.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from .posixlake import *
|
|
9
|
+
|
|
10
|
+
__all__ = [
|
|
11
|
+
'DatabaseOps',
|
|
12
|
+
'NfsServer',
|
|
13
|
+
'Schema',
|
|
14
|
+
'Field',
|
|
15
|
+
'DataType',
|
|
16
|
+
'PosixLakeError',
|
|
17
|
+
]
|
posixlake/posixlake.dll
ADDED
|
Binary file
|