Metadata-Version: 2.1
Name: corded
Version: 1.5.0
Summary: A lightweight, extensible client library for Discord bots
License: MIT
Author: vcokltfre
Author-email: vcokltfre@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: aiohttp (>=3.7.4,<4.0.0)
Description-Content-Type: text/markdown

# Corded

A lightweight, extensible client library for Discord bots

Example usage:
```py
from corded import CordedClient, GatewayEvent, Intents


bot = CordedClient("my_token", Intents.default())

@bot.on("message_create")
async def on_message_create(event: GatewayEvent) -> None:
    data = event.typed_data

    print(data["content"])

bot.start()
```

