Changelog
Added the ability to make asynchronous requests via `aiohttp` and `asyncio`.
Example of use:
`main.py` contains:
py
from WgLestaAPI import aio
import asyncio
method = aio.Method("account.info", "wot", account_id=563982544, application_id="your_app_id")
response = asyncio.run(method.execute())
print(response)
`output` is:
json
{"status": "ok", "meta": {"count": 1}, "data": {"563982544": {"client_language": "", "last_battle_time": 1569011404, "account_id": 563982544, "created_at": 1564320823, "updated_at": 1686648157, ... "tanking_factor": 0.0}, "frags": None}, "nickname": "tankalxat34", "logout_at": 1597741881}