Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Zato Blog: Resilient REST APIs with SSL/TLS client certificates

Link: https://zato.io/blog/posts/howto-rest-api-client-cert.html

This how-to is about ensuring that only API clients with valid SSL/TLS certificates,
including expected certificate fingerprints or other metadata, can invoke selected REST endpoints.
In this way, we
Mike Driscoll: PyDev of the Week: Parker Allen

Link: https://www.blog.pythonlibrary.org/2021/05/10/pydev-of-the-week-parker-allen/

This week we welcome Parker Allen as our PyDev of the Week! Parker works at Bentobox a restaurant software company that uses Python on its backend.

Let’s spend some time getting to know Parker!
Can y
EuroPython: EuroPython 2021: Call for Proposals (CFP) extended until May 16

Link: https://blog.europython.eu/europython-2021-cfp-extended-until-may-16/

We've decided to extend the deadline for our Call for Proposals until Sunday, May 16, 23:59:59 CEST. We are still looking for a few more proposals, especially for posters, training sessions, and helpd
Stack Abuse: Working with Python's PyQT Framework

Link: https://stackabuse.com/working-with-pythons-pyqt-framework/

Introduction
In this guide, we'll take a look at how to use Python's PyQT framework to develop a Graphical User Interface (GUI) for a desktop application in Python.
Popular Python alternatives for dev
Real Python: Recursion in Python: An Introduction

Link: https://realpython.com/python-recursion/

If you’re familiar with functions in Python, then you know that it’s quite common for one function to call another. In Python, it’s also possible for a function to call itself! A function that calls
Matthew Wright: 4 ways to run Jupyter notebooks

Link: https://www.wrighters.io/4-ways-to-run-jupyter-notebooks/

Jupyter notebooks are a popular way to share data and code, and there are multiple ways to run and edit notebooks.The post 4 ways to run Jupyter notebooks appeared first on wrighters.io.
AI Pool: Activation Functions for Neural Networks

Link: https://ai-pool.com/a/s/activation-functions-for-neural-networks

In this article, explaination of various activation functions has been given like Linear, ELU, ReLU, Sigmoid, and tanh.
AI Pool: Confidence Interval Understanding

Link: https://ai-pool.com/a/s/confidence-interval-understanding

Explanation of confidence intervals and the how to calculate it for different scenarios, and also the equation that makes the confidence interval and the parametes involved with it
Sandro Tosi: Empire State Building Lights iCalendar

Link: http://sandrotosi.blogspot.com/2021/05/empire-state-building-lights-icalendar.html

I'm very lucky to be able to see the Empire State Building from my apartment windows, and at night the lights are fantastic! But i'm also curious to know what's going to be today's lights, and tomorro
Python Engineering at Microsoft: Python in Visual Studio Code – May 2021 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-may-2021-release/

We are pleased to announce that the May 2021 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it directly
PythonClub - A Brazilian collaborative blog about Python: Orientação a objetos de outra forma: ABC

Link: http://pythonclub.com.br/oo-de-outra-forma-5.html

Na discussão sobre herança e mixins foram criadas várias classes, como Autenticavel e AutenticavelComRegistro que adicionam funcionalidades a outras classes e implementavam tudo o que precisavam para
Podcast.__init__: Federated Learning For All With Flower

Link: https://www.pythonpodcast.com/flower-federated-learning-episode-314/

Machine learning is a tool that has typically been performed on large volumes of data in one place. As more computing happens at the edge on mobile and low power devices, the learning is being federat
death and gravity: SQL query builder in 150 lines of Python (preview)

Link: https://death.andgravity.com/query-builder

In this upcoming series,
we'll look at an SQL query builder
I wrote for my feed reader library.
Yup, you read that right, the whole thing fits in 150 lines!
Read on for a preview.

While the code is i
Stack Abuse: Dictionaries vs Arrays in Python - Deep Dive

Link: https://stackabuse.com/dictionaries-vs-arrays-in-python-deep-dive/

Introduction
In this guide, we'll take a look at two of Python's most popular data structures - Dictionaries and Arrays. Each of these provide a specific way of arranging your data, with pros and cons
PyCon: PyCon 2021 Welcomes 8 Early-Stage Companies To Startup Row

Link: https://pycon.blogspot.com/2021/05/pycon-2021-welcomes-8-early-stage.html

2021 marks the tenth year that PyCon has granted booth space to early-stage startups that use Python in new and interesting ways. And what a decade it has been!Startup Row has given over 100 companies
Real Python: Stacks and Queues: Selecting the Ideal Data Structure

Link: https://realpython.com/courses/stacks-queues-ideal-data-structure/

There are a variety of ways for storing and managing data in your program and the choice of the right data structure has an effect on the readability of your code, ease of writing, and performance. Py
PyCoder’s Weekly: Issue #472 (May 11, 2021)

Link: https://pycoders.com/issues/472

#472 – MAY 11, 2021 View in Browser » The Quest for Faster Python There seems to be a lot going on in the Python JIT compiler space. Facebook recently open-sourced Instagram’s Cinder runtime, Py
AI Pool: Understanding of Regularization in Neural Networks

Link: https://ai-pool.com/a/s/understanding-of-regularization-in-neural-networks

This article includes the different techniques of regularization like Data Augmentation, L1, L2, Dropout, and Early Stopping