|
|
@ -20,16 +20,16 @@ logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s |
|
|
|
|
|
|
|
logger = logging.getLogger(__name__) |
|
|
|
|
|
|
|
with open("stoll.txt", "r") as tmp_file: |
|
|
|
with open("res/stoll.txt", "r") as tmp_file: |
|
|
|
STOLL = tmp_file.readlines() |
|
|
|
|
|
|
|
with open("manta.txt", "r") as tmp_file: |
|
|
|
with open("res/manta.txt", "r") as tmp_file: |
|
|
|
MANTA = tmp_file.readlines() |
|
|
|
|
|
|
|
with open("goodlife.txt", "r") as tmp_file: |
|
|
|
with open("res/goodlife.txt", "r") as tmp_file: |
|
|
|
GOOD_LIFE = tmp_file.readlines() |
|
|
|
|
|
|
|
with open("simon.txt", "r") as tmp_file: |
|
|
|
with open("res/simon.txt", "r") as tmp_file: |
|
|
|
SIMON = tmp_file.readlines() |
|
|
|
|
|
|
|
|
|
|
|