mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 22:37:11 -04:00
fdfc8cce06
Element of #142 New year lint removal
137 lines
2.3 KiB
Python
137 lines
2.3 KiB
Python
"""
|
|
A listing of morse code symbols
|
|
---
|
|
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": "-----",
|
|
".": ".-.-.-",
|
|
",": "--..--",
|
|
"?": "..--..",
|
|
"'": ".----.",
|
|
"!": "-.-.--",
|
|
"/": "-..-.",
|
|
"(": "-.--.",
|
|
")": "-.--.-",
|
|
"&": ".-...",
|
|
":": "---...",
|
|
";": "-.-.-.",
|
|
"=": "-...-",
|
|
"+": ".-.-.",
|
|
"-": "-....-",
|
|
"\"": ".-..-.",
|
|
"@": ".--.-.",
|
|
"Ä": ".-.-",
|
|
"Å": ".-.-",
|
|
"Ą": ".-.-",
|
|
"Æ": ".-.-",
|
|
"É": "..-..",
|
|
"Ñ": "--.--",
|
|
"Ö": "---.",
|
|
"Ü": "..--",
|
|
"Š": "----",
|
|
" ": "/"
|
|
}
|
|
|
|
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",
|
|
".-.-.-": ".",
|
|
"--..--": ",",
|
|
"..--..": "?",
|
|
".----.": "'",
|
|
"-.-.--": "!",
|
|
"-..-.": "/",
|
|
"-.--.": "(",
|
|
"-.--.-": ")",
|
|
".-...": "&",
|
|
"---...": ":",
|
|
"-.-.-.": ";",
|
|
"-...-": "=",
|
|
".-.-.": "+",
|
|
"-....-": "-",
|
|
".-..-.": "\"",
|
|
".--.-.": "@",
|
|
".-.-": "Ä",
|
|
"..-..": "É",
|
|
"--.--": "Ñ",
|
|
"---.": "Ö",
|
|
"..--": "Ü",
|
|
"----": "Š",
|
|
"/": " "
|
|
}
|