commit c6a003988d1aaa8db7a32673a884bf6168bc8fa6
parent 4da359be2e3afedcecdcb594d31420a90ed5fb00
Author: therealFIGBERT <naomi@Naomis-MacBook-Air.local>
Date: Thu, 4 Jul 2019 17:26:47 -0700
Removing unused Python scripts
Diffstat:
2 files changed, 0 insertions(+), 24 deletions(-)
diff --git a/MacOS/export_json.py b/MacOS/export_json.py
@@ -1,11 +0,0 @@
-import json
-
-#Data to export. The initial keys are used to select the data groups.
-data = {}
-#Configuring the script - filepath, data, etc.
-filename = input("File path for exported json data: ")
-data_header = input("Data to convert to json format: ")
-data_info = data[data_header]
-#Outputting the dictionary in json format
-with open(filename, 'w') as file_export:
- json.dump(data_info, file_export, indent=4, sort_keys=True)
-\ No newline at end of file
diff --git a/Windows/export_json.py b/Windows/export_json.py
@@ -1,11 +0,0 @@
-import json
-
-#Data to export. The initial keys are used to select the data groups.
-data = {}
-#Configuring the script - filepath, data, etc.
-filename = input("File path for exported json data: ")
-data_header = input("Data to convert to json format: ")
-data_info = data[data_header]
-#Outputting the dictionary in json format
-with open(filename, 'w') as file_export:
- json.dump(data_info, file_export, indent=4, sort_keys=True)
-\ No newline at end of file