Metadata-Version: 2.4
Name: oddsblaze
Version: 0.1.0
Summary: Python Oddsblaze SDK
Author-email: reecetec <reece.tec@gmail.com>
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.28.1
Requires-Dist: pydantic>2
Requires-Dist: pydantic-settings>2
Dynamic: license-file

# oddsblaze-python

Python SDK for the [OddsBlaze API](https://oddsblaze.com/). 

## Installation

```bash
uv add oddsblaze
```

Or with pip:

```bash
pip install oddsblaze
```

## Quick Start

1. Get an API key at [oddsblaze.com](https://www.oddsblaze.com/)

2. Set your API key:

```bash
# Option 1: Environment variable
export ODDSBLAZE_API_KEY=your_key

# Option 2: .env file in project root
echo "ODDSBLAZE_API_KEY=your_key" >> .env

# Option 3: Global config file
echo "ODDSBLAZE_API_KEY=your_key" >> ~/.oddsblaze
```

3. Start using the SDK:

```python
from oddsblaze import OddsblazeClient

client = OddsblazeClient()

# Get NFL odds from DraftKings
odds = client.get_odds("draftkings", "nfl")
for event in odds.events:
    print(f"{event.teams.away.name} @ {event.teams.home.name}")
```

## Documentation

Full documentation at [reecetec.github.io/oddsblaze-python](https://reecetec.github.io/oddsblaze-python/)
