Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCon: Support PyLadies: Donate to the PyLadies Charity Auction at PyCon US 2024!

Link: https://pycon.blogspot.com/2024/02/support-pyladies-auction-with-a-donation.html

PyCon US 2024 is quickly approaching and we can’t wait to see all of you there! This year, we are reaching out to our community to help support one of our favorite events: the PyLadies Charity Auction
PyBites: OpenStreetMaps, Overpass API and Python

Link: https://pybit.es/articles/openstreetmaps-overpass-api-and-python/

OpenStreetMaps (OSM) is known for being an open source project that allows people to browse the world map and to plan routes. However it is more than that. Among others it provides a read-only API tha
Real Python: How to Format Floats Within F-Strings in Python

Link: https://realpython.com/how-to-python-f-string-format-float/

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
Mike Driscoll: Announcing The Python Logging Book & Course Kickstarter

Link: https://www.blog.pythonlibrary.org/2024/04/17/announcing-the-python-logging-book-course-kickstarter/

What does every new developer do when they are first learning to program? They print out strings to their terminal. It’s how we learn! But printing out to the terminal isn’t what you do with most prof
Test and Code: 218: Balancing test coverage with test costs - Nicole Tietz-Sokolskaya

Link: https://podcast.pythontest.com/episodes/218-balancing-test-coverage-with-test-costs

Nicole is a software engineer and writer, and recently wrote about the trade-offs we make when deciding which tests to write and how much testing is enough.We talk about:Balancing schedule vs testingH
Real Python: Format Floats Within F-Strings

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

In this quiz, you’ll test your understanding of
How to Format Floats Within F-Strings in Python.
You’ll often need to format and round a Python float to display the results of your calculations neatly
Real Python: Write Pythonic and Clean Code With namedtuple

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

In this quiz, you’ll test your understanding of
Python’s namedtuple().
By working through this quiz, you’ll revisit how to create namedtuple classes, identify and take advantage of the cool features o
Real Python: The Real Python Podcast – Episode #201: Decoupling Systems to Get Closer to the Data

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

What are the benefits of using a decoupled data processing system? How do you write reusable queries for a variety of backend data platforms? This week on the show, Phillip Cloud, the lead maintainer
Talk Python to Me: #457: Software Supply Chain Security with Phylum

Link: https://talkpython.fm/episodes/show/457/software-supply-chain-security-with-phylum

We've spoken previously about security and software supply chains and we are back at it this episode. We're diving in again with Charles Coggins. Charles works at a software supply chain company and i
ListenData: Transformers Agent: AI Tool That Automates Everything

Link: https://www.listendata.com/2023/06/transformers-agent.html

We have a new AI tool in the market called Transformers Agent which is so powerful that it can automate just about any task you can think of. It can generate and edit images, video, audio, answer ques
ListenData: Complete Guide to Massively Multilingual Speech (MMS) Model

Link: https://www.listendata.com/2023/05/massively-multilingual-speech.html

In this article we have covered everything about the latest multilingual speech model from the basics of how it works to the step-by-step implementation of the model in Python.
Meta, the company that
ListenData: AutoGPT : Everything You Need To Know

Link: https://www.listendata.com/2023/04/autogpt-explained-everything-you-need.html

In this post we have covered AutoGPT in detail. By end of this tutorial, you will not only understand how it works but also will be able to run it on your system. Auto-GPT has gained a significant amo
ListenData: Complete Guide to Visual ChatGPT

Link: https://www.listendata.com/2023/03/complete-guide-to-visual-chatgpt.html

In this post, we will talk about how to run Visual ChatGPT in Python with Google Colab. ChatGPT has garnered huge popularity recently due to its capability of human style response. As of now, it only
Python Morsels: Multiline comments in Python

Link: https://www.pythonmorsels.com/multiline-comments/

Python does not have multiline comments. But you can use alternatives like docstrings, editor shortcuts, and conventional commenting methods, depending on your requirements.



Table of contents

Does
Matt Layman: Why Django and why not Flask?

Link: https://www.mattlayman.com/blog/2024/why-django-and-why-not-flask/

Why would someone pick Django over Flask? That’s the question that I got on stream and here is my answer.
Real Python: Python's unittest: Writing Unit Tests for Your Code

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

In this quiz, you’ll test your understanding of testing your Python code with the unittest framework.
Testing in Python is a huge topic and can come with a lot of complexity, but it doesn’t need to be
ListenData: How to Build ChatGPT Clone in Python

Link: https://www.listendata.com/2023/06/how-to-build-chatgpt-clone-in-python.html

In this article, we will see the steps involved in building a chat application and an answering bot in Python using the ChatGPT API and gradio.
Developing a chat application in Python provides more co