This commit is contained in:
Luke Ogburn
2021-03-08 13:43:57 -05:00
parent bdad3aca1e
commit 5dcdff1dc0
4 changed files with 27 additions and 28 deletions

9
server.py Normal file
View File

@@ -0,0 +1,9 @@
import http.server
import socketserver
PORT = 63655
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print("Serving at port", PORT)
httpd.serve_forever()