Skip to content

An async library to easily create bots for the amino.

License

Notifications You must be signed in to change notification settings

lui-dias/Amsync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

An async library to easily create bots for the amino.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages