mlsem/gentopic.py

22 lines
478 B
Python
Raw Permalink Normal View History

2021-10-17 15:00:05 +02:00
import os
import json
with open("topics/shema.tex","r") as f:
shema=f.read()
for fn,fno in [[f"redic/{zw}",zw.replace(".json","")] for zw in os.listdir("redic")]:
with open(fn,"r") as f:
dic=json.loads(f.read())
#print(dic["paper"]+", "+dic["by"]+"("+dic["when"]+")")
ac=shema.replace("##name##",fno)
for key,val in dic.items():
ac=ac.replace(f"##{key}##",str(val))
with open(f"topics/{fno}.tex","w") as f:
f.write(ac)