from pathlib import Path html = r''' Storm Rain Website

Storm Rain

폭풍 시작, 종료, 빗소리 ON/OFF를 직접 조작해보세요.

''' path = Path("/mnt/data/index.html") path.write_text(html, encoding="utf-8") path.as_posix()