kkrypt0nn /
Python-Discord-Bot-Template
🐍 A simple template to start to code your own and personalized Discord bot in Python
90/100 healthLoading repository data…
PythonistaGuild / repository
A simple to use interactive session and paginator with custom button support for discord.py.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A simple to use, highly customizable, Interactive Session and Paginator for discord.py. Still in early stages and undergoing rapid production. Feel free to suggest something via Discord.
For support using Buttons, please join the official support server <http://discord.gg/RAKc3HF>_ on Discord <https://discordapp.com/>_.
|Discord|
.. |Discord| image:: https://img.shields.io/discord/490948346773635102?color=%237289DA&label=Pythonista&logo=discord&logoColor=white :target: https://discord.gg/RAKc3HF
Buttons requires Python 3.6 or higher.
Windows
.. code:: sh
py -version -m pip install buttons
Linux
.. code:: sh
python3 -m pip install buttons
A quick and easy paginator example:
.. code:: py3
from discord.ext import commands
from discord.ext import buttons
class MyPaginator(buttons.Paginator):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
@buttons.button(emoji='\u23FA')
async def record_button(self, ctx, member):
await ctx.send('This button sends a silly message! But could be programmed to do much more.')
@buttons.button(emoji='my_custom_emoji:1234567890')
async def silly_button(self, ctx, member):
await ctx.send('Beep boop...')
bot = commands.Bot(command_prefix='??')
@bot.command()
async def test(ctx):
pagey = MyPaginator(title='Silly Paginator', colour=0xc67862, embed=True, timeout=90, use_defaults=True,
entries=[1, 2, 3], length=1, format='**')
await pagey.start(ctx)
@bot.event
async def on_ready():
print('Ready!')
bot.run('TOKEN')
Selected from shared topics, language and repository description—not editorial ratings.
kkrypt0nn /
🐍 A simple template to start to code your own and personalized Discord bot in Python
90/100 healthChocoMeow /
Vocard is a simple music bot. It leads to a comfortable experience which is user-friendly, It supports Youtube, Soundcloud, Spotify, Twitch and more!
86/100 healthmodmail-dev /
This is a simple viewer for Modmail logs. It is designed to be self-hosted alongside your Modmail bot instance, allowing you to view your logs in a web interface.
63/100 healthDhravya /
A simple discord bot that listens to voice channel and generates a transcript, then assigns tasks and summarises the conversation
58/100 healthmicfun123 /
An open-source discord that will eventually do everything a discord bot needs to do.
67/100 healthrempairamore /
Simple python script that syncs events from a Google Calendar to a Discord server
68/100 health