import zipfile
import os
# Create a folder for the website
folder_name = “/mnt/data/OutterLimitsTint”
os.makedirs(folder_name, exist_ok=True)
# HTML content
html_content = “””
Outter Limits Tint
Outter Limits Tint
Quality Window Tinting in Fort Worth
Licensed, Insured, Ceramic Film Specialists
Our Services
We specialize in ceramic window films, strip and retreat services, and provide professional installation with a warranty you can trust.
About Us
Located at 12250 Highway 287 Business North Suite 104, Fort Worth, TX 76179, our team is dedicated to providing premium service with attention to detail and customer satisfaction.
Contact
Call us today at 682-471-1504 or email us at info@outterlimitztint.com
“””
# Save the HTML file
html_file_path = os.path.join(folder_name, “index.html”)
with open(html_file_path, “w”) as f:
f.write(html_content)
# Create a zip file
zip_path = “/mnt/data/OutterLimitsTint.zip”
with zipfile.ZipFile(zip_path, ‘w’) as zipf:
zipf.write(html_file_path, arcname=”index.html”)
zip_path