From 642fb2c547e2e0489f81392ada34c42a3b2cc385 Mon Sep 17 00:00:00 2001 From: Priyansh <30593201+luciferreeves@users.noreply.github.com> Date: Sat, 18 Dec 2021 23:27:01 -0500 Subject: Update initial_setup.py --- initial_setup.py | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'initial_setup.py') diff --git a/initial_setup.py b/initial_setup.py index 5018a6d..b6422e6 100644 --- a/initial_setup.py +++ b/initial_setup.py @@ -23,23 +23,12 @@ def download(url, filename): sys.stdout.flush() sys.stdout.write('\n') -# if not exists('arima.pkl'): -# if not exists('arima.compressed'): -# print('[*] Downloading arima.compressed') -# download("https://github.com/luciferreeves/Analyzing-Climate-Change-using-Earth-Surface-Temperature-Visualization/releases/download/large_files/arima.compressed", 'arima.compressed') -# print('[*] Decompressing arima.compressed') -# decompress_arima() - -# if not exists('arima.pkl') and exists('arima.compressed'): -# print('[*] Decompressing arima.compressed') -# decompress_arima() - if not exists('database.db'): print('[*] Downloading database.db') - download("https://github.com/luciferreeves/Analyzing-Climate-Change-using-Earth-Surface-Temperature-Visualization/releases/download/large_files/database.db", 'database.db') + download("https://github.com/luciferreeves/temp_pred_arima/releases/download/large_files/database.db", 'database.db') if not exists('GlobalLandTemperaturesByCity.csv'): print('[*] Downloading GlobalLandTemperaturesByCity.csv') - download("https://github.com/luciferreeves/Analyzing-Climate-Change-using-Earth-Surface-Temperature-Visualization/releases/download/large_files/GlobalLandTemperaturesByCity.csv", 'GlobalLandTemperaturesByCity.csv') + download("https://github.com/luciferreeves/temp_pred_arima/releases/download/large_files/GlobalLandTemperaturesByCity.csv", 'GlobalLandTemperaturesByCity.csv') print('[*] Done! Please run `python3 app.py` to start the application.') -- cgit v1.2.3