This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-22/mockenv/lib/python3.6/site-packages/cherrypy/tutorial
2022-07-22 16:13:59 +05:30
..
__init__.py Fixing mock 2022-07-22 16:13:59 +05:30
custom_error.html Fixing mock 2022-07-22 16:13:59 +05:30
pdf_file.pdf Fixing mock 2022-07-22 16:13:59 +05:30
README.rst Fixing mock 2022-07-22 16:13:59 +05:30
tut01_helloworld.py Fixing mock 2022-07-22 16:13:59 +05:30
tut02_expose_methods.py Fixing mock 2022-07-22 16:13:59 +05:30
tut03_get_and_post.py Fixing mock 2022-07-22 16:13:59 +05:30
tut04_complex_site.py Fixing mock 2022-07-22 16:13:59 +05:30
tut05_derived_objects.py Fixing mock 2022-07-22 16:13:59 +05:30
tut06_default_method.py Fixing mock 2022-07-22 16:13:59 +05:30
tut07_sessions.py Fixing mock 2022-07-22 16:13:59 +05:30
tut08_generators_and_yield.py Fixing mock 2022-07-22 16:13:59 +05:30
tut09_files.py Fixing mock 2022-07-22 16:13:59 +05:30
tut10_http_errors.py Fixing mock 2022-07-22 16:13:59 +05:30
tutorial.conf Fixing mock 2022-07-22 16:13:59 +05:30

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).