Amsync
An async library to easily create bots for the amino.
Install / Use
/learn @lui-dias/AmsyncREADME
Amsync
Created with the aim that, anyone with basic knowledge of python, create any bot without much difficulty <br> <br>
Installation
pip install Amsync
<br>
<br>
Minimal example
from amsync import Bot, Msg
bot = Bot('email', 'password', prefix='/')
@bot.on()
async def ready():
print('Ready')
@bot.add()
async def hi(m: Msg):
await bot.send(f'Hi {m.nickname}')
bot.run()
