A modern, elegant and fast Discord API client built with Python.
- π Modern async-first architecture
- π§© Clean and extensible API
- β‘ Fast dependency management with
uv - π‘οΈ Type-safe development workflow
- π§ͺ Built-in testing and linting support
git clone https://github.com/mrf0rtuna4/aeoncord.git
cd aeoncord
uv sync --all-extrasActivate the environment:
source .venv/bin/activateWindows:
.venv\Scripts\activategit clone https://github.com/mrf0rtuna4/aeoncord.git
cd aeoncord
python -m venv venv
source venv/bin/activate
# Windows: venv\Scripts\activate
pip install -e ".[dev]"Run checks locally:
ruff check .
ruff format --check .
mypy .
pytestOr with uv:
uv run ruff check .
uv run ruff format --check .
uv run mypy .
uv run pytestARR Β© mr_fortuna