Metadata-Version: 2.1
Name: AoiPy
Version: 0.9.1
Summary: Pycord made simple for learning
Home-page: UNKNOWN
Author: Jade
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: License.txt
Requires-Dist: Py-cord

# AoiPy - Discord.py made simple
Latest Update: 12/07/22
#### Version: 0.9.1
![AoiPY](https://github.com/LilbabxJJ-1/Aoipy/blob/master/aoipy/AOIpy%20(1).png)
### Using AoiPy
1 - `pip install AoiPy`

2 - Import Client and any other files

```python

from aoipy.Client import client
from aoipy.File import * 
```

3 -  Example:

```python

from aoipy.Client import *
from aoipy.Messages import *
from aoipy.Channels import *

# ---------------Imports--------------------
act = client.activity("tv", "watching")
bot = client.Bot(prefix="!", case_insensitive=False, intents=("all",), activity=act)
events = client.Events()

@events.onReady
def startup():
    print(f"{bot.user} is ready!")


@bot.command()
async def ping(ctx):
    await sendChannelMessage(ctx, "Pong!")


bot.run("*******<<TOKEN>>***********")
```

## New and still a work in progress


