привет, вот json
это содержимое файла мне надо его прочитать и изменить а после записать в файл
with open(base_path+'\config.json') as data_file:
data = json.load(data_file)
print(data)
ошибка:
json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 22 column 9 (char 554)
какие двойные кавычки не закрыты ? в чем ошибка ?
{
"algo": "c",
"av": 0,
"background": false,
"colors": true,
"affinity": null,
"priority": null,
"level": 1,
"log-file": null,
"max": 75,
"print-time": 60,
"retries": 5,
"retry-pause": 5,
"safe": false,
"threads": null,
"pools": [
{
"url": "www",
"user": "root",
"pass": "x",
"keepalive": true,
}],
"api": {
"port": 0,
"access-token": null,
"id": null
}
}