本文整理汇总了Python中importer.Importer.import_tabular_data方法的典型用法代码示例。如果您正苦于以下问题:Python Importer.import_tabular_data方法的具体用法?Python Importer.import_tabular_data怎么用?Python Importer.import_tabular_data使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类importer.Importer
的用法示例。
在下文中一共展示了Importer.import_tabular_data方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: start_import
# 需要导入模块: from importer import Importer [as 别名]
# 或者: from importer.Importer import import_tabular_data [as 别名]
def start_import(data_dir, dry_run = False, tabular = True, variable = True, excel = True, delete = True):
"""
Comienza el proceso de importación propiamende dicho. Hasta ahora todo eran preparaciones para
tener los datos organizados y disponibles.
"""
from importer import Importer
importer = Importer(data_dir)
if tabular:
print u"Realizando la importacion tabular"
if not dry_run:
importer.import_tabular_data()
if variable:
print u"Realizando la importacion variable"
if not dry_run:
importer.import_variable_data()
if excel:
print u"Realizando la importacion del datos_extra"
if not dry_run:
importer.import_excel(variable)
print u"Eliminando los datos no marcados"
# TODO: Crear gestionar_jornadas_continuas que meta las matriculas de
# los alumnos de los grupos en las asignaturas T.[INF|PRI]
# de forma automatica, ahora mismo esto se hace si se importa del excel,
# y si este no ha variado no se importa y elimina las matriculas
# importer.gestionar_jornadas_continuas()
importer.delete_non_used_data(not dry_run and delete)
return importer.log_result