browser
from socket import socket s = socket() s.connect(('jeffeppinger.com', 80)) s.send('GET /jle/index.html') print(s.recv(8192))