process_mining / examples /CHECK_MISSING.py
kota
initial commit
e60e568
raw
history blame
334 Bytes
import os
if __name__ == "__main__":
files = [x.split(".")[0] for x in os.listdir(".") if x.endswith(".py") and not "execute_everything" in x and not "CHECK_MISSING" in x]
contents_ex_everything = open("execute_everything.py", "r").read()
for f in files:
if f not in contents_ex_everything:
print(f)