Skip to content

Commit

Permalink
Adicionando método de baixar todos os datasets ofek#17
Browse files Browse the repository at this point in the history
  • Loading branch information
diegodiogenes committed Aug 3, 2019
1 parent c742f60 commit c88b237
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions odufrn_downloader/modules/Dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,23 @@ def download_related_datasets(self, key: str):
return

self.download_datasets(related)

def download_all(self, path: str = os.getcwd(),
dictionary: bool = True, years: list = None):
"""Exibe os todos conjuntos de dados e baixa-os
em pastas com o nome do respectivo conjunto de dado.
> Exemplo: download_all(dictionary = False, years = [2009, 2010])
Parâmetros
----------
path: str
o caminho da pasta onde serão adicionados os arquivos
(por padrão, a pasta atual).
dictionary: bool
flag para baixar o dicionário dos dados (por padrão, True)
years: list
define os anos dos dados que serão baixados, se existir realiza-se o download.
"""

return self.download_datasets(self.available_datasets, path, dictionary, years)

0 comments on commit c88b237

Please sign in to comment.