Browse Source

project cleanup

master
Angerstoner 5 years ago
parent
commit
d602050152
  1. 1
      .gitignore
  2. 0
      misc/commandlist
  3. 0
      misc/requirements.txt
  4. 0
      reddit.py
  5. 0
      res/goodlife.txt
  6. 0
      res/manta.txt
  7. 0
      res/simon.txt
  8. 0
      res/stoll.txt
  9. 8
      schneiderbot.py

1
.gitignore

@ -2,6 +2,7 @@ token
prod_token
test_token
deaths.db
reddit_config
# ---> Python
# Byte-compiled / optimized / DLL files

0
commandlist → misc/commandlist

0
requirements.txt → misc/requirements.txt

0
reddit.py

0
goodlife.txt → res/goodlife.txt

0
manta.txt → res/manta.txt

0
simon.txt → res/simon.txt

0
stoll.txt → res/stoll.txt

8
schneiderbot.py

@ -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()

Loading…
Cancel
Save