def application( environ, start_response):
    start_response( "200 OK", [( "Content-Type", "text/plain" )] )
    return ["Hello world!"]

from ypy.wsgi import make_server
make_server( "localhost", 8080, application )

[EMAIL PROTECTED]:/srv/ypy# ypy hello.py

does not work and does not give me any output, it just runs doing
nothing i will figure it out tomorrow
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/modwsgi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to