farchive 3.1.0__py3-none-any.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.
- farchive/__init__.py +32 -0
- farchive/_archive.py +1851 -0
- farchive/_chunking.py +52 -0
- farchive/_cli.py +2107 -0
- farchive/_compression.py +240 -0
- farchive/_schema.py +426 -0
- farchive/_types.py +174 -0
- farchive/py.typed +0 -0
- farchive-3.1.0.dist-info/METADATA +343 -0
- farchive-3.1.0.dist-info/RECORD +14 -0
- farchive-3.1.0.dist-info/WHEEL +5 -0
- farchive-3.1.0.dist-info/entry_points.txt +2 -0
- farchive-3.1.0.dist-info/licenses/LICENSE +21 -0
- farchive-3.1.0.dist-info/top_level.txt +1 -0
farchive/__init__.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""Farchive — content-addressed archive with observation history and adaptive zstd compression."""
|
|
2
|
+
|
|
3
|
+
from farchive._archive import Farchive
|
|
4
|
+
from farchive._types import (
|
|
5
|
+
ArchiveStats,
|
|
6
|
+
CompressionPolicy,
|
|
7
|
+
Event,
|
|
8
|
+
BatchItem,
|
|
9
|
+
LocatorHeadComparison,
|
|
10
|
+
PurgeStats,
|
|
11
|
+
ImportStats,
|
|
12
|
+
RepackStats,
|
|
13
|
+
RechunkStats,
|
|
14
|
+
StateSpan,
|
|
15
|
+
PathLike,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
"ArchiveStats",
|
|
20
|
+
"CompressionPolicy",
|
|
21
|
+
"BatchItem",
|
|
22
|
+
"LocatorHeadComparison",
|
|
23
|
+
"Event",
|
|
24
|
+
"Farchive",
|
|
25
|
+
"ImportStats",
|
|
26
|
+
"PurgeStats",
|
|
27
|
+
"RechunkStats",
|
|
28
|
+
"RepackStats",
|
|
29
|
+
"StateSpan",
|
|
30
|
+
"PathLike",
|
|
31
|
+
]
|
|
32
|
+
__version__ = "3.1.0"
|