代码拉取完成,页面将自动刷新
import os
import json
# 获取当前脚本所在目录的绝对路径
current_dir = os.path.dirname(os.path.abspath(__file__))
#如果是初次安装,创建installed文件作为标记,并修改采样器样式为下拉菜单,如果已经有installed文件则跳过。
if not os.path.exists(os.path.join(current_dir, 'installed')):
# with open(os.path.join(current_dir, 'installed'), 'w') as f1:
# f1.write('')
# 获取 config.json 文件的绝对路径
json_file_path = os.path.join(current_dir, '..', '..', 'config.json')
# 读取 config.json 文件
with open(json_file_path, 'r') as f2:
config = json.load(f2)
# 修改配置项
config['samplers_in_dropdown'] = True
# 写入修改后的配置
with open('config.json', 'w') as f2:
json.dump(config, f2, indent=4)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。