跳转至

141-150

Issue #141: Sweater Weather Weekly dose of all things Python.

NLP keyword extraction tutorial with RAKE and Maui
A nice detailed tutorial about performing keyword extraction with the RAKE and Maui libraries.
airpair.com
Shared by @@elldudley

https://github.com/zelandiya/RAKE-tutorial 关键字提取

Issue #142: Shirts Weekly dose of all things Python.

What are some things/ideas unique to Python AND not really applicable in other languages?
reddit.com
Shared by @mgrouchy

看了

OAuth Authentication with Flask
Great tutorial for getting OAuth Authentication up and running in your Flask application. Starts you with an explanation of what OAuth is to all required steps in the implementation with code examples. miguelgrinberg.com
Shared by @mgrouchy

Flask使用OAuth

Issue #143: Black Friday Weekly dose of all things Python.

Top 10 Python Idioms I Wish I Knew
Jump to articles section for actual article, but discussion is a good read too.
reddit.com
Shared by @myusuf3

http://prooffreaderplus.blogspot.com/2014/11/top-10-python-idioms-i-wished-id.html 2014年的,现在看起来有点老了

The Future of Asynchronous IO in Python
Real nice overview of common design patterns of the past and a look at the emergent patterns in Asynchronous IO in the future. medium.com Shared by @mgrouchy

~

Multiprocessing and Memory
Multiprocessing in Python doesn't get much HYPE. Here is a cool little post how it can be effective in a ton of spots.
yseam.com
Shared by @myusuf3

….好像….就是说多核比较快?

Issue #144: Kool Aid Weekly dose of all things Python.

Building an image search engine with Python and OpenCV
Incredible blog post, on creating image search engine. Very extensive and educational!
pyimagesearch.com
Shared by @myusuf3

基本思路是把每一张图片分割区域,然后搞一个描述的东西,然后就用给定的图片的描述去搜索,讲的挺好不过没仔细看

Why is Object-Oriented Programming Useful?
Nice little article on OOP for beginners.
inventwithpython.com
Shared by @myusuf3

404了

Issue #145: Spa Weekly dose of all things Python.

The Top Mistakes Developers Make When Using Python for Big Data Analytics
Nice breakdown of common mistakes that developers often make when working with Python for big data analytics.
airpair.com
Shared by @elldudley

没啥用

Data animations with Python and MoviePy
Python has some great data visualization librairies, but few can render GIFs or video animations. This post shows how to use MoviePy as a generic animation plugin for any other library. github.io
Shared by @myusuf3

用各种奇怪的方式生成动画

Issue #146: Adorn Weekly dose of all things Python.

deeppy
A attempt to provide state-of-the-art deep learning models in a nice pythonic interface.
github.com
Shared by @mgrouchy

连个readme都不好好写

Python’s NotImplemented Type
Everything you wanted(and didn't want) to know about Python's NotImplemented Type/Constant.
svbtle.com
Shared by @STajbakhsh

bool(NotImplemented) = true 所以要用NotImpementedError,感觉太kakagougou了

img_26.png

json vs simplejson vs ujson
Very detailed rundown with benchmarks of the differences between common python JSON parsing libraries. SPOILER: ujson is the fastest by a considerable margin.
medium.com
Shared by @mgrouchy

410错误…

Detecting Facial Keypoints With Python
I love these breakdowns on Kaggle competitions. This time we get taught how to detect facial keypoints with Python.
danielnouri.org
Shared by @myusuf3

有详细的代码和过程

Issue #147 Top of 2014

Flask API
Love Django REST Framework? You can now enjoy the same beautiful APIs within Flask. flaskapi.org
Shared by @myusuf3

404了

Why Every Language Needs Its Underscore
Interesting article about the funcy library and how it is analogous to the Underscore.js library. Its purpose is to make your life easier when writing code and give you a series of functional tools to write cleaner, more understandable code. hackflow.com
Shared by @mgrouchy

看起来像是高级的函数用法,类似python的functools,可以极大的简化代码

Issue #148: New Year Weekly dose of all things Python.

Ultimate guide for scraping JavaScript rendered web pages
Articles details on how to scrap javascript render pages, funny enough the use our issue archive page as the example. wordpress.com
Shared by @Narenarya3

对于爬虫代码来说,如果页面不是静态的,是用js渲染出来的,那么就无法抓取了。这篇文章的思路是利用PyQT还是啥玩意模拟一个浏览器的操作,等js返回了所有的数据之后再获取页面内容然后爬下来,还是很有借鉴意义的

Issue #149: Almost Weekly dose of all things Python.

Setting up a Simple OCR Server
Cool article to help you get a Simple ORC Server set up and use it to OCR some images.
realpython.com
Shared by @mgrouchy

可以参考一下OCR的实现

Issue #150: Professors Cube Weekly dose of all things Python.

ocropy
Got a picture of text you need transcribed? Python-based OCR package using recurrent neural networks.
github.com
Shared by @myusuf3

Python的ocr工具

6 Python Performance Tips
A few tips to get your Python code running that much faster!
newrelic.com
Shared by @myusuf3

小tip

Using Celery With Flask
Detailed tutorial to help you get starting using Celery with your next Flask application.
miguelgrinberg.com
Shared by @mgrouchy

https://blog.miguelgrinberg.com/post/using-celery-with-flask 文章看起来挺好,不过一直没有机会用,等以后有机会了再来看

If you don't use "with", when does Python close files? The answer is: It depends.
A nice exploration of what happens when you don't use the with when you open files in Python.
lerner.co.il
Shared by @mgrouchy

所以还是用with就完事了

评论