|
@@ -49,8 +49,8 @@ GREEN_DIFF = 10
|
|
|
# to be called green.
|
|
|
|
|
|
# Check the environment, do we have all that we need?
|
|
|
-if not os.path.exists("in"):
|
|
|
- os.mkdir("in")
|
|
|
+if not os.path.exists("images"):
|
|
|
+ os.mkdir("images")
|
|
|
|
|
|
if not os.path.exists("data"):
|
|
|
os.mkdir("data")
|
|
@@ -66,7 +66,7 @@ def download(howhard, index):
|
|
|
"""
|
|
|
r = sess.get(f"http://s0urce.io/client/img/word/{howhard}/{index}")
|
|
|
if r.status_code == 200:
|
|
|
- with open(f"in/{howhard}_{index}.png", "wb") as f:
|
|
|
+ with open(f"images/{howhard}_{index}.png", "wb") as f:
|
|
|
f.write(r.content)
|
|
|
else:
|
|
|
# We did not get a 200 Okay, log this... Hmm maybe we need to make a log file?
|
|
@@ -218,7 +218,7 @@ def run(difficult):
|
|
|
"""
|
|
|
|
|
|
for x in range(0, 70):
|
|
|
- fname = f"in/{difficult}_{x}.png"
|
|
|
+ fname = f"images/{difficult}_{x}.png"
|
|
|
|
|
|
if not os.path.exists(fname):
|
|
|
print("Could not find '{0}'".format(fname))
|
|
@@ -266,7 +266,7 @@ def autotrain(difficult):
|
|
|
"""
|
|
|
|
|
|
for x in range(0, 70):
|
|
|
- fname = f"in/{difficult}_{x}.png"
|
|
|
+ fname = f"images/{difficult}_{x}.png"
|
|
|
|
|
|
if not os.path.exists(fname):
|
|
|
print("Could not find '{0}'".format(fname))
|