Find Python packages on pypi.org importing a certain package
Find Python packages on pypi.org importing a certain package
为了学习其他 Python 软件包的源代码,我正在 www.pypi.org 上寻找导入 concurrent.futures
.
的 Python 软件包
如何找到这样的包?
concurrent.futures
模块是标准库的一部分,因此您要求的是一种在 PyPI 上搜索所有包源的方法,这目前是不可能的。
您可能想尝试使用 GitHub 代码搜索:https://github.com/search?l=Python&q=%22concurrent.futures%22&type=Code
为了学习其他 Python 软件包的源代码,我正在 www.pypi.org 上寻找导入 concurrent.futures
.
如何找到这样的包?
concurrent.futures
模块是标准库的一部分,因此您要求的是一种在 PyPI 上搜索所有包源的方法,这目前是不可能的。
您可能想尝试使用 GitHub 代码搜索:https://github.com/search?l=Python&q=%22concurrent.futures%22&type=Code