Tuesday, November 17, 2020

PyCoder’s Weekly: Issue #447 (Nov. 17, 2020)

#447 – NOVEMBER 17, 2020
View in Browser »

The PyCoder’s Weekly Logo


PyPy: Faster Python With Minimal Effort

In this tutorial, you’ll learn how you can use PyPy to improve the speed of your applications. You’ll see how PyPy compares with other Python implementations like CPython and learn about features that you can use to gain significant performance boosts without making changes to your code.
REAL PYTHON

Running Python on .NET 5

Pyjion is an alternative to the CPython runtime that compiles Python to ECMA CIL and uses .NET common language runtime to compile the CIL to machine code. Learn how Pyjion works, how it compares to other Python runtimes, and what the future holds for the project.
ANTHONY SHAW

Python Developers Are in Demand on Vettery

alt

Get discovered by top companies using Vettery to actively grow their tech teams with Python developers (like you). Here’s how it works: create a profile, name your salary, and connect with hiring managers at startups to Fortune 500 companies. Sign up today - it’s completely free for job-seekers →
VETTERY sponsor

Hunting for Malicious Packages on PyPI

Jordan Wright installed every package on PyPI to look for malicious content. And he didn’t just inspect code, he actually ran the packages. Brave soul! Learn how he set-up this project and what he learned on his adventure.
JORDAN WRIGHT

Emulating Quantum Computing With Python

Learn how to use Python for quantum computing with the QuTiP package, including an introduction to qubits and noise in quantum systems.
DANTE SBLENDORIO

Wrapping C++ With Cython, Part I

Learn how to wrap a C++ library with Cython in order to expose a Python API.
ANTON ZHDAN-PUSHKIN • Shared by Anton ZHdan-Pushkin

Discussions

Python Jobs

Python Developer / Software Engineer (Berlin, Germany)

Thermondo GmbH

Senior Full Stack Developer (Chicago, IL, USA)

Panopta

Senior Software Engineer (Remote)

Silicon Therapeutics

Senior Research Programmer (Remote)

Silicon Therapeutics

More Python Jobs >>>

Articles & Tutorials

Python and PyQt: Creating Menus, Toolbars, and Status Bars

In this step-by-step tutorial, you’ll learn how to create, customize, and use Python menus, toolbars, and status bars for creating GUI applications using PyQt.
REAL PYTHON

5 Uses of Asterisks in Python

You probably know the * operator as the multiplication operator in Python. But did you know that there are four other uses for it that have nothing to do with multiplication?
YANG ZHOU

Become a Python Guru With PyCharm

alt

PyCharm is the Python IDE for Professional Developers by JetBrains providing a complete set of tools for productive Python, Web and scientific development. Be more productive and save time while PyCharm takes care of the routine →
JETBRAINS sponsor

Introduction to Linear Algebra for Applied Machine Learning With Python

Need a quick reference for Linear Algebra? Look no further! This collection of notes covers all of the fundamentals and includes sample code in Python.
PABLO CACERES

73 Examples to Help You Master Python’s f-Strings

f-Strings might be one of the most beloved features in Python 3.6+. Here are 73 examples of how to use f-strings to improve your Python code.
MIGUEL BRITO

The Real Python Podcast – Episode #35: Security and Authorization in Your Python Web Applications

So you built a web application in Python. Now how are you going to authorize users? Security goes beyond authentication. Who gets to do what, where, and when? This week on the show, we have Sam Scott, chief technology officer from Oso. Oso is an open-source policy engine for authorization that you embed in your application.
REAL PYTHON podcast

Get Distributed Tracing in your Python Apps with OpenTelemetry

Watch this on-demand webinar to learn how to get started with OpenTelemetry in Python, and how to help your organization successfully deliver value from distributed tracing.
LIGHTSTEP sponsor

Our Experience With Hypothesis Testing (And Why Do We Love It So Much!)

The developers of Parsec, an open-source file-sharing solution, found themselves with a complex set of interacting components. In this article, the developers share how the hypothesis testing framework has made testing their application easier.
PARSEC

Make a Hugo Static Blog Inside a Django App

Can you build a statically generated blog into your Django app without using a subdomain, Django’s static files, or a reverse proxy? Yes, you can! Learn how and when you might use this approach in Matt Layman’s latest article.
MATT LAYMAN • Shared by Matt Layman

Python Pitfalls: Expecting the Unexpected

Save yourself hours of debugging by avoiding these common gotchas and pitfalls in your Python code.
MARTIN HEINZ • Shared by Martin Heinz

Kickstarter Projects: Do They Succeed?

Find out if Kickstarter projects succeed from a data science perspective.
ADITYA PAKAR

Projects & Code

Events


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