diff --git a/.gitignore b/.gitignore index da3a307..866ed33 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ token prod_token test_token deaths.db +reddit_config # ---> Python # Byte-compiled / optimized / DLL files diff --git a/commandlist b/misc/commandlist similarity index 100% rename from commandlist rename to misc/commandlist diff --git a/requirements.txt b/misc/requirements.txt similarity index 100% rename from requirements.txt rename to misc/requirements.txt diff --git a/reddit.py b/reddit.py new file mode 100644 index 0000000..e69de29 diff --git a/goodlife.txt b/res/goodlife.txt similarity index 100% rename from goodlife.txt rename to res/goodlife.txt diff --git a/manta.txt b/res/manta.txt similarity index 100% rename from manta.txt rename to res/manta.txt diff --git a/simon.txt b/res/simon.txt similarity index 100% rename from simon.txt rename to res/simon.txt diff --git a/stoll.txt b/res/stoll.txt similarity index 100% rename from stoll.txt rename to res/stoll.txt diff --git a/schneiderbot.py b/schneiderbot.py index f125ac6..c4b3dac 100755 --- a/schneiderbot.py +++ b/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()