Metadata-Version: 2.1
Name: bhaicord.py
Version: 0.0.2
Summary: A discord API wrapper for python
Download-URL: https://github.com/himangshu147-git/bhaicord.py/archive/refs/tags/bhaicord.py.tar.gz
Author: Your Name
Author-email: 147.himangshu@gmail.com
License: MIT
Project-URL: Documentation, https://github.com/himangshu147-git/bhaicord.py
Project-URL: Issue tracker, https://github.com/himangshu147-git/bhaicord.py/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: aiohttp>=3.8.4
Requires-Dist: async-timeout<5.0,>=4.0; python_version < "3.11"

# bhaicord.py

### A simple discord api wrapper made in python

## Installation

```bash
pip install bhaicord.py
# or
pip install git+https://github.com/himangshu147-git/bhaicord.py.git
```

## Usage

```python
import bhaicord
from bhaicord import Client, Intents

client = Client(intents=Intents.all())


@client.event
async def on_ready(event):
    print("Bot is ready")


@client.event
async def message_create(msg: bhaicord.Message):
    if msg.content.startswith("test"):
        await msg.send("it works fine")

client.run("TOKEN")
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

## License

[MIT](https://choosealicense.com/licenses/mit/)
