Metadata-Version: 2.4
Name: easycordx
Version: 0.1.0
Summary: A super beginner-friendly Python library for making Discord bots.
Author-email: LK-TEAM <unknownxd@email.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: disnake>=2.7.0

# easycordx 🤖

The Easiest Way to Make a Discord Bot in Python.

`easycord` is a library for absolute beginners who want to create a Discord bot without learning about decorators, `async`, or other advanced concepts first.

## Features

- **No `async/await` required:** Write your bot logic in standard, synchronous Python.
- **No decorators:** Use simple function calls like `bot.command(...)`.
- **One-Liner Commands:** `bot.command("ping", respond="Pong!")`
- **Simple Event Handling:** `bot.on("message", respond="Hello!", if_text="hi")`
- **Buttons Made Easy:** Add interactive buttons to your commands with one extra line of code.

## Installation

```bash
pip install easycord
