Metadata-Version: 2.1
Name: Amsync
Version: 0.0.49
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: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Amsync

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

# Installation

```
pip install Amsync
```
<br>
<br>

# Minimal example

```py
from amsync import Bot, Msg


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

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

@bot.add()
async def hello(m: Msg):
    await bot.send(f'Hello {m.nickname}')

bot.run()
```
**[Incredible documentation to create beautiful bots](https://github.com/ellandor/Amsync/blob/main/docs/docs.md)**

