Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Kay Hayen: Nuitka Release 2.5

Link: https://nuitka.net/posts/nuitka-release-25.html

This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release focused on Python 3.13 support, but also on improved
compatib
PyPodcats: Episode 7: With Anna Makarudze

Link: https://pypodcats.live/episodes/ep-7/

Learn about Anna's journey. Since discovering Python and Django in 2015, Anna has been actively contributing to the Django community and taking up leadership roles within DSF and Django Girls.Learn ab
Real Python: Continuous Integration and Deployment for Python With GitHub Actions

Link: https://realpython.com/github-actions-python/

Creating software is an achievement worth celebrating. But software is never static. Bugs need to be fixed, features need to be added, and security demands regular updates. In today’s landscape, with
PyCharm: Simplify ML Workflows With Hugging Face and PyCharm

Link: https://blog.jetbrains.com/pycharm/2024/11/hugging-face-integration/


Ready to boost your workflows with pre-trained ML models? 
PyCharm‘s integration with Hugging Face is designed to bring a new level of productivity to your machine learning and development workflows.
Bruno Ponne / Coding The Past: How to calculate Z-Scores in Python

Link: https://www.codingthepast.com/2024/11/28/Python-z-score.html


If you’ve worked with statistical data, you’ve likely encountered z-scores. A z-score measures how far a data point is from the mean, expressed in terms of standard deviations. It helps identify outl
Python GUIs: Building a Translation Application Using Tkinter — Translate Your Text With Python and Tkinter

Link: https://www.pythonguis.com/examples/translator-app-tkinter-google/

Whether learning a new natural language or just browsing foreign websites, you sometimes come across text that you want to read but is written in a language you don't fully understand. To translate on
Kushal Das: Amnesty seminar on activism

Link: https://kushaldas.in/posts/amnesty-workshop-on-activism.html



2 Weeks ago I was down with fever, but as I became better after a few days I managed to attend Amnesty International's Stockholm chapter's event on activism. I had to travel to a different part of S
Real Python: The Real Python Podcast – Episode #230: marimo: Reactive Notebooks and Deployable Web Apps in Python

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

What are common issues with using notebooks for Python development? How do you know the current state, share reproducible results, or create interactive applications? This week on the show, we speak w
Anwesha Das: Keynote at PyLadiesCon!

Link: http://anweshadas.in/pyladiescon-keynote/

Since the very inception of my journey in Python and PyLadies, I have always thought of having a PyLadies Conference, a celebration of PyLadies. There were conversations here and there, but nothing wa
Spyder IDE: The inside scoop on Spyder 6's new remote development platform

Link: https://www.spyder-ide.org/blog/spyder-6-remote-development

Spyder 6 includes a brand new remote development platform, building the foundations for enabling Spyder to easily leverage the power and data of remote desktops, servers, clusters and the cloud from a
Real Python: Logging in Python

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

Logging in Python lets you record important information about your program’s execution. You use the built-in logging module to capture logs, which provide insights into application flow, errors, and u
Real Python: What Does if __name__ == "__main__" Do in Python?

Link: https://realpython.com/if-name-main-python/

The if __name__ == "__main__" idiom is a Python construct that helps control code execution in scripts. It’s a conditional statement that allows you to define code that runs only when the file is exec
Real Python: Python's F-String for String Interpolation and Formatting

Link: https://realpython.com/python-f-strings/

Python f-strings offer a concise and efficient way to interpolate variables, objects, and expressions directly into strings. By prefixing a string with f or F, you can embed expressions within curly b
Real Python: Python Exceptions: An Introduction

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

Python exceptions provide a mechanism for handling errors that occur during the execution of a program. Unlike syntax errors, which are detected by the parser, Python raises exceptions when an error o
Real Python: How to Check if a Python String Contains a Substring

Link: https://realpython.com/python-string-contains-substring/

To check if a string contains another string in Python, use the in membership operator. This is the recommended method for confirming the presence of a substring within a string. The in operator is in
Real Python: Python String Formatting: Available Tools and Their Features

Link: https://realpython.com/python-string-formatting/

String formatting is essential in Python for creating dynamic and well-structured text by inserting values into strings. This tutorial covers various methods, including f-strings, the .format() method