process_mining / pm4py /examples /CHECK_MISSING.py
linpershey's picture
Add 'pm4py/' from commit '80970016c5e1e79af7c37df0dd88e17587fe7bcf'
b4ba3ec
raw
history blame contribute delete
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)