Advertisement
calfred2808

#Python speedtest

Jul 21st, 2020
1,292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. import speedtest
  2.  
  3.  
  4.  
  5. test = speedtest.Speedtest()
  6. download=test.download()
  7. upload=test.upload()
  8.  
  9.  
  10. print(f"'Download Speed: {download} \n Upload Speed: {upload} ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement