@@ -10738,7 +10738,7 @@ def download_file_from_http_file(url, headers=None, usehttp=__use_http_lib__):
1073810738 return httpfile
1073910739
1074010740
10741- def download_file_from_http_string (url , headers = geturls_headers_pyarchivefile_python_alt , usehttp = __use_http_lib__ ):
10741+ def download_file_from_http_string (url , headers = geturls_headers_pycatfile_python_alt , usehttp = __use_http_lib__ ):
1074210742 httpfile = download_file_from_http_file (url , headers , usehttp )
1074310743 return httpfile .read ()
1074410744
@@ -10976,7 +10976,7 @@ def upload_file_to_pysftp_string(url):
1097610976 return False
1097710977
1097810978
10979- def download_file_from_internet_file (url , headers = geturls_headers_pyarchivefile_python_alt , usehttp = __use_http_lib__ ):
10979+ def download_file_from_internet_file (url , headers = geturls_headers_pycatfile_python_alt , usehttp = __use_http_lib__ ):
1098010980 urlparts = urlparse (url )
1098110981 if (urlparts .scheme == "http" or urlparts .scheme == "https" ):
1098210982 return download_file_from_http_file (url , headers , usehttp )
@@ -10992,7 +10992,7 @@ def download_file_from_internet_file(url, headers=geturls_headers_pyarchivefile_
1099210992 return False
1099310993
1099410994
10995- def download_file_from_internet_uncompress_file (url , headers = geturls_headers_pyarchivefile_python_alt , formatspecs = __file_format_dict__ ):
10995+ def download_file_from_internet_uncompress_file (url , headers = geturls_headers_pycatfile_python_alt , formatspecs = __file_format_dict__ ):
1099610996 fp = download_file_from_internet_file (url )
1099710997 fp = UncompressCatFile (fp , formatspecs )
1099810998 fp .seek (0 , 0 )
@@ -11001,7 +11001,7 @@ def download_file_from_internet_uncompress_file(url, headers=geturls_headers_pya
1100111001 return fp
1100211002
1100311003
11004- def download_file_from_internet_string (url , headers = geturls_headers_pyarchivefile_python_alt ):
11004+ def download_file_from_internet_string (url , headers = geturls_headers_pycatfile_python_alt ):
1100511005 urlparts = urlparse (url )
1100611006 if (urlparts .scheme == "http" or urlparts .scheme == "https" ):
1100711007 return download_file_from_http_string (url , headers )
@@ -11017,7 +11017,7 @@ def download_file_from_internet_string(url, headers=geturls_headers_pyarchivefil
1101711017 return False
1101811018
1101911019
11020- def download_file_from_internet_uncompress_string (url , headers = geturls_headers_pyarchivefile_python_alt , formatspecs = __file_format_dict__ ):
11020+ def download_file_from_internet_uncompress_string (url , headers = geturls_headers_pycatfile_python_alt , formatspecs = __file_format_dict__ ):
1102111021 fp = download_file_from_internet_string (url )
1102211022 fp = UncompressCatFile (fp , formatspecs )
1102311023 fp .seek (0 , 0 )
0 commit comments