download_files_in_parallel¶
-
astropy.utils.data.
download_files_in_parallel
(urls, cache=True, show_progress=True, timeout=None)[source]¶ Downloads multiple files in parallel from the given URLs. Blocks until all files have downloaded. The result is a list of local file paths corresponding to the given urls.
- Parameters
- urlslist of str
The URLs to retrieve.
- cachebool, optional
Whether to use the cache (default is
True
).Changed in version 3.0: The default was changed to
True
and setting it toFalse
will print a Warning and set it toTrue
again, because the function will not work properly without cache.- show_progressbool, optional
Whether to display a progress bar during the download (default is
True
)- timeoutfloat, optional
Timeout for each individual requests in seconds (default is the configurable
astropy.utils.data.Conf.remote_timeout
).
- Returns
- pathslist of str
The local file paths corresponding to the downloaded URLs.