Browse Source

test1 neu

master
Kevin Holzschuh 4 years ago
parent
commit
71238c8915
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      HttpHtml/Server.py

+ 8
- 0
HttpHtml/Server.py 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()

Loading…
Cancel
Save