[M] Mode experiment scripts

This commit is contained in:
Azalea (on HyDEV-Daisy)
2022-06-07 10:25:02 -04:00
parent 6b924c5825
commit 2d0a0cecf4
9 changed files with 10709 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import re
if __name__ == '__main__':
files= {}
with open("test.log") as f:
for string in f:
string = re.search("(?<=processing )(.*?\.java)", string)
if (string != None):
if files.keys().__contains__(string.group(0)) :
files[string.group(0)] = 2
else:
files[string.group(0)] = 1
for file in files.keys():
if(files[file]) == 1:
print(file)