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

SWLW #595: My role as a founder CTO, AI Product Management, and more.

Friday, April 19, 2024

Weekly articles & videos about people, culture and leadership: everything you need to design the org that makes the product. A weekly newsletter by Oren Ellenbogen with the best content I found

The bill to ban TikTok is barreling ahead

Friday, April 19, 2024

The Morning After It's Friday, April 19, 2024. The bill that could ban TikTok in the United States inches closer to becoming law. The legislation passed the House of Representatives last month,

Digest #134: TDD with Serverless, Terraform AI Conversions, K8s Cost Metrics & OpenTofu Response

Friday, April 19, 2024

Learn to convert Terraform templates, deploy SSR on AWS Amplify, and apply TDD to Serverless. Gain insights on PostgreSQL, microfrontends, and secure APIs. ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏

Akira Ransomware Gang Extorts $42 Million; Now Targets Linux Servers

Friday, April 19, 2024

THN Daily Updates Newsletter cover Webinar -- The Future of Threat Hunting Is Powered by Generative AI From Data to Defense: Step Into the Next Era of Cybersecurity with CensysGPT Download Now

ASP.NET Core News - 04/19/2024

Friday, April 19, 2024

View this email in your browser Get ready for this weeks best blog posts about ASP.NET Core! This newsletter is sponsored by elmah.io - the most advanced, yet so simple to set up, error logging and

Post from Syncfusion Blogs on 04/19/2024

Friday, April 19, 2024

New blogs from Syncfusion Syncfusion Prepares for MS Build 2024 with Cloud-Ready Solutions on Azure Marketplace By gingerr Syncfusion offers cloud-ready solutions in Azure Marketplace for MS Build 2024

Hacker Newsletter #696

Friday, April 19, 2024

The greatest value of a picture is when it forces us to notice what we never expected to see. //John W. Tukey hackernewsletter Issue #696 // 2024-04-19 // View in your browser #Favorites Unlock your

Google's massive reorg 🧑‍🤝‍🧑, Meta's Llama 3 launch 🤖, China bans WhatsApp 💬

Friday, April 19, 2024

Google has reorganized its Android, Chrome, and Google hardware divisions Sign Up |Advertise|View Online TLDR TLDR 2024-04-19 📱 Big Tech & Startups Meta's battle with ChatGPT begins now (5

Is your Notes app completely disorganized?

Friday, April 19, 2024

Hi there, Is your Notes app completely disorganized? In a recent survey we found that 77% of our readers would like to learn how to better organize the notes on their iPhone. That's why we're

Data Science Weekly - Issue 543

Friday, April 19, 2024

Curated news, articles and jobs related to Data Science, AI, & Machine Learning ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏ ͏