5 lines
171 B
Python
5 lines
171 B
Python
import json, sys
|
|
sys.stdout.reconfigure(encoding="utf-8")
|
|
# This script reads generate_template.py and runs it
|
|
exec(open("generate_template.py", encoding="utf-8").read())
|