Brettapps's picture
Upgraded UI interface layout for Your First Digital Employee
99689c0 verified
Raw
History Blame Contribute Delete
248 Bytes
import http.server
import socketserver
PORT = 7860
Handler = http.server.SimpleHTTPRequestHandler
print(f"Serving Enhanced Fair Dinkum Space on port {PORT}...")
with socketserver.TCPServer(("", PORT), Handler) as httpd:
httpd.serve_forever()