Python's min() and max(), django-rich, Evaluating Dependencies, and More

#525 โ€“ MAY 17, 2022 VIEW IN BROWSER
The PyCoder’s Weekly Logo
Python’s min() and max(): Find Smallest and Largest Values
In this tutorial, you’ll learn how to use Python’s built-in min() and max() functions to find the smallest and largest values. You’ll also learn how to modify their standard behavior by providing a suitable key function. Finally, you’ll code a few practical examples of using min() and max().
REAL PYTHON

Using django-rich for Testing
The django-rich library adds color and formatting to Django management commands, including colorized tracebacks. Make your debugging and testing more visual.
OKKEN, JOHNSON, & SMITH podcast

Analyze Code-Level Performance Across Your app’s Environment With Minimal Performance Overhead
Datadogโ€™s profiler allows you to capture code profiles for all of your production instances. Compare those profiles in the profile comparison view to see how the performance of your code changes over time. You can quantify the changes youโ€™ve made to fix a bottleneck. Try Datadog APM free โ†’
DATADOGsponsor

The Well-Maintained Test: 12 Questions for New Dependencies
There is lots of openly available code out there, but how do you know if you should build a dependency on some random coder’s package? 12 Questions you should ask yourself before using a library.
ADAM JOHNSON

DjangoCon Europe 2022 Call for Proposals
DJANGOCON.EU

DjangoCon US 2022 Call for Proposals
PRETALX.COM

Python Release Python 3.11.0b1
PYTHON.ORG

Python in Visual Studio Code: May 2022 Release
MICROSOFT.COM


Discussions


Python Language Summit: Python Without the GIL
What’s a language summit without a conversation about the GIL? This HN discussion is all about the “nogil” conversation at the 2022 summit
HACKER NEWS

Which Python Packages Do You Use the Most?
MIKE DRISCOLL


Python Jobs


Academic Innovation Developer
UNIVERSITY OF MICHIGAN ๐Ÿ“ ANN ARBOR, MI, USA

Software Development Lead
UNIVERSITY OF MICHIGAN ๐Ÿ“ ANN ARBOR, MI, USA

Senior Backend Engineer
DOIST ๐Ÿ“ ANYWHERE

Senior Storytelling Framework Engineer - Python
GOPRO ๐Ÿ“ FRANCE

Senior Software Engineer - Python Full Stack
BLENDERBOX ๐Ÿ“ USA

Gameful Learning Developer
UNIVERSITY OF MICHIGAN ๐Ÿ“ ANN ARBOR, MI, USA

Data & Operations Engineer
UNIVERSITY OF MICHIGAN ๐Ÿ“ ANN ARBOR, MI, USA

Lead Software Engineer
RIGHT SIDE UP ๐Ÿ“ ANYWHERE

More Python Jobs >>>


Articles & Tutorials


Deploying a Flask Application Using Heroku
In this video course, you’ll learn how to create a Python Flask example web application and deploy it using Heroku. Youโ€™ll also use Git to track changes to the code, and youโ€™ll configure a deployment workflow with different environments for staging and production.
REAL PYTHON course

Python Decorator Patterns
Decorators are a way of wrapping functions around functions, they’re a common technique for providing pre- and post-conditions on your code. Learn about the different ways decorators get invoked and how to write each pattern.
MARTON TRENCSENI

Pulumi: Developer-First Infrastructure with Python
Developing on the cloud is complex. What if you could use your existing programming knowledge to build, deploy, and manage infrastructure on any cloud using your favorite languages and tools? With Pulumi you can. Get started for free at pulumi.com โ†’
PULUMIsponsor

Introduction to Linear Programming in Python
Linear programming is a technique in mathematics for optimizing multi-variable problems. This article introduces you to the world of linear programming and some Python libraries you can use to solve these kinds of problems.
MAXIME LABONNE

Gevent Performance
Gevent is a co-routine based networking library whoโ€™s sweet spot for performance is network-bound workloads. Learn how gevent allows you to efficiently interleave other CPU work while waiting on the network for results.
ROY WILLIAMS

REPL Python Programming and Debugging With IPython
IPython is a powerful alternative to the built-in REPL. Learn how to use it for exploratory programming and debugging, including using it in the Django shell.
LUKE PLANT

Unlock Secret Knowledge From Python Experts for Just $10
Packt’s Spring Sale is on and for a limited period, all eBooks and Videos are only $10. Our Products are available as PDF, ePub, and MP4 files for you to download and keep forever. All the practical content you need - by developers for developers.
PACKT PUBLISHINGsponsor

Profiling and Analyzing Performance of Python Programs
The tools and techniques for finding all the bottlenecks in your Python programs and fixing them, fast. Includes info on cProfile, py-spy, py-heat, and more.
MARTIN HEINZ โ€ข Shared by Martin Heinz

How to Code a Blockchain in 6 Steps
The best way to understand blockchains is to see one in action , or better yet, to build one. Learn how to use Python and hashlib to create your own.
ARI COHEN


Projects & Code


Brought to you by Real Python for Teamssponsor
Online Python training created by a community of experts. Give your team the real-world Python skills they need to succeed โ†’

ads: Store Data in Soundwaves
GITHUB.COM/STACKBUFFER

TatSu: Generate Python Parsers From EBNF Grammars
GITHUB.COM/NEOGENY

woodwork: Data Typing Namespace for Many ML Tools
GITHUB.COM/ALTERYX

pony: Pony Object Relational Mapper
GITHUB.COM/PONYORM

open-data-anonymizer: Data Anonymization & Masking
GITHUB.COM/ARTLABSS

๐Ÿ“†๐Ÿ Upcoming Python Events


PiterPy Breakfast
May 18, 2022

Weekly Real Python Office Hours Q&A (Virtual)
May 18, 2022

PyData Bristol Meetup
May 19, 2022

PyLadies Dublin
May 19, 2022

Karlsruhe Python User Group (KaPy)
May 20, 2022

Django Girls Malabo
May 21 to May 22, 2022
Happy Pythoning!
Copyright ยฉ 2022 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

Unsubscribe | Update Email Address

Older messages

PyCon US 2022 Wrap-Up, Game Engines, PyScript, and More

Tuesday, May 10, 2022

PyCon US 2022 Highlights #524 – MAY 10, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo PyCon US 2022 Highlights “It was wonderful to be back at PyCon US in person again. PyCon is way too big for

Dunder Methods, Closing Files, The GIL, and More

Tuesday, May 3, 2022

Dunder Methods in Python: The Ugliest Awesome Sauce #523 – MAY 3, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo Dunder Methods in Python: The Ugliest Awesome Sauce Double-underscore methods, also

Type Hints in Multi-Version Code, Extras for Enum, Django Users, and More

Tuesday, April 26, 2022

Type Hints in Code Supporting Multiple Python Versions #522 – APRIL 26, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo Type Hints in Code Supporting Multiple Python Versions The typing module

WASM, Python Keywords, PyInstaller, and More

Tuesday, April 19, 2022

Build an Editor in Python and WebAssembly #521 – APRIL 19, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo Build an Editor in Python and WebAssembly Step-by-step instructions on how to build a code

Levenshtein Distances, urllib, Python's Performance, and More

Tuesday, April 5, 2022

Python's `urllib.request` for HTTP Requests #519 – APRIL 5, 2022 VIEW IN BROWSER The PyCoder's Weekly Logo Python's urllib.request for HTTP Requests In this tutorial, you'll be making

You Might Also Like

Christmas On Repeat 🎅

Monday, December 23, 2024

Christmas nostalgia is a hell of a drug. Here's a version for your browser. Hunting for the end of the long tail • December 22, 2024 Hey all, Ernie here with a refresh of a piece from our very

SRE Weekly Issue #456

Monday, December 23, 2024

View on sreweekly.com A message from our sponsor, FireHydrant: On-call during the holidays? Spend more time taking in some R&R and less getting paged. Let alerts make their rounds fairly with our

The Power of an Annual Review & Grammarly acquires Coda

Sunday, December 22, 2024

I am looking for my next role, Zen Browser got a fresh new look, Flipboard introduces Surf, Campsite shuts down, and a lot more in this week's issue of Creativerly. Creativerly The Power of an

Daily Coding Problem: Problem #1645 [Hard]

Sunday, December 22, 2024

Daily Coding Problem Good morning! Here's your coding interview problem for today. This problem was asked by Facebook. Implement regular expression matching with the following special characters: .

PD#606 How concurrecy works: A visual guide

Sunday, December 22, 2024

A programmer had a problem. "I'll solve it with threads!". has Now problems. two he ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌ ͏ ‌

RD#486 (React) Things I Regret Not Knowing Earlier

Sunday, December 22, 2024

Keep coding, stay curious, and remember—you've got this ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌

🎶 GIFs Are Neat, but I Want Clips With Sound — Your Own Linux Desktop in the Cloud

Sunday, December 22, 2024

Also: 9 Games That Were Truly Ahead of Their Time, and More! How-To Geek Logo December 22, 2024 Did You Know Dextrose is another name for glucose, so if you see it listed prominently on the ingredients

o3—the new state-of-the-art reasoning model - Sync #498

Sunday, December 22, 2024

Plus: Nvidia's new tiny AI supercomputer; Veo 2 and Imagen 3; Google and Microsoft release reasoning models; Waymo to begin testing in Tokyo; Apptronik partners with DeepMind; and more! ͏ ͏ ͏ ͏ ͏ ͏

Sunday Digest | Featuring 'The World’s 20 Largest Economies, by GDP (PPP)' 📊

Sunday, December 22, 2024

Every visualization published this week, in one place. Dec 22, 2024 | View Online | Subscribe | VC+ | Download Our App Hello, welcome to your Sunday Digest. This week, we visualized public debt by

Android Weekly #654 🤖

Sunday, December 22, 2024

View in web browser 654 December 22nd, 2024 Articles & Tutorials Sponsored Solving ANRs with OpenTelemetry While OpenTelemetry is the new observability standard, it lacks official support for many