wip: add python script to generate static site

This commit is contained in:
Ashik K 2023-04-08 09:25:28 +02:00
parent 58e3603b03
commit f84152af82
1 changed files with 28 additions and 0 deletions

28
genstatic.py Normal file
View File

@ -0,0 +1,28 @@
# create a file named index.html
# and insert links to every html file in the
# directory that was passed as a command line argument
import sys
import os
from pathlib import Path
# check if the user supplied the correct number of command line arguments
if len(sys.argv) != 2:
print("Usage: python index.py htmlfilesdirectory")
sys.exit(1)
# set the directory from the command line argument
dir = sys.argv[1]
# create a file named index.html
outfile = open("index.html", "w")
#write a <html> tag to the file
outfile.write("<html>")
# insert links to every html file in the
# directory that was passed as a command line argument
for file in os.listdir(dir):
if file.endswith(".html"):
# write the link to the html file
outfile.write("<a href=" + file + ">" + file + "</a><br>")
# close the file
#write a </html> tag to the file
outfile.write("</html>")
outfile.close