INIT: premier commit
This commit is contained in:
13
init_args.py
Normal file
13
init_args.py
Normal 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))
|
||||
Reference in New Issue
Block a user