Быстрый старт
from HalChat import HalChat
API_KEY = "YOUR_API_KEY"
hca = HalChat(API_KEY)
@hca.event('onNewMessage')
async def on_new_message(msg,isExistPassword):
if not isExistPassword:
return
await hca.send_message(msg['fromChat'] ,"Привет! Дублирую твоё сообщение: "+msg['message'])
hca.run()Last updated