Tuesday, April 7, 2020

PyCoder’s Weekly: Issue #415 (April 7, 2020)

#415 – APRIL 7, 2020
View in Browser »

The PyCoder’s Weekly Logo


Arduino With Python: How to Get Started

Discover how to use Arduino microcontrollers with Python to develop your own electronic projects. You’ll learn how to set up circuits and write applications with the Firmata protocol. You’ll control Arduino inputs and outputs and integrate the board with higher-level apps.
REAL PYTHON course

Things I Wish They Told Me About Multiprocessing in Python [2019]

Python’s multiprocessing module abstracts away a lot of the overhead involved in writing multiprocessing code in Python. But while it might be “easy” to implement multiprocessing in Python, it’s not always easy to do multiprocessing well. In this article, Pamela McA’Nulty shares five tips to help you write better multiprocessing code.
PAMELA MCA'NULTY

Python Developers Are in Demand on Vettery

alt

Vettery is an online hiring marketplace that’s changing the way people hire and get hired. Ready for a bold career move? Make a free profile, name your salary, and connect with hiring managers from top employers today →
VETTERY sponsor

New Sponsorship Program for PyPI

The Packaging Working Group of the Python Software Foundation is launching an all-new sponsorship program to sustain and improve Python’s packaging ecosystem. Funds raised through this program will go directly towards improving the tools that your company uses every day and sustaining the continued operation of the Python Package Index.
PYTHON SOFTWARE FOUNDATION

What the Heck Is pyproject.toml?

“I have seen setuptools users use pyproject.toml because they were ‘told to by ‘ without knowing the entire point behind the file. And so I decided to write this blog post to try and explain to setuptools users why pyproject.toml exists and what it does as it’s the future of packaging in the Python ecosystem.”
BRETT CANNON

Your Configs Suck? Try a Real Programming Language

“In this post, I’ll try to explain why I find most config formats frustrating to use and suggest that using a real programming language (i.e. general purpose one, like Python) is often a feasible and more pleasant alternative for writing configs.”
JESTEM KRÓLICZKIEM

Python Software Foundation Fellow Members for Q1 2020

The PSF Fellow Members for Q1 2020 have been announced. Congratulations to all of the new fellows!
PYTHON SOFTWARE FOUNDATION

Python 2.7.18 Release Candidate 1 Available

“Python 2.7.18 will be the last release of the Python 2.7 series, and thus Python 2.” (It’s not dead, it’s resting!)
PYTHON SOFTWARE FOUNDATION

Discussions

Complete Set of Punctuation Marks for Python?

The string module has a string called punctuation containing several different punctuation characters from the ASCII character set. But not all possible punctuation characters are contained in string.punctuation, such as fancy quotes. What’s the best way to check if any Unicode character is punctuation?
STACK OVERFLOW

How Do You Round a Number to the Next Highest Power of 10?

math.ceil rounds a number to the next highest integer, but how could you round a number to the next highest power of 10 in pure Python?
STACK OVERFLOW

Python Jobs

Python Tutorial Authors Wanted (100% Remote, Freelance)

Real Python

Senior Python API Developer (Remote)

Jefferson Frank

Senior Python Engineer (Remote)

Cybercoders

Sr. Python Developer With Golang (Seattle/Remote)

Empower Professionals

More Python Jobs >>>

Articles & Tutorials

Accelerating Python for Exotic Option Pricing

“In finance, computation efficiency can be directly converted to trading profits sometimes. Quants are facing the challenges of trading off research efficiency with computation efficiency. Using Python can produce succinct research codes, which improves research efficiency. However, vanilla Python code is known to be slow and not suitable for production. In this post, I explore how to use Python GPU libraries to achieve the state-of-the-art performance in the domain of exotic option pricing.”
YI DONG (NVIDIA)

Reworking StringIO Concatenation in Python

Building up a long string by repeatedly concatenating to the end of the “same” string has been considered an anti-Pattern in Python for quite some time. Since strings are immutable, each concatenation should create a new string and therefore incur a performance penalty. Learn how Python 3 optimizes this penalty away, as well as other thoughts on the topic of string concatenation, in this briefing of a recent discussion on the python-ideas mailing list.
JAKE EDGE

Profile, Understand & Optimize Python Code Performance

alt

You can’t improve what you can’t measure. Profile and understand Python code’s behavior and performance (Wall-time, I/O, CPU, HTTP requests, SQL queries). Browse through appealing graphs. Blackfire.io is now available as Public Beta. New features added regularly →
BLACKFIRE.IO sponsor

3 Python Templating Languages You Should (Probably) Never Use

“Python has been around for a long time. In that time, deep in the corners of its system, it has accumulated some almost forgotten templating languages that are well worth poking at. Like cute koalas on top of a eucalyptus tree, happy in their ecological niche, and sometimes as dangerous to work with, these are the templating languages few have heard of—and even fewer should use.”
MOSHE ZADKA

Effective Python and Python at Google Scale

In this episode, Christopher interviews Brett Slatkin about the 2nd edition of his book Effective Python. Brett talks about the revisions he made for the book, and updating it for the newest versions of Python 3. Brett also discusses working on Google App Engine, and what it’s like to develop and maintain Python applications at Google Scale, and working with Guido van Rossum.
REAL PYTHON podcast

Unpacking in Python: Beyond Parallel Assignment

“Unpacking in Python refers to an operation that consists of assigning an iterable of values to a tuple (or list) of variables in a single assignment statement. In this tutorial, [you’ll] learn what iterable unpacking is and how [you] can take advantage of this Python feature to make [your] code more readable, maintainable, and Pythonic.”
LOEDANIS POZO RAMOS

Linked Lists in Python: An Introduction

In this article, you’ll learn what linked lists are and when to use them, such as when you want to implement queues, stacks, or graphs. You’ll also learn how to use collections.deque to improve the performance of your linked lists and how to implement linked lists in your own projects.
REAL PYTHON

When Python Practices Go Wrong

“Just because a programming pattern or convention becomes popular doesn’t always mean that it’s a good idea. This talk digs into the consensus that the Python community has built around what constitutes ‘Pythonic’ code, with a focus on cases where the conventional wisdom may be wrong.”
BRANDON RHODES

The Clean Architecture in Python: How to Write Testable and Flexible Code

“I wrote this blog post because I succeeded in applying the Clean Architecture in two Python projects – both of them reached production and are still being used and developed. This article contains python-specific techniques and tools helpful in embracing the Clean Architecture.”
SEBASTIAN BUCZYŃSKI

Make an Instagram Bot With Python and InstaPy

Learn all about how to use InstaPy to create an Instagram bot that can increase your follower and like count with minimal effort on your end. Along the way, you’ll also learn about two tools that InstaPy uses under the hood: Selenium and the Page Object Pattern.
REAL PYTHON

Python for Middle Schoolers

Stuck in quarantine with a middle schooler? Daniel Lowengrub has put together a fun lesson plan that teaches a beginner how to program in Python with numerous examples and small projects, culminating in an implementation of Tic-Tac-Toe.
DANIEL LOWENGRUB

Thriving in a Remote Developer Environment

“On this episode, I’ll exchange stories about working from home with Jayson Phillips. He’s been writing code and managing a team from his home office for years and has brought a ton of great tips to share with us all.”
TALK PYTHON podcast

Register: Free Intro to Python Workshop for Beginners

Join Metis on April 16 for One Hour at Bootcamp, a free workshop introducing beginner programmers to the fundamentals of Python. Learn live from one of Metis’s top instructors.
METIS sponsor

Understand Django: Templates for User Interfaces

When your Django application sends back a response with your user interface, templates are the tool you’ll use to produce that user interface. This article looks at what templates are and how to use them.
MATT LAYMAN • Shared by Matt Layman

Getting Started With Django Middleware

“Django comes with a lot of useful features. One of them is middleware. In this post I’ll give a short explanation how middleware works and how to start writing your own.”
PAWEŁ FERTYK

Asynchronous Tasks With Django and Celery

This post looks at how to configure Celery to handle long-running tasks in a Django app.
MICHAEL HERMAN • Shared by Michael Herman

Projects & Code

Events


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