Metadata-Version: 2.1
Name: Amsync
Version: 0.0.2
Summary: An async library to easily create bots for the amino.
Home-page: https://github.com/ellandor/Amsync
Author: SempreLegit
License: MIT
Keywords: aminoapps,amino-py,amino,amino-bot,narvii,api,python,python3,python3.x,amino-async
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: aiohttp
Requires-Dist: aiofiles
Requires-Dist: ujson
Requires-Dist: pybase64
Requires-Dist: peewee
Requires-Dist: python-dotenv

Amsync
============

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

Installation
==========
```
pip install Asymc
```
<br>
<br>

Minimal example
==============

```py
from amsync import Bot, Message


bot = Bot('email', 'password', prefix='/')

@bot.on()
async def ready():
    print('Ready')

@bot.add()
async def hello(m: Message):
    await bot.send(m.nickname)

bot.run()
```
**[Incredible documentation to create beautiful bots](docs/docs.md)**

