Tuesday, March 30, 2021

PyCoder’s Weekly: Issue #466 (March 30, 2021)

#466 – MARCH 30, 2021
View in Browser »

The PyCoder’s Weekly Logo


Many Models Workflows in Python

Learn how to organize models into dataframes for exploratory data analysis, and why you might want to consider doing this.
ALEX HAYES

Building a Full-Text Search Engine in 150 Lines of Python Code

Go from data preparation to search engine in just a few lines of Python.
BART DE GOEDE

Get Granular Visibility into your Python Apps with Detailed Metrics and End-To-End Traces in Datadog

alt

Datadog’s distributed tracing and APM generates flame graphs from real requests, enabling you to visualize app performance in real-time. Trace requests across service boundaries and optimize bottlenecks by drilling into individual traces end-to-end. Try Datadog APM free →
DATADOG sponsor

OrderedDict vs dict in Python: The Right Tool for the Job

In this step-by-step tutorial, you’ll learn what Python’s OrderedDict is and how to use it in your code. You’ll also learn about the main differences between regular dictionaries and ordered dictionaries.
REAL PYTHON

Announcing OpenTelemetry Python 1.0

OpenTelemetry Python distributed tracing API/SDK released its 1.0 version.
MATTHEW MCCLEARY • Shared by Alex Mitelman

Python Basics Book: Paperback Copies Now Available

alt

“Python Basics: A Practical Introduction to Python 3” is now available as a paperback book. Go from beginner to intermediate Python knowledge with a clear, concise, and practical curriculum. Print copies available on Amazon and your favorite book store →
REAL PYTHON sponsor

Discussions

Python Made Me Look Like a Wizard

A design team needs to process 745 headshots to fit 150x150px for an external platform. The team: Ugh, this will take over 2 weeks. A Python developer: Hang on, give me 5 minutes.
REDDIT

Python Jobs

Intermediate Python Developer (Boulder, CO, USA)

Uplight

Data Engineer (Seattle, WA, USA)

doxo

Software Development Engineer (Indianapolis, IN, USA)

TOC Logistics International, Inc.

Full-Stack Django Developer (Oslo, Norway)

unifai

More Python Jobs >>>

Articles & Tutorials

Understanding Python List Comprehensions

Python list comprehensions make it easy to create lists while performing sophisticated filtering, mapping, and conditional logic on their members. In this course, you’ll learn when to use a list comprehension in Python and how to create them effectively.
REAL PYTHON course

Using Python and Twilio Messaging to Find Out if the Suez Canal Is Still Blocked

The boat has finally been unstuck, but just in case you want to check on whether or not anything like this happens again, here you go!
SAM AGNEW

$100,000 Build on Redis Hackathon

alt

Join us April 15 – May 15 to show the world what you can build on Redis for a chance to win big prizes totaling US$100,000 →
REDIS LABS sponsor

HPy: A Better C API for Python

The HPy project aims to create a simpler and faster C API for Python.
ANTONIO CUNI

Python Community Interview With Dane Hillard

Dane Hillard, the author of the book Practices of the Python Pro, discusses a variety of topics, including code complexity, Python package maintenance, and popcorn.
REAL PYTHON

Records and Sets: Selecting the Ideal Data Structure

Learn about two of Python’s data structures: records and sets. You’ll look at multiple types and classes for both of these and learn which implementations are best for your specific use cases.
REAL PYTHON course

Understand the Architecture Around your Python Apps in Containers and Serverless Environments

Epsagon lets dev teams see and understand dependencies and API integrations in microservices architecture. It’s a Microservices Observability SaaS with monitoring and investigative tools to ‘drill-down’ and explore modern workloads. Setup Epsagon and see your python services in minutes
EPSAGON sponsor

Executing Encrypted Python with No Performance Penalty

If you need to secure Python’s bytecode to minimize attack surfaces in your production deployment, then you’ll definitely want to check this out!
WOLFGANG RICHTER

All the Important Features and Changes in Python 3.10

Python 3.10 is slated to be released in October of this year. Read about some of the features and changes you can expect to see.
MARTIN HEINZ • Shared by Martin Heinz

Improving the Learning Experience on Real Python

Dan Bader talks about Real Python’s completely refreshed layout designed to improve users’ learning experience.
REAL PYTHON podcast

Projects & Code

Events

PyCon 2021 (Virtual)

May 12 – 18, 2021
PYCON.ORG

PyCon India 2021

September 17 – 20, 2021
PYCON.ORG • Shared by Gajendra Deshpande


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