Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Programiz: Python f-string

Link: https://www.programiz.com/python-programming/fstring

A Python f-string (formatted string literal) allows you to insert variables or expressions directly into a string by placing them inside curly braces {}. In this tutorial, you will learn about the Pyt
Quansight Labs Blog: The Polars vs pandas difference nobody is talking about

Link: https://labs.quansight.org/blog/dataframe-group-by

A closer look at non-elementary group-by aggregations
Real Python: Python News Roundup: November 2024

Link: https://realpython.com/python-news-november-2024/

The latest Python developments all point to the same thing—Python is currently thriving. The recent GitHub Octoverse 2024 report has revealed that Python is now the most used language on GitHub. Also,
Eli Bendersky: ML in Go with a Python sidecar

Link: https://eli.thegreenplace.net/2024/ml-in-go-with-a-python-sidecar/

Machine learning models are rapidly becoming more capable; how can we make
use of these powerful new tools in our Go applications?
For top-of-the-line commercial LLMs like ChatGPT, Gemini or Claude, t
Python⇒Speed: Using portable SIMD in stable Rust

Link: https://pythonspeed.com/articles/simd-stable-rust/

In a previous post we saw that you can speed up code significantly on a single core using SIMD: Single Instruction Multiple Data.
These specialized CPU instructions allow you to, for example, add 4 va
Real Python: Formatting Floats Inside Python F-Strings

Link: https://realpython.com/courses/format-floats-f-strings/

You’ll often need to format and round a Python float to display the results of your calculations neatly within strings. In earlier versions of Python, this was a messy thing to do because you needed t
PyCoder’s Weekly: Issue #655 (Nov. 12, 2024)

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

#655 – NOVEMBER 12, 2024 View in Browser » Introduction to Web Scraping With Python In this video course, you’ll learn all about web scraping in Python. You’ll see how to parse data from website
Bojan Mihelac: Django cookie consent application

Link: http://code.informatikamihelac.com/en/django-cookie-consent-application/

django-cookie-consent is a reusable application for managing various cookies and visitors consent for their use in Django project.
Bojan Mihelac: Django import export

Link: http://code.informatikamihelac.com/en/django-import-export/

Importing and exporting data with included admin integration.
Bojan Mihelac: Django set language for admin

Link: http://code.informatikamihelac.com/en/django-set-language-for-admin/

Middleware that intialize specific locale for admin pages.
Bojan Mihelac: Django-simpleadmindoc

Link: http://code.informatikamihelac.com/en/django-simpleadmindoc/

Simpleadmindoc is django application that allows you to quickly create help for modules in Django admin. Goal is to be flexible enough, fast to create and easy to integrate.
eGenix.com: eGenix PyRun - One file Python Runtime 2.6.0 GA

Link: https://www.egenix.com/company/news/eGenix-PyRun-2.6.0-GA.html

Introduction
eGenix PyRun
is our open source, one file, no installation version of Python, making
the distribution of a Python interpreter to run Python based scripts
and applications to Unix base
Mike Driscoll: ANN – The textual-cogs Package – Creating Reusable Dialogs for Textual

Link: https://www.blog.pythonlibrary.org/2024/11/13/ann-the-textual-cogs-package-creating-reusable-dialogs-for-textual/

Textual-cogs is a collection of Textual dialogs that you can use in your Textual application. You can see a quick demo of the dialogs below:

Dialogs included so far:

Generic MessageDialog – shows me