33 lines
1.4 KiB
Python
Executable File
33 lines
1.4 KiB
Python
Executable File
#!/bin/python3
|
|
import os
|
|
import argparse
|
|
|
|
|
|
parser = argparse.ArgumentParser(description="Générer un site Web à partir de fichiers HTML.")
|
|
parser.add_argument("html_dir", help="Le chemin vers le dossier contenant les fichiers HTML.")
|
|
parser.add_argument("--title", "-t", default="Mon site Web", help="Le titre du site Web.")
|
|
parser.add_argument("--style", default="style_general.css", help="Le chemin vers le fichier de style CSS.")
|
|
args = parser.parse_args()
|
|
|
|
# Style CSS minimaliste
|
|
style_file = args.style
|
|
css_content = ""
|
|
with open(os.path.join(style_file), "r") as f:
|
|
css_content = f.read()
|
|
|
|
html_dir = args.html_dir
|
|
|
|
# Parcourir tous les fichiers HTML dans le dossier
|
|
for root, _, files in os.walk(html_dir):
|
|
for file in files:
|
|
if file.endswith(".html"):
|
|
# Ouvrir le fichier HTML en mode lecture
|
|
with open(os.path.join(root, file), "r") as f:
|
|
html_content = f.read()
|
|
|
|
# Ajouter la déclaration de charset UTF-8, le doctype HTML et le titre du site Web
|
|
html_content = f"<!DOCTYPE html>\n<html lang=\"fr\">\n<head>\n<meta charset=\"UTF-8\">\n<title>{args.title}</title>\n<style type='text/css'>{css_content}</style></head>\n<body>\n{html_content}\n</body>\n</html>"
|
|
|
|
# Écrire le contenu modifié dans le fichier HTML
|
|
with open(os.path.join(root, file), "w") as f:
|
|
f.write(html_content) |