An open API service indexing awesome lists of open source software.

https://github.com/pj8912/internet-speed

test internet speed with python
https://github.com/pj8912/internet-speed

bandwidth download-speed internet python upload

Last synced: 3 months ago
JSON representation

test internet speed with python

Awesome Lists containing this project

README

        

# internet-speed
test internet speed with python

To check upload and download speeds using Python, you can use the `speedtest-cli` library. This library allows you to test your internet connection speed by connecting to a server and measuring the time it takes to upload and download data.

## Create Virtual Environment
```
username:~/internet-speed-$ python -m vevn myenv
```
### Activate and Deactivate
- Activate
```
username:~/internet-speed-$ source myenv/bin/activate
```
- Deactivate
```
(myenv)username:~/internet-speed-$ deactivate
```

## Installation
```
$ pip install -r requirements.txt
```

## Run
```
$ python app.py
```