views:

173

answers:

2

Specifically for the ff: topics:

  • Windows installation
  • Using mod_wsgi/mod_python
  • Python best practices
  • Python security stuff
  • Using Pylons

Thanks

A: 

Best practices: http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html

Pylons: http://pylonsbook.com/

And obviously, the Python docs: http://docs.python.org

Bastien Léonard
+1  A: 

The official Python tutorial is a High quality, very well written introduction to Python.

The Begginers guide is a good source of all interesting materials of Python.

I loved the original Dive into Python but it is fairly old(10 years?), and doesn't necessarily document all the changes in the recent years. However the author has written another master piece that is targeted at Python 3 users: Dive into Python 3.

Lakshman Prasad
*DIP* gets way more credit than it deserves. It contains a lot of inaccuracies and bad code compared to other beginner Python books like *How To Think Like a Computer Scientist*. *DIP* introduces things in odd orders (for example, comprehensions before loops), often uses wrong terms (calling many iterators lists that aren't, even when it's fairly important) or wrong definitions (for example claiming that an iterator is an object with an `__iter__` method), and makes silly, misleading claims (such as suggesting that an important/actual property of tuples is that they are faster than lists.)
Mike Graham
Mike: I guess those errors are all corrected in DIP3. Mark acknowledges those errors, I think. But the presentation of introducing the code and walking along to explain is excellent and I think thats why it gets all the credit.
Lakshman Prasad
Not to mention, the awesome typefaces used, easy access, and what I call "Written with love" :)
Lakshman Prasad