import sys import os try: with open('src/main/resources/templates/index.html', 'r', encoding='utf-8') as f: lines = f.readlines() main_content_lines = lines[277:2663] html = """ Bệnh Viện Đa Khoa Quốc Tế S.I.S Cần Thơ
""" html += "".join(main_content_lines) html += """
""" with open('src/main/resources/templates/pages/home.html', 'w', encoding='utf-8') as f: f.write(html) print("Successfully created pages/home.html") except Exception as e: print(e)