Become a UV ninja

Summary: Supercharge Your Python Workflow with UVURL copied

To get started with UV, add these aliases to your .bashrc:

# UV Aliases
alias uva='f() {
    if [ -n "$1" ] && [ -f "$1/.venv/bin/activate" ]; then
        source "$1/.venv/bin/activate";
    elif [ -f ".venv/bin/activate" ]; then
        source .venv/bin/activate;
    else
        source "/home/yeshwanth/.venv/bin/activate";
    fi
}; uva'

alias pip="uv pip"
alias uvd="deactivate"

Start using uva like there's no tomorrow, and let UV bring speed and simplicity to your Python projects.