Python 包使用(反向依赖扩展到未安装的)
Python package usage (reverse dependencies extended to not installed ones)
有没有一种简单的方法可以确定 Python 软件包使用了哪些其他未安装的软件包?
例如,当我发现一个有趣的包并想知道另一个项目是否使用时,它可能会让我免于重新发明轮子,因为我实际上想实施。
所以像 pipdeptree --reverse
(see this answer) 扩展到我没有安装但在 github.com 或 pypi.org.
上已知的软件包
偶然在 github 上看到 Used by link(右边栏),这是 short-cut 到 https://github.com/.../network/dependents/ (也通过 Insights)。
有没有一种简单的方法可以确定 Python 软件包使用了哪些其他未安装的软件包?
例如,当我发现一个有趣的包并想知道另一个项目是否使用时,它可能会让我免于重新发明轮子,因为我实际上想实施。
所以像 pipdeptree --reverse
(see this answer) 扩展到我没有安装但在 github.com 或 pypi.org.
偶然在 github 上看到 Used by link(右边栏),这是 short-cut 到 https://github.com/.../network/dependents/ (也通过 Insights)。