Metadata-Version: 2.4
Name: playcaller-sdk
Version: 0.1.0
Summary: Official Python SDK for PlayCaller — real-time sports data and ML signals
Home-page: https://playcallerapp.com/developer
Author: PlayCaller
Author-email: api@playcallerapp.com
License: MIT
Keywords: playcaller,sports,fantasy,nfl,mlb,nba
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.21.2
Requires-Dist: pydantic>=1.9.2
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# PlayCaller Python SDK

Official Python SDK for the [PlayCaller](https://playcallerapp.com/developer) sports data API — real-time injury signals, player stats, game scores, and AI-powered ML signals for NFL, MLB, NBA, CFB, and soccer.

## Installation

```bash
pip install playcaller-sdk
```

## Quick Start

```python
from playcaller import PlaycallerApi

client = PlaycallerApi(api_key="pc_sbx_your_key_here")

# Injury signals
injuries = client.intelligence.get_intelligence_injuries(sport="nfl", severity="high")

# NFL players
players = client.nfl.list_nfl_players(team="KC", position="WR")

# MLB games today
games = client.mlb.list_mlb_games(date="today")
```

## Get an API Key

[14-day free sandbox at playcallerapp.com/developer](https://playcallerapp.com/developer) — no credit card required.
