from pathlib import Path import zipfile html = r""" ControlTech Systems

Practical control solutions for real buildings.

ControlTech Systems provides building automation support, HVAC controls troubleshooting, system integration, commissioning, and remote access solutions for commercial and institutional facilities.

Building Automation

Niagara-based support, graphics, points, alarms, histories, schedules, and operator workflows.

HVAC Controls

Rooftop units, boilers, pumps, VAVs, sensors, actuators, VFDs, and control panel troubleshooting.

Integration

BACnet, Modbus, field routers, cloud access, controller communication, and remote support setup.

""" index_path = Path("/mnt/data/index.html") index_path.write_text(html, encoding="utf-8") zip_path = Path("/mnt/data/controltechsystems-site.zip") with zipfile.ZipFile(zip_path, "w", compression=zipfile.ZIP_DEFLATED) as z: z.write(index_path, arcname="index.html") print(f"Created: {index_path}") print(f"Created: {zip_path}")