Remix.run Logo
whalesalad 5 hours ago

Our entire business runs on Python without a drop of Astral in the mix. No one would even notice.

snapcaster 4 hours ago | parent [-]

you should try uv, really impressive tool

pseudosavant 4 hours ago | parent [-]

Honestly, that is an understatement. `uv run` has transformed how I use Python since 99% of the time I don't need to setup or manage an environment and dependencies. A have tons of one-off Python scripts (with their dependencies in PEP 723 metadata at the top of the file) that just work with `uv run`.

I get how it might not be as useful in a production deployment where the system/container will be setup just for that Python service, but for less structured use-cases, `uv` is a silver bullet.