Metadata-Version: 2.4
Name: pylibseekdb
Version: 1.4.0.dev2
Summary: Compatibility package for the renamed seekdb Python bindings
Author-email: OceanBase <open_oceanbase@oceanbase.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://seekdb.ai
Project-URL: Repository, https://github.com/oceanbase/seekdb-bindings
Project-URL: Documentation, https://docs.seekdb.ai/
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: seekdb==1.4.0.dev2

# pylibseekdb compatibility package

`pylibseekdb` was renamed to `seekdb` in version 1.4.0. This final
compatibility release installs `seekdb==1.4.0` and preserves the public
top-level import temporarily:

```python
import pylibseekdb  # deprecated
```

Applications should migrate to:

```python
import seekdb
```

The former internal extension path `pylibseekdb.pylibseekdb` is not part of
the compatibility contract.
