from pathlib import Path code = r''' Haberler Ve Duyurular — Nur Group Mühendislik Makina
Centro de noticias Nur Group

Noticias, anuncios y avances de proyectos

Siga las noticias de Nur Group sobre producción, exportación, ingeniería, implementos, estructuras metálicas y proyectos especiales.

Producción Actualizaciones de campo y fábrica
Exportación Mercado global y entregas
Ingeniería Soluciones técnicas y proyectos
Todas las noticias

Haberler ve Duyurular

W ''' out_php = Path('/mnt/data/nur-group-premium-news-page-template.php') out_txt = Path('/mnt/data/nur-group-premium-news-page-template.txt') out_php.write_text(code, encoding='utf-8') out_txt.write_text(code, encoding='utf-8') print(f"PHP hazır: {out_php}") print(f"TXT hazır: {out_txt}")