praktikum
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Server.py 174B

12345678
  1. import http.server
  2. PORT = 4096
  3. HANDLER = http.server.SimpleHTTPRequestHandler
  4. ADDRESS = ('', PORT)
  5. SERVER = http.server.HTTPServer(ADDRESS, HANDLER)
  6. SERVER.serve_forever()