Matt Layman: UV and Ruff: Next-gen Python Tooling
Link: https://www.mattlayman.com/videos/uv-and-ruff-next-gen-python-tooling/
Dive into the dynamic duo of modern Python development – UV and Ruff!
Link: https://www.mattlayman.com/videos/uv-and-ruff-next-gen-python-tooling/
Dive into the dynamic duo of modern Python development – UV and Ruff!
Matt Layman
UV and Ruff: Next-gen Python Tooling
Dive into the dynamic duo of modern Python development – UV and Ruff!
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.
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.
Matt Layman
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
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
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
Realpython
The Walrus Operator: Python's Assignment Expressions – Real Python
In this tutorial, you'll learn about assignment expressions and the walrus operator. The biggest change back in Python 3.8 was the inclusion of the := operator, which you can use to assign variables in the middle of expressions. You'll see several examples…
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
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
Realpython
Sorting a Python Dictionary: Values, Keys, and More – Real Python
In this tutorial, you'll get the lowdown on sorting Python dictionaries. By the end, you'll be able to sort by key, value, or even nested attributes. But you won't stop there---you'll go on to measure the performance of variations when sorting and compare…
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
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
Realpython
Primer on Python Decorators – Real Python
In this tutorial, you'll look at what Python decorators are and how you define and use them. Decorators can make your code more readable and reusable. Come take a look at how decorators work under the hood and practice writing your own decorators.
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
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
Realpython
YAML: The Missing Battery in Python – Real Python
In this tutorial, you'll learn all about working with YAML in Python. By the end of it, you'll know about the available libraries, their strengths and weaknesses, and the advanced and potentially dangerous features of YAML. You'll also serialize Python objects…
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
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
Realpython
Build Command-Line Interfaces With Python's argparse – Real Python
In this step-by-step Python tutorial, you'll learn how to take your command-line Python scripts to the next level by adding a convenient command-line interface (CLI) that you can write with the argparse module from the standard library.
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
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
Realpython
Dependency Management With Python Poetry – Real Python
Learn how Python Poetry will help you start new projects, maintain existing ones, and master dependency management.
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
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
Realpython
Python Classes: The Power of Object-Oriented Programming – Real Python
In this tutorial, you'll learn how to create and use full-featured classes in your Python code. Classes provide a great way to solve complex programming problems by approaching them through models that represent real-world objects.
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
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
Realpython
Object-Oriented Programming (OOP) in Python – Real Python
In this tutorial, you'll learn all about object-oriented programming (OOP) in Python. You'll learn the basics of the OOP paradigm and cover concepts like classes and inheritance. You'll also see how to instantiate an object from a class.
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
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
Realpython
Build Enumerations of Constants With Python's Enum – Real Python
In this tutorial, you'll learn how to create and use enumerations of semantically related constants in Python. To do this, you'll use the Enum class and other related tools and types from the enum module, which is available in the Python standard library.
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
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
HoloViz: HoloViz Examples Gallery Modernization
Link: https://blog.holoviz.org/posts/examples-website-modernization/
Link: https://blog.holoviz.org/posts/examples-website-modernization/
HoloViz Blog
HoloViz Examples Gallery Modernization – HoloViz Blog
Announcement of the modernized version of the HoloViz examples gallery, a curated collection of domain-specific narrative examples using various HoloViz projects.
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
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
Pythontest
Testing some tidbits with 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 of replies with more ways. And then wrote a small script…
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 of replies with more ways. And then wrote a small script…
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
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
The JetBrains Blog
7 Reasons You Should Use dbt Core in PyCharm | The PyCharm Blog
Learn how PyCharm streamlines data modeling with dbt, offering features like Git integration, smart autocompletion, AI-powered assistance, and more.
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
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
Realpython
Dictionaries in Python – Real Python
In this tutorial, you'll learn how to work with Python dictionaries to help you process data more efficiently. You'll learn how to create dictionaries, access their keys and values, update dictionaries, and more.
Python Bytes: #414 Because we are not monsters
Link: https://pythonbytes.fm/episodes/show/414/because-we-are-not-monsters
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://micro.webology.dev/2024/12/14/new-project-to.html?featured_on=pythonbytes">New project to shorten django-admin
Link: https://pythonbytes.fm/episodes/show/414/because-we-are-not-monsters
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://micro.webology.dev/2024/12/14/new-project-to.html?featured_on=pythonbytes">New project to shorten django-admin
pythonbytes.fm
Because we are not monsters
News and announcements from the Python community for the week of Dec 16th, 2024
Mike Driscoll: The Python Countdown to Christmas 2024 Giveaway
Link: https://www.blog.pythonlibrary.org/2024/12/16/the-python-countdown-to-christmas-2024-giveaway/
Happy Holidays and Merry Christmas from me to you! I have been giving away hundreds of Python books and courses for Christmas for the last couple of years!
https://www.blog.pythonlibrary.org/wp-conte
Link: https://www.blog.pythonlibrary.org/2024/12/16/the-python-countdown-to-christmas-2024-giveaway/
Happy Holidays and Merry Christmas from me to you! I have been giving away hundreds of Python books and courses for Christmas for the last couple of years!
https://www.blog.pythonlibrary.org/wp-conte
Mouse Vs Python
The Python Countdown to Christmas 2024 Giveaway - Mouse Vs Python
Happy Holidays and Merry Christmas from me to you! I have been giving away hundreds of Python books and courses for Christmas for the last couple of