mirror of https://github.com/hearot/notes
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
524 B
Python
22 lines
524 B
Python
2 years ago
|
import os
|
||
|
|
||
|
with open("templates/main_tmpl.tex", "r") as f:
|
||
|
main_tmpl = f.read()
|
||
|
|
||
|
with open("templates/chap_tmpl.tex", "r") as f:
|
||
|
chap_tmpl = f.read()
|
||
|
|
||
|
title = input("Inserisci il titolo dei nuovi appunti: ")
|
||
|
filename = title.lower().replace(" ", "_")
|
||
|
|
||
|
try:
|
||
|
os.mkdir(title)
|
||
|
except FileExistsError:
|
||
|
pass
|
||
|
|
||
|
with open(os.path.join(title, filename + ".tex"), "w") as f:
|
||
|
f.write(main_tmpl.replace("{{titolo}}", title))
|
||
|
|
||
|
with open(os.path.join(title, "1. Primo capitolo.tex"), "w") as f:
|
||
|
f.write(chap_tmpl)
|