Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Peter Bengtsson: Converting Celsius to Fahrenheit round-up

Link: http://www.peterbe.com/plog/converting-celsius-to-fahrenheit-round-up

In the last couple of days, I've created variations of a simple algorithm to demonstrate how Celcius and Fahrenheit seem to relate to each other if you "mirror the number".
It wasn't supposed to be ab
Christoph Schiessl: How to Serve a Directory of Static Files with FastAPI

Link: https://bugfactory.io/articles/how-to-serve-a-directory-of-static-files-with-fastapi/

Learn how to serve a static site using FastAPI. Perfect for locally testing statically generated websites, for instance, with `httpie`.
Real Python: pandas GroupBy: Grouping Real World Data in Python

Link: https://realpython.com/courses/pandas-groupby-real-world-data/

Whether you’ve just started working with pandas and want to master one of its core capabilities, or you’re looking to fill in some gaps in your understanding about .groupby(), this course will help yo
Mike Driscoll: ANN: ObjectListView3 for wxPython

Link: https://www.blog.pythonlibrary.org/2024/07/23/ann-objectlistview3-for-wxpython/

ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications because it works much nicer than wx.ListCtrl does
Python Bytes: #393 Dare enter the Bash dungeon?

Link: https://pythonbytes.fm/episodes/show/393/dare-enter-the-bash-dungeon

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

<ul>
<li><a href="https://marimo.io"><strong>Marimo:</strong></a><a href="https://marimo.io"> </a><a href="https://marimo.io"><strong>“Future</st
PyCoder’s Weekly: Issue #639 (July 23, 2024)

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

#639 – JULY 23, 2024 View in Browser » Asyncio gather() Handle Exceptions The asyncio.gather() function takes an optional argument return_exceptions which changes the behavior of the co-routine
Quansight Labs Blog: Introducing the 2024 Labs Internship Program Cohort

Link: https://labs.quansight.org/blog/2024-interns

Meet the interns joining us for our third-annual summer internship.
Real Python: Quiz: Hugging Face Transformers

Link: https://realpython.com/quizzes/hugging-face-transformers/

In this quiz, you’ll test your understanding of Hugging Face Transformers. This library is a popular choice for working with transformer models in natural language processing tasks, computer vision, a
Django Weblog: Django 5.1 release candidate 1 released

Link: https://www.djangoproject.com/weblog/2024/jul/24/django-51-rc1/

Django 5.1 release candidate 1 is the final opportunity for you to
try out a kaleidoscope of improvements before Django 5.1 is released.
The release candidate stage marks the string freeze and the cal
Real Python: Hugging Face Transformers: Leverage Open-Source AI in Python

Link: https://realpython.com/huggingface-transformers/

Transformers is a powerful Python library created by Hugging Face that allows you to download, manipulate, and run thousands of pretrained, open-source AI models. These models cover multiple tasks acr
PyPy: Abstract interpretation in the Toy Optimizer

Link: https://www.pypy.org/posts/2024/07/toy-abstract-interpretation.html

This is a cross-post
from Max Bernstein from his excellent blog where he writes about programming
languages, compilers, optimizations, virtual machines. He's looking for a
(dynamic language runtime or
👍1
scikit-learn: Interview with Adam Li, scikit-learn Team Member

Link: https://blog.scikit-learn.org/team/adam-li-interview/

BIO: Adam is currently a Postdoctoral Research Scientist at Columbia University in the Causal
Real Python: Quiz: Python String Formatting: Available Tools and Their Features

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

Test your understanding of Python’s tools for string formatting, including f-strings, the .format() method, and the modulo operator.
Take this quiz after reading our Python String Formatting: Availabl
Real Python: Quiz: Python Protocols: Leveraging Structural Subtyping

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

Test your understanding of how to create and use Python protocols while providing type hints for your functions, variables, classes, and methods.
Take this quiz after reading our Python Protocols: Lev
Real Python: Quiz: Logging in Python

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

In this quiz, you’ll test your understanding of Python’s logging module.
Logging is a very useful tool in a programmer’s toolbox. It can help you develop a better understanding of the flow of a progra
Real Python: The Real Python Podcast – Episode #214: Build Captivating Display Tables in Python With Great Tables

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

Do you need help making data tables in Python look interesting and attractive? How can you create beautiful display-ready tables as easily as charts and graphs in Python? This week on the show, we spe
Python Software Foundation: Python’s Supportive and Welcoming Environment is Tightly Coupled to Its Progress

Link: https://pyfound.blogspot.com/2024/07/pythons-supportive-and-welcoming.html

Python is as popular as it is today because we have gone above and beyond to make this a welcoming community. Being a friendly and supportive community is part of how we are perceived by the wider wor
Kushal Das: Multi-factor authentication in django

Link: https://kushaldas.in/posts/multi-factor-authentication-in-django.html


Multi-factor authentication is a must have feature in any modern web application. Specially providing support
for both TOTP (think applications on phone) and FIDO2 (say Yubikeys) usage. I created a s