Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 21, 2021 04:50 am GMT

Speedtest your connection in Python

Today we'll be building our speed testing service in Python.
We have Speedtest websites like this to test our ping, upload, and download speed for those who don't know.

For today's article, I was looking to automate this since I check it regularly.

I choose Python as the language, seeing I'm trying that out a bit.

Installing the speedtest-cli in Python

Before we can use this package, we have to install it to become available for us to use.

Use the following command to install it:

pip install speedtest-cli

Now open your python file and start by importing the speed test module.

import speedtest

Then we create a new speed test. In my case, I'm assigning it to the st variable.

st = speedtest.Speedtest()

Note: be aware running the speed test takes a while, so be patient

Now let's try our download speed and print it out:

print(st.download())

When we run this, we get a long number like this:

55775374.79559286

Making a full Python speed test script

Now that we know the basics of the speed test, we want to receive three elements:

  • ping
  • download
  • upload

I'll be showing you how to get this data and format it nicely.

Starting with the ping, for this to work, we need to define a server to ping. In our case let's choose the best one.

st.get_best_server()

After this, we can get the ping to this server by using the following:

print(f"Your ping is: {st.results.ping} ms")

Let's go on to download. We have already seen we can get this by calling the download() function, but it's unformatted.
Below I'll show you how to format it to Mbit/s.

print(f"Your download speed: {round(st.download() / 1000 / 1000, 1)} Mbit/s")

We can make the same approach for the upload but use the upload() function.

print(f"Your upload speed: {round(st.upload() / 1000 / 1000, 1)} Mbit/s")

The full script will look like this:

import speedtestst = speedtest.Speedtest()st.get_best_server()print(f"Your ping is: {st.results.ping} ms")print(f"Your download speed: {round(st.download() / 1000 / 1000, 1)} Mbit/s")print(f"Your upload speed: {round(st.upload() / 1000 / 1000, 1)} Mbit/s")

And when we run this, it outputs:

Your ping is: 30.97 msYour download speed: 64.4 Mbit/sYour upload speed: 29.2 Mbit/s

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter


Original Link: https://dev.to/dailydevtips1/speedtest-your-connection-in-python-39kj

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To