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
- Host: GitHub
- URL: https://github.com/pj8912/internet-speed
- Owner: pj8912
- Created: 2023-02-22T07:23:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-24T01:30:15.000Z (over 2 years ago)
- Last Synced: 2025-01-11T11:12:37.785Z (5 months ago)
- Topics: bandwidth, download-speed, internet, python, upload
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# internet-speed
test internet speed with pythonTo 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
```