From 881f64847998533b3a5277f992f0d634b03becc2 Mon Sep 17 00:00:00 2001 From: JKuijperM Date: Sat, 15 May 2021 11:34:23 +0200 Subject: [PATCH] Added comments and header --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 1109300..5bb68d1 100644 --- a/main.py +++ b/main.py @@ -15,7 +15,7 @@ from datetime import datetime # input_path is the path for the json file input_path = Path('your_path.json') # Replace the string 'your_path' by yours # output_path is the path where will be saved the csv file -output_path = Path('your_path.csv') # Replace the string 'your_path' by yours +output_path = Path('your_path.csv') # Replace the string 'your_path' by yours with open(input_path, encoding='utf-8') as json_file: data = json.load(json_file)