diff --git a/blog/_posts/2022-12-22-yaml-in-python.md b/blog/_posts/2022-12-22-yaml-in-python.md index 4125daf01..138a187d2 100644 --- a/blog/_posts/2022-12-22-yaml-in-python.md +++ b/blog/_posts/2022-12-22-yaml-in-python.md @@ -13,6 +13,8 @@ internal-links: excerpt: | Learn how to work with YAML in Python, including creating, reading, modifying, and converting YAML files. This tutorial covers the basics of YAML, the PyYAML library, and how to perform various operations on YAML files using Python. Whether you're new to YAML or looking to expand your Python skills, this tutorial is a great resource. --- + + **We're [Earthly](https://earthly.dev/). We simplify and speed up software building using containerization. Working with Python? Earthly integrates smoothly it to streamline your build process. [Check it out](/).** If you've ever worked with Docker or Kubernetes, you'll have likely used YAML files. From configuring an application's services in [Docker](/blog/rails-with-docker) to defining Kubernetes objects like pods, services, and more—YAML is used for them all. diff --git a/blog/_posts/2023-04-26-python-poetry.md b/blog/_posts/2023-04-26-python-poetry.md index 05c07b558..80eb873da 100644 --- a/blog/_posts/2023-04-26-python-poetry.md +++ b/blog/_posts/2023-04-26-python-poetry.md @@ -14,9 +14,9 @@ internal-links: excerpt: | Learn how to manage dependencies in Python projects using Poetry, a package manager that simplifies the process. From creating virtual environments to adding and removing dependencies, this tutorial covers all the essentials. Plus, discover how to publish your Python project as a package on PyPI. --- -**We're [Earthly](https://earthly.dev/). We streamline software building using containerization. Earthly, combined with Poetry, can make your Python project builds smoother and faster. [Check it out](/).** + - +**We're [Earthly](https://earthly.dev/). We streamline software building using containerization. Earthly, combined with Poetry, can make your Python project builds smoother and faster. [Check it out](/).** Python is a versatile language used for various applications. However, managing dependencies, the [packages](/blog/setup-typescript-monorepo) a project relies on can be a complex and time-consuming task. With the growth of the Python ecosystem, developers need to manage a large number of packages and dependencies and ensure that they are compatible with each other.