Metadata-Version: 2.1
Name: discord.wrapper
Version: 0.2.2
Summary: An API wrapper for discord.
Home-page: https://github.com/FrostiiWeeb/discord.wrapper
Author: Alex Hutz
Author-email: frostiiweeb@gmail.com
License: MIT
Project-URL: Documentation, https://discordwrapper.readthedocs.io/en/latest
Project-URL: Issue Tracker, https://github.com/FrostiiWeeb/discord.wrapper/issues
Keywords: discord
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.5.3
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (>=3.7.3)

# discord.wrapper
<a href="https://pypi.org/project/discord.wrapper" traget="_blank">
    <img alt="PyPI - Version" src="https://img.shields.io/pypi/v/discord.wrapper">
</a>

<a href="https://pypi.org/project/discord.wrapper" traget="_blank">
	<img alt="PyPI - Downloads" src="https://pepy.tech/badge/discord.wrapper">
</a>

<a href="https://pypi.org/project/discord.wrapper" traget="_blank">
    <img alt="PyPI - Supported Python Versions" src="https://img.shields.io/pypi/pyversions/discord.wrapper.svg">
</a>

<a href="https://discordwrapper.readthedocs.io/en/latest" traget="_blank">
    <img alt="PyPI - Documentation" src="https://readthedocs.org/projects/discordwrapper/badge/?version=master">
</a>  

<a href="https://pypi.org/project/discord.wrapper" traget="_blank">
    <img alt="PyPI - License" src="https://img.shields.io/github/license/FrostiiWeeb/discord.wrapper">
</a>

An wrapper wrapper for discord wich uses `async` and `await`.

# How to install

```shell
python3 -m pip install discord.wrapper
```

## Bot Example
```python
from discord import wrapper

bot = wrapper.Bot(token="Your Bot Token")

bot.run()
```

## Subclassed Bot

```python
from discord import wrapper

class MyBot(wrapper.Bot):
	def __init__(self, *args, **kwargs):
		super().__init__(*args, **kwargs)

bot = MyBot(token="Your Bot Token")

bot.run()
```

# Links:
• [Official Support Server](https://discord.gg/Ns5W4pqguE)

