Metadata-Version: 2.1
Name: arkvatar
Version: 1.0.0
Summary: API Wrapper to interact with Arkvatar.
Home-page: https://github.com/thegoldenhorde/arkvatar-py
Author: Jolan Beer - Highjhacker
Author-email: jolanbeer@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: aiohttp

# Arkvatar-py

API Wrapper to interact with Arkvatar.

## Built with

- [Python](https://www.python.org/)
- [AIOHTTP](https://aiohttp.readthedocs.io/en/stable/)

## Installation

```shell
pip install arkvatar-py
```

## Usage

```python
import asyncio
from arkvatar import Arkvatar


async def main():
    arkvatar = Arkvatar()
    identifier = "azerty@gmail.com"
    request = await arkvatar.store("Email", identifier)
    print(request)


if __name__ == '__main__':
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())
```

## Authors

- Jolan Beer - Highjhacker

## License

Arkvatar-py is under MIT license. See the [LICENSE file](LICENSE.md) for more informations.


