додав скрипт форматування таблиць для лаб №2 #23

Merged
hasslesstech merged 4 commits from shmuliar-table-converter into master 2024-03-24 17:14:12 +02:00
1 changed files with 18 additions and 6 deletions
Showing only changes of commit e9d104f53a - Show all commits

View File

@ -67,7 +67,9 @@ if __name__=="__main__":
write_to_stdout = AUTO write_to_stdout = AUTO
usecase_formatting = AUTO usecase_formatting = AUTO
verbose = AUTO verbose = AUTO
process_table_files = AUTO
# 1 pass (argument harvest)
for i in sys.argv[1:]: for i in sys.argv[1:]:
if i.startswith("-"): if i.startswith("-"):
# записувати таблицю в файл # записувати таблицю в файл
@ -94,8 +96,18 @@ if __name__=="__main__":
elif i in ["-nv", "--no-verbose"]: elif i in ["-nv", "--no-verbose"]:
verbose = NO verbose = NO
else: elif i in ["-t", "--process-table"]:
files.append(i) process_table_files = YES
elif i in ["-nt", "--no-process-table"]:
process_table_files = NO
# 2 pass (filename harvest)
for i in sys.argv[1:]:
if not i.startswith("-"):
if i.endswith(".table") and process_table_files <= AUTO:
print(f"[Warning]: Excluding {i} to prevent processing of an already processed file (pass --process-table to override this behaviour)")
else:
files.append(i)
if len(files) < 1: if len(files) < 1:
print("You need to pass at least one file as CLI argument", file=sys.stderr) print("You need to pass at least one file as CLI argument", file=sys.stderr)
@ -121,12 +133,12 @@ if __name__=="__main__":
print(formatted_table_data) print(formatted_table_data)
if write_to_file > AUTO: if write_to_file > AUTO:
open(name + ".table", 'w', encoding = "utf-8").write(data+"\n") open(name + ".table", 'w', encoding = "utf-8").write(formatted_table_data+"\n")
exit(0) exit(0)
for no, name in enumerate(sys.argv[1:]): for no, name in enumerate(files):
print(f"Converting {no+1}/{len(sys.argv)}") print(f"Converting {no+1}/{len(files)}")
data = open(name, encoding = "utf-8").read() data = open(name, encoding = "utf-8").read()
@ -145,4 +157,4 @@ if __name__=="__main__":
print(formatted_table_data) print(formatted_table_data)
if write_to_file >= AUTO: if write_to_file >= AUTO:
open(name + ".table", 'w', encoding = "utf-8").write(data+"\n") open(name + ".table", 'w', encoding = "utf-8").write(formatted_table_data+"\n")