Python on .NET, Malicious Packages, Quantum Computing, and More

#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
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 →
VETTERYsponsor

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

Guido van Rossum (Creator of Python) Now Works at Microsoft
Retirement was “boring.”
TWITTER.COM/GVANROSSUM

Nikola v8.1.2 Is Out
GETNIKOLA.COM

CircuitPython 6.0.0-Rc.1 Released
ADAFRUIT.COM


Discussions


The youtube-dl Repository Has Been Restored on GitHub With Help From the Electronic Frontier Foundation
REDDIT

From Depressed Addict to Happy 25 Year Old: How Learning Python Helped Save My Life
REDDIT


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
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 →
JETBRAINSsponsor

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.
LIGHTSTEPsponsor

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


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 →

Pyjion: A JIT for Python Based Upon CoreCLR
GITHUB.COM/TONYBALONEY

hypothesis: Hypothesis Is a Powerful, Flexible, and Easy to Use Library for Property-Based Testing
GITHUB.COM/HYPOTHESISWORKS

linqit: Extends Python Lists With .NETs LINQ Functionality
GITHUB.COM/AVILUM

QuTiP: Quantum Toolbox in Python
GITHUB.COM/QUTIP

AstroPaint: Mock Maps of Astrophysical Signals
GITHUB.COM/SYASINI

jupylet: Game Programming in Jupyter Notebooks
GITHUB.COM/NIR

Pyxell: Programming Language Written in Python With ANTLR, Compiled to C++
GITHUB.COM/ADAMSOL

nikola: Static Website and Blog Generator
GITHUB.COM/GETNIKOLA

pytorch_geometric_temporal: Dynamic Extension Library for PyTorch Geometric
GITHUB.COM/BENEDEKROZEMBERCZKI • Shared by Benedek Rozemberczki

parsec-cloud: Open Source Dropbox-Like File Sharing With Full Client Encryption
GITHUB.COM/SCILLE

django-react-boilerplate: Minimalist Boilerplate for Django With React
GITHUB.COM/JOKERCRAFT

📆🐍 Upcoming Python Events


⋅ Real Python Office Hours (Virtual) November 18, 2020

⋅ EuroPython “Ask me Anything” (Virtual) November 19, 2020

⋅ Online Python Web Global Summit‘20 (Virtual) November 19 to November 20, 2020
Happy Pythoning!
Copyright © 2020 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

Key Driver Analysis, Defaultdicts, Unladen Swallows, and More

Tuesday, November 10, 2020

Doing Key-Driver Analysis in Python #446 – NOVEMBER 10, 2020 VIEW IN BROWSER The PyCoder's Weekly Logo Doing Key-Driver Analysis in Python Take a look at how statistical knowledge plays an

Fourier Transforms, Executing Bytecode, Python Simulations, and More

Tuesday, November 3, 2020

Fourier Transforms With scipy.fft: Python Signal Processing #445 – NOVEMBER 3, 2020 VIEW IN BROWSER The PyCoder's Weekly Logo Fourier Transforms With scipy.fft: Python Signal Processing In this

A Faster CPython, Modulo in Practice, Isolating Code, and More

Tuesday, October 27, 2020

Python Modulo in Practice: How to Use the % Operator #444 – OCTOBER 27, 2020 VIEW IN BROWSER The PyCoder's Weekly Logo Python Modulo in Practice: How to Use the % Operator In this tutorial, you

Python in the Movies, Reading Crazy Excel Files, Exploring Fractals, and More

Tuesday, October 20, 2020

Python For Feature Film #443 – OCTOBER 20, 2020 VIEW IN BROWSER The PyCoder's Weekly Logo Python For Feature Film A look into how Python is used to bring your favorite movies to the big screen.

Python 3.9 Follow-Up, PSF Python Survey 2020, Upcoming pip Changes, Web Scraping, and More

Tuesday, October 13, 2020

Exploring the New Features of Python 3.9 #442 – OCTOBER 13, 2020 VIEW IN BROWSER The PyCoder's Weekly Logo Exploring the New Features of Python 3.9 Python 3.9 has arrived! Real Python contributors

You Might Also Like

📲 Why Is It Called Bluetooth? — Check Out This AI Text to Song Generator

Sunday, April 28, 2024

Also: What to Know About Emulating Games on iPhone, and More! How-To Geek Logo April 28, 2024 📩 Get expert reviews, the hottest deals, how-to's, breaking news, and more delivered directly to your

Daily Coding Problem: Problem #1425 [Easy]

Sunday, April 28, 2024

Daily Coding Problem Good morning! Here's your coding interview problem for today. This problem was asked by Microsoft. Suppose an arithmetic expression is given as a binary tree. Each leaf is an

PD#571 Software Design Principles I Learned the Hard Way

Sunday, April 28, 2024

If there's two sources of truth, one is probably wrong. And yes, please repeat yourself. ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌

When Procrastination is Productive & Ghost integrating with ActivityPub

Sunday, April 28, 2024

Automattic, Texts, and Beeper join forces to build world's best inbox, Reflect launches its iOS app, how to start small rituals, and a lot more in this week's issue of Creativerly. Creativerly

C#503 Building pipelines with System.Threading.Channels

Sunday, April 28, 2024

Concurrent programming challenges can be effectively addressed using channels ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌

RD#453 Get your codebase ready for React 19

Sunday, April 28, 2024

Is your app ready for what's coming up in React 19's release ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌

☁️ Azure Weekly #464 - 28th April 2024

Sunday, April 28, 2024

Azure Weekly Newsletter Issue #464 powered by endjin Welcome to issue 464 of the Azure Weekly Newsletter. In AI we have a good mix of high-level and deep-dive technical articles. Next-Gen Customer

Tesla profits tumble, Fisker flatlines, and California cities battle for control of AVs

Sunday, April 28, 2024

Plus, an up-close look at the all-electric Mercedes G-Wagen and more View this email online in your browser By Kirsten Korosec Sunday, April 28, 2024 Welcome back to TechCrunch Mobility — your central

Sunday Digest | Featuring 'The Countries With the Most Air Pollution in 2023' 📊

Sunday, April 28, 2024

Every visualization published this week, in one place. Visual Capitalist Sunday Digest logo Apr 28, 2024 | View Online | Subscribe | VC+ The Best of This Week's Visuals Presented by Voronoi: The

Android Weekly #620

Sunday, April 28, 2024

View in web browser 620 April 28th, 2024 Articles & Tutorials Sponsored How DoorDash Manages Mobile Releases Ever wonder how the big names in mobile engineering manage the human side of their app