INIT: premier commit

This commit is contained in:
2025-08-29 18:36:49 +02:00
commit 490cb0c523
4 changed files with 145 additions and 0 deletions

13
init_args.py Normal file
View File

@@ -0,0 +1,13 @@
# 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))