matrixone-python-sdk 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.
- matrixone/__init__.py +155 -0
- matrixone/account.py +723 -0
- matrixone/async_client.py +3913 -0
- matrixone/async_metadata_manager.py +311 -0
- matrixone/async_orm.py +123 -0
- matrixone/async_vector_index_manager.py +633 -0
- matrixone/base_client.py +208 -0
- matrixone/client.py +4672 -0
- matrixone/config.py +452 -0
- matrixone/connection_hooks.py +286 -0
- matrixone/exceptions.py +89 -0
- matrixone/logger.py +782 -0
- matrixone/metadata.py +820 -0
- matrixone/moctl.py +219 -0
- matrixone/orm.py +2277 -0
- matrixone/pitr.py +646 -0
- matrixone/pubsub.py +771 -0
- matrixone/restore.py +411 -0
- matrixone/search_vector_index.py +1176 -0
- matrixone/snapshot.py +550 -0
- matrixone/sql_builder.py +844 -0
- matrixone/sqlalchemy_ext/__init__.py +161 -0
- matrixone/sqlalchemy_ext/adapters.py +163 -0
- matrixone/sqlalchemy_ext/dialect.py +534 -0
- matrixone/sqlalchemy_ext/fulltext_index.py +895 -0
- matrixone/sqlalchemy_ext/fulltext_search.py +1686 -0
- matrixone/sqlalchemy_ext/hnsw_config.py +194 -0
- matrixone/sqlalchemy_ext/ivf_config.py +252 -0
- matrixone/sqlalchemy_ext/table_builder.py +351 -0
- matrixone/sqlalchemy_ext/vector_index.py +1721 -0
- matrixone/sqlalchemy_ext/vector_type.py +948 -0
- matrixone/version.py +580 -0
- matrixone_python_sdk-0.1.0.dist-info/METADATA +706 -0
- matrixone_python_sdk-0.1.0.dist-info/RECORD +122 -0
- matrixone_python_sdk-0.1.0.dist-info/WHEEL +5 -0
- matrixone_python_sdk-0.1.0.dist-info/entry_points.txt +5 -0
- matrixone_python_sdk-0.1.0.dist-info/licenses/LICENSE +200 -0
- matrixone_python_sdk-0.1.0.dist-info/top_level.txt +2 -0
- tests/__init__.py +19 -0
- tests/offline/__init__.py +20 -0
- tests/offline/conftest.py +77 -0
- tests/offline/test_account.py +703 -0
- tests/offline/test_async_client_query_comprehensive.py +1218 -0
- tests/offline/test_basic.py +54 -0
- tests/offline/test_case_sensitivity.py +227 -0
- tests/offline/test_connection_hooks_offline.py +287 -0
- tests/offline/test_dialect_schema_handling.py +609 -0
- tests/offline/test_explain_methods.py +346 -0
- tests/offline/test_filter_logical_in.py +237 -0
- tests/offline/test_fulltext_search_comprehensive.py +795 -0
- tests/offline/test_ivf_config.py +249 -0
- tests/offline/test_join_methods.py +281 -0
- tests/offline/test_join_sqlalchemy_compatibility.py +276 -0
- tests/offline/test_logical_in_method.py +237 -0
- tests/offline/test_matrixone_version_parsing.py +264 -0
- tests/offline/test_metadata_offline.py +557 -0
- tests/offline/test_moctl.py +300 -0
- tests/offline/test_moctl_simple.py +251 -0
- tests/offline/test_model_support_offline.py +359 -0
- tests/offline/test_model_support_simple.py +225 -0
- tests/offline/test_pinecone_filter_offline.py +377 -0
- tests/offline/test_pitr.py +585 -0
- tests/offline/test_pubsub.py +712 -0
- tests/offline/test_query_update.py +283 -0
- tests/offline/test_restore.py +445 -0
- tests/offline/test_snapshot_comprehensive.py +384 -0
- tests/offline/test_sql_escaping_edge_cases.py +551 -0
- tests/offline/test_sqlalchemy_integration.py +382 -0
- tests/offline/test_sqlalchemy_vector_integration.py +434 -0
- tests/offline/test_table_builder.py +198 -0
- tests/offline/test_unified_filter.py +398 -0
- tests/offline/test_unified_transaction.py +495 -0
- tests/offline/test_vector_index.py +238 -0
- tests/offline/test_vector_operations.py +688 -0
- tests/offline/test_vector_type.py +174 -0
- tests/offline/test_version_core.py +328 -0
- tests/offline/test_version_management.py +372 -0
- tests/offline/test_version_standalone.py +652 -0
- tests/online/__init__.py +20 -0
- tests/online/conftest.py +216 -0
- tests/online/test_account_management.py +194 -0
- tests/online/test_advanced_features.py +344 -0
- tests/online/test_async_client_interfaces.py +330 -0
- tests/online/test_async_client_online.py +285 -0
- tests/online/test_async_model_insert_online.py +293 -0
- tests/online/test_async_orm_online.py +300 -0
- tests/online/test_async_simple_query_online.py +802 -0
- tests/online/test_async_transaction_simple_query.py +300 -0
- tests/online/test_basic_connection.py +130 -0
- tests/online/test_client_online.py +238 -0
- tests/online/test_config.py +90 -0
- tests/online/test_config_validation.py +123 -0
- tests/online/test_connection_hooks_new_online.py +217 -0
- tests/online/test_dialect_schema_handling_online.py +331 -0
- tests/online/test_filter_logical_in_online.py +374 -0
- tests/online/test_fulltext_comprehensive.py +1773 -0
- tests/online/test_fulltext_label_online.py +433 -0
- tests/online/test_fulltext_search_online.py +842 -0
- tests/online/test_ivf_stats_online.py +506 -0
- tests/online/test_logger_integration.py +311 -0
- tests/online/test_matrixone_query_orm.py +540 -0
- tests/online/test_metadata_online.py +579 -0
- tests/online/test_model_insert_online.py +255 -0
- tests/online/test_mysql_driver_validation.py +213 -0
- tests/online/test_orm_advanced_features.py +2022 -0
- tests/online/test_orm_cte_integration.py +269 -0
- tests/online/test_orm_online.py +270 -0
- tests/online/test_pinecone_filter.py +708 -0
- tests/online/test_pubsub_operations.py +352 -0
- tests/online/test_query_methods.py +225 -0
- tests/online/test_query_update_online.py +433 -0
- tests/online/test_search_vector_index.py +557 -0
- tests/online/test_simple_fulltext_online.py +915 -0
- tests/online/test_snapshot_comprehensive.py +998 -0
- tests/online/test_sqlalchemy_engine_integration.py +336 -0
- tests/online/test_sqlalchemy_integration.py +425 -0
- tests/online/test_transaction_contexts.py +1219 -0
- tests/online/test_transaction_insert_methods.py +356 -0
- tests/online/test_transaction_query_methods.py +288 -0
- tests/online/test_unified_filter_online.py +529 -0
- tests/online/test_vector_comprehensive.py +706 -0
- tests/online/test_version_management.py +291 -0
matrixone/__init__.py
ADDED
@@ -0,0 +1,155 @@
|
|
1
|
+
# Copyright 2021 - 2022 Matrix Origin
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
"""
|
16
|
+
MatrixOne Python SDK
|
17
|
+
|
18
|
+
A high-level Python SDK for MatrixOne that provides SQLAlchemy-like interface
|
19
|
+
for database operations, snapshot management, PITR, restore operations,
|
20
|
+
table cloning, and mo-ctl integration.
|
21
|
+
"""
|
22
|
+
|
23
|
+
from .account import Account, AccountManager, Grant, Role, TransactionAccountManager, User
|
24
|
+
from .async_client import AsyncClient, AsyncResultSet
|
25
|
+
from .client import Client
|
26
|
+
from .exceptions import (
|
27
|
+
AccountError,
|
28
|
+
CloneError,
|
29
|
+
ConfigurationError,
|
30
|
+
ConnectionError,
|
31
|
+
MatrixOneError,
|
32
|
+
MoCtlError,
|
33
|
+
PitrError,
|
34
|
+
PubSubError,
|
35
|
+
QueryError,
|
36
|
+
RestoreError,
|
37
|
+
SnapshotError,
|
38
|
+
VersionError,
|
39
|
+
)
|
40
|
+
from .moctl import MoCtlManager
|
41
|
+
from .pitr import Pitr, PitrManager
|
42
|
+
from .pubsub import Publication, PubSubManager, Subscription
|
43
|
+
from .restore import RestoreManager
|
44
|
+
from .snapshot import CloneManager, Snapshot, SnapshotLevel, SnapshotManager
|
45
|
+
|
46
|
+
# Import SQLAlchemy extensions
|
47
|
+
from .sqlalchemy_ext import (
|
48
|
+
FulltextAlgorithmType,
|
49
|
+
FulltextFilter,
|
50
|
+
FulltextIndex,
|
51
|
+
FulltextModeType,
|
52
|
+
FulltextParserType,
|
53
|
+
FulltextSearchBuilder,
|
54
|
+
MatrixOneDialect,
|
55
|
+
Vectorf32,
|
56
|
+
Vectorf64,
|
57
|
+
VectorIndex,
|
58
|
+
VectorIndexType,
|
59
|
+
VectorOpType,
|
60
|
+
VectorPrecision,
|
61
|
+
VectorTableBuilder,
|
62
|
+
VectorType,
|
63
|
+
VectorTypeDecorator,
|
64
|
+
boolean_match,
|
65
|
+
create_document_vector_table,
|
66
|
+
create_fulltext_index,
|
67
|
+
create_hnsw_index,
|
68
|
+
create_ivfflat_index,
|
69
|
+
create_product_vector_table,
|
70
|
+
create_vector_index_table,
|
71
|
+
create_vector_table,
|
72
|
+
enable_hnsw_indexing,
|
73
|
+
enable_ivf_indexing,
|
74
|
+
fulltext_search_builder,
|
75
|
+
group,
|
76
|
+
natural_match,
|
77
|
+
)
|
78
|
+
|
79
|
+
# Import generic logical adapters
|
80
|
+
from .sqlalchemy_ext.adapters import logical_and, logical_not, logical_or
|
81
|
+
from .version import FeatureRequirement, VersionInfo, VersionManager, requires_version
|
82
|
+
|
83
|
+
__version__ = "1.0.0"
|
84
|
+
__all__ = [
|
85
|
+
"Client",
|
86
|
+
"AsyncClient",
|
87
|
+
"AsyncResultSet",
|
88
|
+
"MatrixOneError",
|
89
|
+
"ConnectionError",
|
90
|
+
"QueryError",
|
91
|
+
"ConfigurationError",
|
92
|
+
"SnapshotError",
|
93
|
+
"CloneError",
|
94
|
+
"MoCtlError",
|
95
|
+
"RestoreError",
|
96
|
+
"PitrError",
|
97
|
+
"PubSubError",
|
98
|
+
"Snapshot",
|
99
|
+
"SnapshotManager",
|
100
|
+
"CloneManager",
|
101
|
+
"SnapshotLevel",
|
102
|
+
"MoCtlManager",
|
103
|
+
"RestoreManager",
|
104
|
+
"PitrManager",
|
105
|
+
"Pitr",
|
106
|
+
"PubSubManager",
|
107
|
+
"Publication",
|
108
|
+
"Subscription",
|
109
|
+
"AccountError",
|
110
|
+
"AccountManager",
|
111
|
+
"Account",
|
112
|
+
"User",
|
113
|
+
"Role",
|
114
|
+
"Grant",
|
115
|
+
"TransactionAccountManager",
|
116
|
+
"VersionError",
|
117
|
+
"VersionManager",
|
118
|
+
"VersionInfo",
|
119
|
+
"FeatureRequirement",
|
120
|
+
"requires_version",
|
121
|
+
# SQLAlchemy extensions
|
122
|
+
"VectorType",
|
123
|
+
"Vectorf32",
|
124
|
+
"Vectorf64",
|
125
|
+
"VectorTypeDecorator",
|
126
|
+
"MatrixOneDialect",
|
127
|
+
"VectorTableBuilder",
|
128
|
+
"create_vector_table",
|
129
|
+
"create_vector_index_table",
|
130
|
+
"create_document_vector_table",
|
131
|
+
"create_product_vector_table",
|
132
|
+
"VectorIndex",
|
133
|
+
"VectorIndexType",
|
134
|
+
"VectorOpType",
|
135
|
+
"VectorPrecision",
|
136
|
+
"create_hnsw_index",
|
137
|
+
"create_ivfflat_index",
|
138
|
+
"enable_hnsw_indexing",
|
139
|
+
"enable_ivf_indexing",
|
140
|
+
"FulltextIndex",
|
141
|
+
"FulltextAlgorithmType",
|
142
|
+
"FulltextModeType",
|
143
|
+
"FulltextParserType",
|
144
|
+
"FulltextSearchBuilder",
|
145
|
+
"FulltextFilter",
|
146
|
+
"boolean_match",
|
147
|
+
"natural_match",
|
148
|
+
"group",
|
149
|
+
"create_fulltext_index",
|
150
|
+
"fulltext_search_builder",
|
151
|
+
# Generic logical adapters
|
152
|
+
"logical_and",
|
153
|
+
"logical_or",
|
154
|
+
"logical_not",
|
155
|
+
]
|