Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Spyder IDE: Officially announcing the release of Spyder 6!

Link: https://www.spyder-ide.org/blog/release-spyder-6.0.0

After two years in development and more than 2600 commits from over two dozen authors around the world, Spyder 6.0.0 had its stable release on September 3, 2024! Now that 6.0.1 is out and the dust has
Real Python: The Real Python Podcast – Episode #224: Narwhals: Expanding DataFrame Compatibility Between Libraries

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

How does a Python tool support all types of DataFrames and their various features? Could a lightweight library be used to add compatibility for newer formats like Polars or PyArrow? This week on the s
Real Python: Quiz: Single and Double Underscores in Python Names

Link: https://realpython.com/quizzes/python-double-underscore/

In this quiz, you’ll test your understanding of Single and Double Underscores in Python Names.
By working through this quiz, you’ll revisit Python naming conventions that rely on using underscores (_)
Matt Layman: Epic Debugging, Hilarious Outcome - Building SaaS #205

Link: https://www.mattlayman.com/blog/2024/epic-debugging-hilarious-outcome-building-saas-205/

In this episode, I dug into an issue with sign up. What I thought was going to be a minor issue to fix turned into a massively intense debugging session. We ended up going very deep with the django-al
Armin Ronacher: Serendipity

Link: http://lucumr.pocoo.org/2024/10/19/serendipity


Life begins.
An empty page.
A hollow echo on an barren stage.
We wander through the quiet air,
Unsure of what awaits us there.


With work and study, I filled the days,
But purpose wanes in fading ha
Python Does What?!: Enums make good singletons

Link: https://www.pythondoeswhat.com/2024/10/enums-make-good-singletons.html

It's simple and common to allocate a marker object to represent missing or null data.
MISSING = object()

There's a slightly more verbose construct with some advantages:
import enum

class MissingType
Julien Tayon: Revisiting hello world : coding print from scratch part I

Link: http://beauty-of-imagination.blogspot.com/2024/10/revisiting-hello-world-coding-print.html

The « hello world » example is about standing on the shoulders of the giant and learn how to use function as tools.
Most coders will use print during their whole life without actually coding it. Howev
Zato Blog: HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS

Link: https://zato.io/en/blog/hl7-fhir-security.html


HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS


2024-10-21, by Dariusz Suchojad


HL7 FHIR Security
Preliminary reading: HL7 FHIR Integrations in Python

FHIR servers offer their APIs using
Julien Tayon: Hello world part II : actually recoding print

Link: http://beauty-of-imagination.blogspot.com/2024/10/hello-world-part-ii-actually-recoding.html

In part I we explored the pre-requisite in order to code print : having a grasp on the framebuffer.

Here, we are gonna deep inside one of the most overlooked object oriented abastraction : a file an
Real Python: Python's property(): Add Managed Attributes to Your Classes

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

With Python’s property(), you can create managed attributes in your classes. You can use managed attributes when you need to modify an attribute’s internal implementation and don’t want to change the
Python Bytes: #406 What's on Django TV tonight?

Link: https://pythonbytes.fm/episodes/show/406/whats-on-django-tv-tonight

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

<ul>
<li><a href="https://opensourcepledge.com?featured_on=pythonbytes"><strong>Open Source Pledge</strong></a></li>
<li><strong>Jeff Triplet's <
Julien Tayon: Tune your guitar with python

Link: http://beauty-of-imagination.blogspot.com/2024/10/tune-your-guitar-with-python.html

Today's exercice is just about turning a very nice example of the python soundevice module into something that works for me© to help me tune my bass.
Long story short, I suck at tuning my instrument a
Python Anywhere: Improving PythonAnywhere's File Storage System

Link: https://blog.pythonanywhere.com/217/

PythonAnywhere has been around for over 10
years, and as our platform continues to
grow with thousands of users, we’re committed to keeping it in top shape. Part
of this involves upgrading some of the
Real Python: Quiz: Pydantic: Simplifying Data Validation in Python

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

In this quiz, you’ll test your understanding of
Pydantic. Pydantic is a powerful data validation library for Python. You can also use a related library, pydantic-settings, for settings management.
By
PyCoder’s Weekly: Issue #652 (Oct. 22, 2024)

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

#652 – OCTOBER 22, 2024 View in Browser » Structural Pattern Matching in Python In this tutorial, you’ll learn how to harness the power of structural pattern matching in Python. You’ll explore t
Real Python: Python Thread Safety: Using a Lock and Other Techniques

Link: https://realpython.com/python-thread-lock/

Python threading allows you to run parts of your code concurrently, making the code more efficient. However, when you introduce threading to your code without knowing about thread safety, you may run
The Python Show: 48 - Writing About Python with David Mertz

Link: https://www.pythonshow.com/p/48-writing-about-python-with-david

In this episode of the Python Show Podcast, David Mertz is our guest. David is a prolific writer about the Python programming language. From his extremely popular IPM Developerworks articles to his mu
PyPy: A DSL for Peephole Transformation Rules of Integer Operations in the PyPy JIT

Link: https://www.pypy.org/posts/2024/10/jit-peephole-dsl.html

As is probably apparent from the sequence of blog posts about the topic in the
last year, I have been thinking about and working on integer optimizations in the JIT
compiler a lot. This work was mainl