Compare commits

...

2 Commits

Author SHA1 Message Date
060362ec09 feat: json exercise 2026-03-19 13:28:20 +01:00
e28a2bdc67 feat: pathlib exercise 2026-03-19 11:58:22 +01:00
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
from pathlib import Path
base_dir = Path("data")
file_path = base_dir / "raw" / "processed.json"
file_path.mkdir(parents=True, exist_ok=True)