Python 3.9 Release Schedule, Documenting Tests, RegExes, Pythonic Lightsabers, and More

#419 – MAY 5, 2020
The PyCoder’s Weekly Logo
Python 3.9 Release Schedule
In last week’s episode we had the dates mixed up, here are the correct ones: 3.9.0 final is expected to be released on October 5, 2020. On May 18, 2020 3.9.0 beta 1 is going to be released, marking the start of the feature freeze phase.
PYTHON.ORG

Why You Should Document Your Tests
Have you ever looked at a test you wrote six months or a year ago and thought, “I know what this test does but why did I test this?” Maybe you should document your tests.
HYNEK SCHLAWACK

Python Developers Are in Demand on Vettery
Vettery is an online hiring marketplace that’s changing the way people hire and get hired. Ready for a bold career move? Make a free profile, name your salary, and connect with hiring managers from top employers today →
VETTERYsponsor

The 2020 Python Language Summit
This year’s Python Language Summit was held over videoconference. The PSF is posting summaries of the presentations as they become available.
PYTHON SOFTWARE FOUNDATION

Regular Expressions: Regexes in Python
In previous tutorials in this series, you’ve seen several different ways to compare string values with direct character-by-character comparison. In this tutorial, you’ll learn how to perform more complex string pattern matching using regular expressions, or regexes, in Python.
REAL PYTHON

Using Python to Generate Over 10,000 Unique 8-Bit Lightsabers
May the Fourth be with you! And also some Python! Adam McKerlie shows us how he used Pillow and Tweepy to make a Twitter bot that tweets a unique lightsaber every day.
ADAM MCKERLIE • Shared by Adam McKerlie

Exploring an Alternative to Jupyter Notebooks for Python Development
For many people, the Jupyter Notebook has become the de facto tool for exploratory data analysis. But is it really the bee’s knees?
CHRIS MOFFITT

Python 3.9.0a6 Is Now Available for Testing
PYTHON.ORG

Django Bugfix Release: 3.0.6
DJANGO SOFTWARE FOUNDATION

The Real Python Podcast: Interview With Łukasz Langa
Łukasz is the release manager for CPython and the creator of the Black code formatter.
REAL PYTHON podcast


Discussions


Why Doesn’t [1] += {'a': 2} Raise a TypeError?
Wait… you can do that?
STACK OVERFLOW

Why Does True == False Is False Evaluate to False in Python? (2013)
A real brainteaser if you don’t know about chained comparisons.
HACKER NEWS


Python Jobs


Senior Python Engineer (Remote - US East Coast Only)
ENTERRA SOLUTIONS

Python's Migration to GitHub: Request for Project Manager Resumes (Remote)
PYTHON SOFTWARE FOUNDATION

Fullstack Software Engineer ML, Python (Remote)
CYBERCODERS

Principal Python/AWS Engineer in Health Analytics (Remote)
CYBERCODERS

More Python Jobs >>>


Articles & Tutorials


Tonks: Building One (Multi-Task) Model to Rule Them All!
Michael Sugimura and Nicole Carlson were tasked with developing Tonks, a multi-tasking deep learning library, for ShopRunner. In this collaborative article, they talk about the decisions they made while engineering Tonks. They also discuss how they overcame some initial friction and learned to lean into each other’s strengths.
NICOLE CARLSON AND MICHAEL SUGIMURA • Shared by Michael Sugimura

Using Python datetime to Work With Dates and Times
Have you ever wondered about working with dates and times in Python? In this tutorial, you’ll learn all about the built-in Python datetime library. You’ll also learn about how to manage time zones and daylight saving time, and how to do accurate arithmetic on dates and times.
REAL PYTHON

Become a Python Guru With PyCharm
PyCharm is the Python IDE for Professional Developers by JetBrains providing a complete set of tools for productive Python, Web and scientific development. Be more productive and save time while PyCharm takes care of the routine →
JETBRAINSsponsor

The Python print() Function: Go Beyond the Basics
In this step-by-step course, you’ll learn about the print() function in Python and discover some of its lesser-known features. Avoid common mistakes, take your “hello world” to the next level, and know when to use a better alternative.
REAL PYTHON video

Understand Django: User Interaction With Forms
“How do users provide data to your website so you can interact with them?  We can answer that question by exploring Django’s form system, and the tools that Django provides to simplify your site as you engage with your users.”
MATT LAYMAN • Shared by Matt Layman

The Hitchhiker’s Guide to CLIs in Python
Command-line interfaces—a developer’s best friend. (Or foe?) Explore the history of the CLI and some Python packages for creating CLIs in this extensive four-part guide.
VINAYAK MEHTA • Shared by Vinayak Mehta

Introduction to Python’s functools Module
Take a guided tour through the functools module. Not to be confused with “funk tools,” like the flashlight.
FLORIAN DAHLITZ • Shared by Florian Dahlitz

Hacking Together an E-Ink Dashboard
Who doesn’t need more dashboards in their life? Check out this fun little Raspberry Pi project using the Waveshare 2.7inch e-Paper HAT e-ink display.
ANDREW HEALEY

What Is Python Redis? Enhance Python With Redis – the Fastest In-Memory Cloud Database
Install redis-py & Python Redis Client. Explore how Redis can enhance Python capabilities. Learn how to use Connection Pooling, SSL, Reading & Writing, & Opening a Connection with redis-py. →
REDIS LABSsponsor

Using Webpack With Django: No Plugins Required!
Webpack is a popular JavaScript module bundler. Django is a popular web framework. Can the two play nicely together?
PASCAL WIDDERSHOVEN • Shared by Pascal Widdershoven

Caching in Django
Caching is a common technique for improving web app performance, and Django has a robust-built-in caching system.
J-O ERIKSSON • Shared by J-O Eriksson

PyBoy: GameBoy Emulator Written in Python
An interview with one of the creators of PyBoy, Mads Ynddal.
MARTINA CANTARO

TLDR Newsletter: Byte Sized News for Techies
TLDR is a daily, curated newsletter with links and TLDRs of the most interesting stories in tech, science, and programming.
TLDRNEWSLETTER.COM


Projects & Code


interrogate: Checks Your Code Base for Missing Docstrings
GITHUB.COM/ECONCHICK

rich: Rich Text and Beautiful Formatting in the Terminal
GITHUB.COM/WILLMCGUGAN

Background-Matting: The World Is Your Green Screen
GITHUB.COM/SENGUPTAUMD

pyslam: Monocular Visual Odometry (VO) Pipeline in Python
GITHUB.COM/LUIGIFREDA

vidgear: High-Performance Cross-Platform Video Processing
GITHUB.COM/ABHITRONIX

alembic_utils: Sqlalchemy/Alembic Extension for Migrating Procedures and Views
GITHUB.COM/OLIRICE • Shared by Oliver Rice

Happy Pythoning!
Copyright © 2020 PyCoder’s Weekly, All rights reserved.
You are receiving this email because you opted in on our website at pycoders.com
Our mailing address: DevCademy Media Inc. · #720-999 West Broadway, Vancouver BC V5Z 1K5, Canada

 | 

Older messages

The End of the Python 2 Era, New Features in Python 3.9, Common Python App Layouts, and More

Tuesday, April 28, 2020

The Final Python 2 Release Marks the End of an Era #418 – APRIL 28, 2020 VIEW IN BROWSER The PyCoder's Weekly Logo The Final Python 2 Release Marks the End of an Era The final version of Python 2

Pythonic Video Conferencing, OOP Inheritance vs Composition, Faster Pandas, and More

Tuesday, April 14, 2020

Open Source Virtual Backgrounds With Python and OpenCV #416 – APRIL 14, 2020 VIEW IN BROWSER The PyCoder's Weekly Logo Open Source Virtual Backgrounds With Python and OpenCV With so much of the

Python + Arduino, Final Python 2.x Release, Effective Python 2nd Ed., and More

Tuesday, April 7, 2020

Arduino With Python: How to Get Started #415 – APRIL 7, 2020 VIEW IN BROWSER The PyCoder's Weekly Logo Arduino With Python: How to Get Started Discover how to use Arduino microcontrollers with

You Might Also Like

[Virtual talk] How to remove the biggest blocker to production AI/ML

Monday, May 20, 2024

ML teams are being asked to power every customer experience and interaction with AI/ML. The pressure to go faster is high, but the reality is that the complex data engineering to get the right data to

What to expect from Microsoft Build 2024

Monday, May 20, 2024

The Morning After It's Monday, May 20, 2024. Normally, Microsoft's Build is a straightforward (often dry) showcase of the company's software and hardware developments, with a dash of on-

Import AI 373: Guaranteed safety; West VS East AI attitudes; MMLU-Pro

Monday, May 20, 2024

…As the money and stakes get higher, things will get crazier… ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏

Cyber Criminals Exploit GitHub and FileZilla to Deliver Cocktail Malware

Monday, May 20, 2024

THN Daily Updates Newsletter cover Webinar - Navigating the SMB Threat Landscape: Key Insights from Huntress' Threat Report Analyzing the Post-Qakbot Era and Emerging Threats with Cybersecurity

Architecture Weekly #180 - 20th May 2024

Monday, May 20, 2024

We started with an invitation to discuss Conway's Law. Then, we discussed recent Cloud provider mishaps. Well, one AWS mishap on the bill for a DDoSed S3 bucket and a nightmare from Google Cloud

Retiring!

Monday, May 20, 2024

Moving to a different Newsletter ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏

SRE Weekly Issue #425

Monday, May 20, 2024

View on sreweekly.com Welcome to a special re-send of SRE Weekly Issue #425! For those of you getting this for a second time, my apologies. I attempted to change to a new email vendor, but they

SRE Weekly Issue #425

Monday, May 20, 2024

View on sreweekly.com A message from our sponsor, FireHydrant: FireHydrant is now AI-powered for faster, smarter incidents! Power up your incidents with auto-generated real-time summaries,

🤖 Will AI Gadgets Replace Our Smartphones? — 4 Ways to Use Excel in Daily Life

Sunday, May 19, 2024

Also: How to Declutter Your Google Search Results, and More! How-To Geek Logo May 19, 2024 📩 Get expert reviews, the hottest deals, how-to's, breaking news, and more delivered directly to your

Daily Coding Problem: Problem #1446 [Medium]

Sunday, May 19, 2024

Daily Coding Problem Good morning! Here's your coding interview problem for today. This problem was asked by Google. Given a set of closed intervals, find the smallest set of numbers that covers