Extremely-fast Python 3.6+ toolkit for create applications work`s with VKAPI.
🏠 Homepage
pip install https://github.com/prostomarkeloff/vk.py/archive/master.zip --upgrade
or (old version)
pip install vk.py
Simple example
from vk import VK
from vk.utils.task_manager import TaskManager
import logging
logging.basicConfig(level="INFO")
vk = VK(access_token=<TOKEN>)
async def status_get():
resp = await vk.api_request("status.get")
print(resp)
if __name__ == "__main__":
task_manager = TaskManager(vk.loop)
task_manager.add_task(status_get)
task_manager.run()
More examples click
- Rich high-level API.
- Fully asynchronous. Based on asyncio and aiohttp.
- Bot framework out of-the-box.
- Fully typed. Thanks to Pydantic.
- The fastest.
- Compatible with PyPy.
The fastest Python library for access to VKAPI.
- Accept and handle event from LongPoll API in bot framework (with sending a message to the user): lower than 0.1s
- Check 100 handlers and execute 100 filters in bot framework (without sending a message to the user): lower than 0.001s
- Kutana. Bot engine for create bots in Telegram and VK.
- VKBottle. Bot framework for develop bots in VK.
- VK_API. Simple library for access to VKAPI.
And many others library`s...
👤 prostomarkeloff
- Twitter: @prostomarkeloff
- Github: @prostomarkeloff
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Give a ⭐️ if this project helped you!
Copyright © 2019 prostomarkeloff.
This project is MIT licensed.
This README was generated with ❤️ by readme-md-generator