Moved region dict and function to retrieve region with emoji into functions.py

pull/9/head
sgoudham 4 years ago
parent 0e005a43da
commit 5099c0a76f

@ -28,7 +28,7 @@ from discord.ext.commands import BucketType, cooldown, bot_has_permissions, guil
from discord.ext.commands import command from discord.ext.commands import command
from psutil import Process, virtual_memory from psutil import Process, virtual_memory
from cogs.libs.functions import string_list from cogs.libs.functions import string_list, get_region
from cogs.libs.paginators import SimpleMenu from cogs.libs.paginators import SimpleMenu
# Using frozenset # Using frozenset
@ -55,37 +55,6 @@ Perms = frozenset(
} }
) )
region = {
"eu-central": ":flag_eu: Central Europe",
"europe": ":flag_eu: Central Europe",
"singapore": ":flag_sg: Singapore",
"india": ":flag_in: India",
"japan": ":flag_jp: Japan",
"us-central": ":flag_us: U.S. Central",
"sydney": ":flag_au: Sydney",
"us-east": ":flag_us: U.S. East",
"us-south": ":flag_us: U.S. South",
"us-west": ":flag_us: U.S. West",
"eu-west": ":flag_eu: Western Europe",
"vip-us-east": ":flag_us: VIP U.S. East",
"london": ":flag_gb: London",
"amsterdam": ":flag_nl: Amsterdam",
"hongkong": ":flag_hk: Hong Kong",
"russia": ":flag_ru: Russia",
"southafrica": ":flag_za: South Africa",
"brazil": ":flag_br: Brazil"
}
def get_region(disc_region, region_dict):
"""Return Nicer Looking Region String"""
for key in region_dict:
if key == disc_region:
return region_dict[key]
else:
pass
def add_perms(embed, _list): def add_perms(embed, _list):
"""Add all the permission in the list to embed fields""" """Add all the permission in the list to embed fields"""
@ -344,7 +313,7 @@ class Info(Cog):
# Define fields to be added into the embed # Define fields to be added into the embed
fields = [("Owner", ctx.guild.owner.mention, True), fields = [("Owner", ctx.guild.owner.mention, True),
("Created", ctx.guild.created_at.strftime("%a, %b %d, %Y\n%I:%M:%S %p"), False), ("Created", ctx.guild.created_at.strftime("%a, %b %d, %Y\n%I:%M:%S %p"), False),
("Region", get_region(str(ctx.guild.region), region), False), ("Region", get_region(str(ctx.guild.region)), False),
("Statuses", f"<a:online:753214525272096831> {statuses[0]} " ("Statuses", f"<a:online:753214525272096831> {statuses[0]} "
f"<a:idle:753214548756004924> {statuses[1]} " f"<a:idle:753214548756004924> {statuses[1]} "
f"<a:dnd:753214555999567953> {statuses[2]} " f"<a:dnd:753214555999567953> {statuses[2]} "

@ -24,3 +24,34 @@ def string_list(types, n, instance):
string = f"{' **|** '.join(role.mention for role in list(reversed(types)))}" string = f"{' **|** '.join(role.mention for role in list(reversed(types)))}"
return string return string
# List of regions mapped to emojis
region = {
"eu-central": ":flag_eu: Central Europe",
"europe": ":flag_eu: Central Europe",
"singapore": ":flag_sg: Singapore",
"india": ":flag_in: India",
"japan": ":flag_jp: Japan",
"us-central": ":flag_us: U.S. Central",
"sydney": ":flag_au: Sydney",
"us-east": ":flag_us: U.S. East",
"us-south": ":flag_us: U.S. South",
"us-west": ":flag_us: U.S. West",
"eu-west": ":flag_eu: Western Europe",
"vip-us-east": ":flag_us: VIP U.S. East",
"london": ":flag_gb: London",
"amsterdam": ":flag_nl: Amsterdam",
"hongkong": ":flag_hk: Hong Kong",
"russia": ":flag_ru: Russia",
"southafrica": ":flag_za: South Africa",
"brazil": ":flag_br: Brazil"
}
def get_region(disc_region):
"""Return Nicer Looking Region String"""
for key in region:
if key == disc_region:
return region[key]

Loading…
Cancel
Save