Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Python Sequences: A Comprehensive Guide

Link: https://realpython.com/quizzes/python-sequences/

In this quiz, you’ll test your understanding of
Python sequences.
By working through this quiz, you’ll revisit the basic characteristics of a sequence, operations common to most sequences, special met
Django Weblog: DjangoCon US 2024 CFP Last Call

Link: https://www.djangoproject.com/weblog/2024/apr/23/djangocon-us-2024-cfp-last-call/

Hey Django enthusiasts!
Have you submitted your talk or tutorial for DjangoCon US 2024, in beautiful Durham, North Carolina, USA?
Time flies, and we're fast approaching the deadline (April 24, 2024 at
Real Python: Python Basics Exercises: Scopes

Link: https://realpython.com/courses/python-basics-exercises-scopes/

On your Python journey, you’ve worked with functions and loops. To fully understand functions and loops in Python, you need to be familiar with the issue of scope.
In this Python Basics Exercises vide
Python Bytes: #380 Debugging with your eyes

Link: https://pythonbytes.fm/episodes/show/380/debugging-with-your-eyes

<strong>Topics covered in this episode:</strong><br>

<ul>
<li><a href="https://pirsquared.org/blog/numfocus-concerns.html"><strong>NumFOCUS concerns</strong></a></li>
<li><a href="https://github.com
PyCoder’s Weekly: Issue #626 (April 23, 2024)

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

#626 – APRIL 23, 2024 View in Browser » Asyncio Handle Control-C (SIGINT) When the user presses CTRL-C on the keyboard, the OS raises an interrupt signal to your program. When writing concurrent
PyPy: PyPy v7.3.16 release

Link: https://www.pypy.org/posts/2024/04/pypy-v7316-release.html

PyPy v7.3.16: release of python 2.7, 3.9, and 3.10
The PyPy team is proud to release version 7.3.16 of PyPy.
This release includes security fixes from upstream CPython, and bugfixes to the
garbage col
Test and Code: 219: Building Django Apps & SaaS Pegasus - Cory Zue

Link: https://podcast.pythontest.com/episodes/building-django-apps-saas-pegasus

I'm starting a SaaS project using Django, and there are tons of decisions right out of the gate. To help me navigate these decisions, I've brought on Cory Zue.   Cory is the creator of SaaS Pegasus, a
Real Python: What's Lazy Evaluation in Python?

Link: https://realpython.com/python-lazy-evaluation/

Being lazy is not always a bad thing. Every line of code you write has at least one expression that Python needs to evaluate. Python lazy evaluation is when Python takes the lazy option and delays wor
Talk Python to Me: #458: Serverless Python in 2024

Link: https://talkpython.fm/episodes/show/458/serverless-python-in-2024

What is the state of serverless computing and Python in 2024? What are some of the new tools and best practices? We are lucky to have Tony Sherman who has a lot of practical experience with serverless
Django Weblog: Livestream: Django Trends for 2024

Link: https://www.djangoproject.com/weblog/2024/apr/25/livestream-django-trends-for-2024/




Today at 3pm UTC – Discover the latest trends in the Django ecosystem, based on insights from 4,000 developers who participated in the Django Developers Survey. Join the livestream with Sarah Abder
Data School: How to prevent data leakage in pandas & scikit-learn

Link: https://www.dataschool.io/machine-learning-data-leakage/

Let&aposs pretend you&aposre working on a supervised Machine Learning problem using Python&aposs scikit-learn library. Your training data is in a pandas DataFrame, and you discover missing values in a
Real Python: The Real Python Podcast – Episode #202: Pydantic Data Validation & Python Web Security Practices

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

How do you verify and validate the data coming into your Python web application? What tools and security best practices should you consider as a developer? Christopher Trudeau is back on the show this
ListenData: How to Scrape Google News with Python

Link: https://www.listendata.com/2024/02/how-to-scrape-google-news-with-python.html

This tutorial explains how to scrape Google News for articles related to the topic of your choice using Python.
We are interested to see the following information for each news article.

Title : Artic
Real Python: Quiz: What Is the __pycache__ Folder in Python?

Link: https://realpython.com/quizzes/python-pycache/

As your Python project grows, you typically organize your code in modules and packages for easier maintenance and reusability. When you do that, you’ll likely notice the sudden emergence of a __pycach
ListenData: How to use variable in a query in pandas

Link: https://www.listendata.com/2020/12/how-to-use-variable-in-query-in-pandas.html

Suppose you want to reference a variable in a query in pandas package in Python. This seems to be a straightforward task but it becomes daunting sometimes. Let's discuss it with examples in the articl