This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python Web Proxy for HTTP GET | |
# UFABC 2021 Computer Networks Project | |
# Inspired by: https://gist.github.com/darkwave/52842722c0c451807df4 | |
# Imports | |
if 1: | |
import sys | |
import socket | |
import time # for delay | |
import select # selection of available sockets |