|
@@ -53,9 +53,7 @@ def download(howhard, index):
|
|
|
"""
|
|
|
Download an image based upon how hard it is.
|
|
|
|
|
|
- Note: This sucks, because it overwrites images.
|
|
|
- Why not save the images and how hard?
|
|
|
- Quit running your script on floppy disks!
|
|
|
+ You print out the return value. Are you returning anything useful??
|
|
|
"""
|
|
|
r = sess.get(f'http://s0urce.io/client/img/word/{howhard}/{index}')
|
|
|
if(r.status_code == 200):
|
|
@@ -136,6 +134,7 @@ def run(difficult):
|
|
|
for x in range(0, 70):
|
|
|
fname = f'in/{difficult}_{x}.png'
|
|
|
|
|
|
+# if os.path.exists() ... :(
|
|
|
try:
|
|
|
with open(fname, 'r') as f:
|
|
|
f = f
|