简体   繁体   中英

How to get % usage of a network card on Windows 7 using Python

How do I get % usage of one or many network cards on Windows 7 using Python? I tried using psutil library but it returns only transfered data.

I would like to get list of network cards and their usage

Network card 1 - 1%
Network card 2 - 0%
Network card 3 - 5%

You can't get percentage but you can get bytes sent and received, install psutil , import psutil and re (regex module). See example code below on how I did it.

import psutil # http://code.google.com/p/psutil/
import re # Regular expression

#Percentage function
def percentage(part, whole):
        return 100 * float(part)/float(whole)

if __name__ == '__main__':

    #Retrieve all stats for all Network Cards using psutil
    Stats = psutil.net_io_counters(pernic=True)

    #Just showing printed values for Stats, useful for new coders :)
    for key, val in Stats.items():
        print key, val


    #Filter Starts, convert to string for use with Regular expression
    LanString = str(Stats['Local Area Connection'])
    WirelessString = str(Stats['Wireless Network Connection'])

    #Regular expression pattern that collects values between = character and , character
    pattern = re.compile("\=(.*?)\,") 

    #Find all values matching the pattern
    LanResult = re.findall(pattern, LanString)
    WirelessResult = re.findall(pattern, WirelessString)

    #Select values bytes_sent + bytes_recieved, convert to integers, add together
    LanSumUsage = int(LanResult[0]) + int(LanResult[1])
    WirelessSumUsage = int(WirelessResult[0]) + int(WirelessResult[1])

    #Calculate and print percentages
    TotalUsage = LanSumUsage + WirelessSumUsage
    LanCardPercentage = percentage(LanSumUsage, TotalUsage)
    WirelessCardPercentage = percentage(WirelessSumUsage, TotalUsage)
    print("\nLan Card: %d%%") % LanCardPercentage
    print("Wireless Card: %d%%") % WirelessCardPercentage

Take this code with a grain of salt, new to programming (a week in). Also no error handling.

Oh and my Output is below, my lan card isn't being used.

Wireless Network Connection iostat(bytes_sent=801853517, bytes_recv=2106217519, packets_sent=4655581, packets_recv=6351113, errin=0, errout=0, dropin=0, dropout=0)
isatap.{10384343-0618-4406-B3D9-DA096A39B0DC} iostat(bytes_sent=0, bytes_recv=0, packets_sent=0, packets_recv=0, errin=0, errout=0, dropin=0, dropout=0)
Teredo Tunneling Pseudo-Interface iostat(bytes_sent=3358183, bytes_recv=27088294, packets_sent=40579, packets_recv=33727, errin=0, errout=1474, dropin=0, dropout=0)
Local Area Connection iostat(bytes_sent=0, bytes_recv=0, packets_sent=0, packets_recv=0, errin=0, errout=0, dropin=0, dropout=0)
Loopback Pseudo-Interface 1 iostat(bytes_sent=0, bytes_recv=0, packets_sent=0, packets_recv=0, errin=0, errout=0, dropin=0, dropout=0)
isatap.{109E44C6-1D07-4E41-A7EA-FCFF2284A1DB} iostat(bytes_sent=0, bytes_recv=0, packets_sent=0, packets_recv=0, errin=0, errout=0, dropin=0, dropout=0)

Lan Card: 0%
Wireless Card: 100%

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM