VKMania - A simple and lightweight framework for creating VK bots. At an early stage of development.
-
Using PIP:
Newest version:
pip install vkmania
Last stable release:
pip install vkmania===0.0.3
Python version - python 3+
from vkmania import Bot, ReplyMessage
bot = Bot(token = '...token...', group_id = 123...)
@bot.command(text = "hi")
async def test(msg:ReplyMessage):
await msg.reply("Oh, hello, hello!")
bot.start_longpoll()