Metadata-Version: 2.4
Name: vd-dlt-notion
Version: 0.1.0
Summary: Notion connector for vd-dlt pipelines
Project-URL: Homepage, https://github.com/accelerate-data/vd-dlt-connectors
Project-URL: Repository, https://github.com/accelerate-data/vd-dlt-connectors
Author-email: VibeData <info@vibedata.dev>
License-Expression: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Requires-Python: >=3.9
Requires-Dist: dlt
Requires-Dist: vd-dlt>=0.1.0
Description-Content-Type: text/markdown

# vd-dlt-notion

Notion connector for vd-dlt pipelines. Provides dlt sources for Notion databases using the REST API.

## Installation

```bash
# Install via vd-dlt extras (recommended)
pip install vd-dlt[notion]

# Or install directly
pip install vd-dlt-notion
```

## Usage

```python
from vd_dlt import PipelineRunner

runner = PipelineRunner(vault_url="https://my-vault.vault.azure.net/")
result = runner.run("my_notion_source")
```

The connector is automatically discovered by `PipelineRunner` when installed.
