-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb_server.py
More file actions
40 lines (31 loc) · 1 KB
/
Copy pathweb_server.py
File metadata and controls
40 lines (31 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# import socket module
from socket import *
serverSocket = socket(AF_INET, SOCK_STREAM)
# Prepare a server socket
serverPort = 6789
serverName = 'localhost'
serverSocket.bind((serverName, serverPort))
serverSocket.listen(1)
responseHeader = 'HTTP/1.1 200 OK\nConnection: close\n'
while True:
# Establish the connection
print('Ready to serve...')
connectionSocket, clientAddr = serverSocket.accept()
try:
message = connectionSocket.recv(2048)
filename = message.split()[1]
f = open(filename[1:])
outputdata = f.read()
# print(outputdata)
# Send one HTTP header line into socket
connectionSocket.send(responseHeader)
# Send the content of the requested file to the client
for i in range(0, len(outputdata)):
connectionSocket.send(outputdata[i])
connectionSocket.close()
except IOError:
# Send response message for file not found
connectionSocket.send("404 Not Found\n")
# Close client socket
connectionSocket.close()
serverSocket.close()