Skip to content

Instantly share code, notes, and snippets.

View proguy914629bot's full-sized avatar
👨‍💻
Codin' stuff.

proguy914629 proguy914629bot

👨‍💻
Codin' stuff.
View GitHub Profile
@proguy914629bot
proguy914629bot / timezones.md
Created September 1, 2021 11:36
The list of time zones.

List of Timezones:

  • Africa/Abidjan
  • Africa/Accra
  • Africa/Addis_Ababa
  • Africa/Algiers
  • Africa/Asmara
  • Africa/Asmera
  • Africa/Bamako
  • Africa/Bangui
  • Africa/Banjul
@proguy914629bot
proguy914629bot / modal_implementation_example.py
Last active February 26, 2022 16:55 — forked from JeyyGit/modal_implementation_example.py
Rough implementation of modal in discord.py 2
import discord, secrets
class TextInput:
"""for storing our text input data"""
def __init__(self, payload):
self.type = payload['type']
self.custom_id = payload['custom_id']
self.style = payload['style']
self.label = payload['label']
self.min_length = payload.get('min_length')