Tuesday, October 26, 2021

PyCoder’s Weekly: Issue #496 (Oct. 26, 2021)

#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 for people coming from other languages and an introduction for beginners to the idiomatic practices within Python. You’ll cover truth values, looping, DRY principles, and the Zen of Python.
REAL PYTHON course

Notes From the Meeting on Python GIL Removal Between Python Core and Sam Gross

“During the annual Python core development sprint we held a meeting with Sam Gross, the author of nogil, a fork of Python 3.9 that removes the GIL. This is a non-linear summary of the meeting.”
ŁUKASZ LANGA

Analyze Code-Level Application Performance Across Your Entire Environment With Datadog APM

alt

Datadog’s distributed tracing and APM generates flame graphs from real requests, enabling you to visualize app performance and pinpoint hard-to-reproduce problems in your production code. Without switching tools, you can pivot to related logs and metrics for full context. Try Datadog APM free →
DATADOG sponsor

PEP 660: Editable Installs for pyproject.toml Based Builds (Wheel Based)

“Now that PEP 517 provides a mechanism to create alternatives to setuptools, and decouple installation front ends from build backends, we need a new mechanism to install packages in editable mode.”
PYTHON.ORG

Django 4.0 Beta 1 Released

Check out the work-in-progress development release notes for more details.
DJANGO SOFTWARE FOUNDATION

PyCon US 2022: Conference Website Launched

PyCon US 2022 takes place in Salt Lake City, Utah from April 27, 2022 to May 5, 2022.
PYCON.ORG

Discussions

Python Jobs

Full Stack Software Engineer Django/Postgres/React (Washington D.C.)

Quorum

Senior Software Engineer (Washington D.C.)

Quorum

Senior Python Engineer @ Moody's AI & ML Center of Excellence (New York, NY, USA)

Moody's

Senior Software Engineer (Washington D.C.)

Quorum

Full Stack Developer (Anywhere)

Level 12

Software Engineer (Anywhere)

1Point21 Interactive

More Python Jobs >>>

Articles & Tutorials

The Composition Over Inheritance Principle

“In Python as in other programming languages, this grand principle encourages software architects to escape from Object Orientation and enjoy the simpler practices of Object Based programming instead.”
BRANDON RHODES

Using the “not” Boolean Operator in Python

In this step-by-step tutorial, you’ll learn how Python’s “not” operator works and how to use it in your code. You’ll get to know its features and see what kind of programming problems you can solve by using “not” in Python.
REAL PYTHON

How to Quickly Label Data for Machine Learning

alt

With Toloka, you can control the accuracy and speed of data labeling to develop high performing ML models.  Our platform supports annotation for image classification, semantic segmentation, object detection, named entity recognition, sentiment analysis, speech recognition, text classification →
TOLOKA AI sponsor

Using the len() Function in Python

In this tutorial, you’ll learn how and when to use the len() Python function. You’ll also learn how to customize your class definitions so that objects of a user-defined class can be used as arguments in len().
REAL PYTHON

PEP 670 [Draft]: Convert Macros to Functions in the Python C API

“Converting macros and static inline functions to regular functions makes these regular functions accessible to projects which use Python but cannot use macros and static inline functions.”
PYTHON.ORG

A NASA TV Still Frame Viewer in Python

Spacestills is a Python program for viewing NASA TV still frames. It’s a learning project based on the PySimpleGUI GUI framework.
PAOLO AMOROSO

A New, Free Python Code Quality & Security Scanner With Real-Time Scanning

Like Grammarly for your code. Scan your Python code for quality & security issues, and get fix advice in your IDE. Get started with Snyk for free.
SNYK.IO sponsor

Projects & Code

Events

Plone Conference 2021 Online

October 23 to November 1, 2021
PLONECONF.ORG

PyData Global 2021

October 28 to October 31, 2021
PYDATA.ORG

PythOnRio Meetup

October 30, 2021
PYTHON.ORG.BR

PyCon Chile

November 5 to November 8, 2021
PYCON.CL

deploy by DigitalOcean

November 16 to November 17, 2021
DIGITALOCEAN


Happy Pythoning!
This was PyCoder’s Weekly Issue #496.
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...