Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: YAML: The Missing Battery in Python

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

YAML is a portable and widely used data serialization format. Unlike the more compact JSON or verbose XML formats, YAML emphasizes human readability with block indentation, which should be familiar to
Real Python: Build Command-Line Interfaces With Python's argparse

Link: https://realpython.com/command-line-interfaces-python-argparse/

When building Python command-line interfaces (CLI), Python’s argparse module offers a comprehensive solution. You can use argparse to create user-friendly command-line interfaces that parse arguments
Real Python: Dependency Management With Python Poetry

Link: https://realpython.com/dependency-management-python-poetry/

Poetry is a tool for managing Python projects that simplifies dependency management. You can use Poetry to specify, install, and resolve dependencies, ensuring that you work with the correct package v
Real Python: Python Classes: The Power of Object-Oriented Programming

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

Python classes form the backbone of object-oriented programming, enabling you to encapsulate data and behavior into a single entity. When you work with a Python class, you define attributes to store d
Real Python: Object-Oriented Programming (OOP) in Python

Link: https://realpython.com/python3-object-oriented-programming/

Object-oriented programming (OOP) in Python lets you structure your code by grouping related properties and behaviors into individual objects. You create classes as blueprints and instantiate them to
Real Python: Build Enumerations of Constants With Python's Enum

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

Python’s enum module offers a way to create enumerations, a data type allowing you to group related constants. You can define an enumeration using the Enum class, either by subclassing it or using its
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-12-16, by Dariusz Suchojad



HL7 FHIR, pronounced "fire", is a data model and message transfer protocol designed to facilitate the exchange of information
am
Brian Okken: Testing some tidbits with pytest

Link: https://pythontest.com/pytest/testing-tidbits-pytest/

I noticed a fun post by Ned Batchelder called Testing some tidbits.
The post looks at different ways to see if a string has only 0 or 1 in it.
He posted a few ways on Bluesky/Mastodon and got a bunch
PyCharm: 7 Reasons You Should Use dbt Core in PyCharm

Link: https://blog.jetbrains.com/pycharm/2024/12/dbt/


dbt Core is a modern data transformation framework. It doesn’t extract or load data and is only responsible for the T in the ELT (extract-load-transform) process. dbt connects to your data warehouse
Real Python: Dictionaries in Python

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

Python dictionaries are a powerful built-in data type that allows you to store key-value pairs for efficient data retrieval and manipulation. Learning about them is essential for developers who want t
Glyph Lefkowitz: DANGIT

Link: https://blog.glyph.im/2024/12/dangit.html

Over the last decade, it has become a common experience to be using a social
media app, and to perceive that app as saying something specific to you.
This manifests in statements like “Twitter thinks
Real Python: Programming Sockets in Python

Link: https://realpython.com/courses/programming-sockets/

Sockets and the socket API are used to send messages across a network. They provide a form of inter-process communication (IPC). The network can be a logical, local network to the computer, or one tha
Python Insider: Python 3.14.0 alpha 3 is out

Link: https://pythoninsider.blogspot.com/2024/12/python-3140-alpha-3-is-out.html

O Alpha 3, O Alpha 3, how lovely are your branches!
https://www.python.org/downloads/release/python-3140a3/
This is an early developer preview of Python
3.14
Major
new features of the 3.14 series, com
PyCoder’s Weekly: Issue #660 (Dec. 17, 2024)

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

#660 – DECEMBER 17, 2024 View in Browser » PyMyFlySpy: Track Your Flight Using Its Headrest Data Robert is the creator of PySkyWiFi, a “completely free, unbelievably stupid wi-fi on long-haul fl
Real Python: Get Started With Django User Management

Link: https://realpython.com/django-user-management/

Django user management allows you to integrate user authentication and management into your web applications. By using Django, you can leverage the framework’s built-in authentication system to manage