Metadata-Version: 2.4
Name: erepublik-api
Version: 0.1.0
Summary: Python wrapper for the eRepublik API
Author-email: Curlybear <me@curlybear.eu>
License: MIT
Project-URL: Homepage, https://github.com/curlybear/erepublik-api
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: license-file

# erepublik-api

Python wrapper for the eRepublik API with HMAC authentication.

## Install

```bash
pip install erepublik-api
```

## Usage
```py
from erepublik_api import ERepublikAPIClient

client = ERepublikAPIClient(public_key="your_key", private_key="your_secret")
response = client.api_call("citizen", "profile", {"id": "123456"})
print(response)
```

https://api.erepublik.com/doc/
