How to check network bandwidth with Python? [closed]
开发者_运维百科
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this questionAs asked, I would like my script to check network bandwidth giving me any idea how fast user can surf through web. Is there any library, which allows me to specify size of package to be send and gives ping time or whatever?
This answer mentions a Python implementation of ping
that returns the ICMP packet's round-trip time. You can use the improved code from the comment: https://gist.github.com/255009.
But note that since it uses raw sockets, your Python script will need to run as root
.
精彩评论