Metadata-Version: 2.4
Name: distill-lib
Version: 0.1.0
Summary: DB-decoupled workflow engine package for Distill
Author: Xuanchen Chen
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4==4.13.4
Requires-Dist: feedparser==6.0.11
Requires-Dist: google-genai~=1.15.0
Requires-Dist: httpx~=0.28.1
Requires-Dist: lxml~=5.4.0
Requires-Dist: openai~=1.78.0
Requires-Dist: pydantic~=2.11.4
Requires-Dist: tavily-python~=0.5.0
Requires-Dist: toml==0.10.2
Requires-Dist: trafilatura~=1.6.0
Requires-Dist: typing-extensions<5,>=4.12.2
Dynamic: license-file

# Distill Lib

Common components and utilities for the Distill system.

## Installation

```bash
pip install distill-lib
```

## Features

- Feed parsing from OPML and RSS/Atom feeds
- Article content extraction from HTML
- AI-powered workflow engine
- Rate limiting and retry logic
- Support for multiple LLM providers

## Usage

```python
from distill_lib import run_workflow_from_opml, parse_opml

# Run workflow from OPML file
result = run_workflow_from_opml("feeds.opml")

# Parse OPML file
feeds = parse_opml("feeds.opml")
```

## License

MIT License
