-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPython.py
479 lines (459 loc) · 30.2 KB
/
Python.py
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
"Python":{
"Flask":[
"http://python-eve.org/index.html"
"https://realpython.com/blog/python/flask-by-example-integrating-flask-and-angularjs"
"http://jeffknupp.com/blog/2015/07/12/flask-and-sqlalchemy-magic"
"https://www.codementor.io/spark/tutorial/building-a-recommender-with-apache-spark-python-example-app-part1"
"http://code.tutsplus.com/tutorials/build-an-angularjs-app-powered-by-python-eve-part-2--cms-23383"
"http://code.tutsplus.com/tutorials/creating-a-web-app-from-scratch-using-python-flask-and-mysql-part-7--cms-23518"
"http://code.tutsplus.com/tutorials/creating-a-web-app-from-scratch-using-python-flask-and-mysql-part-6--cms-23402"
"http://code.tutsplus.com/tutorials/creating-a-web-app-from-scratch-using-python-flask-and-mysql-part-5--cms-23384"
"http://code.tutsplus.com/tutorials/creating-a-web-app-from-scratch-using-python-flask-and-mysql-part-4--cms-23187"
"http://robertocalderon.ca/blog/flask-and-redis-is-fun/"
"http://code.tutsplus.com/tutorials/creating-a-web-app-from-scratch-using-python-flask-and-mysql--cms-22972"
"http://hackingdistributed.com/2015/05/20/hyperdex-flask/"
"http://blog.miguelgrinberg.com/post/celery-and-the-flask-application-factory-pattern"
"https://realpython.com/blog/python/the-ultimate-flask-front-end/"
"http://techarena51.com/index.php/one-to-many-relationships-with-flask-sqlalchemy/"
"http://techarena51.com/index.php/one-to-many-relationships-with-flask-sqlalchemy/"
"https://wakatime.com/blog/25-pirates-use-flask-the-navy-uses-django?"
"https://realpython.com/blog/python/dockerizing-flask-with-compose-and-machine-from-localhost-to-the-cloud/"
"http://www.blog.pythonlibrary.org/2015/04/16/using-pygal-graphs-in-flask/"
"http://code.tutsplus.com/tutorials/flask-authentication-with-ldap--cms-23101"
"http://skybert.net/python/developing-a-restful-micro-service-in-python/"
"http://python.talkera.org/login-authentication-with-flask/"
"http://charlesleifer.com/blog/saturday-morning-hacks-building-an-analytics-app-with-flask/"
"http://blog.miguelgrinberg.com/post/video-streaming-with-flask"
"http://blog.miguelgrinberg.com/post/oauth-authentication-with-flask"
"http://massover.com/getting-started-with-flask-assets-less-and-bootstrap.html"
"http://ains.co/blog/things-which-arent-magic-flask-part-1.html"
"http://ains.co/blog/things-which-arent-magic-flask-part-2.html"
"https://realpython.com/blog/python/handling-email-confirmation-in-flask/"
"http://blog.miguelgrinberg.com/post/using-celery-with-flask"
"http://blog.miguelgrinberg.com/post/two-factor-authentication-with-flask"
"http://charlesleifer.com/blog/how-to-make-a-flask-blog-in-one-hour-or-less/"
"http://www.matthieuamiguet.ch/blog/synchronize-clients-flask-application-websockets"
"http://python.talkera.org/login-authentication-with-flask/
"http://www.talkpythontome.com/episodes/show/9/docker-for-the-python-developer"
"http://tutsbucket.com/tutorials/building-a-blog-using-flask-and-angularjs-part-1/.com"
"http://techstonia.github.io/twilio-voice-blog.html.com"
"http://www.matthieuamiguet.ch/blog/synchronize-clients-flask-application-websockets.com"
"https://realpython.com/blog/python/the-ultimate-flask-front-end/"
"https://realpython.com/blog/python/asynchronous-tasks-with-django-and-celery"
"https://realpython.com/blog/python/dockerizing-flask-with-compose-and-machine-from-localhost-to-the-cloud/#.VVk65rJUgX0.twitter"
""
"https://www.youtube.com/watch?v=Cu6A96TUy_o&utm_content=buffer0b855&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer"
"https://realpython.com/blog/python/the-ultimate-flask-front-end/.com#.VP2fV1lXx-Y.reddit"
],
"Django":[
"http://reinout.vanrees.org/weblog/2015/08/31/django-site-with-javascript-frontend.html"
"http://www.tsartsaris.gr/How-to-write-faster-from-Python-to-Neo4j-with-OpenMpi"
"https://www.caktusgroup.com/blog/2015/07/28/using-unsaved-related-models-sample-data-django-18/"
"https://realpython.com/blog/python/asynchronous-tasks-with-django-and-celery/"
"http://www.fullstackpython.com/django.html"
"https://www.endgame.com/blog/open-sourcing-your-own-python-library-101"
"https://realpython.com/blog/python/django-development-with-docker-compose-and-machine/"
"http://owaislone.org/blog/modern-frontends-with-django/"
"https://realpython.com/blog/python/the-minimum-viable-test-suite/#.VZCyLhwkuYw.twitter"
"http://www.coglib.com/~icordasc/blog/2015/06/cutting-off-the-internet-part-i.html"
"http://dailytechvideo.com/video-208-anton-caceres-asynchronous-web-development-with-python-3/"
"http://arunrocks.com/python-3-cheatsheet-for-djangonauts/"
"http://mrben.co.uk/entry/a-reusable-confirm-field-update-pattern-for-django/"
"http://mrben.co.uk/entry/a-reusable-confirm-field-update-pattern-for-django/"
"http://dailytechvideo.com/video-208-anton-caceres-asynchronous-web-development-with-python-3/"
"http://arunrocks.com/python-3-cheatsheet-for-djangonauts/"
"http://yusuf.im/wagtail-a-new-django-cms-in-the-house/"
"http://apihandyman.io/do-you-really-know-why-you-prefer-rest-over-rpc/"
"http://www.marinamele.com/taskbuster-django-tutorial"
"https://realpython.com/blog/python/fun-with-djangos-new-postgres-features/"
"https://scotch.io/tutorials/building-a-slack-clone-in-meteor-js-real-time-data"
"http://adamj.eu/tech/2015/05/17/building-a-better-databasecache-for-django-on-mysql/"
"http://michal.karzynski.pl/blog/2013/06/09/django-nginx-gunicorn-virtualenv-supervisor/"
"http://httplambda.com/a-rest-api-with-django-and-oauthw-authentication/"
"http://www.lexev.org/en/2015/listen-wifi-with-wireshark/"
"http://blog.idego.pl/2015/02/10/how-django-uses-metaclasses/"
"http://crossbar.io/docs/Adding-Real-Time-to-Django-Applications/"
"http://httplambda.com/a-rest-api-with-django-and-oauthw-authentication/"
"http://www.whoisnicoleharris.com/2015/03/16/bdd-part-one.html"
"http://blog.dscpl.com.au/2015/04/using-modwsgi-express-with-django.html"
"http://tech.donghao.org/2014/09/24/running-django-in-docker/"
"https://www.twilio.com/blog/2014/04/building-a-simple-sms-message-application-with-twilio-and-django-2.html"
"http://jamesbrewer.io/2014/09/22/json-web-token-authentication-part-one/"
"http://tech.marksblogg.com/crushing-caching-cdn-django.html"
"http://morepypy.blogspot.com/2014/11/tornado-without-gil-on-pypy-stm.html"
"https://ultimatedjango.com/blog/how-to-consume-rest-apis-with-django-python-reques/"
"https://realpython.com/blog/python/deploying-a-django-app-to-aws-elastic-beanstalk"
"https://gist.github.com/tbarbugli/97bf26f400ecf1443ef6"
"http://tech.marksblogg.com/django-admin-logins.html"
"http://za.github.io/2015/03/18/melb-django-dequorum/"
"http://www.lexev.org/en/2015/debug-sql-django-test/.com"
"http://www.caktusgroup.com/blog/2015/03/20/astro-code-school-now-accepting-applications-intermediate-django-python/"
"http://djangowos.com/.com"
"http://code.tutsplus.com/tutorials/building-rest-apis-using-eve--cms-22961.com"
"http://www.maxburstein.com/blog/realtime-django-using-nodejs-and-socketio/",
"https://syerram.silvrback.com/make-django-fasssst"
"http://lukeplant.me.uk/blog/posts/my-approach-to-class-based-views/"
"https://coderwall.com/p/mwhmfg/posting-from-angular-to-django"
"http://www.willmcgugan.com/blog/tech/2015/3/14/saving-processes-and-threads-in-a-wsgi-server/"
],
"Pyramid":[
"https://realpython.com/blog/python/create-a-rest-api-in-minutes-with-pyramid-and-ramses/"
"https://realpython.com/blog/python/create-a-rest-api-in-minutes-with-pyramid-and-ramses/#.VYgUeDzGLO4.twitter"
"https://aiopyramid.readthedocs.org/"
"http://trypyramid.com/"
"http://www.talkpythontome.com/episodes/show/3/pyramid-web-framework"
"http://www.ibm.com/developerworks/cloud/library/cl-chatapp-bluemix-app/index.html"
"http://davidemoro.blogspot.com/2015/03/kotti-cms-events-insert-subobjects.html"
"https://everystack.io/#!/catalog/components/pyramid"
"http://davidemoro.blogspot.com/2015/04/kotti-multilingual.html"
"https://www.youtube.com/watch?v=jxqCf3yZKP4"
"http://davidemoro.blogspot.com/2015/05/kotti-cms-elasticsearch-integration.html"
],
"Data":[
"http://nicolewhite.github.io/neo4j-jupyter/twitter.html"
"http://brandonrose.org/clustering"
"http://www.bayespy.org/examples/lda.html"
"http://nicschrading.com/project/Intro-to-NLP-with-spaCy/"
"https://www.airpair.com/python/posts/using-python-and-qgis-for-geospatial-visualization"
"http://www.datasciencecentral.com/profiles/blogs/how-to-parallel-programming-in-r-and-python-video"
"http://matthewrocklin.com/blog/work/2015/06/18/Categoricals/"
"https://www.airpair.com/python/posts/using-python-and-qgis-for-geospatial-visualization"
"http://www.datasciencecentral.com/profiles/blogs/how-to-parallel-programming-in-r-and-python-video"
"http://cloudacademy.com/blog/aws-machine-learning/"
"http://www.datasciencecentral.com/profiles/blogs/10-python-machine-learning-projects-on-github"
"https://www.youtube.com/watch?v=ZMOHEh-caTc&feature=youtu.be"
"http://rustyrazorblade.com/2015/05/spark-streaming-with-python-and-kafka/"
"http://blog.rtwilson.com/how-to-log-electricity-usage-from-a-currentcost-envir-part-1/"
"http://noammor.github.io/noammor/ipy/str-join-benchmark.html"
"https://www.youtube.com/watch?v=3ZWuPVWq7p4"
"http://pgbovine.net/cpython-internals.htm"
"http://podcastinit.com/episode-8-mark-baggett-on-pythons-role-in-information-security.html"
"http://underscore.io/blog/posts/2015/06/04/newsletter9.html"
"https://opensource.com/business/15/5/api-integrations-with-python-and-zato"
"https://www.sg.ethz.ch/team/people/ischoltes/research-insights/temporal-networks-demo/"
"https://www.airpair.com/python/posts/optimizing-python-code"
"https://www.youtube.com/watch?v=0YTIOn7_h_k"
"http://www.galvanize.com/blog/2015/05/28/classifying-and-visualizing-musical-pitch-with-k-means-clustering/"
"http://www.datasciencecentral.com/group/tutorials/forum/topics/cheat-sheet-data-visualisation-in-python?xg_source=activity"
"http://www.johndcook.com/blog/2015/06/03/mystery-curve/"
"http://blog.tshirtman.fr/2014/1/14/publisher-consumer-model-in-kivy"
"http://pythonsweetness.tumblr.com/post/119568339102/block-range-brin-indexes-in-postgresql-9-5"
"https://beta.oreilly.com/learning/intro-to-svm"
"http://pbpython.com/github-notebooks-other-updates.html"
"http://techartsurvival.blogspot.com/2015/05/spelchek_16.html"
"http://www.sqlalchemy.org/blog/2015/04/16/sqlalchemy-1.0.0-released/"
"https://www.youtube.com/watch?t=90&v=ja4Qj9-l6WQ"
"http://pbpython.com/improve-pandas-excel-output.html"
"https://plot.ly/ipython-notebooks/big-data-analytics-with-pandas-and-sqlite/"
"http://continuum.io/blog/blaze-whats-new"
"http://pythonhash.fx5.net/"
"http://aliquote.org/memos/2011/02/07/python-for-statistical-computing"
"https://plot.ly/ipython-notebooks/big-data-analytics-with-pandas-and-sqlite/"
"http://www.dataplumbing.com/blog/pandas-powerful-python-data-analysis-toolkit"
"http://pbpython.com/improve-pandas-excel-output.html"
"http://blog.kaggle.com/2015/04/08/new-video-series-introduction-to-machine-learning-with-scikit-learn/"
"http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/tutorials/things_in_pandas.ipynb"
"http://ioam.github.io/holoviews/"
"http://blog.monkeylearn.com/how-to-create-an-employment-analytics-visualization-in-less-than-10-minutes/"
"http://marcobonzanini.com/2015/03/02/mining-twitter-data-with-python-part-1/"
"http://www.youtube.com/watch?v=QLAVHlelkJQ"
"http://www.machinalis.com/blog/embedding-interactive-maps-into-an-ipython-nb/"
"http://nbviewer.ipython.org/github/hugadams/twitter_play/blob/master/FACESANDFRIENDS.ipynb"
"http://www.markhneedham.com/blog/2015/03/11/pythonneo4j-finding-interesting-computer-sciency-people-to-follow-on-twitter/"
"http://engineering.bloomreach.com/briefly-python-dsl-scale-mapreduce-pipelines/.com"
"http://blog.dscpl.com.au/2015/03/using-wrapt-to-support-testing-of.html"
"http://kachkach.com/data-processing-and-machine-learning-with-python/.com"
"http://glowingpython.blogspot.com/2014/08/quick-hdf5-with-pandas.html"
"http://lqdc.github.io/modeling-zero-day-malware-spread.html.com"
"http://desilinguist.org/pdf/crossroads.pdf.com"
"http://kachkach.com/data-processing-and-machine-learning-with-python/.com"
"http://dataconomy.com/14-best-python-pandas-features/"
"https://jmetzen.github.io/2015-01-29/ml_advice.html"
"http://kukuruku.co/hub/python/introduction-to-machine-learning-with-python-andscikit-learn.com"
"http://matthewrocklin.com/blog/work/2015/03/16/Fast-Serialization/.com"
],
"Zope":[
"http://blog.aclark.net/2015/06/27/plone-on-heroku/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+aclark%2Fpython+%28Alex+Clark%27s+Blog+%C2%BB+Python%29"
"http://datakurre.pandala.org/2015/05/customize-plone-5-default-theme-on-fly.html?"
"http://davidemoro.blogspot.com/2015/04/pip-for-buildout-folks.html"
"https://metaclassical.com/what-the-zope-transaction-manager-means-to-me-and-you/"
"http://docs.zope.org/zope2/releases/2.12/INSTALL.html"
]
"Raspberry":[
""
"http://matthewkwilliams.com/index.php/2015/03/21/swarming-raspberry-pi-part-1/"
"http://matthewkwilliams.com/index.php/2015/03/29/swarming-raspberry-pi-part-2-registry-mirror/"
]
"PEP":[
"https://www.python.org/dev/peps/pep-0492/"
"https://www.python.org/dev/peps/pep-0487/#trait-descriptors"
"https://www.python.org/dev/peps/pep-0486/"
"https://www.python.org/dev/peps/pep-0485/"
"http://pythontips.com/2015/08/17/intermediate-python-released/"
]
"Others":[
"https://gun.io/blog/learn-sql/"
"http://www.slideshare.net/DonaldMiner/hadoop-with-python?from_m_app=ios"
"http://mekhami.com/unit/testing/doubles/2015/07/30/Meaningful-Test-Doubles.html"
"http://www.fullstackpython.com/vim.html"
"http://nbviewer.ipython.org/github/brandomr/document_cluster/blob/master/cluster_analysis_web.ipynb?"
"http://marcobonzanini.com/2015/05/17/mining-twitter-data-with-python-part-6-sentiment-analysis-basics/"
"http://www.brython.info/"
"http://www.vinta.com.br/blog/2015/uploading-files-from-the-frontend-to-S3.html"
"http://mattwetmore.me/posts/parsing-combinators-with-parser-combinators.html"
"http://blog.yhathq.com/posts/roc-curves.html"
"http://blog.dscpl.com.au/2015/05/performance-monitoring-of-real-wsgi.html"
"https://aws.amazon.com/blogs/aws/now-available-aws-sdk-for-python-3-boto3/"
"http://morepypy.blogspot.ca/2015/06/pypy-260-release.html"
"http://lwn.net/Articles/643786/"
"http://morepypy.blogspot.ca/2015/06/pypy-260-release.html"
"http://lwn.net/Articles/643786/"
"http://rethinkdb.com/blog/chad-lung-python3/"
"http://ruslanspivak.com/lsbaws-part3/"
"https://realpython.com/blog/python/python-ruby-and-golang-a-command-line-application-comparison/"
"http://marcobonzanini.com/2015/05/17/mining-twitter-data-with-python-part-6-sentiment-analysis-basics/"
"http://blog.lerner.co.il/why-you-should-almost-never-use-is-in-python/"
"https://blog.cloudflare.com/how-to-receive-a-million-packets/"
"http://klen.github.io/py-frameworks-bench/"
"http://githubengineering.com/exception-monitoring-and-response/"
"https://julien.danjou.info/blog/2015/python-and-timezones"
"http://pbpython.com/pandas-google-forms-part1.html"
"http://www.laurentluce.com/posts/least-frequently-used-cache-eviction-scheme-with-complexity-o1-in-python/"
"http://podcastinit.com/episode-8-mark-baggett-on-pythons-role-in-information-security.html"
"http://www.webcodegeeks.com/python/python-decorator-simplifying-delegate-pattern/"
"http://tjelvarolsson.com/blog/four-tools-for-testing-your-python-code/"
"http://us2.campaign-archive1.com/?u=b7e774f0c4f05dcebbfee183d&id=6e60c40acd"
"http://doublemap.github.io/blog/2015/05/29/optimizing-python/"
"http://blog.eatonphil.com/2015/05/30/dynamic-generic-namespaces-in-python-are-a-pain/"
"http://blog.dscpl.com.au/2015/05/performance-monitoring-of-real-wsgi.html"
"http://lwn.net/Articles/643786/"
"http://willdrevo.com/downloading-youtube-and-soundcloud-audio-with-python-and-pandas/"
"http://blog.ldlework.com/2015/05/01/writing-safe-twisted-code/"
"http://blog.ldlework.com/2015/05/01/writing-safe-twisted-code/"
"http://willdrevo.com/downloading-youtube-and-soundcloud-audio-with-python-and-pandas/"
"http://blog.hakril.net/articles/2-understanding-python-execution-tracer.html"
"http://late.am/post/2015/05/07/optimize-python-with-closures.html"
"https://plot.ly/ipython-notebooks/survival-analysis-r-vs-python/"
"https://lwn.net/SubscriberLink/643786/9c0bd83dff0df3b8/"
"http://ruslanspivak.com/lsbaws-part3/"
"http://www.datasciencecentral.com/profiles/blogs/10-python-machine-learning-projects-on-github"
"http://emptysqua.re/blog/server-discovery-and-monitoring-in-pymongo-perl-and-c/"
"http://blog.dscpl.com.au/2015/05/returning-string-as-iterable-from-wsgi.html"
"http://lgiordani.com/blog/2015/05/13/python-oop-tdd-example-part1/#.VVvxaryli1F"
"http://late.am/post/2015/05/07/optimize-python-with-closures.html"
"http://rustyrazorblade.com/2015/05/spark-streaming-with-python-and-kafka/"
"http://motherboard.vice.com/read/how-to-make-a-human-brain-in-python"
"http://www.lexev.org/en/2015/oauth-step-step/"
"http://blog.dscpl.com.au/2015/05/using-modwsgi-express-as-development.html"
"http://sahandsaba.com/combinatorial-generation-using-coroutines-in-python.html"
"https://wrongsideofmemphis.wordpress.com/2014/06/09/compendium-of-wondrous-links-vi/"
"https://wrongsideofmemphis.wordpress.com/2014/04/19/compendium-of-wondrous-links-vol-v/"
"http://www.toplisttips.com/cpanel-alternative-free-web-hosting-control-panel/"
"https://codefisher.org/catch/blog/2015/04/22/python-how-group-and-count-dictionaries/"
"http://pythonhash.fx5.net/"
"http://importpython.com/blog/post/conversation-albert-sweigart-author-automate-boring-stuff-python"
"http://aleph.nu/blog/2015/the-python-road-not-taken/"
"http://inventwithpython.com/blog/2015/04/21/celebrating-the-release-of-automate-the-boring-stuff-with-python-with-discount-codes/"
"http://automatetheboringstuff.com/"
"http://nafiulis.me/the-deceptive-anagram-question.html"
"https://www.loggly.com/blog/exceptional-logging-of-exceptions-in-python/"
"http://eli.thegreenplace.net/2015/calling-back-into-python-from-llvmlite-jited-code/"
"https://eight.readthedocs.org/en/latest/"
"https://opensourcehacker.com/2015/04/16/inspecting-thread-dumps-of-hung-python-processes-and-test-runs/"
"http://blog.yhathq.com/posts/building-a-client-side-search-algorithm.html"
"http://pyformat.info/"
"http://www.rapydscript.com/"
"http://farmdev.com/talks/unicode/"
"http://blog.ionelmc.ro/2015/04/14/tox-tricks-and-patterns/"
"http://www.pyimagesearch.com/2015/04/06/zero-parameter-automatic-canny-edge-detection-with-python-and-opencv/ "
"http://lwn.net/SubscriberLink/640179/06c2868dffb2aec3/"
"http://java.dzone.com/articles/pypy-garbage-collection-and"
"http://keras.io/"
"https://everystack.io/#!/catalog/components/pykka"
"http://nedbatchelder.com/text/names1.html"
"https://clusterhq.com/blog/flocker-0-4-new-api-centos-7-support-and-more/"
"https://www.youtube.com/watch?v=KXkThJVbTdU"
"http://continuum.io/blog/blaze-whats-new"
"http://myownhat.blogspot.com/2015/04/stml-loading-and-working-with-data.html"
"http://www.giantflyingsaucer.com/blog/?p=5557"
"http://dailytechvideo.com/sarah-mount-message-passing-concurrency-for-python/"
"http://www.infoworld.com/article/2613828/python/why-netflix-is-embracing-python-over-java.html"
"http://emptysqua.re/blog/talk-python-podcast-python-and-mongodb/"
"http://blog.dscpl.com.au/2015/03/ordering-issues-when-monkey-patching-in.html"
"http://emptysqua.re/blog/pymongo-key-order/"
"http://ruslanspivak.com/lsbaws-part2/"
"http://hackflow.com/blog/2015/03/29/metaprogramming-beyond-decency/"
"https://nebrios.com/?utm_content=bufferbb501&utm_medium=social"
"http://emptysqua.re/blog/pypy-garbage-collection-and-a-deadlock/"
"http://www.toptal.com/python/beginners-guide-to-concurrency-and-parallelism-in-python"
"http://picat-lang.org/"
"hackflow.com/blog/2015/03/29/metaprogramming-beyond-decency/"
"https://biesnecker.com/2015/04/02/lightweight-asyncio-based-actors-for-python/"
"http://www.machinalis.com/blog/moving-data-between-databases/"
"http://nbviewer.ipython.org/github/grokcode/ipython-notebooks/blob/master/nginx-log-analysis.ipynb"
"http://davebehnke.com/python-asyncio-streams-client-server.html"
"http://radimrehurek.com/2014/03/data-streaming-in-python-generators-iterators-iterables/"
"http://agiliq.com/blog/2014/05/supervisor-with-django-and-gunicorn/"
"https://vimeo.com/79539317"
"http://www.coglib.com/~icordasc/blog/2015/07/moving-pep8-to-the-pycqa.html"
"http://lignos.org/py_antipatterns/"
"http://agiliq.com/blog/2014/08/deploying-a-django-app-on-amazon-ec2-instance/"
"http://blog.jonparrott.com/a-web-based-log-viewer-for-app-engine-with-gevent-and-socket-io/"
"https://julien.danjou.info/blog/2014/python-bad-practice-concrete-case"
"http://resources.infosecinstitute.com/case-study-cracking-online-banking-captcha-login-using-python/"
"http://radar.oreilly.com/2014/10/python-tuples-immutable-but-potentially-changing.html"
"https://jordan-wright.github.io/blog/2014/10/06/creating-tor-hidden-services-with-python/"
"http://www.mobify.com/blog/http-requests-are-hard/"
"https://realpython.com/blog/python/the-most-diabolical-python-antipattern/"
"https://cslocumwx.github.io/blog/2015/02/23/python-multiprocessing/"
"http://scottlobdell.me/2015/03/use-mechanical-turk-python-boto-crowdsource-tasks/"
"http://adilmoujahid.com/posts/2015/01/interactive-data-visualization-d3-dc-python-mongodb"
"https://realpython.com/blog/python/web-scraping-and-crawling-with-scrapy-and-mongodb/"
"http://pawelmhm.github.io/python/2015/02/15/creating-realtime-scraper.html"
"http://scottlobdell.me/2015/03/getting-started-dynamodb-nosql-python-boto/"
"http://www.cubicweb.org/blogentry/5040318%3A+cubicweborg+%28CubicWeb%27s+Blog%29"
"http://xonsh.org/tutorial.html"
"http://blog.gmludo.eu/2015/03/benchmark-python-web-production-stack.html"
"https://www.codementor.io/python/tutorial/introduction-to-decorators#/.VQH-7svGWQk.twitter"
"https://github.com/rothnic/anaconda-notebook.com"
"https://zato.io/blog/posts/hot-deploy-api-service.html"
"http://pedrorodriguez.io/2015/03/14/chain-functional-programming-in-python-2/"
"http://crossbar.io/"
"https://github.com/hawkowl/crossbar"
"https://github.com/tavendo"
"http://tavendo.com/blog/post/is-crossbar-the-future-of-python-web-apps/"
"https://glyph.twistedmatrix.com/2015/03/docker-deploy-double-dutch.html.com"
"http://blog.udacity.com/2015/03/step-by-step-guide-install-lamp-linux-apache-mysql-python-ubuntu.html.com&utm_campaign=update"
"http://blog.quantopian.com/markowitz-portfolio-optimization-2/.com"
"https://everystack.io/#!/catalog/components/tweepy"
"http://lwn.net/Articles/635397/.com"
"http://emptysqua.re/blog/pymongo-use-greenlets-followup/"
"http://emptysqua.re/blog/pymongo-key-order/"
"https://everystack.io/#!/catalog/components/pykka"
"https://zato.io/blog/posts/apitest-start.html"
"https://github.com/lord63/pyhipku.com"
"http://www.toptal.com/python/beginners-guide-to-concurrency-and-parallelism-in-python#trust-only-devoted-devs-now"
"https://github.com/gi0baro/weppy"
"http://calvinmetcalf.com/post/103640348393/no-i-didnt-use-the-web-crypto-api"
"https://opensourcehacker.com/2015/03/27/testing-web-hook-http-api-callbacks-with-ngrok-in-python/"
"http://www.giantflyingsaucer.com/blog/?p=5541&utm_content=bufferb9677&utm_medium=social&utm_source=twitter.com"
"https://everystack.io/#!/catalog/components/pycassa"
"http://asyncio.org/",
"http://python-notes.curiousefficiency.org/en/latest/python3/text_file_processing.html"
"http://multithreaded.stitchfix.com/blog/2015/07/16/pyxley/"
"https://www.youtube.com/watch?v=SF9BFf0mL4E"
"http://tech.zalando.com/posts/entering-kernel-namespaces-with-python.html"
"https://everystack.io/#!/catalog/components/bjoern"
"http://jamesls.com/micro-optimizations-in-python-code-speeding-up-lookups.html.com"
"http://blog.workshape.io/python-vs-ruby-the-workshape-smackdown/"
"http://blog.gmludo.eu/2015/02/macro-benchmark-with-django-flask-and-asyncio.html",
"http://bits.citrusbyte.com/protecting-a-python-codebase/",
"https://docs.newrelic.com/docs/release-notes/agent-release-notes/python-release-notes/python-agent-248038"
"http://davidemoro.blogspot.com/2015/04/how-to-choose-your-cms.html",
"http://emptysqua.re/blog/response-to-asynchronous-python-and-databases/",
"https://developer.rackspace.com/blog/deploying-jupyterhub-for-education/"
"http://www.rdegges.com/why-i-love-basic-auth/"
"https://codefisher.org/catch/blog/2015/02/10/python-decorators-and-context-managers/"
"http://www.reddit.com/r/Python/comments/2w64e2/when_do_you_not_use_python/"
"http://www.toptal.com/python/beginners-guide-to-concurrency-and-parallelism-in-python"
"http://www.fullstackpython.com/table-of-contents.html"
"http://pansop.com/1014/"
"https://freepythontips.wordpress.com/2015/04/19/nifty-python-tricks/"
"https://realpython.com/blog/python/setting-up-sublime-text-3-for-full-stack-python-development"
"https://realpython.com/blog/python/learn-python-the-methodical-way/#.VR6gPuvdAm8.twitter"
"http://morepypy.blogspot.com/2015/03/pydgin-using-rpython-to-generate-fast.html"
"http://rajeevrastogi.blogspot.com/2015/03/index-scan-optimization-for-condition.html"
"http://dataconomy.com/linear-regression-implementation-in-python/.com"
"http://pydev.blogspot.ca/2015/02/design-for-client-side-applications-in.html.com"
"http://blog.ionelmc.ro/2015/02/09/understanding-python-metaclasses/.com"
"http://nedbatchelder.com/blog/201503/finding_temp_file_creators.html.com"
"http://charlesleifer.com/blog"
"https://www.paypal-engineering.com/2015/03/17/introducing-support/"
"http://www.willmcgugan.com/blog/tech/2015/3/14/saving-processes-and-threads-in-a-wsgi-server/"
"http://datamelon.io/blog/2015/secure-symmetric-encryption-in-python.html"
"http://rpiai.com/2015/04/18/python-beowulf-cluster-find-a-use-for-those-computers-that-are-10-years-old/"
],
"CherryPy":[
"http://blog.joel.mx/posts/cherrypy-as-a-wsgi-server"
],
"Tornado":[
"http://www.webcodegeeks.com/python/eventually-correct-async-testing-tornado/"
"http://emptysqua.re/blog/screencast-of-eventually-correct-async-testing-with-tornado/"
"http://emptysqua.re/blog/eventually-correct-async-testing-tornado/"
"http://emptysqua.re/blog/refactoring-tornado-coroutines/"
]
"Plone":[
"http://maurits.vanrees.org/weblog/archive/2015/04/plog-thursday-restapi-current-status"
]
"Celery":[
"https://denibertovic.com/posts/celery-best-practices/"
"http://www.caktusgroup.com/blog/2014/06/23/scheduling-tasks-celery/"
"https://godjango.com/63-deferred-tasks-and-scheduled-jobs-with-celery-31-django-17-and-redis/"
"http://www.caktusgroup.com/blog/2014/09/29/celery-production/"
]
"NoSQL&DistributeSystem&Cloud":{
"http://eli.thegreenplace.net/2015/calling-back-into-python-from-llvmlite-jited-code/"
"Redis":[
"https://www.twilio.com/blog/2015/03/choose-your-own-adventures-presentations-wizard-mode-part-1-of-3.html"
"http://opensourcehacker.com/2014/07/09/rolling-time-window-counters-with-redis-and-mitigating-botnet-driven-login-attacks/"
"http://jamesls.com/writing-redis-in-python-with-asyncio-part-1.html"
],
"RabbitMQ":[
""
"http://www.machinalis.com/blog/rt-notifications-gevent-gis/"
],
"Docker":[
"https://realpython.com/blog/python/dockerizing-flask-with-compose-and-machine-from-localhost-to-the-cloud/"
"http://www.defuze.org/archives/315-create-a-docker-container-for-your-cherrypy-application.html"
"http://www.syncano.com/configuring-running-django-celery-docker-containers-pt-1/"
"https://realpython.com/blog/python/docker-in-action-fitter-happier-more-productive"
"https://glyph.twistedmatrix.com/2015/03/docker-deploy-double-dutch.html"
]
"Spark":[
"https://districtdatalabs.silvrback.com/getting-started-with-spark-in-python"
],
"Mongodb":[
"http://emptysqua.re/blog/caution-critical-bug-in-pymongo-3-could-not-find-cursor-in-cache/"
"http://www.talkpythontome.com/episodes/show/2/python-and-mongodb"
"http://tech.plug.dj/2014/09/24/how-to-migrate-50mm-records-from-mongo-to-postgresql-in-less-than-a-day/"
"http://www.pubnub.com/blog/realtime-mongodb-to-fetch-and-stream-report-data/"
"http://adilmoujahid.com/posts/2015/01/interactive-data-visualization-d3-dc-python-mongodb"
],
"Elasricksearch":[
"https://www.elastic.co/blog/using-elasticsearch-to-build-CRM"
"https://www.elastic.co/blog/kibana-4-for-investigating-pacs-super-pacs-and-your-neighbors/"
"http://www.javacodegeeks.com/2014/08/my-exprience-using-elasticsearch-nodejs-and-expressjs.html"
"http://unroutable.blogspot.com/2015/03/quick-example-elasticsearch-bulk-index.html"
"http://engineeringblog.yelp.com/2014/11/scaling-elasticsearch-to-hundreds-of-developers.html"
],
"Cassandra":[
"https://www.youtube.com/watch?v=2RpYLu8mjlw"
],
"Fabric":[
"https://vimeo.com/89115276"
]
"R":[
"http://www.hadoop360.com/blog/programming-for-data-science-the-polyglot-approach-python-r-sql"
]
}
"Benchmark":[
"http://charlesleifer.com/blog/using-sqlite4-s-lsm-storage-engine-as-a-stand-alone-nosql-database-with-python/"
"http://blog.gmludo.eu/2015/02/macro-benchmark-with-django-flask-and-asyncio.html"
"http://www.cdotson.com/2014/08/nodejs-vs-python-vs-pypy-a-simple-performance-comparison/"
"http://morepypy.blogspot.com/2011/08/pypy-is-faster-than-c-again-string.html"
"http://blog.kgriffs.com/2012/10/23/python-vs-node-vs-pypy.html"
]
"PyCon":{
"2015":[
"https://www.youtube.com/watch?v=IsXXlYVBt1M"
"https://www.youtube.com/watch?v=YFexUDjHO6w"
"https://www.youtube.com/channel/UCgxzjK6GuOHVKR_08TT4hJQ/videos"
"https://www.youtube.com/watch?v=JN-78stRNhA"
"https://www.youtube.com/watch?v=GVVtR_hrdKI&list=PLkA60AVN3hh9Sh-5OENT8RsFHjwtk2Z_l"
]
"OThers":[
"http://www.ibis-project.org/"
"http://astrocodeschool.com/blog/video-func-prog/"
]
}
},