Skip to content

Commit c25481c

Browse files
committed
Feat: Internet Speed Meter in Tkinter
1 parent 5b1247d commit c25481c

File tree

1 file changed

+148
-0
lines changed

1 file changed

+148
-0
lines changed

InternetSpeedMeter/main.py

+148
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
import psutil
2+
import math
3+
from tkinter import *
4+
from tkinter import messagebox
5+
import time
6+
import threading
7+
from tkinter import ttk
8+
import platform
9+
10+
11+
def convert_size(size_bytes):
12+
if size_bytes == 0:
13+
return "0B"
14+
size_name = ("B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB")
15+
i = int(math.floor(math.log(size_bytes, 1024)))
16+
p = math.pow(1024, i)
17+
s = round(size_bytes / p, 2)
18+
return "%s %s" % (s, size_name[i])
19+
20+
21+
# get network usages
22+
23+
24+
def getNetworkUsages(wifiVar, top):
25+
dictry = psutil.net_io_counters(pernic=True)
26+
speed = dictry.get('Wi-Fi')
27+
wifiVar.set('Data Usages (Wi-Fi) : {}'.format(convert_size(speed.bytes_recv)))
28+
top.after(500, lambda: getNetworkUsages(wifiVar, top))
29+
30+
31+
def getNetSpeed(top, netSpeedVar, ul, dl, t0, up_down):
32+
while True:
33+
last_up_down = up_down
34+
upload = psutil.net_io_counters(pernic=True)['Wi-Fi'][0]
35+
download = psutil.net_io_counters(pernic=True)['Wi-Fi'][1]
36+
t1 = time.time()
37+
up_down = (upload, download)
38+
try:
39+
ul, dl = [(now - last) / (t1 - t0) / 1024.0
40+
for now, last in zip(up_down, last_up_down)]
41+
t0 = time.time()
42+
except:
43+
pass
44+
if dl > 0.1 or ul >= 0.1:
45+
time.sleep(0.75)
46+
netSpeedVar.set('Down : {:0.2f} kB/s \n'.format(dl) + 'Up : {:0.2f} kB/s'.format(ul))
47+
else:
48+
netSpeedVar.set('Down : {:0.2f} kB/s \n'.format(0.00) + 'Up : {:0.2f} kB/s'.format(0.00))
49+
# top.after(500, lambda: getNetSpeed(top,netSpeedVar,ul,dl,t0,up_down))
50+
time.sleep(1)
51+
52+
53+
def about():
54+
about = 'Author : K M H Mubin\nVersion : 1.0\nRelease : 19-01-2021\n\nDesigned and developed by\nMubin'
55+
messagebox.showinfo("About", about)
56+
57+
58+
def getCpuPercent(cpuVar):
59+
while True:
60+
cpuVar.set('CPU : {}%'.format(psutil.cpu_percent(interval=1)))
61+
time.sleep(1)
62+
63+
64+
def resize():
65+
top.resizable(0, 0)
66+
top.geometry('300x150')
67+
top.minsize(200, 150)
68+
top.maxsize(300, 150)
69+
70+
71+
def main():
72+
global top
73+
top = Tk()
74+
75+
# Creating Menubar
76+
menubar = Menu(top)
77+
# Adding File Menu and commands
78+
file = Menu(menubar, tearoff=0)
79+
menubar.add_cascade(label='Menu', menu=file)
80+
file.add_command(label='Resize', command=resize)
81+
file.add_command(label='About', command=about)
82+
file.add_command(label='Exit', command=top.destroy)
83+
84+
# Tab layout
85+
tabControl = ttk.Notebook(top)
86+
tab1 = ttk.Frame(tabControl)
87+
tab2 = ttk.Frame(tabControl)
88+
tabControl.add(tab1, text=' Data ')
89+
tabControl.add(tab2, text=' CPU ')
90+
tabControl.pack(expand=True, fill=BOTH)
91+
92+
# for wifi text
93+
wifiVar = StringVar()
94+
wifilabel = ttk.Label(tab1, font=('Verdana', 10), textvariable=wifiVar)
95+
getNetworkUsages(wifiVar, top)
96+
97+
# for net speed text
98+
netSpeedVar = StringVar()
99+
netSpeedLabel = ttk.Label(tab1, font=('Verdana', 12), textvariable=netSpeedVar)
100+
101+
# for CPU text
102+
cpuVar = StringVar()
103+
cpuLabel = ttk.Label(tab2, font=('Verdana', 12), textvariable=cpuVar)
104+
cpuInfo = StringVar()
105+
cpuInfoLabel = ttk.Label(tab2, font=('Verdana', 10), textvariable=cpuInfo)
106+
107+
cpuThread = threading.Thread(target=getCpuPercent, args=(cpuVar,))
108+
cpuThread.daemon = True
109+
cpuThread.start()
110+
111+
uname = platform.uname()
112+
cpuInfo.set(f"System: {uname.system}\n"
113+
f"Node Name: {uname.node}\n"
114+
f"Version: {uname.version}\n"
115+
f"Machine: {uname.machine}\n"
116+
f"Processor: {uname.processor}")
117+
118+
# Thread safety for net speed
119+
ul = 0.00
120+
dl = 0.00
121+
t0 = time.time()
122+
upload = psutil.net_io_counters(pernic=True)['Wi-Fi'][0]
123+
download = psutil.net_io_counters(pernic=True)['Wi-Fi'][1]
124+
up_down = (upload, download)
125+
netSpeedThread = threading.Thread(target=getNetSpeed, args=(top, netSpeedVar, ul, dl, t0, up_down,))
126+
netSpeedThread.daemon = True
127+
netSpeedThread.start()
128+
129+
# widgets packing
130+
# Tab 1
131+
netSpeedLabel.grid(row=0, column=0, sticky=W, pady=16, padx=68)
132+
wifilabel.grid(row=1, column=0, sticky=W, pady=16, padx=32)
133+
# Tab 2
134+
cpuLabel.grid(row=0, column=0, sticky=W, pady=6, padx=16)
135+
cpuInfoLabel.grid(row=1, column=0, sticky=W, pady=0, padx=16)
136+
137+
# windows settings
138+
top.config(menu=menubar)
139+
# top.resizable(0, 0)
140+
top.title('Internet Speed')
141+
top.geometry('300x150')
142+
top.minsize(300, 150)
143+
top.maxsize(500, 500)
144+
top.mainloop()
145+
146+
147+
if __name__ == "__main__":
148+
main()

0 commit comments

Comments
 (0)