views:

1576

answers:

3

I am looking for a good in-depth tutorial to get me going on CherryPy and haven't been able to find one on Google. The CherryPy website has a tutorial, but it is rather simple and doesn't discuss more than the basic aspects of CherryPy.

I am not interested in the book at this time, as I need to get some progress in the next few days and don't have time to read the book.

+2  A: 

I'm not sure that anything more complicated than a simple tutorial is necessary. I've been doing professional CherryPy development for years, and although I occasionally need to look something up from the docs, I never really needed to learn very much to get started making websites.

So my advice is to just get started programming and consult the docs when you find yourself saying "How do I handle sessions" or "How do I set response headers", etc. This is how I learned, and I've never had any complaints.

However, this advice only applies if you're already familiar with Python. If not, then it's Python and not CherryPy with which you'll need to become acquainted.

Eli Courtwright
Learning python isn't the issue. A friend introduced it to me a long time ago (and I did a lot of wxPython/PythonCard/wax coding for instance).
torial
In particular, I don't want to discover the features I need to learn. I would rather have: Here is how you write an ___ webapp with Cherrypy, that happens to go into detail of setting up response headers because that is part of the tutorial.
torial
+2  A: 

Here's a screencast showing a CherryPy application being built from the interactive interpreter. It's pretty cool.

Aaron Maenpaa
That was a good link (and ipython is cooler than I realized!), but I am craving something more in depth.
torial
+4  A: 

This book seems to be pretty good: http://www.packtpub.com/CherryPy/book

projecktzero
Very true. I've worked with Sylvain and he's a pretty knowledgable guy.
Jason Baker