Metadata-Version: 2.1
Name: AoiPy
Version: 0.8.30
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 (By being very specific) for learning
Latest Update: 12/05/22
#### Version: 0.8.30
![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.BotUser import client
from aoipy.File import * 
```

3 -  Example:

```python
from aoipy.BotUser import client
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)

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

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


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

## New and still a work in progress


