How do I make a simple TCP python web client and web server
using only "import socket"?
Basically, the client connects to the server, and sends a HTTP
GET request for a specific file (like a text file, HTML page, jpeg,
png etc), the server checks for the file and sends a copy of the
data to the client along with the response headers (like 404 if not
found, or 200 if okay etc).
The process would be:
You first...