Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Carl Trachte: Graphviz - Editing a DAG Hamilton Graph dot File

Link: http://pyright.blogspot.com/2024/07/graphviz-editing-dag-hamilton-graph-dot.html

Last post featured the DAG Hamilton generated graphviz graph shown below. I'll be dressing this up a little and highlighting some functionality. For the toy example here, the script employed is a bit
Robin Wilson: Who reads my blog? Send me an email or comment if you do!

Link: https://blog.rtwilson.com/who-reads-my-blog-send-me-an-email-or-comment-if-you-do/

I’m interested to find out who is reading my blog. Following the lead of Jamie Tanna who was in turn copying Terence Eden (both of whose blogs I read), I’d like to ask people who read this to drop me
Zato Blog: Integrating with WordPress and Elementor API webhooks

Link: https://zato.io/en/blog/wordpress-webhooks.html


Integrating with WordPress and Elementor API webhooks


2024-07-08, by Dariusz Suchojad


Overview
Consider this scenario:

You have a WordPress instance, possibly installed in your own internal ne
Anwesha Das: Euro Python 2024

Link: http://anweshadas.in/euro-python-2024/

It is July, and it is time for Euro Python, and 2024 is my first Euro Python. Some busy days are on the way. Like every other conference, I have my diary, and the conference days are full of various a
Real Python: Python News Roundup: July 2024

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

Summer isn’t all holidays and lazy days at the beach. Over the last month, two important players in the data science ecosystem released new major versions. NumPy published version 2.0, which comes wit
Wingware: Wing Python IDE Version 10.0.5 - July 8, 2024

Link: https://wingware.com/news/2024-07-08

Wing 10.0.5 adds support for running the IDE on arm64 Linux, updates the German language
UI localization, changes the default OpenAI model to lower cost and better performing
gpt-4o, and fixes several
Talk Python to Me: #469: PuePy: Reactive frontend framework in Python

Link: https://talkpython.fm/episodes/show/469/puepy-reactive-frontend-framework-in-python

Python is one of the most popular languages of the current era. It dominates data science, it an incredible choice for web development, and its many people's first language. But it's not super great o
Real Python: Quiz: Split Your Dataset With scikit-learn's train_test_split()

Link: https://realpython.com/quizzes/train-test-split-python-data/

In this quiz, you’ll test your understanding of
how to use train_test_split() from the sklearn library.
By working through this quiz, you’ll revisit why you need to split your dataset in supervised ma
Django Weblog: Django security releases issued: 5.0.7 and 4.2.14

Link: https://www.djangoproject.com/weblog/2024/jul/09/security-releases/

In accordance with our security release policy, the Django team
is issuing releases for
Django 5.0.7 and
Django 4.2.14.
These releases address the security issues detailed below. We encourage all
user
Python Engineering at Microsoft: Python in Visual Studio Code – July 2024 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-july-2024-release/

We’re excited to announce the July 2024 release of the Python and Jupyter extensions for Visual Studio Code!
This release includes the following announcements:

Enhanced environment discovery with pyt
Python Bytes: #391 A weak episode

Link: https://pythonbytes.fm/episodes/show/391/a-weak-episode

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

<ul>
<li><a href="https://github.com/mwilliamson/python-vendorize"><strong>Vendorize packages from PyPI</strong></a></li>
<li><a href="https://ma
PyCoder’s Weekly: Issue #637 (July 9, 2024)

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

#637 – JULY 9, 2024 View in Browser » Python Grapples With Apple App Store Rejections A string that is part of the urllib parser module in Python references a scheme for apps that use the iTunes
Real Python: How Do You Choose Python Function Names?

Link: https://realpython.com/python-function-names/

One of the hardest decisions in programming is choosing names. Programmers often use this phrase to highight the challenges of selecting Python function names. It may be an exaggeration, but there’s s
Real Python: Quiz: Choosing the Best Font for Programming

Link: https://realpython.com/quizzes/coding-fonts/

In this quiz, you’ll test your understanding of how to choose the best font for your daily programming. You’ll get questions about the technicalities and features to consider when choosing a programmi
Robin Wilson: Searching an aerial photo with text queries – a demo and how it works

Link: https://blog.rtwilson.com/searching-an-aerial-photo-with-text-queries-a-demo-and-how-it-works/

Summary: I’ve created a demo web app where you can search an aerial photo of Southampton, UK using text queries such as "roundabout", "tennis court" or "ship". It uses vector embeddings to do this – w
Nicola Iarocci: Microsoft MVP

Link: https://nicolaiarocci.com/microsoft-mvp-ninth-time/

Last night, I was at an outdoor theatre with Serena, watching Anatomy of a Fall (an excellent film). Outdoor theatres are becoming rare, which is a pity, and Arena del Sole is lovely with its strong v
Python Software Foundation: Announcing Our New Infrastructure Engineer

Link: https://pyfound.blogspot.com/2024/07/announcing-our-new-infrastructure.html

We are excited to announce that Jacob Coffee has joined the Python Software Foundation staff as an Infrastructure Engineer bringing his experience as an Open Source maintainer, dedicated homelab maint
Real Python: Quiz: Build a Blog Using Django, GraphQL, and Vue

Link: https://realpython.com/quizzes/python-django-blog/

In this quiz, you’ll test your understanding of building a Django blog back end and a Vue front end, using GraphQL to communicate between them.
You’ll revisit how to run the Django server and a Vue a
Real Python: The Real Python Podcast – Episode #212: Digging Into Graph Theory in Python With David Amos

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

Have you wondered about graph theory and how to start exploring it in Python? What resources and Python libraries can you use to experiment and learn more? This week on the show, former co-host David
Python Morsels: What are lists in Python?

Link: https://www.pythonmorsels.com/what-are-lists/

Lists are used to store and manipulate an ordered collection of things.



Table of contents

Lists are ordered collections
Containment checking
Length
Modifying the contents of a list
Indexing: looki