Metadata-Version: 2.4
Name: waccy-edgar
Version: 0.0.1a0
Summary: WACCY extension for SEC EDGAR filing parsing
Project-URL: Homepage, https://github.com/DecisionNerd/waccy
Project-URL: Repository, https://github.com/DecisionNerd/waccy
Project-URL: Issues, https://github.com/DecisionNerd/waccy/issues
Project-URL: Documentation, https://github.com/DecisionNerd/waccy#readme
Author: WACCY Contributors
License: MIT
Keywords: edgar,finance,financial-modeling,sec,waccy
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.13
Requires-Dist: waccy>=0.0.2a
Provides-Extra: dev
Requires-Dist: mypy>=1.13.0; extra == 'dev'
Requires-Dist: pytest>=9.0.2; extra == 'dev'
Requires-Dist: ruff>=0.8.0; extra == 'dev'
Description-Content-Type: text/markdown

# waccy-edgar

WACCY extension for SEC EDGAR filing parsing and pattern learning.

## Installation

```bash
uv pip install waccy-edgar
```

Or install with the core platform:

```bash
uv pip install "waccy[edgar]"
```

## Usage

```python
from waccy.extraction import ExtractorRegistry

registry = ExtractorRegistry()
extractor = registry.get_extractor("edgar")()

# Extract data from SEC filings
data = extractor.extract({
    "ticker": "AAPL",
    "filing_types": ["10-K", "10-Q"],
    "date_range": ("2022-01-01", "2024-12-31")
})
```

## Development

This package is part of the WACCY monorepo. See the main [README](../README.md) for development setup.

