PYTHON CODING
- waclaw_koscielniak
- 3 minutes ago
- 1 min read
import speedtest
def check_speed():
st = speedtest.Speedtest()
st.get_best_server()
download_speed = st.download() / 1000000
upload_speed = st.upload() / 1000000
print(f"Download Speed: {download_speed: .2f} MBps")
print(f"Upload Speed: {upload_speed: .2f} MBps")
check_speed()
[Running] python3 -u "/Users/name/test/test847.py"
Download Speed: 138.91 MBps
Upload Speed: 60.06 MBps
[Done] exited with code=0 in 25.254 seconds
#Python #PythonCoding #VSC

Try to verify your speed.