Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

5 місяці тому
12345678910111213141516
  1. from http.server import CGIHTTPRequestHandler, HTTPServer
  2. # Port sur lequel le serveur écoutera
  3. PORT = 8888
  4. class CustomCGIHandler(CGIHTTPRequestHandler):
  5. cgi_directories = ['./localhost/cgi-bin','/localhost/cgi-bin','./localhost/cgi-bin','/cgi-bin', '/notebooks/mushroom_observer/localhost/cgi-bin'] # Chemin du répertoire CGI
  6. def run(server_class=HTTPServer, handler_class=CustomCGIHandler, port=PORT):
  7. server_address = ('', port)
  8. httpd = server_class(server_address, handler_class)
  9. print(f'Serveur démarré sur le port {port}')
  10. httpd.serve_forever()
  11. if __name__ == "__main__":
  12. run()