def application(environ, start_response): start_response('200 OK',[('Content-type','text/html')]) return ['Hello World!'] from wsgiref.handlers import CGIHandler CGIHandler().run(application)