Spaces:
Sleeping
Sleeping
File size: 173 Bytes
ea9ca44 | 1 2 3 4 5 6 7 | import os
def save_text(text: str, path: str):
os.makedirs(os.path.dirname(path), exist_ok=True)
with open(path, "w", encoding="utf-8") as f:
f.write(text)
|