My favourite Python stories of 2019


by Anthony Shaw, December 19, 2019

“What makes Python a great language?” by Steve Dower

“If you came expecting a well researched article full of citations to peer-reviewed literature, you came to the wrong place. Similarly if you were hoping for unbiased and objective analysis. I’m not even going to link to external sources for definitions. This is literally just me on a soap box, and you can take it or leave it.”

What makes Python a great language? I know I’m far from the only person who has opined about this topic, but figured I’d take my turn. A while ago I hinted…

Article

“PyGame : A Primer on Game Programming in Python” by Jon Fincher

Jon had way-too-much fun putting this together, but it is full of some things you could be working on over the holidays. PyGame is one of the best libraries for putting together arcade games, like platformers or scrollers.

Article

“Why you should use python -m pip” by Brett Cannon

Brett goes over a practice that everyone should be using and how it can stop you from accidentally installing the wrong thing in the wrong place

Article

“Overusing list comprehensions and generator expressions in Python” by Trey Hunner

Trey has a unique writing style and approach that comes through in his talks as well. If you ever get the opportunity to see Trey speak at conferences — make time on your agenda! This article is no exception, Trey presents some funny, ugly and confusing anti-patterns for list comprehensions and generator expressions

Article

“So, You want to Contribute to Cpython : Gather here !!” by Joannah Nanjekye

Newly inducted CPython core developer, Joannah Nanjekye talks about her experiences getting involved in CPython development

Article

“Managing Multiple Python Versions With pyenv” by Logan Jones

PyEnv is really useful for load-testing branches of CPython and compiling custom CPython binaries from source. Logan goes through its usage in detail

Article

“MicroPython: An Intro to Programming Hardware in Python” by Chris Garrett

Chris presents some fun exercises to use with MicroPython on IoT

Article

“Async IO in Python: A Complete Walkthrough” by Brad Solomon

I find asyncio hard and confusing. This article goes through the whole ecosystem, how it works and how to use the APIs. Very useful.

Article

“My Path to Becoming a Python Core Developer” by Emily Morehouse

Emily is the chair of PyCon 2020 and 2021, and this article tells a story of how she found herself in that position and how intimidating it was trying to become a core developer.

Article

“The Next Level of Data Visualization in Python” by Will Koehrsen

Sick of having graphs and visualizations that look like a bag of smashed crabs? This article shows you how to many nice-looking visuals in your notebooks and apps

Article

“Python Type Checking (Guide)” by Geir Arne Hjelle

Still need to be convinced on type annotations in Python? This article goes through the different approaches and tools, how you can use them literally or just for documentation

Article

My own posts from this year

I’ve been quiet on the blogging front this year because work has been so, so, so busy as I’m in the middle of an $11bn merger. But here are the major things I published:

[Review of Azure Pipelines with Python]

[A letter of encouragement to the Python community in Africa]

I explored the sub-interpreters support in 3.8 and their impact on the Python GIL [Has the Python GIL been slain?]

I looked at code complexity and how to refactor Python effectively Refactoring Python Applications for Simplicity

Then I wrote a (very) long article about CPython 3.8’s source code Your Guide to the CPython Source Code

This will be a book published in 2020!

Thank you for reading, Have a great holiday and New Year

Anthony Shaw