scipy.datasets.
download_all#
- scipy.datasets.download_all(path=None)[source]#
Utility method to download all the dataset files for
scipy.datasets
module.- Parameters:
- pathstr, optional
Directory path to download all the dataset files. If None, default to the system cache_dir detected by pooch.
Examples
Download the datasets to the default cache location:
>>> from scipy import datasets >>> datasets.download_all()
Download the datasets to the current directory:
>>> datasets.download_all(".")