kkrypt0nn /
Python-Discord-Bot-Template
🐍 A simple template to start to code your own and personalized Discord bot in Python
Loading repository data…
ButternCream / repository
Simple discord bot to post any new songs added to a spotify playlist. Fetches every X seconds because Spotify doesnt have webhooks yet.
!help - As you'd expect
!track <playlist-id> <playlist-id> ... - Will post new songs added to the playlist in the discord channel you use this command in (see below)
!tracking - List the names and ids of what the current channel is tracking
!stop <id> - Stop the current channel from tracking anything or a specific playlist if the id from !tracking is specified
!purgeme - Removes ALL of your tracking entries in the database
!link <id> - Get the link of a playlist you are tracking. Get id from !tracking
!random <id> - Gets a random song from the playlist specified. id can be from !tracking or the playlists id
Until I figure out a better way of handling permissions, this is how it works so everyone cant !track
import os
import pytz
client_id = 'SPOTIFY_CLIENT_ID'
client_secret = 'SPOTIFY_SECRET'
spotty_token = 'BOT_TOKEN'
delay = 30
db_location = r'db/spotty.db' # Local db
spotify_user_id = 'your user id'
old_time = pytz.timezone("UTC") # Spotify's timestamps
new_time = pytz.timezone("America/Los_Angeles") # Your timezone

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
AlexFlipnote /
🍺 A simple discord bot that helps you getting started within discord.py
ChocoMeow /
Vocard is a simple music bot. It leads to a comfortable experience which is user-friendly, It supports Youtube, Soundcloud, Spotify, Twitch and more!
AlexFlipnote /
Pretty simple Discord bot to get the active developer badge
tandemdude /
Simple, elegant and powerful command handler for the Python Discord library, Hikari.
passivebot /
This repository hosts the Midjourney Automation Bot, a free script leveraging OpenAI's GPT-3 for automated image generation via Discord. It offers a simple web interface, customizable settings, and is MIT licensed for ease of use and adaptation.