I am trying to do a basic pop-up dialog in web.py and thought easygui would 
be the solution.  But my app hangs and the pop-up dialog is half rendered, 
sample code below.  Any insight is appreciated. 

import web
import easygui as eg

urls = ("/.*", "hello")
app = web.application(urls, globals())

class hello:
    def GET(self):
        eg.msgbox("hello")
        return 'Hello, world!'

if __name__ == "__main__":
    app.run()

-- 
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/webpy/-/0ChgtH6NjZQJ.
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/webpy?hl=en.

Reply via email to