test1 neu

This commit is contained in:
Kevin Holzschuh 2019-10-22 14:04:15 +02:00
parent dcc0a926f2
commit 71238c8915

8
HttpHtml/Server.py Normal file
View File

@ -0,0 +1,8 @@
import http.server
PORT = 4096
HANDLER = http.server.SimpleHTTPRequestHandler
ADDRESS = ('', PORT)
SERVER = http.server.HTTPServer(ADDRESS, HANDLER)
SERVER.serve_forever()