Skip to content

Instantly share code, notes, and snippets.

@martingaido
Last active January 5, 2021 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martingaido/00cda43d8985669c096a97d4a17fefa8 to your computer and use it in GitHub Desktop.
Save martingaido/00cda43d8985669c096a97d4a17fefa8 to your computer and use it in GitHub Desktop.
Test Internet Connection Speed
# pip install speedtest-cli
import speedtest
test = speedtest.Speedtest()
down = test.download()
upload = test.upload()
print(f"Download Speed: {down}")
print(f"Upload Speed: {upload}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment