4 Tools to Add to Your Python Project Before Shipping to Production

When I start a new project, I usually use Poetry to manage the dependencies and create a fresh virtual environment.

This is useful primarily when different projects rely on different versions of the same package.

Poetry is an excellent tool because it’s fast at resolving dependencies. It’s also easy to use through a user-friendly CLI and helps in quickly packaging and distributing your code.

view more