pylibseekdb 1.4.0.dev2__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.
pylibseekdb/__init__.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""Deprecated compatibility import for the renamed :mod:`seekdb` package."""
|
|
2
|
+
|
|
3
|
+
import warnings as _warnings
|
|
4
|
+
|
|
5
|
+
_warnings.warn(
|
|
6
|
+
"pylibseekdb was renamed to seekdb; use `import seekdb` instead",
|
|
7
|
+
DeprecationWarning,
|
|
8
|
+
stacklevel=2,
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
from seekdb import * # noqa: E402,F401,F403
|
|
12
|
+
from seekdb import SeekdbError, __version__ # noqa: E402,F401
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pylibseekdb
|
|
3
|
+
Version: 1.4.0.dev2
|
|
4
|
+
Summary: Compatibility package for the renamed seekdb Python bindings
|
|
5
|
+
Author-email: OceanBase <open_oceanbase@oceanbase.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://seekdb.ai
|
|
8
|
+
Project-URL: Repository, https://github.com/oceanbase/seekdb-bindings
|
|
9
|
+
Project-URL: Documentation, https://docs.seekdb.ai/
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: seekdb==1.4.0.dev2
|
|
13
|
+
|
|
14
|
+
# pylibseekdb compatibility package
|
|
15
|
+
|
|
16
|
+
`pylibseekdb` was renamed to `seekdb` in version 1.4.0. This final
|
|
17
|
+
compatibility release installs `seekdb==1.4.0` and preserves the public
|
|
18
|
+
top-level import temporarily:
|
|
19
|
+
|
|
20
|
+
```python
|
|
21
|
+
import pylibseekdb # deprecated
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Applications should migrate to:
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
import seekdb
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
The former internal extension path `pylibseekdb.pylibseekdb` is not part of
|
|
31
|
+
the compatibility contract.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
pylibseekdb/__init__.py,sha256=NE_EMzYYJgaOVOixU6m965mdBj60Fz9Sfn2vlXtwoTY,347
|
|
2
|
+
pylibseekdb-1.4.0.dev2.dist-info/METADATA,sha256=AoiPwIej3e0OCcEuC4tk0ehxgC5F22m3PBFtaKK7uws,899
|
|
3
|
+
pylibseekdb-1.4.0.dev2.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
4
|
+
pylibseekdb-1.4.0.dev2.dist-info/top_level.txt,sha256=Q6DdJbeWiJALZTF8QJ7G_ZO9NHLlU2Ww177jHRIHbe4,12
|
|
5
|
+
pylibseekdb-1.4.0.dev2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pylibseekdb
|