edamino
An unofficial python wrapper for the async Amino API, based off aiohttp.
Installing
pip install ed-amino
Example
from edamino import Bot, Context, logger
from edamino.objects import UserProfile
bot = Bot(email='email', password='password', prefix="/")
@bot.event()
async def on_ready(profile: UserProfile):
logger.info(f'{profile.nickname} ready')
@bot.command('ping')
async def echo(ctx: Context):
await ctx.reply('Pong!')
if __name__ == '__main__':
bot.start()
Examples
Contact
If you encounter a bug, please open an issue.
Translations
This README is available in other languages:
Only this README file is guaranteed to be up-to-date.