Python Development Setup
Recently, I started to center my python development around uv and other tooling developed by astral.sh. It allows me to manage python environments, linting and formatting. Managing Python Packages using uv uv is an extremely fast Python package and recently also became a full on package manager. You can install it using curl. curl -LsSf https://astral.sh/uv/install.sh | sh You can then create a new a new Python project, or use an existing one by running the uv init command:...