Metadata-Version: 2.4
Name: achaekek
Version: 0.0.13
Summary: Python library for the Manifold markets API.
Author-email: TetraspaceW <holomanga@gmail.com>
Requires-Python: >=3.13
Requires-Dist: requests>=2.32.5
Description-Content-Type: text/markdown

# achaekek

Manifold markets Python API

Create a new Manifold client 

```python
from achaekek import Client
client = Client(api_key="YOUR API KEY")
```

Make requests via this client

```python
new_market = CreateMultipleChoiceMarket(
        question="Will creating this test market work?",
        answers=["Yes", "No"],
    )
client.create_market(new_market)
```

Enjoy your market! 