|
Revision 163
(checked in by rdelon, 4 years ago)
|
Renamed tutorial/Readme.txt to uppercase to be consistent
|
| Line | |
|---|
| 1 |
CherryPy Tutorials |
|---|
| 2 |
------------------------------------------------------------------------ |
|---|
| 3 |
|
|---|
| 4 |
This is a series of tutorials explaining how to develop dynamic web |
|---|
| 5 |
applications using CherryPy. A couple of notes: |
|---|
| 6 |
|
|---|
| 7 |
- Each of these tutorials builds on the ones before it. If you're |
|---|
| 8 |
new to CherryPy, we recommend you start with 01_helloworld.py and |
|---|
| 9 |
work your way upwards. :) |
|---|
| 10 |
|
|---|
| 11 |
- In most of these tutorials, you will notice that all output is done |
|---|
| 12 |
by returning normal Python strings, often using simple Python |
|---|
| 13 |
variable substitution. In most real-world applications, you will |
|---|
| 14 |
probably want to use a separate template package (like Cheetah, |
|---|
| 15 |
CherryTemplate or XML/XSL). |
|---|
| 16 |
|
|---|