mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 14:27:11 -04:00
Block-style line continuations for data
Element of #142 New year lint removal
This commit is contained in:
parent
29d0440d3d
commit
56b74108eb
25
common.py
25
common.py
@ -30,19 +30,25 @@ __all__ = ["colours", "cat", "emojis", "paths", "ImageMetadata", "ImagesGroup",
|
||||
|
||||
# --- Common values ---
|
||||
|
||||
colours = SimpleNamespace(good=0x43B581,
|
||||
colours = SimpleNamespace(
|
||||
good=0x43B581,
|
||||
neutral=0x7289DA,
|
||||
bad=0xF04747)
|
||||
bad=0xF04747,
|
||||
)
|
||||
|
||||
# meow
|
||||
cat = SimpleNamespace(lookup="Information Lookup",
|
||||
cat = SimpleNamespace(
|
||||
lookup="Information Lookup",
|
||||
fun="Fun",
|
||||
maps="Mapping",
|
||||
ref="Reference",
|
||||
study="Exam Study",
|
||||
weather="Land and Space Weather",
|
||||
admin="Bot Control")
|
||||
admin="Bot Control",
|
||||
)
|
||||
|
||||
emojis = SimpleNamespace(check_mark="✅",
|
||||
emojis = SimpleNamespace(
|
||||
check_mark="✅",
|
||||
x="❌",
|
||||
warning="⚠️",
|
||||
question="❓",
|
||||
@ -51,12 +57,15 @@ emojis = SimpleNamespace(check_mark="✅",
|
||||
a="🇦",
|
||||
b="🇧",
|
||||
c="🇨",
|
||||
d="🇩")
|
||||
d="🇩",
|
||||
)
|
||||
|
||||
paths = SimpleNamespace(data=Path("./data/"),
|
||||
paths = SimpleNamespace(
|
||||
data=Path("./data/"),
|
||||
resources=Path("./resources/"),
|
||||
bandcharts=Path("./resources/img/bandcharts/"),
|
||||
maps=Path("./resources/img/maps/"))
|
||||
maps=Path("./resources/img/maps/"),
|
||||
)
|
||||
|
||||
|
||||
# --- Classes ---
|
||||
|
@ -6,24 +6,129 @@ Copyright (C) 2019-2020 Abigail Gold, 0x5c
|
||||
This file is part of discord-qrmbot and is released under the terms of the GNU
|
||||
General Public License, version 2.
|
||||
"""
|
||||
morse = {"A": ".-", "B": "-...", "C": "-.-.", "D": "-..", "E": ".", "F": "..-.", "G": "--.",
|
||||
"H": "....", "I": "..", "J": ".---", "K": "-.-", "L": ".-..", "M": "--", "N": "-.",
|
||||
"O": "---", "P": ".--.", "Q": "--.-", "R": ".-.", "S": "...", "T": "-", "U": "..-",
|
||||
"V": "...-", "W": ".--", "X": "-..-", "Y": "-.--", "Z": "--..", "1": ".----",
|
||||
"2": "..---", "3": "...--", "4": "....-", "5": ".....", "6": "-....", "7": "--...",
|
||||
"8": "---..", "9": "----.", "0": "-----", ".": ".-.-.-", ",": "--..--", "?": "..--..",
|
||||
"'": ".----.", "!": "-.-.--", "/": "-..-.", "(": "-.--.", ")": "-.--.-", "&": ".-...",
|
||||
":": "---...", ";": "-.-.-.", "=": "-...-", "+": ".-.-.", "-": "-....-", "\"": ".-..-.",
|
||||
"@": ".--.-.", "Ä": ".-.-", "Å": ".-.-", "Ą": ".-.-", "Æ": ".-.-", "É": "..-..",
|
||||
"Ñ": "--.--", "Ö": "---.", "Ü": "..--", "Š": "----", " ": "/"}
|
||||
morse = {
|
||||
"A": ".-",
|
||||
"B": "-...",
|
||||
"C": "-.-.",
|
||||
"D": "-..",
|
||||
"E": ".",
|
||||
"F": "..-.",
|
||||
"G": "--.",
|
||||
"H": "....",
|
||||
"I": "..",
|
||||
"J": ".---",
|
||||
"K": "-.-",
|
||||
"L": ".-..",
|
||||
"M": "--",
|
||||
"N": "-.",
|
||||
"O": "---",
|
||||
"P": ".--.",
|
||||
"Q": "--.-",
|
||||
"R": ".-.",
|
||||
"S": "...",
|
||||
"T": "-",
|
||||
"U": "..-",
|
||||
"V": "...-",
|
||||
"W": ".--",
|
||||
"X": "-..-",
|
||||
"Y": "-.--",
|
||||
"Z": "--..",
|
||||
"1": ".----",
|
||||
"2": "..---",
|
||||
"3": "...--",
|
||||
"4": "....-",
|
||||
"5": ".....",
|
||||
"6": "-....",
|
||||
"7": "--...",
|
||||
"8": "---..",
|
||||
"9": "----.",
|
||||
"0": "-----",
|
||||
".": ".-.-.-",
|
||||
",": "--..--",
|
||||
"?": "..--..",
|
||||
"'": ".----.",
|
||||
"!": "-.-.--",
|
||||
"/": "-..-.",
|
||||
"(": "-.--.",
|
||||
")": "-.--.-",
|
||||
"&": ".-...",
|
||||
":": "---...",
|
||||
";": "-.-.-.",
|
||||
"=": "-...-",
|
||||
"+": ".-.-.",
|
||||
"-": "-....-",
|
||||
"\"": ".-..-.",
|
||||
"@": ".--.-.",
|
||||
"Ä": ".-.-",
|
||||
"Å": ".-.-",
|
||||
"Ą": ".-.-",
|
||||
"Æ": ".-.-",
|
||||
"É": "..-..",
|
||||
"Ñ": "--.--",
|
||||
"Ö": "---.",
|
||||
"Ü": "..--",
|
||||
"Š": "----",
|
||||
" ": "/"
|
||||
}
|
||||
|
||||
ascii = {".-": "A", "-...": "B", "-.-.": "C", "-..": "D", ".": "E", "..-.": "F", "--.": "G",
|
||||
"....": "H", "..": "I", ".---": "J", "-.-": "K", ".-..": "L", "--": "M", "-.": "N",
|
||||
"---": "O", ".--.": "P", "--.-": "Q", ".-.": "R", "...": "S", "-": "T", "..-": "U",
|
||||
"...-": "V", ".--": "W", "-..-": "X", "-.--": "Y", "--..": "Z", ".----": "1",
|
||||
"..---": "2", "...--": "3", "....-": "4", ".....": "5", "-....": "6", "--...": "7",
|
||||
"---..": "8", "----.": "9", "-----": "0", ".-.-.-": ".", "--..--": ",", "..--..": "?",
|
||||
".----.": "'", "-.-.--": "!", "-..-.": "/", "-.--.": "(", "-.--.-": ")", ".-...": "&",
|
||||
"---...": ":", "-.-.-.": ";", "-...-": "=", ".-.-.": "+", "-....-": "-", ".-..-.": "\"",
|
||||
".--.-.": "@", ".-.-": "Ä", "..-..": "É", "--.--": "Ñ", "---.": "Ö", "..--": "Ü",
|
||||
"----": "Š", "/": " "}
|
||||
ascii = {
|
||||
".-": "A",
|
||||
"-...": "B",
|
||||
"-.-.": "C",
|
||||
"-..": "D",
|
||||
".": "E",
|
||||
"..-.": "F",
|
||||
"--.": "G",
|
||||
"....": "H",
|
||||
"..": "I",
|
||||
".---": "J",
|
||||
"-.-": "K",
|
||||
".-..": "L",
|
||||
"--": "M",
|
||||
"-.": "N",
|
||||
"---": "O",
|
||||
".--.": "P",
|
||||
"--.-": "Q",
|
||||
".-.": "R",
|
||||
"...": "S",
|
||||
"-": "T",
|
||||
"..-": "U",
|
||||
"...-": "V",
|
||||
".--": "W",
|
||||
"-..-": "X",
|
||||
"-.--": "Y",
|
||||
"--..": "Z",
|
||||
".----": "1",
|
||||
"..---": "2",
|
||||
"...--": "3",
|
||||
"....-": "4",
|
||||
".....": "5",
|
||||
"-....": "6",
|
||||
"--...": "7",
|
||||
"---..": "8",
|
||||
"----.": "9",
|
||||
"-----": "0",
|
||||
".-.-.-": ".",
|
||||
"--..--": ",",
|
||||
"..--..": "?",
|
||||
".----.": "'",
|
||||
"-.-.--": "!",
|
||||
"-..-.": "/",
|
||||
"-.--.": "(",
|
||||
"-.--.-": ")",
|
||||
".-...": "&",
|
||||
"---...": ":",
|
||||
"-.-.-.": ";",
|
||||
"-...-": "=",
|
||||
".-.-.": "+",
|
||||
"-....-": "-",
|
||||
".-..-.": "\"",
|
||||
".--.-.": "@",
|
||||
".-.-": "Ä",
|
||||
"..-..": "É",
|
||||
"--.--": "Ñ",
|
||||
"---.": "Ö",
|
||||
"..--": "Ü",
|
||||
"----": "Š",
|
||||
"/": " "
|
||||
}
|
||||
|
@ -7,8 +7,31 @@ This file is part of discord-qrmbot and is released under the terms of the GNU
|
||||
General Public License, version 2.
|
||||
"""
|
||||
|
||||
phonetics = {"a": "alfa", "b": "bravo", "c": "charlie", "d": "delta", "e": "echo", "f": "foxtrot",
|
||||
"g": "golf", "h": "hotel", "i": "india", "j": "juliett", "k": "kilo", "l": "lima",
|
||||
"m": "mike", "n": "november", "o": "oscar", "p": "papa", "q": "quebec", "r": "romeo",
|
||||
"s": "sierra", "t": "tango", "u": "uniform", "v": "victor", "w": "whiskey", "x": "x-ray",
|
||||
"y": "yankee", "z": "zulu"}
|
||||
phonetics = {
|
||||
"a": "alfa",
|
||||
"b": "bravo",
|
||||
"c": "charlie",
|
||||
"d": "delta",
|
||||
"e": "echo",
|
||||
"f": "foxtrot",
|
||||
"g": "golf",
|
||||
"h": "hotel",
|
||||
"i": "india",
|
||||
"j": "juliett",
|
||||
"k": "kilo",
|
||||
"l": "lima",
|
||||
"m": "mike",
|
||||
"n": "november",
|
||||
"o": "oscar",
|
||||
"p": "papa",
|
||||
"q": "quebec",
|
||||
"r": "romeo",
|
||||
"s": "sierra",
|
||||
"t": "tango",
|
||||
"u": "uniform",
|
||||
"v": "victor",
|
||||
"w": "whiskey",
|
||||
"x": "x-ray",
|
||||
"y": "yankee",
|
||||
"z": "zulu"
|
||||
}
|
||||
|
@ -7,15 +7,19 @@ This file is part of discord-qrmbot and is released under the terms of the GNU
|
||||
General Public License, version 2.
|
||||
"""
|
||||
|
||||
pool_names = {"us": {"technician": "E2",
|
||||
pool_names = {
|
||||
"us": {
|
||||
"technician": "E2",
|
||||
"tech": "E2",
|
||||
"t": "E2",
|
||||
"general": "E3",
|
||||
"gen": "E3",
|
||||
"g": "E3",
|
||||
"extra": "E4",
|
||||
"e": "E4"},
|
||||
"ca": {"basic": "CA_B",
|
||||
"e": "E4",
|
||||
},
|
||||
"ca": {
|
||||
"basic": "CA_B",
|
||||
"b": "CA_B",
|
||||
"advanced": "CA_A",
|
||||
"adv": "CA_A",
|
||||
@ -28,8 +32,10 @@ pool_names = {"us": {"technician": "E2",
|
||||
"a_fr": "CA_FS",
|
||||
"supérieure": "CA_FS",
|
||||
"superieure": "CA_FS",
|
||||
"s": "CA_FS"},
|
||||
"us_c": {"c1": "C1",
|
||||
"s": "CA_FS",
|
||||
},
|
||||
"us_c": {
|
||||
"c1": "C1",
|
||||
"comm1": "C1",
|
||||
"c3": "C3",
|
||||
"comm3": "C3",
|
||||
@ -42,8 +48,12 @@ pool_names = {"us": {"technician": "E2",
|
||||
"c8": "C8",
|
||||
"comm8": "C8",
|
||||
"c9": "C9",
|
||||
"comm9": "C9"}}
|
||||
"comm9": "C9",
|
||||
},
|
||||
}
|
||||
|
||||
pool_emojis = {"us": "🇺🇸",
|
||||
pool_emojis = {
|
||||
"us": "🇺🇸",
|
||||
"ca": "🇨🇦",
|
||||
"us_c": "🇺🇸 🏢"}
|
||||
"us_c": "🇺🇸 🏢",
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user