csv_loader_for_redshift.py 文件源码

python
阅读 21 收藏 0 点赞 0 评论 0

项目:CSV_Loader_For_Redshift 作者: alexbuz 项目源码 文件源码
def import_module(filepath):
    class_inst = None
    #expected_class = 'MyClass'

    mod_name,file_ext = os.path.splitext(os.path.split(filepath)[-1])
    assert os.path.isfile(filepath), 'File %s does not exists.' % filepath
    if file_ext.lower() == '.py':
        py_mod = imp.load_source(mod_name, filepath)

    elif file_ext.lower() == '.pyc':
        py_mod = imp.load_compiled(mod_name, filepath)
    return py_mod
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号