gpt4 book ai didi

python - 为 PyQt4.QtCore 导入 Hook

转载 作者:太空狗 更新时间:2023-10-29 18:32:25 26 4
gpt4 key购买 nike

我正在尝试设置一些 import hooks通过 sys.meta_path,与 this SO question 有点相似.为此,我需要定义两个函数 find_moduleload_module,如上面的链接所述。这是我的 load_module 函数,

import imp

def load_module(name, path):
fp, pathname, description = imp.find_module(name, path)

try:
module = imp.load_module(name, fp, pathname, description)
finally:
if fp:
fp.close()
return module

对于大多数模块都可以正常工作,但在使用 Python 2.7 时对于 PyQt4.QtCore 会失败:

name = "QtCore"
path = ['/usr/lib64/python2.7/site-packages/PyQt4']

mod = load_module(name, path)

返回,

Traceback (most recent call last):
File "test.py", line 19, in <module>
mod = load_module(name, path)
File "test.py", line 13, in load_module
module = imp.load_module(name, fp, pathname, description)
SystemError: dynamic module not initialized properly

相同的代码在 Python 3.4 中运行良好(尽管 imp 已被弃用,理想情况下应使用 importlib 代替)。

我想这与 SIP 动态模块初始化有关。还有什么我应该尝试使用 Python 2.7 的吗?

注意:这适用于 PyQt4PyQt5

编辑:这可能与this question有关事实上,

cd /usr/lib64/python2.7/site-packages/PyQt4
python2 -c 'import QtCore'

因同样的错误而失败。我仍然不确定有什么解决方法...

Edit2:根据 @Nikita 对具体用例示例的请求,我想做的是重定向导入,所以当一个人做 import A,发生的是import B。确实可以认为,为此,在 find_spec/find_module 中进行模块重命名,然后使用默认的 load_module 就足够了。但是,目前尚不清楚在 Python 2 中哪里可以找到默认的 load_module 实现。我发​​现的最接近类似实现的是 future.standard_library.RenameImport。 .看起来没有从 Python 3 到 2 的 importlib 完整实现的反向移植。

可在此 gist 中找到重现此问题的导入 Hook 的最小工作示例.

最佳答案

UPD:这部分在答案更新后并不真正相关,因此请参阅下面的 UPD。

为什么不直接使用 importlib.import_module ,它在 Python 2.7 和 Python 3 中都可用:

#test.py

import importlib

mod = importlib.import_module('PyQt4.QtCore')
print(mod.__file__)

在 Ubuntu 14.04 上:

$ python2 test.py 
/usr/lib/python2.7/dist-packages/PyQt4/QtCore.so

由于它是一个动态模块,如错误中所述(实际文件是 QtCore.so),也可以查看 imp.load_dynamic .

另一个解决方案可能是强制执行模块初始化代码,但在我看来这太麻烦了,所以为什么不直接使用 importlib

UPD:pkgutil 中有些内容可能会有所帮助。我在评论中所说的,尝试像这样修改您的查找器:

import pkgutil

class RenameImportFinder(object):

def find_module(self, fullname, path=None):
""" This is the finder function that renames all imports like
PyQt4.module or PySide.module into PyQt4.module """
for backend_name in valid_backends:
if fullname.startswith(backend_name):
# just rename the import (That's what i thought about)
name_new = fullname.replace(backend_name, redirect_to_backend)
print('Renaming import:', fullname, '->', name_new, )
print(' Path:', path)


# (And here, don't create a custom loader, get one from the
# system, either by using 'pkgutil.get_loader' as suggested
# in PEP302, or instantiate 'pkgutil.ImpLoader').

return pkgutil.get_loader(name_new)

#(Original return statement, probably 'pkgutil.ImpLoader'
#instantiation should be inside 'RenameImportLoader' after
#'find_module()' call.)
#return RenameImportLoader(name_orig=fullname, path=path,
# name_new=name_new)

return None

目前无法测试上面的代码,请自行尝试。

附言请注意,在 Python 3 中为您工作的 imp.load_module()deprecated since Python 3.3 .

另一种解决方案是根本不使用钩子(Hook),而是包装 __import__:

print(__import__)

valid_backends = ['shelve']
redirect_to_backend = 'pickle'

# Using closure with parameters
def import_wrapper(valid_backends, redirect_to_backend):
def wrapper(import_orig):
def import_mod(*args, **kwargs):
fullname = args[0]
for backend_name in valid_backends:
if fullname.startswith(backend_name):
fullname = fullname.replace(backend_name, redirect_to_backend)
args = (fullname,) + args[1:]
return import_orig(*args, **kwargs)
return import_mod
return wrapper

# Here it's important to assign to __import__ in __builtin__ and not
# local __import__, or it won't affect the import statement.
import __builtin__
__builtin__.__import__ = import_wrapper(valid_backends,
redirect_to_backend)(__builtin__.__import__)

print(__import__)

import shutil
import shelve
import re
import glob

print shutil.__file__
print shelve.__file__
print re.__file__
print glob.__file__

输出:

<built-in function __import__>
<function import_mod at 0x02BBCAF0>
C:\Python27\lib\shutil.pyc
C:\Python27\lib\pickle.pyc
C:\Python27\lib\re.pyc
C:\Python27\lib\glob.pyc

shelve 重命名为 pickle,并且 pickle 被默认机器导入,变量名称为 shelve

关于python - 为 PyQt4.QtCore 导入 Hook ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36731323/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com