Every line of 'download sample txt file' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
129 def _download(self, data_sets=DATA_SETS): 130 """ 131 Download the given `data_sets` 132 133 Args: 134 data_sets: a list of the datasets to download 135 """ 136 137 for data_set_type, data_set_name in data_sets: 138 remote_file = data_set_name + SpeechCorpusProvider.SET_FILE_EXTENSION 139 self._download_if_not_exists(remote_file)