Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
Talk Python to Me: #472: State of Flask and Pallets in 2024

Link: https://talkpython.fm/episodes/show/472/state-of-flask-and-pallets-in-2024

Flask is one of the most important Python web frameworks and powers a bunch of the internet. David Lord, Flask's lead maintainer is here to give us an update on the state of Flask and Pallets in 2024.
Python Software Foundation: Notice of Python Software Foundation Bylaws change, effective 10 August 2024

Link: https://pyfound.blogspot.com/2024/07/notice-of-python-software-foundation.html

There has been a lot of attention directed at our Bylaws over the last few weeks, and as a result of that conversation, the Board was alerted to a defect in our Bylaws that exposes the Foundation to a
Real Python: Quiz: Python Basics: Lists and Tuples

Link: https://realpython.com/quizzes/python-basics-lists-and-tuples/

In Python Basics: Lists and Tuples, you’ve met two new and important data structures:

Lists
Tuples

Both of these data types are sequences, meaning they are objects that contain other objects in a ce
Real Python: Quiz: Getting Started With Testing in Python

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

In this quiz, you’ll test your understanding of testing your Python code.
Testing in Python is a huge topic and can come with a lot of complexity, but it doesn’t need to be hard. You can get started c
Zato Blog: Automating telecommunications networks with Python and SFTP

Link: https://zato.io/en/blog/sftp.html


Automating telecommunications networks with Python and SFTP


2024-07-29, by Dariusz Suchojad


In telecommunications, the Secure File Transfer Protocol (SFTP) serves as a critical mechanism
for se
PyCharm: Learning Resources for pytest

Link: https://blog.jetbrains.com/pycharm/2024/07/learning-resources-for-pytest/

In this blog post, we’ll look at how PyCharm helps you when you’re working with pytest, and we will signpost you to a bunch of resources for learning pytest. While some of these resources were created
Real Python: Strings and Character Data in Python

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

In Python, string objects contain sequences of characters that allow you to manipulate textual data. It’s rare to find an application, program, or library that doesn’t need to manipulate strings to so