Webpy.org is minimalistic web framework written in Python

Title

web.py: makes web apps

Description

Excerpted from the website:

import web urls = ( '/(.*)', 'hello' ) class hello: def GET(self, name): i = web.input(times=1) if not name: name = 'world' for c in xrange(int(i.times)): print 'Hello,', name+'!' if __name__ == "__main__": web.run(urls)
read more

Languages

English

Additional Information

Related Domains

External Links



Retrieved from "http://aboutus.com/index.php?title=Webpy.org&oldid=34506394"