Tuesday, August 18, 2020

PyCoder’s Weekly: Issue #434 (Aug. 18, 2020)

#434 – AUGUST 18, 2020
View in Browser »

The PyCoder’s Weekly Logo


Async Views in Django 3.1

Django 3.1 introduced support for asynchronous views, middleware, and tests. This tutorial shows you how to get started with async views.
TESTDRIVEN.IO • Shared by Michael Herman

A Practical Introduction to Web Scraping in Python

In this tutorial, you’ll learn all about web scraping in Python. You’ll see how to parse data from websites and interact with HTML forms using tools such as Beautiful Soup and MechanicalSoup.
REAL PYTHON

Scout APM for Python: Application Performance Insight in Less Than 4 Minutes

alt

Scout APM is Python application performance monitoring that helps developers quickly pinpoint & resolve issues before your customer ever sees them. Get back to coding faster with proactive & real-time insight into N+1 queries, memory bloat & more. Start your free trial today →
SCOUT APM sponsor

Delegation: Composition and Inheritance in Object-Oriented Programming

Delegation is often considered one of the three pillars of object-oriented programming. Learn how to use this powerful concept in Python.
LEONARDO GIORDANI

Announcing the Consortium for Python Data API Standards

Proposed by Quantsight Labs, and with initial sponsors including Intel, Microsoft, and Google Research, the consortium aims to tackle fragmentation across libraries by developing API standards for n-dimensional arrays and dataframes.
RALF GOMMERS

Analyzing Python Code With Python

Take a dip into static code analysis using abstract syntax trees and Python’s built-in ast modue.
ROTEM TAMIR

Wing Python IDE 7.2.4 Released

Now supports Python 3.9!
WINGWARE.COM

Discussions

What Are Some Good Python Project Ideas for High School Students?

Honestly, some of these ideas are good for any beginning Pythonista!
REDDIT

Where Do You Go to Get Exposure to Well-Written Code?

Maybe someone needs to start a Python reading club…
REDDIT

Python Jobs

Advanced Python Engineer (Newport Beach, CA, USA)

Research Affiliates LLC

Senior Backend Developer (Remote)

dumpling

C++/Python Software Engineer (Remote)

PRI Technology

AWS Cloud Engineer (Atlanta, GA, USA)

Hays

More Python Jobs >>>

Articles & Tutorials

Mini Raspberry Pi Boston Dynamics–inspired Robot

See how one Redditor taught themselves robotics by building a miniature version of a Boston Dynamic’s robot dog “Spot” using a Raspberry Pi, C++, and Python.
ASHLEY WHITTAKER

Identify Invalid Python Syntax

In this video course, you’ll see common examples of invalid syntax in Python and learn how to resolve the issue. If you’ve ever received a SyntaxError when trying to run your Python code, then this is the guide for you!
REAL PYTHON course

Want to Level-Up Your Python Skills?

alt

Write better code, debug faster, and become more productive with PyCharm, a tightly integrated IDE that understands your code and provides a complete set of tools to help you make it better. Try PyCharm now and code like a pro! Free trial →
JETBRAINS sponsor

Visualizing Prim’s algorithm with NetworkX and Matplotlib

Learn how to implement Prim’s algorithm for finding a minimum spanning tree of a network from scratch and then visualize the algorithm using the NetworkX and Matplotlib libraries.
KYLE KIZIRIAN • Shared by Kyle Kizirian

Using Postgres Row-Level Security in Python and Django

This article shows how to create and implement a row level security policy with Django middleware and Django signals, giving database administrators a way to limit the rows a user can access, adding an extra layer of data protection.
JOSH ALETTO • Shared by Manuel Weiss

Find Performance Bottlenecks in Python Code

“We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil. Yet we should not pass up our opportunities in that critical 3%.” - Donald Knuth Blackfire is built to let you find the 3%. Quick install, appealing and user-friendly UI.
BLACKFIRE sponsor

Python Community Interview With Bruno Oliveira

Bruno Oliveira is a core developer for pytest, the Python testing library. In this interview, we cover migrating a large codebase from C++ to Python, how to get started with pytest, and his love of Dark Souls.
REAL PYTHON

Super-charge Your Python Builds

With Man Group’s PartialTesting tool, you can speed up build-times and reduce compute requirements by running only the tests that matter and ignoring those that don’t!
MAN.COM

Developing Python With Poetry & Poetry2nix: Reproducible Flexible Python Environments

Learn how to use Nix to create highly reproducible Python builds that are aware of native dependencies.
ADAM HOESE

Projects & Code

Events

PyCon Japan 2020 (Online Conference)

August 28 to August 30, 2020
PYCON.JP


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