Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
with open('file.json') as f: data = json.load(f) clean_data = [{x['title']: x for x in data}.values()]
with open("clean_file.json", "w") as file: json.dump(file, clean_data)
TypeError: Object of type TextIOWrapper is not JSON serializable
with open("clean_file.json", "w") as file: json.dump(clean_data, file)