更具体地说,我一直在Windows PowerShell中使用speedtest-cli。我能够通过使用"pip install speedtest-cli“获得这个工具。这个工具只需在PowerShell中输入"speedtest-cli“,就可以测试我的上传和下载速度。我想知道是否以及在哪里会有一个类似于"speedtest-cli“的类似单行命令行工具的官方存储库。
我使用的是以下Python和Pip版本:
Python 3.7.2
pip 18.1
发布于 2019-01-18 13:29:05
当你pip install一个包时,默认情况下你会从PyPi获取它。所以搜索speedtest-cli pypi会很快把你带到这里:
https://pypi.org/project/speedtest-cli/
至于CLI,请查看Awesome- CLIs:https://github.com/agarrharr/awesome-cli-apps
对于特定于Python的工具,很多都列在Awesome库中:https://github.com/vinta/awesome-python
https://stackoverflow.com/questions/54248151
复制相似问题