|
|
|
@ -75,5 +75,9 @@ for path in in_path.rglob("*.co"):
|
|
|
|
|
|
|
|
|
|
with open(str(py_file), 'w') as decompiled:
|
|
|
|
|
uncompyle6.main.decompile_file(str(pyc_file), decompiled)
|
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
|
break
|
|
|
|
|
except:
|
|
|
|
|
print("Failed to decompile %s" % path)
|
|
|
|
|
else:
|
|
|
|
|
print("Decompiled %s" % path)
|
|
|
|
|