Mercurial > kraina_muminkow
comparison prezentacja-django-flask/hello_werkzeug.py @ 26:f73176cba39b
Zacząłem pracę nad prezentacją
author | Michał Rudowicz <michal.rudowicz@fl9.eu> |
---|---|
date | Fri, 13 May 2011 16:37:29 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
25:3a26da290650 | 26:f73176cba39b |
---|---|
1 from werkzeug.wrappers import Request, Response | |
2 | |
3 # Przyklad skopiowany ze strony glownej projektu Werkzeug | |
4 # http://werkzeug.pocoo.org/ | |
5 | |
6 @Request.application | |
7 def application(request): | |
8 return Response('Witaj Swiecie!') | |
9 | |
10 if __name__ == '__main__': | |
11 from werkzeug.serving import run_simple | |
12 run_simple('localhost', 4000, application) |