Skip to main content

A utility for recording your internet speed.

Project description

Internet Speed Monitor

I've been curious to see how my internet speed varies during the day on my devices. As such, I decided to start collecting data.

Quickstart

Install the package:

pip install netspeedmonitor

Run the app from the command line:

netspeedmonitor app

If you'd like the app to run in the background:

netspeedmonitor app &

Be sure to take note of the process ID (PID) so that you can kill it as necessary.

To view the monitor UI, go to your [localhost in the browser on port 8501 (http://localhost:8501).

How this app works

Underneath the hood, we use the speedtest-cli package to send packets to Ookla's speed testing servers. The results are then logged to a TinyDB. To ensure atomic transactions, we use tinyrecord. Only a single instance of the app can be run per machine, because we use [tendo's] singleinstance module to ensure only a single instance runs on one machine. (Running multiple instances may clog up your internet especially if you are pinging Ookla's speed testing servers frequently, so we only allow a single instance to be run per machine. We use schedule to run speedtest-cli's speed testing functions on a user-configurable interval. Logging is made simple by using loguru The UI is built using streamlit; it was super fast and easy to build, kudos to the team!

Precautions to take

speedtest-cli sends about a few dozens of megabytes of data per test. As such, if you're using metered internet (i.e. one that has a data cap) such as a hotspot on your phone, you'll want to limit the frequency at which you ping Ookla's servers or prevent the process from running in the background.

Your internet speed data is private and yours by default

The open source package stores data in your home directory. By default it will store data at ~/.speedtest.json. (JSON is the default storage format for TinyDB.) You can inspect the source; by design, no measurement data is sent anywhere.

In fact, if you'd like to do your own analysis on the data, here's a code snippet that you can use to analyze it.

from tinydb import TinyDB

db = TinyDB("~/.speedtest.json")
df = pd.DataFrame(db.all())

Contributing and supporting the project

Contributions are welcome; support is even more welcome! Here's how you can help:

  1. Star the repo!
  2. Spread word about it on Twitter.
  3. Help test-drive the app.
  4. Test-drive the app on your Raspberry Pi.
  5. Make PRs to knock items off the roadmap.

Roadmap

  • Changing storage location (lets you back up on cloud storage).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

netspeedmonitor-0.1.1.tar.gz (5.7 kB view hashes)

Uploaded Source

Built Distribution

netspeedmonitor-0.1.1-py3-none-any.whl (6.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page