How to find quot;import namequot; of any package in Python?(如何找到“进口名称Python中的任何包?)
问题描述
我想知道是否有任何可靠且一致的方法来获取 Python 包的导入名称"/命名空间.例如;
I wonder if is there any reliable and consistant way to get a Python package's "import name" / namespace. For example;
包;django 干草堆
进口名称;干草堆
Package; django-haystack
Import name; haystack
或
包;ipython
进口名称;IPython
Package; ipython
Import name; IPython
到目前为止,我知道,PyPi 不存储我使用 PyPiXmlRpc 检查过的信息.
So far I know, PyPi doesn't store that information that I've checked with PyPiXmlRpc.
我还尝试自动下载包、解压缩并挖掘 .egg-info,但有些包根本没有那个文件夹.
I also tried to automate to download the package, extract it and dig the .egg-info but some packages doesn't have that folder at all.
任何帮助将不胜感激,并将用于一个礼貌的小工具:)
Any help will be appreciated and will be used for a good-manner gadget :)
推荐答案
注意这里所说的包不是包,而是发行版.一个发行版可以包含零个或多个模块或包.这意味着分发包与包之间没有一对一的映射.
Note that what you call a package here is not a package but a distribution. A distribution can contain zero or more modules or packages. That means there is no one-to-one mapping of distributions to packages.
我不确定是否有办法检测发行版将安装哪些模块和包,而不是实际安装它并检查新添加的包、模块和 pth 文件的文件系统更改.
I'm not sure there is a way to detect what modules and packages will be installed by a distribution, other than actually installing it and introspect filesystem changes for newly added packages, modules and pth files.
这篇关于如何找到“进口名称"Python中的任何包?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何找到“进口名称"Python中的任何包?


基础教程推荐
- 筛选NumPy数组 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01