當前位置: 首頁>>代碼示例>>Python>>正文


Python Importer.import_variable_data方法代碼示例

本文整理匯總了Python中importer.Importer.import_variable_data方法的典型用法代碼示例。如果您正苦於以下問題:Python Importer.import_variable_data方法的具體用法?Python Importer.import_variable_data怎麽用?Python Importer.import_variable_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在importer.Importer的用法示例。


在下文中一共展示了Importer.import_variable_data方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: start_import

# 需要導入模塊: from importer import Importer [as 別名]
# 或者: from importer.Importer import import_variable_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
開發者ID:esauro,項目名稱:akademic,代碼行數:30,代碼來源:__init__.py


注:本文中的importer.Importer.import_variable_data方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。