Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.02 KB

index.rst

File metadata and controls

46 lines (32 loc) · 1.02 KB

Welcome to web.py's documentation!

Contents:

.. toctree::
   :maxdepth: 3

   urlmapping
   input
   db
   templating
   deploying
   api

Getting Started

Building webapps with web.py is easy. To get started, save the following code as say, hello.py and run it with python hello.py. Now point your browser to http://localhost:8080/ which responds you with 'Hello, world!'. Hey, you're done with your first program with with web.py - with just 8 lines of code!

import web

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

class hello:
    def GET(self):
        return 'Hello, world!'

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

Indices and tables