|
| 1 | +Description: |
| 2 | +Creates a graphical user interface (GUI) application that allows users to check the status of websites. |
| 3 | +Users can input a website URL into the provided entry field and click the |
| 4 | +"Check Website" button to instantly retrieve the HTTP status code and description of the website's response. |
| 5 | + |
| 6 | +Retrieves the HTTP status code and description of the website's response. |
| 7 | +Utilizes the urlopen function to send HTTP requests and retrieve responses. |
| 8 | +Utilizes the http.HTTPStatus enumeration to map status codes to their descriptions |
| 9 | + |
| 10 | +Requrements(ignore if installed): |
| 11 | + |
| 12 | +pip install tkinter |
| 13 | +pip install urllib3 |
| 14 | +pip install http |
| 15 | +pip install fake-useragent |
| 16 | + |
| 17 | +Output: |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | +Steps to run: |
| 22 | + 1. cd Website Status Checker GUI |
| 23 | + 2. python app.py |
| 24 | + |
0 commit comments