加载原生Python库
Python 2.7 附带了 json 库。在我的 PYTHONPATH 中,我包含第三方源,其中之一也称为 json。结果最终加载了错误的 json 库。处理和避免上述情况的良好做法是什么?有没有办法指示 Python 以这种方式显式加载本机库 from ?导入 json
。
Python 2.7 comes with json library included. In my PYTHONPATH I include third party sources and one of them is also called json. The result ending up with loaded the wrong json library. What would be a good practice to handle and avoid situations like above? Is there a way to instruct Python to explicitly load the native library in this fashion from ? import json
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试
通过这种方式消除命名空间冲突。
您还可以看到有关相对/绝对导入的讨论。
它说:
另一种技术是使用 imp 模块
You could try
This way the namespace conflict can be removed.
Also you can see the discussions about relative/absolute import.
It says :
The other technique is to use the imp module
在 PYTHONPATH 上确实没有好方法让多个模块具有相同的名称[docs],这意味着您可能应该将第三方 json 模块移动到不在 PYTHONPATH 上的备用位置,然后使用以下命令导入它其他一些方法。
最简单的方法是将第三方 json 模块移动到其所在位置的子目录中,然后通过向其中添加 __init__.py 使该子目录成为模块。
如果您将此新目录命名为“thirdparty”,则可以使用
fromthirdparty import json
导入第三方 json 模块,并且import json
将始终导入 Python 的 json 模块。或者,您可以将模块重命名为不冲突的名称。
There really is no good way to have multiple modules with the same name on PYTHONPATH[docs], this means that you should probably move the third party json module to an alternate location that is not on PYTHONPATH, and then import it using some other method.
The easiest way to do this is to move the third party json module into a subdirectory of the location it is already in, and then make that subdirectory a module by adding __init__.py to it.
If you named this new directory 'thirdparty', you could then import your third party json module using
from thirdparty import json
, andimport json
would always import Python's json module.Alternatively, you could rename the module to something that does not conflict.