Printrun/libs/CherryPy-3.2.2/cherrypy/tutorial
unknown 16cf3d764f Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
..
README.txt Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
__init__.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
bonus-sqlobject.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
custom_error.html Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
pdf_file.pdf Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut01_helloworld.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut02_expose_methods.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut03_get_and_post.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut04_complex_site.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut05_derived_objects.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut06_default_method.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut07_sessions.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut08_generators_and_yield.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut09_files.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tut10_http_errors.py Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00
tutorial.conf Added Initial Web Framework for Pronterface, right now, read only global settings. 2012-05-30 16:13:49 -05:00

README.txt

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

CherryPy Tutorials
------------------------------------------------------------------------

This is a series of tutorials explaining how to develop dynamic web
applications using CherryPy. A couple of notes:

  - Each of these tutorials builds on the ones before it. If you're
    new to CherryPy, we recommend you start with 01_helloworld.py and
    work your way upwards. :)

  - In most of these tutorials, you will notice that all output is done
    by returning normal Python strings, often using simple Python
    variable substitution. In most real-world applications, you will
    probably want to use a separate template package (like Cheetah,
    CherryTemplate or XML/XSL).