tite fractale

python3_cgi_server.py

télécharger

Attention ! Cet interpréteur n’est pas totalement compatible avec Python3.

Theme:

 

Version inerte :

import BaseHTTPServer
import CGIHTTPServer
import cgitb; cgitb.enable()  ## This line enables CGI error reporting

server = BaseHTTPServer.HTTPServer
handler = CGIHTTPServer.CGIHTTPRequestHandler
server_address = ("", 8000)
handler.cgi_directories = ["/"]

print("Starting server. Ctrl+C to quit.")

httpd = server(server_address, handler)
httpd.serve_forever()









Page générée le 27/05/2021, 09h53'27" (page virtuelle).
historique global