Showing
1 changed file
with
3 additions
and
0 deletions
@@ -125,6 +125,9 @@ def convert_date_for_compare_ex2(datestr): | @@ -125,6 +125,9 @@ def convert_date_for_compare_ex2(datestr): | ||
125 | def download_file(url, file_name, output_dir): | 125 | def download_file(url, file_name, output_dir): |
126 | urllib.urlretrieve(url, ('{}/{}'.format(output_dir, file_name))) | 126 | urllib.urlretrieve(url, ('{}/{}'.format(output_dir, file_name))) |
127 | 127 | ||
128 | +def multiply_hundred(number): | ||
129 | + return number*100 | ||
130 | + | ||
128 | def inject_urllib3(): | 131 | def inject_urllib3(): |
129 | import urllib3.contrib.pyopenssl | 132 | import urllib3.contrib.pyopenssl |
130 | urllib3.contrib.pyopenssl.inject_into_urllib3() | 133 | urllib3.contrib.pyopenssl.inject_into_urllib3() |
Please
register
or
login
to post a comment