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 ---
|
# --- Common values ---
|
||||||
|
|
||||||
colours = SimpleNamespace(good=0x43B581,
|
colours = SimpleNamespace(
|
||||||
|
good=0x43B581,
|
||||||
neutral=0x7289DA,
|
neutral=0x7289DA,
|
||||||
bad=0xF04747)
|
bad=0xF04747,
|
||||||
|
)
|
||||||
|
|
||||||
# meow
|
# meow
|
||||||
cat = SimpleNamespace(lookup="Information Lookup",
|
cat = SimpleNamespace(
|
||||||
|
lookup="Information Lookup",
|
||||||
fun="Fun",
|
fun="Fun",
|
||||||
maps="Mapping",
|
maps="Mapping",
|
||||||
ref="Reference",
|
ref="Reference",
|
||||||
study="Exam Study",
|
study="Exam Study",
|
||||||
weather="Land and Space Weather",
|
weather="Land and Space Weather",
|
||||||
admin="Bot Control")
|
admin="Bot Control",
|
||||||
|
)
|
||||||
|
|
||||||
emojis = SimpleNamespace(check_mark="✅",
|
emojis = SimpleNamespace(
|
||||||
|
check_mark="✅",
|
||||||
x="❌",
|
x="❌",
|
||||||
warning="⚠️",
|
warning="⚠️",
|
||||||
question="❓",
|
question="❓",
|
||||||
@ -51,12 +57,15 @@ emojis = SimpleNamespace(check_mark="✅",
|
|||||||
a="🇦",
|
a="🇦",
|
||||||
b="🇧",
|
b="🇧",
|
||||||
c="🇨",
|
c="🇨",
|
||||||
d="🇩")
|
d="🇩",
|
||||||
|
)
|
||||||
|
|
||||||
paths = SimpleNamespace(data=Path("./data/"),
|
paths = SimpleNamespace(
|
||||||
|
data=Path("./data/"),
|
||||||
resources=Path("./resources/"),
|
resources=Path("./resources/"),
|
||||||
bandcharts=Path("./resources/img/bandcharts/"),
|
bandcharts=Path("./resources/img/bandcharts/"),
|
||||||
maps=Path("./resources/img/maps/"))
|
maps=Path("./resources/img/maps/"),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
# --- Classes ---
|
# --- 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
|
This file is part of discord-qrmbot and is released under the terms of the GNU
|
||||||
General Public License, version 2.
|
General Public License, version 2.
|
||||||
"""
|
"""
|
||||||
morse = {"A": ".-", "B": "-...", "C": "-.-.", "D": "-..", "E": ".", "F": "..-.", "G": "--.",
|
morse = {
|
||||||
"H": "....", "I": "..", "J": ".---", "K": "-.-", "L": ".-..", "M": "--", "N": "-.",
|
"A": ".-",
|
||||||
"O": "---", "P": ".--.", "Q": "--.-", "R": ".-.", "S": "...", "T": "-", "U": "..-",
|
"B": "-...",
|
||||||
"V": "...-", "W": ".--", "X": "-..-", "Y": "-.--", "Z": "--..", "1": ".----",
|
"C": "-.-.",
|
||||||
"2": "..---", "3": "...--", "4": "....-", "5": ".....", "6": "-....", "7": "--...",
|
"D": "-..",
|
||||||
"8": "---..", "9": "----.", "0": "-----", ".": ".-.-.-", ",": "--..--", "?": "..--..",
|
"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",
|
ascii = {
|
||||||
"....": "H", "..": "I", ".---": "J", "-.-": "K", ".-..": "L", "--": "M", "-.": "N",
|
".-": "A",
|
||||||
"---": "O", ".--.": "P", "--.-": "Q", ".-.": "R", "...": "S", "-": "T", "..-": "U",
|
"-...": "B",
|
||||||
"...-": "V", ".--": "W", "-..-": "X", "-.--": "Y", "--..": "Z", ".----": "1",
|
"-.-.": "C",
|
||||||
"..---": "2", "...--": "3", "....-": "4", ".....": "5", "-....": "6", "--...": "7",
|
"-..": "D",
|
||||||
"---..": "8", "----.": "9", "-----": "0", ".-.-.-": ".", "--..--": ",", "..--..": "?",
|
".": "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.
|
General Public License, version 2.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
phonetics = {"a": "alfa", "b": "bravo", "c": "charlie", "d": "delta", "e": "echo", "f": "foxtrot",
|
phonetics = {
|
||||||
"g": "golf", "h": "hotel", "i": "india", "j": "juliett", "k": "kilo", "l": "lima",
|
"a": "alfa",
|
||||||
"m": "mike", "n": "november", "o": "oscar", "p": "papa", "q": "quebec", "r": "romeo",
|
"b": "bravo",
|
||||||
"s": "sierra", "t": "tango", "u": "uniform", "v": "victor", "w": "whiskey", "x": "x-ray",
|
"c": "charlie",
|
||||||
"y": "yankee", "z": "zulu"}
|
"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.
|
General Public License, version 2.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
pool_names = {"us": {"technician": "E2",
|
pool_names = {
|
||||||
|
"us": {
|
||||||
|
"technician": "E2",
|
||||||
"tech": "E2",
|
"tech": "E2",
|
||||||
"t": "E2",
|
"t": "E2",
|
||||||
"general": "E3",
|
"general": "E3",
|
||||||
"gen": "E3",
|
"gen": "E3",
|
||||||
"g": "E3",
|
"g": "E3",
|
||||||
"extra": "E4",
|
"extra": "E4",
|
||||||
"e": "E4"},
|
"e": "E4",
|
||||||
"ca": {"basic": "CA_B",
|
},
|
||||||
|
"ca": {
|
||||||
|
"basic": "CA_B",
|
||||||
"b": "CA_B",
|
"b": "CA_B",
|
||||||
"advanced": "CA_A",
|
"advanced": "CA_A",
|
||||||
"adv": "CA_A",
|
"adv": "CA_A",
|
||||||
@ -28,8 +32,10 @@ pool_names = {"us": {"technician": "E2",
|
|||||||
"a_fr": "CA_FS",
|
"a_fr": "CA_FS",
|
||||||
"supérieure": "CA_FS",
|
"supérieure": "CA_FS",
|
||||||
"superieure": "CA_FS",
|
"superieure": "CA_FS",
|
||||||
"s": "CA_FS"},
|
"s": "CA_FS",
|
||||||
"us_c": {"c1": "C1",
|
},
|
||||||
|
"us_c": {
|
||||||
|
"c1": "C1",
|
||||||
"comm1": "C1",
|
"comm1": "C1",
|
||||||
"c3": "C3",
|
"c3": "C3",
|
||||||
"comm3": "C3",
|
"comm3": "C3",
|
||||||
@ -42,8 +48,12 @@ pool_names = {"us": {"technician": "E2",
|
|||||||
"c8": "C8",
|
"c8": "C8",
|
||||||
"comm8": "C8",
|
"comm8": "C8",
|
||||||
"c9": "C9",
|
"c9": "C9",
|
||||||
"comm9": "C9"}}
|
"comm9": "C9",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
pool_emojis = {"us": "🇺🇸",
|
pool_emojis = {
|
||||||
|
"us": "🇺🇸",
|
||||||
"ca": "🇨🇦",
|
"ca": "🇨🇦",
|
||||||
"us_c": "🇺🇸 🏢"}
|
"us_c": "🇺🇸 🏢",
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user