This commit is contained in:
AFCMS 2021-04-27 19:16:08 +02:00
parent 72e53a82d7
commit 0a2fcdc4e8
1 changed files with 14 additions and 6 deletions

View File

@ -2,17 +2,25 @@ import os
import re
from pathlib import Path
path = "../mods/"
pattern = re.compile(r'[a-z]')
path = "./mods/"
# pattern = re.compile(r'^(?P<nomtableau>[^ \t\]]+)[ ]*=[ ]*\{')
pattern = re.compile(r'^(?P<nomtableau>[^ \t\]]+)[ ]*=[ ]*\{')
pathlist = Path(path).rglob('*.lua')
for path in pathlist:
path_in_str = str(path)
print(path_in_str)
# print(path_in_str)
trouve = False
with open(path_in_str) as f:
for line in f:
if pattern.search(line):
print(line)
for i, line in enumerate(f.readlines()):
m = pattern.match(line)
if m:
print(path_in_str, ":", i+1, ":", m.group('nomtableau').strip())
trouve = True
break
if not trouve:
print(path_in_str, ": -")
for subdir, dirs, files in os.walk(path):
for file in files: