= Serveur Web minimaliste = == objectif du projet == [[Image(htdocs:png/2015_obj.png,width=600px)]] == Arborescence du site de base == [[Image(htdocs:png/2015_peri.png,height=300px)]] [[Image(htdocs:png/2015_stat.png,height=300px)]] {{{ . ├── server.py* └── www ├── cgi │ ├── charts.py* │ └── command.py* ├── img │ └── peri.png ├── index.html └── peri.html }}} '''server.py''' {{{ #!/usr/bin/env python import BaseHTTPServer import CGIHTTPServer import cgitb; cgitb.enable() server = BaseHTTPServer.HTTPServer handler = CGIHTTPServer.CGIHTTPRequestHandler server_address = ("", 8000) handler.cgi_directories = ["/cgi"] httpd = server(server_address, handler) httpd.serve_forever() }}} '''index.html''' {{{