Skip to content

SvytDola/edamino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo. Created by Resq#5909

edamino

An unofficial python wrapper for the async Amino API, based off aiohttp.

PyPI PyPI - License

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.

About

Async api for amino

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages