Skip to main content

Simple script execution with uv - run Python scripts without explicit --project flag

Project description

Simple Script Execution with uvr

uv is a fast, modern Python package installer and resolver, designed as a drop-in replacement for pip and pip-compile.

Unfortunately, uv prioritizes virtual environments within the current directory. This makes it cumbersome to execute scripts located elsewhere, requiring the use of the --project flag.

This script offers a streamlined workaround for running Python scripts via uv, allowing you to use uvr [options] script.py instead of uv run [options] --project <script_path> script.py."

Its primary value lies in its simplicity and immediate usability, providing a quick fix for a pressing pain point.

Installation

To install uvr, use the following command:

uv tool install --from git+https://github.com/karnigen/uvr uvr

To upgrade uvr, use the following command:

uv tool upgrade uvr

Usage

Several ways to run your Python scripts with uv:

  1. Using uv run --project <script_path> script.py:

    • This command explicitly tells uv to run the specified Python script (script.py) within the context of the project located at <script_path>.

    • This is useful when your script relies on dependencies defined within a specific project directory.

    • Example:

      uv run [options] --project /path/to/project run_script.py [script_options]
      
  2. Using uvr script.py:

    • This is a more direct way to execute your Python script (run_script.py) using uvr.

    • uvr automatically determines the project directory based on the script path, effectively mimicking the --project flag's behavior.

    • Example:

      uvr [options] [--] run_script.py [script_options]
      
    • Always use -- if the automatic script identification fails or could be ambiguous.

  3. Shebang Usage:

    • Example:

      #!/usr/bin/env -S uvr [options] [--]
      
      # Your Python code here...
      
    • Always use -- if the automatic script identification fails or could be ambiguous.

  4. Scripts without .py or .pyw extension:

    • Automatic --script option is added if not already present (--script or --gui-script) in options.

    • Otherwise, uv might loop indefinitely.

    • Example: For a foo script:

          #!/usr/bin/env -S uvr [options] [--]
          # Your Python code here...
      

      This will be executed as uv run [options] --script ... if [options] do not already contain --script or --gui-script.

    • Or, to be more explicit, you can include the --script flag directly in the shebang:

      #!/usr/bin/env -S uvr --script
      
    • Important Exception for Non-Files: If the identified script_path (the argument immediately following options or --) does not point to an actual file on disk, uvr will not automatically add the --script or --gui-script option. This behavior ensures uvr can correctly pass through commands that are executables within the virtual environment (e.g., uvr black ., uvr pytest), rather than a Python script file.

  5. Debug usage:

    • Example:
      uvr -v [options] [--] run_script.py [script_options]
      uvr -vv [options] [--] run_script.py [script_options]
      

General Rule for Using the -- Separator

The -- argument functions as a standard command-line delimiter. It explicitly separates options intended for uvr (and its underlying uv process) from arguments specifically designated for the Python script being executed.

Arguments appearing before the -- are processed by uvr (uv). Arguments appearing after the -- are passed directly to the invoked Python script.

This explicit separation is crucial for:

  • Preventing Ambiguity: uvr employs a basic heuristic to identify the script path (the first non-hyphenated argument). This can lead to misinterpretation if the script itself accepts options that resemble uvr/uv arguments.

  • Ensuring Precise Argument Passing: By using --, users guarantee that all subsequent arguments are correctly delivered to their script, bypassing uvr's argument parsing logic.

Recommendation: Utilize the -- separator whenever precise control over argument distribution between uvr/uv and the target script is required.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uvr-0.1.22.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

uvr-0.1.22-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file uvr-0.1.22.tar.gz.

File metadata

  • Download URL: uvr-0.1.22.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.24

File hashes

Hashes for uvr-0.1.22.tar.gz
Algorithm Hash digest
SHA256 dbbc0772dc186eedbc14f44fa5c3cb6d3a1eb99f069daf67e06ed356a9f53474
MD5 245cd8690685044003ae8650dd275e51
BLAKE2b-256 728302c42e46387e6de5f21d320c4a35680d89238a16e9328f068ff67b1e8b15

See more details on using hashes here.

File details

Details for the file uvr-0.1.22-py3-none-any.whl.

File metadata

  • Download URL: uvr-0.1.22-py3-none-any.whl
  • Upload date:
  • Size: 4.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.24

File hashes

Hashes for uvr-0.1.22-py3-none-any.whl
Algorithm Hash digest
SHA256 12f6604f14c3b11164531bd60ddc0ed7a8d08a4c30c21a67fad621cec6f96c46
MD5 8352d9f50e4cfc4698797a1971997e7c
BLAKE2b-256 7fb3fcf00db840ae6120a6a6cd2ff085f5429933b4b1ae8d6febb42760a40636

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page