4

为了向我的程序(在 python 2.7 中)添加对可用模块的检查,我添加了以下代码来代替经典导入(这个想法是帮助某人找到并添加额外的模块):

mymodules = ['socket', 'requests', 'simplejson', 'pickle', 'IPy',
    'pygeoip', 'urllib', 'time', 'urllib2', 'StringIO', 'gzip', 'os']

import sys, importlib   # these ones should be available, otherwise bad luck :)
for module in mymodules:
    try:
        importlib.import_module(module)
        print "importing ", module
    except:
        if module == "requests": info = "http://docs.python-requests.org/en/latest/user/install/#install or aptitude install python-requests"
        elif module == "requests": info = "https://github.com/simplejson/simplejson or aptitude install python-simplejson"
        elif module == "IPy": info = "https://github.com/haypo/python-ipy/wiki or aptitude install python-ipy"
        elif module == "pygeoip": info = "https://github.com/appliedsec/pygeoip or pip install pygeoip"
        else: info = "Oops, you should not see this - the description of the missing plugin is missing in the code"
        print "module {} is missing, see {}".format(module,info)
        sys.exit(0)

后来我的程序NameError在调用time.time()'时间'未定义)时崩溃。因此,我尝试从头开始测试模块导入:

>>> import sys, importlib
>>> importlib.import_module("time")
<module 'time' (built-in)>
>>> print sys.modules.keys()
['copy_reg', 'sre_compile', '_sre', 'encodings', 'site', '__builtin__', 'sysconfig', '__main__', 'encodings.encodings', 'abc', 'importlib.sys', 'posixpath', '_weakrefset', 'errno', 'encodings.codecs', 'sre_constants', 're', '_abcoll', 'types', '_codecs', 'encodings.__builtin__', '_warnings', 'genericpath', 'stat', 'zipimport', '_sysconfigdata', 'warnings', 'UserDict', 'encodings.utf_8', 'sys', 'codecs', 'readline', '_sysconfigdata_nd', 'os.path', 'importlib', 'sitecustomize', 'signal', 'traceback', 'linecache', 'posix', 'encodings.aliases', 'time', 'exceptions', 'sre_parse', 'os', '_weakref']

time有没有。尽管如此:

>>> print time.time()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'time' is not defined

现在使用经典导入:

>>> import time
>>> print time.time()
1380831191.08

为什么不能以可以调用的方式importlib.import_module("time")导入?timetime.time()

4

3 回答 3

10

文档

指定的模块将被插入sys.modules并返回。

换句话说,import_module不会为你创建一个变量,你必须自己做:

time = importlib.import_module('time')

或者,在您的“动态”情况下:

globals()['time'] = importlib.import_module('time')

顺便说一句,你为什么要这样做?为什么不将法线包装importtry-except块中?

于 2013-10-04T10:55:14.123 回答
2

我认为 importlib.import_module("time")返回一个对象,我们需要将它分配给一个变量。使用该变量调用所有时间方法。

尝试:

import sys, importlib

var_name = importlib.import_module("time")
print var_name.time()
于 2013-10-04T10:55:05.840 回答
-1

请看在上帝的份上,不要这样做,这是浪费代码行,是另一个可能存在错误的地方,而且导入系统也可能会发生变化。如果你只是

import requests

让它失败然后我知道请求丢失了,我可以自己查看或安装它。

于 2013-10-04T11:11:33.430 回答