Metadata-Version: 2.4
Name: duckdb_extension_motherduck
Version: 1.5.1
Summary: Duckdb motherduck extension
Project-URL: Documentation, https://github.com/santosh-d3vpl3x/duckdb_extensions#readme
Project-URL: Issues, https://github.com/santosh-d3vpl3x/duckdb_extensions/issues
Project-URL: Source, https://github.com/santosh-d3vpl3x/duckdb_extensions
Author-email: santosh <void@some.where>
License: MIT for wrapper/package code; bundled motherduck extension binaries are governed by upstream MotherDuck terms. See THIRD_PARTY_LICENSES.md.
Classifier: Development Status :: 4 - Beta
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.9
Requires-Dist: duckdb==1.5.1
Description-Content-Type: text/markdown

# 🦆DuckDB motherduck extension as python package

[![PyPI - Version](https://img.shields.io/pypi/v/duckdb-extension-motherduck.svg)](https://pypi.org/project/duckdb-extension-motherduck)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/duckdb-extension-motherduck.svg)](https://pypi.org/project/duckdb-extension-motherduck)

-----

## Table of Contents

- [Installation](#installation)
- [License](#license)


## Installation
```console
pip install duckdb-extensions duckdb-extension-motherduck
```
You are ready to install the extension for duckdb.
```python
from duckdb_extensions import import_extension
import_extension("motherduck")
```

Verify that the extension is installed.
```python
import duckdb

print(
    duckdb.sql("""SELECT installed
                FROM duckdb_extensions() where 
                extension_name='motherduck' or 
                list_contains(aliases, 'motherduck')""")
    .fetchone()[0]
)
```

## License

The `duckdb-extension-motherduck` wrapper/package code in this repository is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.

Bundled `motherduck` extension binaries are provided by MotherDuck and governed by upstream MotherDuck terms. They are not relicensed by this repository.

See [MotherDuck Terms of Service](https://motherduck.com/terms-of-service/) and [THIRD_PARTY_LICENSES.md](../../THIRD_PARTY_LICENSES.md).
