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

Notícias, anúncios e atualizações de projetos

Acompanhe as notícias da Nur Group sobre produção, exportação, engenharia, implementos, estruturas metálicas e projetos especiais.

Produção Atualizações de campo e fábrica
Exportação Mercado global e entregas
Engenharia Soluções técnicas e projetos
Todas as notícias

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}")