quantara 0.1.2__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.
quantara/__init__.py ADDED
@@ -0,0 +1,27 @@
1
+ # quantara/__init__.py
2
+
3
+ from quantara.database.database import Database
4
+
5
+ from quantara.indexes.base import BaseIndex
6
+
7
+ from quantara.indexes.registry import (
8
+ register_index,
9
+ unregister_index,
10
+ get_index,
11
+ list_indexes
12
+ )
13
+
14
+ from quantara.indexes.builtin import (
15
+ load_builtin_indexes
16
+ )
17
+
18
+ load_builtin_indexes()
19
+
20
+ __all__ = [
21
+ "Database",
22
+ "BaseIndex",
23
+ "register_index",
24
+ "unregister_index",
25
+ "get_index",
26
+ "list_indexes"
27
+ ]
File without changes