Newer
Older
"""
This converts the raw copy/paste from Confluence table
"""
year = 2020
fout = open(f"list_{year}.txt", "w")
count = 0
for line in open("orig.txt", "r"):
if len(line.strip()):
if "Date" in line:
continue
else:
fout.write(" ")
if count > 3:
fout.write("\n")
count = 0