加载原生Python库

发布于 2024-12-19 09:28:13 字数 158 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

新人笑 2024-12-26 09:28:13

您可以尝试

from path import json as anotherjson

通过这种方式消除命名空间冲突。

您还可以看到有关相对/绝对导入的讨论。

它说:

在Python 2.5中,您可以将导入行为切换为绝对导入
使用 from future importabsolute_import 指令。这
绝对导入行为将成为未来版本中的默认行为
(可能是Python 2.7)。一旦绝对导入成为默认值,导入
字符串将始终找到标准库的版本。建议
用户应该开始尽可能多地使用绝对导入。

from __future__ import absolute_import
# from standard path
import json as _json 
# from a package
from pkg import json as pkgjson

另一种技术是使用 imp 模块

import imp
json = imp.load_source('json', '/path/to/json.py')

You could try

from path import json as anotherjson

This way the namespace conflict can be removed.

Also you can see the discussions about relative/absolute import.

It says :

In Python 2.5, you can switch import‘s behaviour to absolute imports
using a from future import absolute_import directive. This
absolute- import behaviour will become the default in a future version
(probably Python 2.7). Once absolute imports are the default, import
string will always find the standard library’s version. It’s suggested
that users should begin using absolute imports as much as possible.

from __future__ import absolute_import
# from standard path
import json as _json 
# from a package
from pkg import json as pkgjson

The other technique is to use the imp module

import imp
json = imp.load_source('json', '/path/to/json.py')
你在我安 2024-12-26 09:28:13

在 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, and import json would always import Python's json module.

Alternatively, you could rename the module to something that does not conflict.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文