This file contains 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
#!/usr/bin/env python | |
import datetime | |
import speedtest | |
from influxdb import InfluxDBClient | |
# influx configuration - edit these | |
ifuser = "grafana" | |
ifpass = "<yourpassword>" | |
ifdb = "home" | |
ifhost = "127.0.0.1" | |
ifport = 8086 | |
measurement_name = "speedtest" | |
# take a timestamp for this measurement | |
time = datetime.datetime.utcnow() | |
# run a single-threaded speedtest using default server | |
s = speedtest.Speedtest() | |
s.get_best_server() | |
s.download(threads=1) | |
s.upload(threads=1) | |
res = s.results.dict() | |
# format the data as a single measurement for influx | |
body = [ | |
{ | |
"measurement": measurement_name, | |
"time": time, | |
"fields": { | |
"download": res["download"], | |
"upload": res["upload"], | |
"ping": res["ping"] | |
} | |
} | |
] | |
# connect to influx | |
ifclient = InfluxDBClient(ifhost,ifport,ifuser,ifpass,ifdb) | |
# write the measurement | |
ifclient.write_points(body) |
Hey,
i always get the following error when running the script. I run the script with sudo ./speedtest.py
Traceback (most recent call last):
File "./speedtest.py", line 4, in <module>
import speedtest
File "/home/pi/speedtest.py", line 19, in <module>
s = speedtest.Speedtest()
AttributeError: 'module' object has no attribute 'Speedtest'
I have followed the instructions so far.
My Python version is 2.7.16
Hardware: RPi 2 with Debian Buster
Cheers
Jonas
If I wanted to specify a server to use in the python script (an ID that shows from the 'speedtest-cli --list' command) - How would I go about adding that into the code?
j-n-s-k-n-r, do not name your script the same name as an imported module. Otherwise, instead of importing the speedtest module, it will import the .py file.
In short, just name speedtest.py to something else.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for supporting python v3 I had to update this item #!/usr/bin/env python
to #!/usr/bin/env python3
maybe add a comment?