We’re Going Places.
Your next unforgettable journey is almost here. Chahat Holidays is preparing a fresh travel experience filled with amazing destinations, exciting tour packages and happy memories.
from pathlib import Path import base64, html, zipfile logo_path = Path("/mnt/data/a_clean_white_background_logo_graphic_design._over.png") if not logo_path.exists(): # Fallback to the most recent generated logo if the earlier filename is unavailable. candidates = list(Path("/mnt/data").glob("*.png")) candidates = [p for p in candidates if p.is_file()] logo_path = candidates[-1] if candidates else None logo_data = "" logo_mime = "image/png" if logo_path and logo_path.exists(): logo_data = base64.b64encode(logo_path.read_bytes()).decode("ascii") logo_src = f"data:{logo_mime};base64,{logo_data}" if logo_data else "" page = f"""
Your next unforgettable journey is almost here. Chahat Holidays is preparing a fresh travel experience filled with amazing destinations, exciting tour packages and happy memories.