341-350¶
Issue #341 Come work on PyPI, the future of Python packaging, and more Nov. 6, 2018¶
Cite
ReviewNB: Jupyter Notebook Diff for GitHub
HTML-rendered diffs for Jupyter Notebooks. Say goodbye to messy JSON diffs and collaborate on notebooks via review comments.
REVIEWNB.COM
在MONAI里用过,好用的
Issue #342 PyCon 2019, testing, publishing packages on PyPI, and more Nov. 13, 2018¶
Cite
pampy: Python Pattern Matching Library
“Pattern Matching” in the sense of the syntactic construct used by languages like Haskell. That is, specifying patterns to which some data should conform, then checking to see if it does, and finally deconstructing the data according to those patterns.
GITHUB.COM/SANTINIC
Python 3.10自带match case了,这个库可以安息了,感谢你的贡献和付出
Issue #343 CPython Governance after Guido, "Clean Architecture" examples, and more Nov. 20, 2018¶
Cite
PySimpleGUI Now Supports Qt
GITHUB.COM/MIKETHEWATCHGUY
直接用QT多香
Issue #344 Guido van Rossum Updates, Automated Testing, and More Nov. 27, 2018¶
Cite
Memory Management in Python
Deep dive into the internals of Python to understand how it handles memory management. By the end of this article, you’ll know more about low-level computing, understand how Python abstracts lower-level operations, and find out about CPython’s internal memory management algorithms.
REAL PYTHON
简单介绍了CPython的内存管理,有几张图还不错,没有展开太多细节,入门足够了
Cite
ptop 1.0: A Task Manager for Linux Based Systems Written Using Python
ANKUSH SHARMA
可以,我选择htop
Issue #345 Data Frames, Pipenv Myths, the Advent of Code, and More Dec. 4, 2018¶
Cite
What’s the Deal With Python 3.0–3.3?
“Everywhere I look, I see requirements for Python 2.7, 3.4+.”
REDDIT
好问题,看这个图
https://devguide.python.org/versions/#versions
Issue #346 PyCon 2019 Deadline, Jupyter Notebooks, and More Dec. 11, 2018¶
Cite
When You Try to Choose a Meaningful Variable Name…
TWITTER.COM/REALPYTHON
🤣🤣🤣
Issue #347 CPython Governance, Python in 2018, Cool Projects, and More Dec. 18, 2018¶
Cite
pipsi: Pip Script Installer
Install Python-based CLI stuff (like youtube-dl, awscli, doc2dash, …) without those projects’ dependencies messing up your global Python environment.
ARMIN RONACHER
原项目已不再维护,推荐使用pipx https://github.com/pypa/pipx
Issue #348 CPython 3.7.2 / 3.6.8 Released, How to Write Beautiful Python, and More Dec. 25, 2018¶
Cite
Art: Python Library for Converting Text to ASCII Art
SHAGHIGHI.IR
生成字符画
Issue #349 Python's 2018 in Review, Top Python Libraries, and More Jan. 1, 2019¶
Cite
sherlock: Find Usernames Across Social Networks
GITHUB.COM/SDUSHANTHA
感觉不错啊,直接全网搜索用户名
有点意思,抽空可以研究一下看怎么拓展到其他国内网站
Issue #350 Python 3 Type Checking, Distributing Python Apps, and More Jan. 8, 2019¶
Cite
The Ultimate Guide to Python Type Checking
In this guide, you’ll look at Python type checking. Traditionally, types have been handled by the Python interpreter in a flexible but implicit way. Recent versions of Python allow you to specify explicit type hints that can be used by different tools to help you develop your code more efficiently.
REAL PYTHON
没仔细看,看目录感觉还不错,有时间可以看看