Metadata-Version: 2.4
Name: floe-ingestion-dlt
Version: 0.1.0a1
Summary: dlt ingestion plugin for the floe data platform
Project-URL: Homepage, https://github.com/Obsidian-Owl/floe
Project-URL: Documentation, https://github.com/Obsidian-Owl/floe/tree/main/docs
Project-URL: Repository, https://github.com/Obsidian-Owl/floe
Author-email: Obsidian Owl <team@obsidianowl.dev>
License-Expression: Apache-2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: dlt[iceberg]<2.0,>=1.20.0
Requires-Dist: floe-core<0.2.0,>=0.1.0a1
Requires-Dist: httpx<1.0,>=0.25.0
Requires-Dist: opentelemetry-api<2.0,>=1.0
Requires-Dist: pydantic<3.0,>=2.0
Requires-Dist: structlog<26.0,>=24.0
Requires-Dist: tenacity<9.0,>=8.0
Provides-Extra: dev
Requires-Dist: mypy>=1.8; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.3; extra == 'dev'
Description-Content-Type: text/markdown

# floe-ingestion-dlt

dlt (data load tool) ingestion plugin for the floe data platform.

## Overview

This plugin implements the `IngestionPlugin` ABC from floe-core using
[dlt](https://dlthub.com/) as the ingestion framework. It supports loading
data from REST APIs, SQL databases, and filesystem sources into Iceberg
tables via the platform's Polaris REST catalog.

## Installation

```bash
uv pip install -e plugins/floe-ingestion-dlt
```

## Entry Point

Registered as `floe.ingestion = dlt` for automatic discovery by the
floe plugin registry.
