Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Pool: RSA Encryption Implementation in Python

Link: https://www.pythonpool.com/rsa-encryption-python/?utm_source=rss&utm_medium=rss&utm_campaign=rsa-encryption-python

Introduction
Cryptography and computer network security have always been side interests for me. While reading about the RSA encryption technique in cryptography, I thought about writing an article on
Python Bytes: #234 The Astronomy-filled edition with Dr. Becky

Link: https://pythonbytes.fm/episodes/show/234/the-astronomy-filled-edition-with-dr.-becky

<p><strong>Watch the live stream:</strong></p>

<a href='https://www.youtube.com/watch?v=QltSJUlHbpw' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>
Python Software Foundation: The 2021 Python Language Summit: CPython Performance Improvements at Instagram

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/4Tpn4LZPws4/the-2021-python-language-summit-cpython.html

Dino Viehland gave a presentation at the 2021 Python Language Summit about improvements to CPython's performance at Instagram. Cinder is Instagram's internal performance-oriented production version of
Brett Cannon: Unravelling the `with` statement

Link: https://snarky.ca/unravelling-the-with-statement/

As part of my series on Python&aposs syntactic sugar, I want to tackle unravelling the with statement.Looking at the bytecode for a simple with statement, you will notice there are a lot of opcodes be
Python Pool: Tuple Comprehension in Python is it Possible?

Link: https://www.pythonpool.com/tuple-comprehension/?utm_source=rss&utm_medium=rss&utm_campaign=tuple-comprehension

A tuple is a collection of multiple items in an ordered manner. Tuples are sequences denoted by parenthesis () and placing the items within parentheses, separated by commas. The items stored inside a
John Ludhi/nbshare.io: Activation Functions In Artificial Neural Networks Part 2 Binary Classification

Link: https://www.nbshare.io/notebook/53490821/Activation-Functions-In-Artificial-Neural-Networks-Part-2-Binary-Classification/








Activation Functions In Artificial Neural Networks Part 2 Binary Classification








This is part 2 of the series on activation functions in artificial neural networks. Chek out part1 - how
PyCharm: Join the Webinar “Three Paradigms For Method Inheritance”, with Reuven Lerner

Link: http://feedproxy.google.com/~r/Pycharm/~3/0zLsds9xuDc/

No object-oriented programming language would be worth looking at or using if it didn’t support inheritance. Invented in 1969 for Simula, inheritance is the mechanism of deriving new classes from exis
Python for Beginners: Copy in Python

Link: https://www.pythonforbeginners.com/data-types/copy-in-python


In python programs, several times we need to have an identical copy of an existing data. For simple data types like int, float, boolean values or string, an assignment operation does the task for us
Łukasz Langa: Why the sad face?

Link: https://lukasz.langa.pl/1d1a43c4-9c8a-4c5f-a366-7f22ce6a49fc/

When you first encounter Black, a few things about it might surprise you. One of the those things might be "sadface dedent", the style in which closing parentheses in function signatures and other blo
Python Pool: How to Set Default Path for Python in Windows

Link: https://www.pythonpool.com/default-python-path/?utm_source=rss&utm_medium=rss&utm_campaign=default-python-path

If you are a beginner, then this article is for you. As a beginner, you might face problems in setting a proper path for python. In today’s tutorial, we will learn how to set a default path for python
Python Software Foundation: The 2021 Python Language Summit: Making CPython Faster

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/Mb7GnQBu9NY/the-2021-python-language-summit-making.html

At the 2021 Python Language Summit, Guido van Rossum gave a presentation about plans for making CPython faster. This presentation came right after Dino Viehland's talk about Instagram's performance im
Python Pool: Learning about Python Conditional Import

Link: https://www.pythonpool.com/python-conditional-import/?utm_source=rss&utm_medium=rss&utm_campaign=python-conditional-import

Python conditional import comes into use while importing modules. In python, modules are pieces of code containing a set of functions that can be imported into other code. Modules help in managing cod
Python Software Foundation: The 2021 Python Language Summit: PEP 654 — Exception Groups and except*

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/YfwxVhCg4nM/the-2021-python-language-summit-pep-654.html

PEP 654 was authored by Irit Katriel, Yury Selivanov, and Guido van Rossum. This PEP is currently at the draft stage. At the 2021 Python Language Summit, the authors shared what it is, why we need it,
Talk Python to Me: #317 Python at the US Federal Election Commission

Link: https://talkpython.fm/episodes/show/317/python-at-the-us-federal-election-commission

When you think of government software development and projects, do you fast apps and modern tech stacks jump to mind? Probably not. So you'll be delighted to hear from our guest, Laura Beaufort. She's
Real Python: The Real Python Podcast – Episode #61: Scaling Data Science and Machine Learning Infrastructure Like Netflix

Link: https://realpython.com/podcasts/rpp/61/

Would you move your data science project from a laptop to the cloud? Would you also like to have snapshots of your project saved along the way so that you can go back in time or share the state of you
Matt Layman: Per-visitor Data With Sessions

Link: https://www.mattlayman.com/understand-django/sessions/

In the last Understand Django article, we saw what it takes to make your Django project live on the internet. Now, we’ll get back to a more narrow topic and focus on a way Django can store data for vi
Python Pool: Differences Between Pyglet and Pygame in Python

Link: https://www.pythonpool.com/pyglet-vs-pygame/?utm_source=rss&utm_medium=rss&utm_campaign=pyglet-vs-pygame

The game has been a source of income these days for most of the industry. But here comes the aim of today’s discussion. We will discuss the framework that is available for making games, i.e., pyglet a