@@ -78,14 +78,25 @@ More information about test driven development can be found at these resources:
7878
7979 `Test Driven Development <http://en.wikipedia.org/wiki/Test-driven_development >`_
8080
81+ A Byte of Python
82+ ~~~~~~~~~~~~~~~~
83+
84+ A free introductory book that teaches python at the beginner level, it assumes no
85+ previous programming experience.
86+
87+ `A Byte of Python for Python 2.x <http://www.ibiblio.org/swaroopch/byteofpython/read/ >`_
88+ `A Byte of Python for Python 3.x <http://www.swaroopch.org/notes/Python_en:Table_of_Contents >`_
89+
8190
8291Advanced
8392--------
8493
8594Pro Python
8695~~~~~~~~~~
8796
88- .. todo :: Write about `Pro Python <http://propython.com/>`_
97+ This book is for intermediate to advanced Python programmers who are looking to understand how
98+ and why Python works the way it does and how they can take their code to the next level.
99+
89100
90101Expert Python Programming
91102~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -103,6 +114,14 @@ development, version control, and optimization/profiling.
103114
104115 `Expert Python Programming <http://www.packtpub.com/expert-python-programming/book >`_
105116
117+ The Python Tutorial
118+ ~~~~~~~~~~~~~~~~~~~~
119+
120+ This is the official tutorial, it covers all the basics, and offers a tour of the
121+ language and the standard library, recommended for those who need a quickstart
122+ guide to the language.
123+
124+ `The Python Tutorial <http://docs.python.org/tutorial/index.html >`_
106125
107126References
108127----------
@@ -113,3 +132,11 @@ Python in a Nutshell
113132Python in a Nutshell, written by Alex Martelli, covers most cross-platform
114133python's usage, from its syntax to built-in libraries to advanced topics such
115134as writing C extensions.
135+
136+ The Python Language Reference
137+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
138+
139+ This is Python's reference manual, it covers the syntax and the core symantics of the
140+ language.
141+
142+ `The Python Language Reference <http://docs.python.org/reference/index.html >`_
0 commit comments