Metadata-Version: 2.1
Name: arkprts
Version: 0.0.1
Summary: Arknights python wrapper.
Home-page: https://github.com/thesadru/arkprts
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Provides-Extra: all
Requires-Dist: aiohttp ; extra == 'all'

# ArkPRTS

Arknights python wrapper.

This project aims to purely allow for data collection, no account automation is planned.

---

Source Code: <https://github.com/thesadru/arkprts>

---

## Usage

```py
import arkprts

async def main() -> None:
    client = arkprts.Client()
    await client.login_with_email("user@gmail.com")
    # or client.login_with_token("123456", "abcdefg")

    data = await client.get_data()
    print("Level: ", data.status.level)
```

There are unfortunately no models due to the sheer size of the returned data.

## Contributing

Any kind of contribution is welcome.
Please read [CONTRIBUTING.md](./CONTRIBUTING.md) for more information.
