Initial commit

This commit is contained in:
Leander Hutton 2017-09-08 09:57:03 -04:00
commit 2e41cb1c32
2 changed files with 27 additions and 0 deletions

7
README Normal file
View File

@ -0,0 +1,7 @@
Replies with HTTP status 200 Your Mom
Usage:
./yourmomasaservice.py
curl -i localhost:8080

20
yourmomasaservice.py Executable file
View File

@ -0,0 +1,20 @@
#!/usr/bin/env python
import BaseHTTPServer
import SocketServer
PORT = 8080
class YourMomServer(BaseHTTPServer.BaseHTTPRequestHandler):
def do_GET(self):
self.send_response(200, "Your Mom")
httpd = SocketServer.TCPServer(("", PORT), YourMomServer)
def serve():
return 1
while serve():
httpd.handle_request()