Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
Python Software Foundation: The 2021 Python Language Summit: Progress on Running Multiple Python Interpreters in Parallel in the Same Process

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/JSbNFZCoINo/the-2021-python-language-summit_16.html

Victor Stinner and Dong-hee Na gave a presentation at the 2021 Python Language Summit about running multiple Python interpreters in parallel in the same process.Use Cases Victor Stinner started by exp
Test and Code: 154: Don't Mock your Database - Jeff Triplett

Link: https://testandcode.com/154

You need tests for your web app. And it has a database. What do you do with the database during testing? Should you use the real thing? or mock it? Jeff Triplett says don't mock it.
In this episode, w
Python Pool: How to Implement Breadth-First Search (BFS) using Python

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

Today we will discuss the main algorithm, which has many implementations in real life, i.e., breadth-first search using python. Till now, you must be curious enough to know how this algorithm is relat
Python Pool: All You Need to Know About Hailstone Sequence in Python

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

Lets us first understand what a sequence is in the hailstone sequence python. A sequence is an ordered series of numbers that follows a particular pattern. A sequence can be something as simple as a s
Python Pool: [Solved] No Module Named Numpy in Python

Link: https://www.pythonpool.com/no-module-named-numpy-solved/?utm_source=rss&utm_medium=rss&utm_campaign=no-module-named-numpy-solved

Python has many external modules which are helpful to manage data efficiently. Numpy is one of those modules to handle arrays or any collection of data with ease. With many available methods, you can
Python Software Foundation: The 2021 Python Language Summit: HPy — Present and Future

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/55OUWZdNrJE/the-2021-python-language-summit-hpy.html

At the 2021 Python Language Summit, Antonio Cuni gave a presentation about HPy. He also gave a presentation about HPy at the 2020 Python Language Summit, so this year he shared updates on how the proj
Weekly Python StackOverflow Report: (cclxxvi) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/05/cclxxvi-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-05-22 19:25:40 GMTCount how many arguments passed as positional -
"Morphex's Blogologue": An Open Source license for scripts, small code bits and programs

Link: http://blogologue.com/blog_entry?id=1621189037X11

I have some miscellaneous code here:https://github.com/morphex/miscWhich hasn't been given a license yet, and I was wondering what license to give it. Just to make things clear, and make it easier to
AI Pool: How can I find the paper of yolov5?

Link: https://ai-pool.com/d/how-can-i-find-the-paper-of-yolov5

I searched over the internet and proceedings and could not find the paper of the Yolov5  model. It just brings the GitHub repository of ultralytics ....
AI Pool: What is the best way for installing pytorch?

Link: https://ai-pool.com/d/what-is-the-best-way-for-installing-pytorch

I tried to install PyTorch, but it does not work well. Cuda library is not visible sometimes, gives a couple of weird errors. Could you please show the best and safest way of installing PyTorch?...
Python Software Foundation: The 2021 Python Language Summit: Lightning Talks, Round 1

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/fTXZvKxS0Zo/the-2021-python-language-summit_22.html

The first day of the 2021 Python Language Summit finished with a series of lightning talks from Petr Viktorin, Lorena Mesa, Scott Shawcroft, and Jeff Allen. The Stable ABI and Limited C APIPetr Viktor
Python Pool: Achieving String Compression in Python

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

Introduction
Hello geeks! Today we are here with another module of string. The topic of discussion will be String compression using the python programming language. String compression is crucial for i
Python Pool: [Solved] OSError errno22 invalid argument

Link: https://www.pythonpool.com/oserror-errno22-invalid-argument-solved/?utm_source=rss&utm_medium=rss&utm_campaign=oserror-errno22-invalid-argument-solved

An error is a problem in python incurred while compiling the code. For example, an error is raised when python cannot understand a given code because it failed to adhere to the syntax. There are sever
PyPy: PyPy v7.3.5: bugfix release of python 2.7 and 3.7

Link: https://www.pypy.org/posts/2021/05/pypy-v735-release.html

PyPy v7.3.5: release of 2.7 and 3.7
We are releasing a PyPy 7.3.5 with bugfixes for PyPy 7.3.4, released April 4.
PyPy 7.3.4 was the first release that runs on windows 64-bit, so that support
is still
Python Software Foundation: The 2021 Python Language Summit: The Challenges of Packaging Python for a Linux Distro

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/7TvPpM19_4Q/the-2021-python-language-summit_23.html

Matthias Klose gave a talk about the challenges of packaging Python for a Linux distribution at the 2021 Python Language Summit. He wanted to discuss:CPython sources and how they fit with Debian and U
TestDriven.io: Dockerizing Django with Postgres, Gunicorn, and Traefik

Link: https://testdriven.io/blog/django-docker-traefik/

This tutorial details how to configure Django to run on Docker along with Postgres, Gunicorn, Traefik, and Let's Encrypt.