Skip to content
/ aicq Public

Is a simple and asynchronous framework for ICQ Bot API written in Python 3.9 with asyncio and aiohttp

Notifications You must be signed in to change notification settings

hdsujnb/aicq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

aICQ (asyncICQ)

Lightweight modern asynchronous framework for ICQ BOT API written in python.

Installation

pip install aicq

Examples

Echo bot

from aicq import Bot, Dispatcher, types

bot = Bot("TOKEN")
dp = Dispatcher(bot)

@dp.message_handler()
async def echo_handler(message: types.Message):
    await message.answer(message.text)

dp.start()

Official resources:

Developers

Helpers

About

Is a simple and asynchronous framework for ICQ Bot API written in Python 3.9 with asyncio and aiohttp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages