MYWOT
Child safety
Confidence
Trustworthiness
Confidence
MALICIOUS CONTENT INDICATORS
Webpy.org most likely does not offer any malicious content.
Secure connection support
HTTPS
Webpy.org provides SSL-encrypted connection.
ADULT CONTENT INDICATORS
Webpy.org most likely does not offer any adult content.
Popular pages
-
Welcome to web.py! (web.py)
0.51 is the last release with Python 2.7 support. A minimal web.py application app.py: import web urls = ( '/(.*)', 'hello' ) app = web.application(urls, globals()) class hello: def GET(self...
-
Tutorial (web.py)
Starting So you know Python and want to make a website. web.py provides the code to make that easy. If you want to do the whole tutorial, you’ll need to have installed Python, web.py, flup, psycopg2, ...
-
Download (web.py)
The easiest way to install web.py is using easy_install: $ easy_install web.py easy_install, try downloading the source package from pypi, then install manually. We use version 0.61 for example here...
-
Web.py Cookbook (web.py)
“Think about the ideal way to write a web app. Write the code to make it happen.” [more...]
- Documentation (web.py)
-
Understanding URL Handling (web.py)
Solution web.py’s URL handling scheme is simple yet powerful and flexible. At the top of each application, you usually see the full URL dispatching scheme defined as a tuple: urls = ( "/tasks/?", ...