|
|
|
|
|
by TheIronYuppie
461 days ago
|
|
For scripting... HIGHLY recommend putting your dependencies inline. E.g.: #!/usr/bin/env python3
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "psycopg2-binary",
# "pyyaml",
# ]
# ///
Then - uv run -s file.py
|
|