public
Description: Turtles all the way down
Homepage: http://simonwillison.net/2009/May/19/djng/
Clone URL: git://github.com/simonw/djng.git
djng / example_hello.py
100644 8 lines (5 sloc) 0.141 kb
1
2
3
4
5
6
7
8
import djng
 
def index(request):
    return djng.Response('Hello, world')
 
if __name__ == '__main__':
    djng.serve(index, '0.0.0.0', 8888)