From b9990cfb021aca20ead1ce90adc4b44a700b243f Mon Sep 17 00:00:00 2001 From: Dhruv Bansal Date: Sun, 13 Jun 2021 18:22:33 +0530 Subject: [PATCH] Add files via upload --- TestMyInternetSpeed/README.md | 18 ++++++++++++++++++ TestMyInternetSpeed/requirements.txt | 1 + 2 files changed, 19 insertions(+) create mode 100644 TestMyInternetSpeed/README.md create mode 100644 TestMyInternetSpeed/requirements.txt diff --git a/TestMyInternetSpeed/README.md b/TestMyInternetSpeed/README.md new file mode 100644 index 0000000..ac3f92e --- /dev/null +++ b/TestMyInternetSpeed/README.md @@ -0,0 +1,18 @@ +##Test Your Internet Speed using Python + +This is a simple but powerful and efficient python program. +You can test your internet bandwidth speed with this script i wrote using just a single command, you will also get a bunch of good options to choose from and the test will be performed with the help of speedtest-cli module in python. + +- Test Download Speed +- Test Upload Speed +- Test Server Pings +- Results in Mbps(Mega bits per second) + +####How to use + +- Clone the repo or download the zip +- Navigate to the folder of the program in terminal/cmd. +- Install the dependencies using pip install -r requirements.txt +- Run the command python TestMySpeed.py + +(Note: You will need to have python 3 installed and if you are on a unix based OS (macOS, or linux) you may need to run the command using python3 TestMySpeed.py) \ No newline at end of file diff --git a/TestMyInternetSpeed/requirements.txt b/TestMyInternetSpeed/requirements.txt new file mode 100644 index 0000000..5977a22 --- /dev/null +++ b/TestMyInternetSpeed/requirements.txt @@ -0,0 +1 @@ +speedtest-cli \ No newline at end of file