Files
projects_stats/init_args.py
2025-08-29 18:36:49 +02:00

13 lines
288 B
Python

# This scripts generates a brand new args.json file
import json
data = {}
data['folder_paths'] = [
"path\\to\\your\\folder_1",
"path\\to\\your\\folder_2",
"...",
"path\\to\\your\\folder_n"
]
with open('args.json', 'w') as file:
file.write(json.dumps(data, indent=4))