Skip to content

Instantly share code, notes, and snippets.

@eduardosan
Created August 18, 2016 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eduardosan/5e8dc509e4fbac378342123d174dd62e to your computer and use it in GitHub Desktop.
Save eduardosan/5e8dc509e4fbac378342123d174dd62e to your computer and use it in GitHub Desktop.
Python basic cgi
#!/usr/bin/env python
# -*- coding: UTF-8 -*-# enable debugging
import cgitb
cgitb.enable()
print("Content-Type: text/html;charset=utf-8")
print("")
print("Hello World!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment