Open adamfeatherston opened 2 years ago
def main(): """Starts the server on port 8088 using the HandleRequests class""" host = "" port = 8088 HTTPServer((host, port), HandleRequests).serve_forever() if __name__ == "__main__": main()
This was already done.