Metadata-Version: 2.4
Name: zafiaonline
Version: 8.0.0
Summary: A Python API library for interacting with Mafia Online game.
Author: unelected
License-Expression: GPL-3.0-or-later
Project-URL: Homepage, https://github.com/unelected/zafiaonline.py
Project-URL: Repository, https://github.com/unelected/zafiaonline.py.git
Keywords: Mafia Online API,API Mafia Online
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: websockets>=15.0.1
Requires-Dist: msgspec~=0.19
Requires-Dist: aiohttp~=3.12
Requires-Dist: pyyaml~=6.0
Requires-Dist: pytest~=8.4

<h1 align="center">
  Mafia Online API on Python
</h1>

<p align="center">This library for <a href="https://play.google.com/store/apps/details?id=com.tokarev.mafia">Mafia Online</a></p>

![Python version](https://img.shields.io/badge/python-3.9+-blue.svg)


# Install

To install the package from [PyPI](https://pypi.org/project/zafiaonline/), use:

```bash
pip install zafiaonline
```


# Import and Auth
```python
import zafiaonline
import asyncio

async def main():
    Mafia = zafiaonline.Client()
    await Mafia.auth.sign_in("email", "password")
asyncio.run(main())
```
