from pathlib import Path html = r''' AstronomyDVD.com — Maintenance
AstronomyDVD.com
Maintenance in progress

A new chapter is being prepared.

AstronomyDVD.com is currently undergoing maintenance following a recent change of ownership. The previous website and its services are not being operated by the current owner. A new, independently managed website will be launched here.

No account access There are currently no login or registration services available on this website.
No payments or downloads This maintenance page does not request payments, personal information, or software downloads.
New ownership The domain is now under new administration and is being prepared for legitimate future use.
''' path = Path("/mnt/data/astronomydvd-maintenance.html") path.write_text(html, encoding="utf-8") print(f"Created: {path}")