Messages
11/9/2021
20 : 14
Custom Python for Banks, CLI Apps With Typer, Faster CPython, and More
An Oral History of Bank Python #498 – NOVEMBER 9, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo An Oral History of Bank Python Interesting read about the strange world of Python, as used by big
11/2/2021
20 : 4
GIL News, "zipapp" Module in 3.5+, PSF Community Service Awards, and More
A Viable Solution for Python Concurrency #497 – NOVEMBER 2, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo A Viable Solution for Python Concurrency “The end result thus appears to be a GIL-removal
10/26/2021
20 : 4
Idiomatic Python, GIL Removal Meeting, PyCon 2022, Django 4.0, and More
Writing Idiomatic Python #496 – OCTOBER 26, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Writing Idiomatic Python What are the programming idioms unique to Python? This course is a short overview
10/19/2021
20 : 4
GIL-Free CPython Proof of Concept, Type Hints Case Study, Using @property, and More
No-GIL Fork of CPython #495 – OCTOBER 19, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo No-GIL Fork of CPython This is a proof-of-concept implementation of CPython that supports multithreading
10/12/2021
20 : 4
Python Secures TIOBE #1 Spot, Guido on Python Performance, 3.10 Updates, and More
Beating C and Java, Python Becomes the #1 Most Popular Programming Language, Says TIOBE #494 – OCTOBER 12, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Beating C and Java, Python Becomes the #1
10/5/2021
20 : 4
All Things Python 3.10, Proportional Fonts, Python Editors, and More
Python 3.10: Cool New Features for You to Try #493 – OCTOBER 5, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Python 3.10: Cool New Features for You to Try Explore some of the coolest and most
9/28/2021
20 : 4
Python GIL Deep-Dive, Django 4.0 is Coming, Python as a Build Tool, and More
Python Behind the Scenes: The GIL and Its Effects on Python Multithreading #492 – SEPTEMBER 28, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Python Behind the Scenes: The GIL and Its Effects on
9/21/2021
20 : 14
Structural Pattern Matching, Generator Expressions, Python Steps Forward, and More
Structural Pattern Matching in Python 3.10 #491 – SEPTEMBER 21, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Structural Pattern Matching in Python 3.10 “Python 3.10, which is due out in early
9/14/2021
20 : 14
Practical PEP 8, Logging Best Practices, "async for", and More
Applying PEP 8 in Practice #490 – SEPTEMBER 14, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Applying PEP 8 in Practice “Two recent threads on the python-ideas mailing list have overlapped to a
9/7/2021
20 : 14
PEP 668, Python for Personal Finance, EAFP vs LBYL, and More
PEP 668: Graceful Cooperation Between External and Python Package Managers #489 – SEPTEMBER 7, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo PEP 668: Graceful Cooperation Between External and
8/31/2021
20 : 14
Python == #1, Instagram's Custom Python Interpreter, PyCon 2022 Volunteering, and More
Python Ranks #1 in IEEE "Top Programming Languages" #488 – AUGUST 31, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Python Ranks #1 in IEEE “Top Programming Languages” “Python dominates
8/24/2021
20 : 14
Efficient Queues and Stacks, 25 Pandas Function You Might Not Know, Graph Data Analysis, and More
Python's `deque`: Implement Efficient Queues and Stacks #487 – AUGUST 24, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Python's deque : Implement Efficient Queues and Stacks In this step-
8/17/2021
20 : 14
Python Launcher for UNIX, Python in the Browser, Data Visualization with HoloViz, and More
Introducing the Python Launcher for Unix #486 – AUGUST 17, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Introducing the Python Launcher for Unix Python Core Developer and Steering Council member
8/10/2021
20 : 4
What To Do When You Botch a PyPI Release, E2E Testing Approaches, Walrus Operator Use Cases, And More
What to Do When You Botch a Release on PyPI #485 – AUGUST 10, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo What to Do When You Botch a Release on PyPI Mistakes happen to everyone. But what do you
8/3/2021
20 : 14
Python and REST APIs, Launchpad Finishes Python 3 Transition, New Way to Specify Python Project Install Requirements, and More
Python and REST APIs: Interacting With Web Services #484 – AUGUST 3, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Python and REST APIs: Interacting With Web Services In this tutorial, you'll
7/27/2021
20 : 14
Python Collections, SciPy's New Build System, What To Know About the "operator" Module, and More
Python's `collections`: A Buffet of Specialized Data Types #483 – JULY 27, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Python's collections : A Buffet of Specialized Data Types Python
7/20/2021
20 : 14
Building Web Apps With FastAPI, How Python Imports Work, 1st Week of CPython Developer-In-Residence, and More
Using FastAPI to Build Python Web APIs #482 – JULY 20, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Using FastAPI to Build Python Web APIs In this guide, written by FastAPI creator Sebastián
7/13/2021
20 : 34
One Database Transaction Too Many, State of Python Packaging in 2021, Final Python 3.10 Beta Released, and More
One Database Transaction Too Many #481 – JULY 13, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo One Database Transaction Too Many Learn how a bug was born — one that resulted in hundreds of users
7/6/2021
20 : 14
Python Typeclasses, Custom DRF Permissions Classes, How to Count in Python, and More
Typeclasses in Python #480 – JULY 6, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Typeclasses in Python Sometimes you need to change the behavior of a function based on the type of argument
6/29/2021
20 : 14
Subclassing in Python, Correlation Analysis 101, Reversion Python Lists and Beyond, And More
Subclassing in Python Redux #479 – JUNE 29, 2021 VIEW IN BROWSER The PyCoder's Weekly Logo Subclassing in Python Redux Have you ever heard someone say that composition is better than inheritance?