Skip to content

Commit

Permalink
Agrego signature de los métodos públicos a implementar en la v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
abenassi committed Dec 19, 2016
1 parent de61941 commit 1b29876
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pydatajson/pydatajson.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,36 @@ def _update_response(error, response):

return final_response

def generate_datasets_report(self, catalogs, report_path):
"""Genera reporte de datasets de catálogos.
Args:
catalogs (str o list):
report_path (str):
"""
pass

def generate_harvester_config(self, datasets_report, config_path):
"""Genera archivo de configuración del harvester según el reporte.
Args:
datasets_report (str):
config_path (str):
"""
pass

def generate_harvestable_catalogs(self, catalogs, datasets_report,
write_to_file, files_dir):
"""Genera archivo de configuración del harvester según el reporte.
Args:
datasets_report (str):
config_path (str):
write_to_file (bool):
files_dir (str):
"""
pass


def main():
"""Permite ejecutar el módulo por línea de comandos.
Expand Down

0 comments on commit 1b29876

Please sign in to comment.