I’ve been playing with uv a lot lately for some python automation projects. TIL, uv supports running a single python file that has inline dependency declarations and runtime.

Official documentation - https://docs.astral.sh/uv/guides/scripts.

# create a script
uv init --script example.py --python 3.13

# add depedencies
uv add --script example.py 'requests' 'pandas'

# run the script
uv run example.py