Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Armin Ronacher: Your Node is Leaking Memory? setTimeout Could be the Reason

Link: http://lucumr.pocoo.org/2024/6/5/node-timeout

This is mostly an FYI for node developers. The issue being discussed in
this post has caused us
quite a bit of pain.
It has to do with how node deals with timeouts. In short: you can
very easily cre
Real Python: Python String Formatting: Available Tools and Their Features

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

String formatting is the process of applying a proper format to a given value while using this value to create a new string through interpolation. Python has several tools for string interpolation tha
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
Django Weblog: PyCharm & Django Campaign 2024

Link: https://www.djangoproject.com/weblog/2024/jun/06/pycharm-django-campaign-2024/

The Django Software Foundation's biggest fundraising event of the year is here!
Get 30% off PyCharm, Support Django
Each year, our friends at JetBrains, the creators of PyCharm, run an incredible deal
The Python Show: 43 - Python Image Processing with Pillow

Link: https://www.pythonshow.com/p/43-python-image-processing-with-pillow

In this episode, Mike has Alex Clark on the show. Alex is the leading developer of the fork of the Python Imaging Library (PIL), known as Pillow.We chatted about the following topics:The origins of Pi
Python Engineering at Microsoft: Python in Visual Studio Code – June 2024 Release

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

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

VS Code Native REPL for Python with Int
Python Software Foundation: Affirm your PSF Membership Voting Status

Link: https://pyfound.blogspot.com/2024/06/affirm-your-psf-membership-voting-status.html

Every PSF voting-eligible Member (Supporting, Managing, Contributing, and Fellow) needs to affirm their membership to vote in this year’s election.If you wish to vote in this year’s election, you must
Python Insider: Python 3.13.0 beta 2 released

Link: https://pythoninsider.blogspot.com/2024/06/python-3130-beta-2-released.html

I'm pleased to announce the release of Python 3.13 beta 2.https://www.python.org/downloads/release/python-3130b2/ This is a beta preview of Python 3.13
Python 3.13 is still in development. This releas
Python Insider: Python 3.12.4 released

Link: https://pythoninsider.blogspot.com/2024/06/python-3124-released.html

I'm pleased to announce the release of Python 3.12.4:https://www.python.org/downloads/release/python-3124/ This is the third maintenance release of Python 3.12
Python 3.12 is the newest major release
Real Python: The Real Python Podcast – Episode #207: Decomposing Software Problems & Avoiding the Trap of Clever Code

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

How do you effectively break a software problem into individual steps? What are signs you're writing overly clever code? Christopher Trudeau is back on the show this week, bringing another batch of Py
Anwesha Das: Event Driven Ansible, what, why and how?

Link: http://anweshadas.in/event-driven-ansible-what-why-and-how/

Ansible Playbooks is the known term, now there is a new term which is being floted in the project, which is Ansible Rulebooks. Today we are going to discuss about Ansible&aposs journey from Playbook t
Talk Python to Me: #465: The AI Revolution Won't Be Monopolized

Link: https://talkpython.fm/episodes/show/465/the-ai-revolution-wont-be-monopolized

There hasn't been a boom like the AI boom since the .com days. And it may look like a space destined to be controlled by a couple of tech giants. But Ines Montani thinks open source will play an impor
Trey Hunner: A beautiful Python monstrosity

Link: https://treyhunner.com/2024/06/a-beautiful-python-monstrosity/

Creating performance tests for Python Morsels exercises is a frequent annoyance
I loathe writing automated tests for performance-related exercises because they’re always flaky.
How flaky depends on th
Gaël Varoquaux: Promoting open-source, from inria to :probabl.

Link: https://gael-varoquaux.info/programming/promoting-open-source-from-inria-to-probabl.html


Note

Open-source efforts around scikit-learn at Inria are spinning off to a
new enterprise, Probabl, in charge of
sustainable development of a data-science commons.


Contents

Prelude: funding scik
Jeremy Epstein: Introducing: Floyd-Warshall CSV Generator

Link: https://greenash.net.au/thoughts/2024/06/introducing-floyd-warshall-csv-generator/

I built a little Python script called the Floyd-Warshall CSV Generator. It takes a CSV of graph edges as input, and generates a CSV of the edges that are the shortest paths between all pairs of vertic
Ed Crewe: Software development with Generative AI

Link: http://edcrewe.blogspot.com/2023/12/software-development-with-generative-ai.html

The Current State of AI Software GenerationThe user tries to describe what they want generated in terms of a snippet of high level programming language code using standard English. They submit it to t
Ed Crewe: Software Development with Generative AI - 2024 Update

Link: http://edcrewe.blogspot.com/2024/06/software-development-with-generative-ai.html

Why write an update?I wrote a blog post on Software Development with Generative AI last year, which was questioning the approach of the current AI software authoring assistants. I believe the bigger p
Pythonicity: GraphQL cursors

Link: https://coady.github.io/posts/graphql-cursors.html

Contrarian view on cursor-based pagination.
GraphQL documentation recommends cursor-based pagination, and it has subsequently become a popular standard.

In general, we’ve found that cursor-based pagi
Zato Blog: HL7 FHIR Integrations in Python

Link: https://zato.io/en/blog/hl7-fhir-api-integrations-python.html


HL7 FHIR Integrations in Python


2024-06-10, by Dariusz Suchojad



HL7 FHIR, pronounced "fire", is a data model and message transfer protocol designed to facilitate the exchange of information
am