from http.server import SimpleHTTPRequestHandler, HTTPServer

PORT = 80

class Handler(SimpleHTTPRequestHandler):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, directory=".", **kwargs)

with HTTPServer(("", PORT), Handler) as httpd:
    print(f"Serving Python app on port {PORT}")
    httpd.serve_forever()
