本文整理匯總了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