Releases: JacobiusMakes/parlay-api-python
Releases · JacobiusMakes/parlay-api-python
v0.1.0 — Initial release
First public release of the parlay-api Python SDK.
Drop-in replacement for the-odds-api Python clients, plus:
- Player props (
client.props(...)) — 13 books in one call, 3 credits - Prediction-market exchanges (Novig, ProphetX, Kalshi)
- WebSocket streaming (
client.websocket_url(...)) — real-time odds tick-by-tick on Business+ tier - Devig math helpers (
ParlayAPI.devig,american_to_implied,edge) - Three runnable examples:
ev_scanner.py,arb_finder.py,websocket_stream.py
Migration from the-odds-api:
# Was:
import the_odds_api as toa
client = toa.OddsApi(api_key='...')
# Now:
from parlay_api import ParlayAPI
client = ParlayAPI(api_key='...')Method signatures match TOA where applicable. Pricing is 5-200x cheaper for equivalent coverage — see https://parlay-api.com/vs-toa.
Pure Python, urllib only — no required dependencies. Optional [ws] extra adds websockets for the streaming example.