Skip to content

Latest commit

 

History

History
71 lines (46 loc) · 3.4 KB

index.md

File metadata and controls

71 lines (46 loc) · 3.4 KB
layout title
default
Welcome to web.py!

web.py is a web framework for Python that is as simple as it is powerful. web.py is in the public domain; you can use it for whatever purpose with absolutely no restrictions.

import web

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

class hello:
def GET(self, name): if not name: name = 'World' return 'Hello, ' + name + '!'

if name == "main": app.run()

A complete web.py application.

Get Started

web.py 0.37 is the latest released version of web.py. You can install it by running:

sudo easy_install web.py

Or to get the latest development version from git:

git clone git://github.com/webpy/webpy.git
ln -s `pwd`/webpy/web .

Who uses web.py?

web.py was originally published while Aaron Swartz worked at reddit.com, where the site used it as it grew to become one of the top 1000 sites according to Alexa and served millions of daily page views. "It's the anti-framework framework. web.py doesn't get in your way," explained founder Steve Huffman. (The site was rewritten using other tools after being acquired by Condé Nast.)

  • Frinki, a new social network in Spanish.

  • Yandex, the leading Russian search engine (their homepage alone receives 70 million daily page views).

  • Make History, a project of the 9/11 Memorial Museum, is powered by web.py on top of Google App Engine. On September 11, 2009, it received nearly 200,000 visitors. "It's my first time working with web.py and basically with Python," noted its developer. "web.py was awesome."

  • Oyster Hotel Reviews, a website that reviews hotels and lets you book them, uses web.py for its booking pages and dynamic content. They note that "web.py gives us the control we need for a large-scale website".

  • local.ch, the official online Telephone Directory for Switzerland - using web.py in a backend service for tracking expired content - code open-sourced as urldammit.

  • archivd.com, a web application for collaborative research and archiving, is built on web.py.

  • Chiefmall, a contractor search tool, was built with web.py.

"[web.py inspired the] web framework we use at FriendFeed [and] the webapp framework that ships with App Engine..."
  —  Brett Taylor, co-founder of FriendFeed and original tech lead on Google App Engine

"Django lets you write web apps in Django. TurboGears lets you write web apps in TurboGears. Web.py lets you write web apps in Python."
  —  Adam Atlas

"Guido [van Rossum, creator of Python], you'll probably find that web.py best suits your style. ... If you don't like it, I can't imagine which of the other dozens of frameworks out there you would like."
  —  Phillip J. Eby, creator of the Python Web Server Gateway Interface (WSGI) #