Metadata-Version: 2.4
Name: cocpysdk
Version: 0.1.0
Summary: Unofficial Clash of Clans API client for Python
Author: Giuseppe Fiengo, Marco Lobello
License: MIT
Project-URL: Homepage, https://github.com/twofacednine380/cocpy
Project-URL: Issues, https://github.com/twofacednine380/cocpy/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31
Dynamic: license-file

# cocpy

Unofficial Python client for the Clash of Clans API.

## Install
```bash
pip install cocpy
```

## Usage
```python
from cocpy import COCClient

client = COCClient("YOUR_JWT_TOKEN")
player = client.get_player("#2ABC")
print(player["name"])

ver = client.verify_player_token("#2ABC", "one-time-token")
print(ver["status"])
```
