Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Matt Layman: 1Password and DigitalOcean Droplet - Building SaaS #208

Link: https://www.mattlayman.com/videos/1password-and-digitalocean-droplet-building-saas-208/

In this episode, I continued a migration of my JourneyInbox app from Heroku to DigitalOcean. We configured the secrets using 1Password and created the droplet that will host the app.
Kushal Das: Open Source talk at KTH computer science students organization

Link: https://kushaldas.in/posts/open-source-talk-at-kth-computer-science-students-organization.html



Last Tuesday, during lunch hours I had a talk at KTH computer science students'
organization. The topic was Open Source and career. My main goal was tell the
attendees that contribution size does no
Real Python: The Walrus Operator: Python's Assignment Expressions

Link: https://realpython.com/python-walrus-operator/

Python’s walrus operator (:=) allows you to assign values to variables as part of an expression. It can simplify your code by combining assignment and evaluation in a single statement. You use it to s
Real Python: Sorting a Python Dictionary: Values, Keys, and More

Link: https://realpython.com/sort-python-dictionary/

Sorting a Python dictionary involves organizing its key-value pairs in a specific order. To sort a Python dictionary by its keys, use the sorted() function combined with .items(). This approach return
Real Python: Primer on Python Decorators

Link: https://realpython.com/primer-on-python-decorators/

Python decorators allow you to modify or extend the behavior of functions and methods without changing their actual code. When you use a Python decorator, you wrap a function with another function, wh
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