Skip to content

Instantly share code, notes, and snippets.

@pagenoare
Created July 4, 2009 11:57
Show Gist options
  • Save pagenoare/140539 to your computer and use it in GitHub Desktop.
Save pagenoare/140539 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
# -*- coding: utf-8 -*-
from pygnite import *
@get('/')
def index(request):
index.headers = { 'Content-type' : 'text/plain' }
# index.status = 200
return 'Hello world'
if __name__ == '__main__': pygnite(debug='www')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment