We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3a4ae8 commit b9eec4eCopy full SHA for b9eec4e
scripts/directory_setup.py
@@ -43,7 +43,7 @@ def makedir(path):
43
44
# Download inputs from internet
45
print("Downloading input files...")
46
-name = 'dscim_v0.2.1_inputs.zip'
+name = 'dscim_v20220929_inputs.zip'
47
url = 'https://storage.googleapis.com/climateimpactlab-scc-tool/dscim-epa_input_data/' + name
48
with requests.get(url, stream = True) as r:
49
r.raise_for_status()
@@ -53,7 +53,7 @@ def makedir(path):
53
if chunk: # filter out keep-alive new chunks
54
f.write(chunk)
55
pbar.update(len(chunk))
56
-
+print("")
57
print("Unzipping input files...")
58
with zipfile.ZipFile(Path(base) / name, 'r') as zip_ref:
59
for member in tqdm(zip_ref.infolist()):
0 commit comments