view prezentacja-django-flask/hello_werkzeug.py @ 33:028cb06a24c9 tip

usunąłem thumbs.db
author Michał Rudowicz <michal.rudowicz@fl9.eu>
date Mon, 13 Jun 2011 09:55:17 +0200
parents f73176cba39b
children
line wrap: on
line source

from werkzeug.wrappers import Request, Response

# Przyklad skopiowany ze strony glownej projektu Werkzeug
# http://werkzeug.pocoo.org/

@Request.application
def application(request):
    return Response('Witaj Swiecie!')

if __name__ == '__main__':
    from werkzeug.serving import run_simple
    run_simple('localhost', 4000, application)