mirror of
https://github.com/ethosa/shizuka
synced 2026-01-15 02:51:45 +00:00
No description
| .github | ||
| src | ||
| tests | ||
| .gitignore | ||
| LICENSE | ||
| nim_plastic.svg | ||
| README.md | ||
| shizuka.nimble | ||
Install
nimble install shizuka
Features
- Calling any VK API method.
- Convenient working with longpoll.
- Uploader.
- Fully async.
- VK keyboards and templates.
- Very simple usage
import shizuka # auth var vk = newVk(8123456789, "mypassword") lp = newLongpoll(vk) vk@message_new(event): # real-time events handler echo event lp.run() # starts to listen longpoll.
Debug mode
For enable debug mode compile with -d:debug or --define:debug.