Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Latest commit

 

History

History
42 lines (26 loc) · 1.24 KB

File metadata and controls

42 lines (26 loc) · 1.24 KB

disckit-example-bot

Python

This is a simple example bot built to demonstrate how to integrate and use disckit in a Python Discord bot project.

💡 What is this?

This repository provides a reference implementation for using disckit in a clean, minimal setup. It’s recommended for developers already familiar with or using the discord.py (dpy) library.

📦 Requirements

  • Python 3.11 or 3.12
  • discord.py
  • disckit
  • uv for dependency management (optional, but recommended)

💡 Want a deeper guide on using uv, setting up projects, or managing dependencies? Check out the Project-Management repository — it covers these workflows in more detail.

🚀 Getting Started

Clone this repo and install the requirements:

pip install uv

Sync dependencies using:

uv sync

Then run the bot:

uv run main.py

Alt