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 +27 -0
- quantara/database/__init__.py +0 -0
- quantara/database/database.py +1024 -0
- quantara/database/models.py +16 -0
- quantara/errors/__init__.py +0 -0
- quantara/errors/errors.py +30 -0
- quantara/indexes/__init__.py +0 -0
- quantara/indexes/base.py +105 -0
- quantara/indexes/bruteforce.py +233 -0
- quantara/indexes/builtin.py +28 -0
- quantara/indexes/registry.py +176 -0
- quantara/utils/__init__.py +0 -0
- quantara/utils/utils.py +81 -0
- quantara-0.1.2.dist-info/METADATA +475 -0
- quantara-0.1.2.dist-info/RECORD +18 -0
- quantara-0.1.2.dist-info/WHEEL +5 -0
- quantara-0.1.2.dist-info/licenses/LICENSE +21 -0
- quantara-0.1.2.dist-info/top_level.txt +1 -0
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
|