rdf-starbase 0.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.
@@ -0,0 +1,44 @@
1
+ """
2
+ RDF-StarBase Storage Layer.
3
+
4
+ High-performance columnar storage with dictionary-encoded terms
5
+ and predicate-partitioned facts.
6
+ """
7
+
8
+ from rdf_starbase.storage.terms import (
9
+ TermKind,
10
+ TermId,
11
+ TermDict,
12
+ Term,
13
+ )
14
+ from rdf_starbase.storage.quoted_triples import QtDict, QtId
15
+ from rdf_starbase.storage.facts import FactStore, FactFlags, DEFAULT_GRAPH_ID
16
+ from rdf_starbase.storage.lsm import LSMStorage, PartitionStats
17
+ from rdf_starbase.storage.executor import StorageExecutor, ExpansionPatterns
18
+ from rdf_starbase.storage.reasoner import RDFSReasoner, ReasoningStats
19
+ from rdf_starbase.storage.persistence import (
20
+ StoragePersistence,
21
+ save_storage,
22
+ load_storage,
23
+ )
24
+
25
+ __all__ = [
26
+ "TermKind",
27
+ "TermId",
28
+ "TermDict",
29
+ "Term",
30
+ "QtDict",
31
+ "QtId",
32
+ "FactStore",
33
+ "FactFlags",
34
+ "DEFAULT_GRAPH_ID",
35
+ "LSMStorage",
36
+ "PartitionStats",
37
+ "StorageExecutor",
38
+ "ExpansionPatterns",
39
+ "RDFSReasoner",
40
+ "ReasoningStats",
41
+ "StoragePersistence",
42
+ "save_storage",
43
+ "load_storage",
44
+ ]