vote up 4 vote down star
7

Can someone suggest an advanced Python book? I want a book that covers topics such as threading, networking, memory management and so on.

flag

50% accept rate
1  
You should probably just direct this question at Alex Martelli since he's a user on here :) – Casey Oct 19 at 21:38

6 Answers

vote up 3 vote down check

The python cookbook is a good repository of examples, though some of them are getting a bit long in the tooth these days. The second edition is newer (2005), though it is targeted to 2.4.

http://www.amazon.com/Python-Cookbook-Alex-Martelli/dp/0596007973/

http://oreilly.com/catalog/9780596007973/

link|flag
Another good Alex Martelli book is oreilly.com/catalog/9780596001889 Hopefully he'll do an edition for Python3 – gnibbler Oct 19 at 20:57
vote up 0 vote down
link|flag
2  
Seriously Dive Into Python can not be considered as 'Advanced' Python book. – jpartogi Oct 19 at 21:43
vote up 4 vote down

Expert Python Programming. it covers not just the general best practices (generators, iterators, etc) but then the real stuff you need to build a project -- documentation w/ restructured text & sphinx, testing with nose, buildout, setuptools, etc.

link|flag
vote up 0 vote down

Dive into python - and it is free.

link|flag
2  
I wouldn't call a book with a chapter titled "Your First Python Program" an advanced book. – foosion Oct 19 at 20:07
vote up 8 vote down

For the topics you described, you need to understand operating systems more than python. Once the OS level becomes clear, the Python code is quite obvious.

This is one of the best books ever written:

Advanced Programming in the UNIX Environment, Second Edition (Addison-Wesley Professional Computing Series) (Paperback)

ISBN-10: 0321525949
ISBN-13: 978-0321525949

5 star amazon reviews (I'd give it 6).

Once I realized that networking, file I/O, shared memory, IPC, sockets, signals, etc... are all provided by the OS layer, then this became the answer to a lot of questions.

Then going back to python, you understand what all the stuff in the os module means, and can write really advanced programs with ease.

link|flag
Thanks it looks great :) – giolekva Oct 19 at 19:55
You can link to Amazon if you so wish. – KingNestor Oct 19 at 20:08
It sure would be nice to be able to add "tags" to a specific answer; I'd tag this one "c", "c++", "ruby", "perl", "bash", "unix", "linux" ... :) – Kevin Little Oct 20 at 3:02
vote up 9 vote down

I find "Python Essential Reference" useful. It is a great reference and general language book.

http://www.amazon.com/Python-Essential-Reference-David-Beazley/dp/0672329786

link|flag
+1: Dabeaz does a great job explaining many of Python's built-ins and finer points. – ewall Oct 19 at 19:47
I second that one, written by David Beazley (SWIG), it gives a very good idea of how to use Python efficiently and optimize the code. – RedGlyph Oct 19 at 19:47
+1: Dabeaz - I just wish for a soft copy.. – rh0dium Oct 19 at 20:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.