test1 neu
This commit is contained in:
parent
dcc0a926f2
commit
71238c8915
8
HttpHtml/Server.py
Normal file
8
HttpHtml/Server.py
Normal 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()
|
Loading…
x
Reference in New Issue
Block a user