You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a Python program that measures your internet speed using the Speedtest library and displays the results in a graphical user interface (GUI) built with tkinter.
3
+
4
+
## Prerequisites
5
+
Make sure you have the following prerequisites installed:
6
+
- speedtest-cli library
7
+
- tkinter library (usually comes pre-installed with Python)
8
+
9
+
## Installation
10
+
1. Clone or download the repository to your local machine.
11
+
12
+
2. Install the required libraries by running the following command:
13
+
```
14
+
pip install speedtest-cli
15
+
```
16
+
17
+
3. Run the script:
18
+
```
19
+
python internet_speed_test.py
20
+
```
21
+
22
+
## How to Use
23
+
1. After running the script, a GUI window will open.
24
+
2. Click the "Run Speed Test" button to initiate the speed test.
25
+
3. The program will measure your download speed, upload speed, ping latency, and server information, and display the results in the GUI window.
26
+
27
+
## Customization
28
+
- You can change the primary and secondary color of the GUI by modifying the PRIMARY_COLOR and SECONDARY_COLOR variables in the code.
29
+
- If you prefer a different theme for the GUI, you can change it by modifying the style.theme_use() line. Currently, the "clam" theme is used.
0 commit comments