Tuesday, September 14, 2021

PyCoder’s Weekly: Issue #490 (Sept. 14, 2021)

#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 certain extent; both referred to Python’s [PEP 8] style guide, but the discussion indicates that the advice in it may have been stretched further than intended.”
JAKE EDGE

How to Log in Python Like a Pro

Learn what good logging is, and how you should implement it in Python. Comes with meaningful examples and rules of thumb on what and how to log.
GUILHERME LATROVA

Receive a $5 Donation to the OSS of Your Choice When You Start Your Free Scout APM Trial Today

alt

Scout is an APM designed to provide the data insights necessary for any developer to become a performance pro. Find and fix observability issues before the customer ever sees them by connecting your error reporting and APM data on one platform, with Scout’s new error monitoring feature add-on →
SCOUT APM sponsor

Python News: What’s New From August 2021?

August 2021 was an eventful month in the world of Python. In this article, you’ll get up to speed on everything that happened in the past month, including three new Python releases.
REAL PYTHON

Unravelling async for Loops

Python’s async for statement allows convenient iteration over asynchronous iterators. In this article you’ll see how async for loops work behind the scenes.
BRETT CANNON

Discussions

Black Autoformatter Core Team AMA

The core team behind the popular Python autoformatter Black did an “ask me anything” (AMA) thread on Reddit.
REDDIT

Python Jobs

Senior Backend Software Engineer (Remote)

Clay

Data Engineer Python & PostgreSQL (Newport Beach, CA)

Research Affiliates

Sr Backend Developer (Amsterdam, Netherlands)

GUTS Tickets

Lead Developer Python (Remote)

Optello

More Python Jobs >>>

Articles & Tutorials

Python Is a Bad Programming Language

“I’ll say it again: Python is a bad programming language, and the only reason it’s so popular today is because Google pushed it so hard in the first decade of the 2000s.” Related discussion of this controversial article on Hacker News.
MICHAEL MORENO opinion

Using Data Classes in Python

One new and exciting feature that came out in Python 3.7 was the data class. A data class is a class typically containing mainly data, although there aren’t really any restrictions. With data classes, you don’t have to write boilerplate code to get proper initialization, representation, and comparisons for your objects.
REAL PYTHON video

Data Elixir: Data Science Newsletter

alt

Data Elixir is an email newsletter that keeps you on top of the tools and trends in Data Science. Covers machine learning, data visualization, analytics, and strategy. Curated weekly with top picks from around the web →
DATA ELIXIR sponsor

Advantages of Completing Small Python Projects

Are you a beginner or intermediate Python programmer who has made it through some of the fundamentals? Have you tried to tackle a big project but got stuck and frustrated? Completing some small projects might be the answer. This week on the show, author Al Sweigart.
REAL PYTHON podcast

Common Ways for Parallelizing Python Code

This article reviews some common options for parallelizing Python code, including multiprocessing, specialized libraries, ipython parallel, and ray.
MICHAEL GALARNYK • Shared by Michael Galarnyk

A Python Guide to the Fibonacci Sequence

Explore the Fibonacci sequence in Python, which serves as an invaluable springboard into the world of recursion, and learn how to optimize recursive algorithms in the process.
REAL PYTHON

DataStax Astra DB – Built on Apache Cassandra. Get 80 Gigabytes of Storage Free Every Month

Need Global Scale on a Startup Budget? DataStax Astra DB is a multi-cloud DBaaS built on Apache Cassandra. Painless APIs, always free for developers, & no credit card required.
DATASTAX sponsor

All The Ways to Compress and Archive Files in Python

How to compress, decompress, and manage archives and files with Python in all the formats you might ever need.
MARTIN HEINZ • Shared by Martin Heinz

Projects & Code

Events

PyCon India 2021 (Virtual)

September 17 to September 21, 2021
PYCON.ORG

PyWeek 32 Game Jam (Virtual)

September 19 to September 20, 2021
PYWEEK.ORG


Happy Pythoning!
This was PyCoder’s Weekly Issue #490.
View in Browser »

alt

[ Subscribe to 🐍 PyCoder’s Weekly 💌 – Get the best Python news, articles, and tutorials delivered to your inbox once a week >> Click here to learn more ]



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...