Answers for "Server and client python"

1

server on python

import http.server
import socketserver

PORT = 8000

Handler = http.server.SimpleHTTPRequestHandler

with socketserver.TCPServer(("", PORT), Handler) as httpd:
    print("serving at port", PORT)
    httpd.serve_forever()
Posted by: Guest on May-18-2021
-1

server in python

def run(server_class=HTTPServer, handler_class=BaseHTTPRequestHandler):
    server_address = ('', 8000)
    httpd = server_class(server_address, handler_class)
    httpd.serve_forever()
Posted by: Guest on August-03-2021

Code answers related to "Server and client python"

Python Answers by Framework

Browse Popular Code Answers by Language