Library for api.botstat.io
Project description
aiobotstat
Mini library for BotStat API.
Current API version: 0.1
Install
-
Git:
pip install git+https://github.com/viuipan/aiobotstat.git
-
PyPi:
pip install aiobotstat
Example:
import asyncio
from aiobotstat import BotStatAPI
BOT_TOKEN = ''
FILE_PATH = ''
BOT_USERNAME = ''
api = BotStatAPI(BOT_TOKEN)
async def main():
bot_info = await api.get_bot_info(username=BOT_USERNAME)
print(bot_info)
task = await api.create_task(file=FILE_PATH)
print(task)
status = await api.get_task_status(task_id=task.id)
print(status)
cancel_result = await api.cancel_task(task_id=task.id)
print(f'Cancel result is {cancel_result}')
asyncio.run(main())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiobotstat-0.1.1.tar.gz
(5.7 kB
view details)
File details
Details for the file aiobotstat-0.1.1.tar.gz
.
File metadata
- Download URL: aiobotstat-0.1.1.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7b16a9f41f6779ef54f74298a99db884de3d966f943d09f8655053ea869a2f3 |
|
MD5 | 2a54c80563e29dc6eaa9195dfcbe309c |
|
BLAKE2b-256 | 488d7d73b7bb202dd5b33762ad219fbf47c6f1f081d739c1e61b82881b5f49ad |