如何在Python中获取Windows中进程的网络使用情况?
我正在使用 Python 2.7 和 Windows 7(但我需要它至少也能在 XP 上运行)。
如何获取用 Python 编写的程序使用的网络带宽百分比?因此,如果互联网速度为 20 Mbit/s,并且我的程序以“全速”连接到网络,它会写入 100%,等等。
提前致谢!
I'm using Python 2.7 and Windows 7 (but I need it to work on at least XP as well).
How can I get the percentage of the network bandwidth used by my program written in Python? So if the internet speed is 20 Mbit/s, and my program is connecting to the web at a "full speed", it'd write 100%, etc.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要开发具有这种功能的 Windows 网络驱动程序。
检查相关答案:
监控进程的网络使用情况?
You would need to develop a windows network driver with such capability.
Check the related answer at:
Monitor a process's network usage?