with open(json_file, "r") as file:
data: List[Dict[str, Any]] = json.load(file)
while data:
current = data.pop(0)
tg_id = current["tg_id"]
apps = current["apps"]
for app_id, text_entries in apps.items():
self.navigate_to_app_settings(int(app_id))
self.enter_input_field(text_entries)
print(f"Finished processing app ID: {app_id}")
self.close_driver()
with open(json_file, "w") as file:
json.dump(data, file)
запускаеться скрипт вот этот, но у меня в json прилетают новые данные, а он весь файл перезаписывает, как я могу от этого избавиться? подскажите, пожалуйста
гайс?
Попробуй начать с "w" > "a"
Обсуждают сегодня