Initialise a production-ready Discord.py bot in just 4 lines of code. Smart and automated command syncing, preconditions (and its presets), easy-to-use in-Discord dashboard, and more. A Dopamine Studios project.
Project description
Beacon
Install • Features • Comparison • Quick Start • Report Bug
Beacon is an Unopinionated Framework for discord.py which allows you to initialise a production-ready Discord bot in just 4 lines of code. It is designed to streamline the development of scalable Discord applications by automating the process of registering commands and simplify the process of creating them, diagnosing the bot, and various other utilities such as a paginator helper and "Private View" helpers which let only the user who initiated the interaction to interact with the components like buttons.
A Dopamine Studios product.
Installing
Use Python 3.12 or higher:
# Linux/MacOS
python3 -m pip install -U discord-beacon
# Windows
py -3 -m pip install -U discord-beacon
Features
1. Smart Command Syncing
The framework includes a Command Registry that compares local command states with remote Discord API states. This ensures that global and guild-specific slash commands are only synced when changes are detected, preventing unnecessary API overhead and rate-limit triggers.
2. Beacon Commands decorator with Preconditions
The @beacon_commands.command decorator replaces the standard discord.py version, allowing you to define permissions and cooldowns in a single line.
- Simplified Syntax: Define name, description, permissions, and cooldowns within one decorator.
- Implicit Global Cooldown: Every command is protected by the bot's global rate limit by default.
- Group Support: Use
beacon_commands.Groupto apply permissions or cooldowns to an entire category of subcommands at once.
from beacon import beacon_commands
@beacon_commands.command(
name="ban",
permissions_preset="moderator",
global_cooldown=True
)
async def ban_member(interaction: discord.Interaction, member: discord.Member):
await member.ban()
await interaction.response.send_message(f"{member.display_name} has been banned.")
3. Precondition Decorators
If you prefer using standard app_commands, you can use the standalone @preconditions decorators to enforce rules dynamically.
- Permission Presets: Use pre-defined roles like
"admin","moderator", or"support"instead of manual permission bitfields. - Advanced Logic: Includes
has_permissions_any(pass if user has one of many) andhas_permissions(must have all). - Smart Rate Limiting: Easily implement command-specific or bot-wide global cooldowns to prevent spam.
| Preset | Required Permissions |
|---|---|
"bot_owner" |
Restricts usage to the bot owner/team owners. |
moderator |
Manage Messages, Kick Members, Ban Members |
admin |
Administrator |
giveaways |
Manage Guild, Manage Messages |
automation |
Manage Guild, Manage Messages, Manage Channels |
manager |
Manage Guild, Manage Roles, Manage Channels |
support |
Manage Messages, Read Message History |
security |
View Audit Log, Moderate Members |
community |
Manage Expressions, Manage Threads, Create Public Threads |
technical |
Manage Webhooks, Manage Guild |
4. In-Discord Owner Dashboard
No need for terminal access/SSH. This simple to use and feature-rich dashboard for bot owners allows you to unload/reload cogs on the fly, restart the bot, or check logs, accessed using /od. This allows bot owner(s) to manage, diagnose the bot right within Discord itself. This dashboard allows the bot to run idefinitely without restarts:
- Cog Management: Dynamic loading, unloading, and uploading/replacing of cogs.
- Power State: Remote shutdown and process-level restarts.
- Logs: Real-time retrieval of log files via the Discord UI.
- Manual Command Syncs: Sync commands manually globally or within only the current guild.
5. Diagnostics
The built-in Diagnostics "cog" (module) provides real-time monitoring of the bot's health, including:
- Latency: High precision API, Heartbeat, and Round-trip latency monitoring.
- Resource Utilization: CPU and RAM usage tracking via
psutil. - Graphs: Generate graphs for the bot's latency for visual performance auditing.
- Host Device Metrics: Integration with system sensors to report host location and battery status, if available.
6. Built-in Logging Backend
- A robust Logging Manager utilizing
aiosqlitethat can be plugged into any feature of your bot to implement a logging system, such as for mod logs, action logs, etc.
Comparison (with Sapphire Framework and standard discord.py)
| Feature | Beacon | Sapphire (js/ts) | discord.py |
|---|---|---|---|
| Easy Setup | ✅ (minimal boilerplate) |
❌ (Lots of boilerplate) |
❌ |
| Preconditions Support | ✅ | ✅ | ❌ |
| Presets for Permission Checks in Preconditions |
✅ | ❌ | ❌ |
| No tantrums over different structure | ✅ | ❌ | ✅ |
| Python's ease of use | ✅ | ❌ | ✅ |
| Smart Commands Sync | ✅ (Built-in) |
✅ (Through plugins) |
❌ (not included/standard) |
| In-Discord Dashboard | ✅ (Built-in) |
❌ | ❌ |
| Latency Graphs | ✅ (Built-in) |
❌ | ❌ |
| Scalability* | ✅ | ✅ | ✅ |
| Fast Iteration | ✅ | ❌ | ❌ |
| Strict TypeScript Rules | ❌ | ✅ | ❌ |
| Built-in Resource Monitoring | ✅ | ❌ | ❌ |
| Is it JS, tho? | ❌ | ✅ | ❌ |
| Wins Imaginary Benchmarks | ❌ | ✅ | ❌ |
*Scalability refers to ability to run without problems when the bot is in tens of thousands of servers or more. While it's a common myth that "Python is bloated", that's not true in the context of Discord bots. The real bottleneck in popular Discord bots always comes down to network, not code execution time or memory usage.
Implementation Example
To initialize a bot using the Beacon, follow the following example:
import discord
from beacon import Bot
bot = Bot(command_prefix="?", cogs_path="your cogs/modules folder path here*", logging_path="path to .sqlite, .db, or .db3 file; only define if you want to use this logging backend.", default_diagnostics=True, intents=discord.Intents.default()) # If no cogs folder is defined, it will default to "cogs". If no logging path, logging will be disabled.
bot.run("YOUR_BOT_TOKEN_HERE")
*Note: All .py files will be attempted to be loaded in the folder. It's recommended to only use the defined path for cogs/extensions/modules.
Requirements
discord.pyaiosqlitepsutilPillowgeocoder
License & Attribution
Beacon is licensed under the Apache License 2.0.
How to Credit
While you are free to use this framework for private or commercial bots, I require explicit credit. Please include a link to this repository or a mention of "Beacon" in:
- Your project's README or documentation.
- Your bot's info/credits command (for example
/aboutor/help).
Example: "Built with Beacon"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file discord_beacon-3.1.0.tar.gz.
File metadata
- Download URL: discord_beacon-3.1.0.tar.gz
- Upload date:
- Size: 180.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9fc7084bd7ce6705c71b733f885e2698831df1a7fa71c8b0e36c5ae35804dbd
|
|
| MD5 |
377a12ad1a4681dbf4c900d1745c9f58
|
|
| BLAKE2b-256 |
549652641ac91db8201e45515160a58c0454ff5f3c590d549ab5633921145830
|
Provenance
The following attestation bundles were made for discord_beacon-3.1.0.tar.gz:
Publisher:
publish.yml on DopamineStudios/beacon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
discord_beacon-3.1.0.tar.gz -
Subject digest:
c9fc7084bd7ce6705c71b733f885e2698831df1a7fa71c8b0e36c5ae35804dbd - Sigstore transparency entry: 1632823403
- Sigstore integration time:
-
Permalink:
DopamineStudios/beacon@46684478c2e31e60e960bdd4b5eb9f0ad113a670 -
Branch / Tag:
refs/tags/v3.1.0 - Owner: https://github.com/DopamineStudios
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@46684478c2e31e60e960bdd4b5eb9f0ad113a670 -
Trigger Event:
release
-
Statement type:
File details
Details for the file discord_beacon-3.1.0-py3-none-any.whl.
File metadata
- Download URL: discord_beacon-3.1.0-py3-none-any.whl
- Upload date:
- Size: 181.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec329c70fe6eaf283142b384957965c2affe174b5aca8cc8b7f6f337c7425e37
|
|
| MD5 |
a60b455d8e8fe74328f268066b2d8720
|
|
| BLAKE2b-256 |
e0b1871d24430d8c2419c301faee44b53d9d9c59d2d1ae4d8eaf1f22f92ef584
|
Provenance
The following attestation bundles were made for discord_beacon-3.1.0-py3-none-any.whl:
Publisher:
publish.yml on DopamineStudios/beacon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
discord_beacon-3.1.0-py3-none-any.whl -
Subject digest:
ec329c70fe6eaf283142b384957965c2affe174b5aca8cc8b7f6f337c7425e37 - Sigstore transparency entry: 1632823471
- Sigstore integration time:
-
Permalink:
DopamineStudios/beacon@46684478c2e31e60e960bdd4b5eb9f0ad113a670 -
Branch / Tag:
refs/tags/v3.1.0 - Owner: https://github.com/DopamineStudios
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@46684478c2e31e60e960bdd4b5eb9f0ad113a670 -
Trigger Event:
release
-
Statement type: