mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-14 08:34:34 +00:00
12 lines
247 B
Python
12 lines
247 B
Python
import http.server
|
|
import socketserver
|
|
|
|
PORT = 8000
|
|
|
|
|
|
def server():
|
|
Handler = http.server.SimpleHTTPRequestHandler
|
|
|
|
with socketserver.TCPServer(("", PORT), Handler) as httpd:
|
|
print("serving at port", PORT)
|
|
httpd.serve_forever() |