13 lines
288 B
Python
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)) |