forked from revolunet/PythonBooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissues.json
227 lines (227 loc) · 11.4 KB
/
issues.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{ "books" : [
{
"title": "Learn Python The Hard Way",
"author": "Zed A. Shaw",
"authorUrl": "http://learnpythonthehardway.org/",
"level": "Beginner",
"info": "Have you always wanted to learn how to code but never thought you could? Do you want to challenge your brain in a new way? ",
"url": "http://learnpythonthehardway.org/book",
"cover": "img/cover_learnpython.jpg"
},
{
"title": "Dive into Python (2004)",
"author": "Mark Pilgrim",
"authorUrl": "http://getpython3.com/diveintopython3/",
"level": "Intermediate",
"info": "Dive Into Python is a free Python book (from 2004) for experienced programmers. It covers many basics of the language",
"url": "http://www.diveintopython.net/toc/index.html",
"cover": "img/cover_divepython.jpg"
},
{
"title": "Dive into Python 3",
"author": "Mark Pilgrim",
"authorUrl": "http://getpython3.com/diveintopython3/",
"level": "Intermediate",
"info": "Dive Into Python 3 covers what's new in Python 3 and how its differs from Python 2.",
"url": "http://getpython3.com/diveintopython3/whats-new.html",
"cover": "img/cover_divepython3.jpg"
},
{
"title": "How to Think Like a Computer Scientist",
"author": "Allen B. Downey",
"authorUrl": "http://www.greenteapress.com/",
"level": "Beginner",
"info": "A very exhaustive book covering most of the language features, from datatypes to OOP and debugging.",
"url": "http://www.greenteapress.com/thinkpython/thinkCSpy/thinkCSpy.pdf",
"cover": "img/cover_thinkpython.jpg"
},
{
"title": "Kivy programming Guide",
"author": "Kivy",
"authorUrl": "http://kivy.org/",
"level": "Intermediate",
"info": "Discover Kivy the multitouch Python framework for desktop and mobile, and learn how to create a simple game.",
"url": "http://kivy.org/docs/pdf/Kivy-latest.pdf",
"cover": "img/cover_kivy.png"
},
{
"title": "Django Tutorial",
"author": "Community",
"authorUrl": "https://docs.djangoproject.com/en/dev/intro/",
"level": "Intermediate",
"info": "With this hands-on tutorial, discover Django the popular high-level Python Web framework that encourages rapid development and clean, pragmatic design.",
"url": "https://docs.djangoproject.com/en/dev/intro/",
"cover": "img/cover_django.png"
},
{
"title": "Pyramid for Humans",
"author": "Community",
"authorUrl": "http://pyramid.readthedocs.org/en/latest/index.html",
"level": "Intermediate",
"info": "With this tutorial, discover Pyramid a Python web application development framework. Its primary goal is to make it easier for a Python developer to create web applications.",
"url": "http://docs.pylonsproject.org/projects/pyramid_tutorials/en/latest/humans/index.html",
"cover": "img/cover_pyramid.png"
},
{
"title": "Flask microframework",
"author": "Armin Ronacher",
"authorUrl": "http://lucumr.pocoo.org/",
"level": "Intermediate",
"info": "Learn the Flask web microframework by example. Flask aims to keep the core simple but extensible and gives you freedom to choose the libraries of your choice.",
"url": "http://flask.pocoo.org/docs/tutorial/",
"cover": "img/cover_flask.png"
},
{
"title": "Making games with Python and Pygame",
"author": "Al Sweigart",
"authorUrl": "http://inventwithpython.com",
"level": "Intermediate",
"info": "Making Games with Python & Pygame” covers the Pygame library with the source code for 11 games.",
"url": "http://inventwithpython.com/pygame/chapters/",
"cover": "img/cover_makinggame.png"
},
{
"title": "A byte of Python",
"author": "Swaroop C H",
"authorUrl": "http://www.swaroopch.org/",
"level": "Beginner",
"info": "This book aims to help you learn the wonderful Python language and show how to get things done quickly and painlessly - in effect 'The Perfect Anti-venom to your programming problems'.",
"url": "http://files.swaroopch.com/python/byteofpython_120.pdf",
"cover": "img/cover_swaroop.png"
},
{
"title": "Python 101 - Introduction to Python",
"author": "Dave Kuhlman",
"authorUrl": "http://www.rexx.com/~dkuhlman",
"level": "Beginner",
"info": "This document is a syllabus for a first course in Python programming. This course contains an introduction to the Python language, instruction in the important and commonly used features of the language, and practical excercises in the use of those features.",
"url": "http://cutter.rexx.com/~dkuhlman/python_101/python_101.html",
"cover": "img/cover_python101.png"
},
{
"title": "The Standard Python Library",
"author": "Fredrik Lundh",
"authorUrl": "http://effbot.org/zone/",
"level": "Intermediate",
"info": "This book provides a brief description of each module of the +200 Python standard library and usage examples",
"url": "http://effbot.org/zone/librarybook-index.htm",
"cover": "img/cover_pythonstandardlibrairy.png"
},
{
"title": "Snake Wrangling for Kids",
"author": "Jason R. Briggs",
"authorUrl": "http://www.briggs.net.nz/snake-wrangling-for-kids.html",
"level": "Beginner",
"info": "[DOWNLOAD REQUIRED] For children 8 years and older, who would like to learn computer programming. It covers the very basics of programming, and uses the Python programming language to teach the concepts.",
"url": "http://www.briggs.net.nz/snake-wrangling-for-kids.html",
"cover": "img/cover_snakewrangling.png"
},
{
"title": "Programming Computer Vision with Python",
"author": "Jan Erik Solem",
"authorUrl": "http://programmingcomputervision.com/",
"level": "Advanced",
"info": "[PDF DRAFT] This book gives an entry point to hands-on computer vision (images, videos...) with enough understanding of the underlying theory and algorithms.",
"url": "http://programmingcomputervision.com/downloads/Draft_20120318.pdf",
"cover": "img/cover_computervision.jpg"
},
{
"title": "Natural Language Processing with Python",
"author": "Steven Bird, Ewan Klein, and Edward Loper",
"authorUrl": "https://sites.google.com/site/naturallanguagetoolkit/book",
"level": "Advanced",
"info": "Practical introduction to programming for language processing, written by the creators of NLTK.",
"url": "https://sites.google.com/site/naturallanguagetoolkit/book",
"cover": "img/cover_nltk.jpg"
},
{
"title": "Think Complexity",
"author": "Allen B. Downey",
"authorUrl": "http://www.greenteapress.com/",
"level": "Advanced",
"info": "This book is about complexity science, data structures and algorithms, intermediate programming in Python, and the philosophy of science.",
"url": "http://greenteapress.com/complexity/html/index.html",
"cover": "img/cover_complexity.jpg"
},
{
"title": "Think Stats",
"author": "Allen B. Downey",
"authorUrl": "http://www.greenteapress.com/",
"level": "Advanced",
"info": "Think Stats is an introduction to Probability and Statistics for Python programmers.",
"url": "http://greenteapress.com/thinkstats/html/index.html",
"cover": "img/cover_stats.jpg"
},
{
"title": "Python Module of the week",
"author": "Doug Hellman",
"authorUrl": "http://www.doughellmann.com/",
"level": "Intermediate",
"info": "The Python Module of the Week series, or PyMOTW, is a tour of the Python standard library through short and concrete examples. It covers more than 50 modules.",
"url": "http://www.doughellmann.com/PyMOTW/contents.html",
"cover": "img/cover_pymotw.png"
},
{
"title": "An introduction to Python",
"author": "John C. Lusth",
"authorUrl": "http://beastie.cs.ua.edu/cs150/book/index.html",
"level": "Beginner",
"info": "A complete scholar overview of all Python 3 functionnalities from the Alabama University.",
"url": "http://beastie.cs.ua.edu/cs150/book/index.html",
"cover": "img/cover_alabamaintro.png"
},
{
"title": "Building skills in Programming",
"author": "Steven F. Lot ",
"authorUrl": "http://homepage.mac.com/s_lott/",
"level": "Beginner",
"info": "How do you learn to program? Through a series of simple exercises that teach programming fundamentals with an easy-to-use, easy-to-learn programming language.",
"url": "http://www.itmaybeahack.com/homepage/books/nonprog/html/index.html",
"cover": "img/cover_buildingskillnonpro.jpg"
},
{
"title": "Building skills in Python",
"author": "Steven F. Lot ",
"authorUrl": "http://homepage.mac.com/s_lott/",
"level": "Beginner",
"info": "This 450+ page book has 42 chapters that will help you build Python programming skills through a series of exercises. This book includes six projects from straight-forward to sophisticated that will help solidify your Python skills.",
"url": "http://www.itmaybeahack.com/book/python-2.6/html/index.html",
"cover": "img/cover_buildingskillspython.jpg"
},
{
"title": "Building skills in OOP",
"author": "Steven F. Lot ",
"authorUrl": "http://homepage.mac.com/s_lott/",
"level": "Intermediate",
"info": "How do you move from OO programming to OO design? This 301-page book has 49 chapters that will help you build OO design skills through the creation of a moderately complex family of application programs.",
"url": "http://www.itmaybeahack.com/book/oodesign-python-2.1/html/index.html",
"cover": "img/cover_buildingskillsoop.jpg"
},
{
"title": "Python Scientific lecture notes",
"author": "by the community",
"authorUrl": "http://scipy-lectures.github.com/AUTHORS.html",
"level": "Intermediate",
"info": "Teaching material on the scientific Python ecosystem, a quick introduction to central tools and techniques. The different chapters each correspond to a 1 to 2 hours course with increasing level of expertise, from beginner to expert.",
"url": "http://scipy-lectures.github.com/",
"cover": "img/cover_scientific.jpg"
},
{
"title": "Programmez avec Python 2",
"author": "Gérard Swinnen",
"authorUrl": "http://inforef.be/swi/python.htm",
"level": "Beginner",
"info": "[FRENCH] Apprenez à programmer avec Python 2. Découvrez la programmation et le language Python grâce à cet ouvrage de référence.",
"url": "http://inforef.be/swi/download/apprendre_python.pdf",
"cover": "img/cover_apprendrepython2.jpg"
},
{
"title": "Programmez avec Python 3",
"author": "Gérard Swinnen",
"authorUrl": "http://inforef.be/swi/python.htm",
"level": "Beginner",
"info": "[FRENCH] Apprenez à programmer avec Python 3. Mise à jour du précédent ouvrage avec les spécificité de Python 3.",
"url": "http://inforef.be/swi/download/apprendre_python3_5.pdf",
"cover": "img/cover_apprendrepython3.jpg"
}
]}