Python

Installation

Get started with Python using the uv package manager.
My recommendation for new Python projects is to use uv package manager, which is an extremely fast Python package and project manager, written in Rust..
Learn how to install the uv package manager!

Project setup

Once you have uv installed, you can create a new project in minutes:

Terminal
uv init example
cd example
uv add ruff
uv add pytest --dev
uv run ruff check
uv run pytest
uv lock
uv sync

That's it!

You can now start writing your python code 🚀