This website works better with JavaScript.
Home
Explore
Help
Sign In
holzschuhke56905
/
webengineering1
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
test1 neu
master
Kevin Holzschuh
5 years ago
parent
dcc0a926f2
commit
71238c8915
1 changed files
with
8 additions
and
0 deletions
Unified View
Show Diff Stats
8
0
HttpHtml/Server.py
+ 8
- 0
HttpHtml/Server.py
View File
import http.server
PORT = 4096
HANDLER = http.server.SimpleHTTPRequestHandler
ADDRESS = ('', PORT)
SERVER = http.server.HTTPServer(ADDRESS, HANDLER)
SERVER.serve_forever()
Write
Preview
Loading…
Cancel
Save