I didn't try any examples, but looking at the easygui site it's pretty clearly a tool for building traditional gui applications in python, and not for doing web applications with tools like web.py.
At a glance without digging deeper I'd guess that to the the problem. I'm surprised you see any results at all. I've never used it, but just yesterday came across jeasyui.com... a toolkit built on jQuery for making a quick and dirty web application. It looks pretty cool, of course it's based on jQuery which has singlehandedly changed web development in the past few years. Hope this helps! S On Thu, Dec 13, 2012 at 7:22 PM, puccap <[email protected]> wrote: > 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. > -- You received this message because you are subscribed to the Google Groups "web.py" 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/webpy?hl=en.
