https://github.com/unkn0wnn4m3/python-server-checker
Simple python script to check web connections using sockets
https://github.com/unkn0wnn4m3/python-server-checker
python python3 script sockets
Last synced: 9 months ago
JSON representation
Simple python script to check web connections using sockets
- Host: GitHub
- URL: https://github.com/unkn0wnn4m3/python-server-checker
- Owner: Unkn0wnN4m3
- Created: 2022-10-23T23:07:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-23T04:06:55.000Z (about 3 years ago)
- Last Synced: 2024-12-25T21:09:30.019Z (about 1 year ago)
- Topics: python, python3, script, sockets
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Server Checker
A simple script to create IPv4 sockets, in order to establish a connection and see if the address is online.
## Usage
To use this script you will need `python3`
A virtual environment is recommended for testing this script. You can use `venv` of `pipenv`.
Once you have created the virtual environment, install the packages specified in the "requirements.txt" file, using:
```bash
python -m pip install -r requirements.txt
# or
pipenv install -r requirements.txt
```
Finally, you can run the script with:
```bash
python server_checker.py google.com
```