Victor Mitiblog.victor.co.zm·Sep 18, 2024Automating Atomic Poetry Dependency Updates with BashDependency management is a crucial aspect of any project. Keeping your dependencies up to date ensures security, stability, and access to the latest features. However, simply running poetry update can be risky. What if you have 25 outdated packages, ...Python
Pulkitblogs.devpulkit.in·Jul 13, 2024Simplifying Python Dependency Management with PoetryManaging Python dependencies can be hard, especially as projects get bigger. It's important to have the right packages and versions installed without conflicts. Poetry helps with this. It's a tool that makes managing project dependencies, packaging, ...1 like·55 readsPoetry
Kamran Aliatech.guide·Jun 24, 2024How to Create Python Projects Using Poetry: A Beginner's Guide (2024 Edition)Introduction Are you tired of wrestling with Python project dependencies, virtual environments, and the complexities of packaging? Let's revisit the challenges that often plague Python projects: 👉 Inconsistent Environments: Have you ever run into a ...2 likes·417 readspython-poetry
Ali Tavallaietechbend.hashnode.dev·May 26, 2024Overcoming the Hazm Compatibility Challenge with Python 3.12Today, my coworker Mahdi and I tackled a significant challenge with the Hazm Python package while working with Python 3.12. The issue arose when we discovered that Hazm was incompatible with the new version of Python. A collaborator from Hazm confirm...206 readsPython 3
Kilian Klugepragmaticnotes.hashnode.dev·May 23, 2024Exposing the package version defined in the pyproject.toml as a __version__ variableBy convention, Python packages expose their version through a __version__ variable: >>> import package >>> package.__version__ 0.4.2 Ideally, the package version should be defined in one place only. Typical approaches include hardcoding it in the pa...448 readsCheat Sheetshatch
Tim Metasupermeta.hashnode.dev·Feb 27, 2024How to control package versions in your Python projectWe all know the feeling of getting stuck in dependency and version hell when trying to run a new project. Or even our own team projects! For those of us struggling with this who use Python, there’s a neat solution called Poetry. This is a quick guide...Python
Eduardo Machadoeduwxyz.hashnode.dev·Nov 8, 2023Poetry — Gerenciamento de dependências em Python!!Quando se trata de gerenciamento de dependências de software a conversa costuma ser curta e bem direta. Isso é o normal na maioria das linguagens de programação existentes atualmente, porém com python, é diferente. Existem hoje diversas opções que po...1 likePython
Isabelle De Backerisabelle.hashnode.dev·Jul 2, 2023Setup a development environment to experiment with LangchainHave you ever polluted your computer with repeated experiments using various libraries and poorly managed Python environments? Did you wonder how to ensure someone collaborating on your repo could easily spin off the same environment as yours? In thi...869 readsVS Code
Jude Boachiejude.hashnode.dev·Jun 3, 2023Simplify Your Python Projects with PoetryAre you tired of struggling with dependency management, virtual environments, and project complexities in Python development? Enter Poetry - the ultimate tool to streamline your Python projects. In this quick guide, we'll introduce you to Poetry and ...12 likes·309 readsPython
Siddhi Kiran Bajracharyasiddhibajracharya.hashnode.dev·May 4, 2023Poetry!Poetry is one of Python's dependency managers and package managers that is considered more standard than Pipenv. According to its documentation, it is a powerful tool that allows you to have a deterministic build each time. Poetry uses existing virtu...146 readsPython Virtual EnvironmentsPoetry