webui/examples/C/custom_web_server/simple_web_server.py
2023-10-28 19:48:19 -04:00

11 lines
242 B
Python

import http.server
import socketserver
PORT = 8080
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print(f"Server started at http://localhost:{PORT}")
httpd.serve_forever()