A Discord bot built in Python, designed to be easily extended with commands, events, and plugins for your server.
Requires Python 3.12/13
- Fully automated setup: dependencies and configuration handled on first startup
- Plugin system for adding/removing features without touching core code
- Supports prefix commands (and/or slash commands)
- Lightweight and suitable for hobby servers, small communities, or personal use
Before running the bot, you need:
- A Discord bot token from the Discord Developer Portal
- Your Discord user ID to set as the bot owner (for owner-only commands)
The bot will handle installing Python dependencies and generating its configuration on first run.
There are two ways to run PyBot:
- Go to the Releases page
- Download the main
main.pyfile - Run it:
python main.pyOn first startup, the bot will automatically:
- Install required Python packages
- Generate the configuration file
- Prompt you for the bot token and owner ID
- This method does not include any plugins by default, so you start with a clean setup.
# Clone the repository
git clone https://github.com/DEAMAJVA/PyBot.git
cd PyBot
# Start the bot
python main.pyThis method includes all officially made plugins which may be a overbloated bot for many which is why this method is not recommended for basic users.
To load plugins you just simply drop your plugin file in the plugins/ folder, make sure plugins is enabled in the bot config.
plugins allow you to add your own functionality to the bot without modifying the core and potentially risk breaking the bot or breaking your features in bot updates
This also gives the dev build rather than a release version
This project is licensed under the Apache License 2.0 — see the LICENSE file for details.
Copyright 2025 DEAMJAVA
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.