An async library to easily create bots for the amino.


Keywords
aminoapps, amino-py, amino, amino-bot, narvii, api, python, python3, x, amino-async
License
MIT
Install
pip install Amsync==0.0.20

Documentation

Amsync

Created with the aim that, anyone with basic knowledge of python, create any bot without much difficulty

Installation

pip install Amsync


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()

Incredible documentation to create beautiful bots