Skip to content

Instantly share code, notes, and snippets.

@dshemetov
Created June 22, 2019 17:56
Show Gist options
  • Save dshemetov/c0ea2daab35c77a3f0e7f42193c487ae to your computer and use it in GitHub Desktop.
Save dshemetov/c0ea2daab35c77a3f0e7f42193c487ae to your computer and use it in GitHub Desktop.
import speedtest
st = speedtest.Speedtest()
st.get_servers()
st.get_best_server()
st.download()
st.upload()
res = st.results
with open('stats.json', 'a+') as f:
f.write(res)
f.write("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment