Commit b76c199c authored by Esguerra Montana's avatar Esguerra Montana
Browse files

Upload New File

parent 8a8b82a9
Pipeline #9584 passed with stage
in 6 seconds
import http.server
import socketserver
PORT = 8000
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print(f"Serving at port {PORT}")
httpd.serve_forever()
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment