Metadata-Version: 2.4
Name: pokerai-bet
Version: 0.0.1
Summary: Official Python client for the Pokerai API — solver-grade GTO strategy for 6-max No-Limit Hold'em. Placeholder; full SDK coming soon.
Author: Pokerai API
License: MIT
Project-URL: Homepage, https://pokerai.bet
Project-URL: Documentation, https://pokerai.bet/docs.en
Project-URL: API Reference, https://pokerai.bet/reference
Project-URL: OpenAPI, https://pokerai.bet/openapi.yaml
Keywords: poker,gto,solver,holdem,api,nlhe
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Games/Entertainment
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# pokerai

Official Python client for the **[Pokerai API](https://pokerai.bet)** — solver-grade GTO strategy
for 6-max No-Limit Hold'em, over HTTP.

> **This is a placeholder release reserving the package name.** The full SDK is on the way.
> In the meantime the API is a plain HTTP + JSON service you can call directly, or generate a
> client from the [OpenAPI spec](https://pokerai.bet/openapi.yaml).

- Docs: https://pokerai.bet/docs.en
- Interactive reference: https://pokerai.bet/reference
- Get a free API key: https://pokerai.bet/login

```bash
pip install pokerai-bet   # distribution name; import as `pokerai`
```

```bash
curl -s https://pokerai.bet/v1/gto/preflop \
  -H "Authorization: Bearer $POKERAI_API_KEY" -H "Content-Type: application/json" \
  -d '{"hole_cards":"AhKh","positions":{"hero":"MP"},
       "preflop_actions":[{"position":"UTG","action":"raise","amount":3}]}'
```

MIT licensed.
