init commit

This commit is contained in:
Vaclav Tvrdik
2024-07-11 12:36:00 +02:00
commit 240d0bc213
5 changed files with 624 additions and 0 deletions

9
run.py Normal file
View File

@@ -0,0 +1,9 @@
import http.server
import socketserver
PORT = 8080
print("open browser on http://localhost:8080/ms.html")
with socketserver.TCPServer(("", PORT), http.server.SimpleHTTPRequestHandler) as httpd:
print("Serving at port", PORT)
httpd.serve_forever()