261-270¶
Issue #261 Serverless April 6, 2017¶
Cite
Yes, Python is Slow, and I Don't Care
reddit.com
Shared by @mgrouchy
Issue #262 Bytecode April 13, 2017¶
Cite
Making a Reddit + Facebook Messenger Bot
The title says it all!
pythontips.com
Shared by @mgrouchy
自动化工具
Issue #263 Source April 20, 2017¶
Cite
Modifying the Python language in 6 minutes
Ever wanted to modify Python, here is the guide for you.
hackernoon.com
Shared by @myusuf3
一个简单的例子,修改python的语法需要做哪几步的事情,主要是向CPython贡献的流程吧,
Issue #264 Robot April 27, 2017¶
Cite
Grok the GIL: Write Fast and Thread-Safe Python
Nice article explaining the GIL and how to write fast, thread-safe Python code.
emptysqua.re
Shared by @mgrouchy
多线程编程的时候注意线程安全,需要的时候就上线程锁
Issue #265 Victory. May 4, 2017¶
Cite
Paper-Implementations
Use PyTorch to implement some classic frameworks.
github.com
Shared by @mgrouchy
只是想看一下17年的项目到今天还在坚持没有。结果发现都没坚持过17年
Issue #266 Senators May 11, 2017¶
Cite
PyTree
Python package for generating and drawing (fractal)trees.
github.com
Shared by @myusuf3
一个项目,用来画树...对,就是树
Issue #267 Kotlin May 18, 2017¶
Cite
Module Import Precedence in Python
PEMDAS for Python Modules.
medium.com
Shared by @mgrouchy
sys.path
的使用
Issue #268 Conference May 26, 2017¶
Cite
Debugging an inactive python process
Debug a process that is alive, but is producing no logs like a black box.
medium.com
Shared by @mgrouchy
GDB python debugger,参考这里
Issue #269 Setuptools June 1, 2017¶
Cite
What is the most ideal way of deploying Flask apps on cloud servers?
reddit.com
Shared by @myusuf3
主流方式还是nginx + gunicorn,我还尝试ctrl f了一下PM2,并没有找到有人有这个想法
Issue #270 Fish June 8, 2017¶
Cite
validus
A dead simple Python data validation library.
github.com
Shared by @shopnilsazal
实现了一大堆验证函数,isacsii()
,isint()
等等。感觉学习成本有点高,也不敢直接用啊,还是得读源码,可以mark一下,以后有需要的时候再看看