Created
June 22, 2019 17:56
-
-
Save dshemetov/c0ea2daab35c77a3f0e7f42193c487ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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