2021-06-12 03:50:29 +02:00
|
|
|
# python command
|
2022-04-09 14:45:42 +02:00
|
|
|
alias py='python3'
|
2021-06-12 03:50:29 +02:00
|
|
|
|
2011-04-13 16:55:24 +02:00
|
|
|
# Find python file
|
|
|
|
alias pyfind='find . -name "*.py"'
|
|
|
|
|
2019-10-25 13:24:35 +02:00
|
|
|
# Remove python compiled byte-code and mypy/pytest cache in either the current
|
|
|
|
# directory or in a list of specified directories (including sub directories).
|
2012-10-26 18:38:17 +02:00
|
|
|
function pyclean() {
|
2021-12-31 20:45:12 +01:00
|
|
|
find "${@:-.}" -type f -name "*.py[co]" -delete
|
|
|
|
find "${@:-.}" -type d -name "__pycache__" -delete
|
|
|
|
find "${@:-.}" -depth -type d -name ".mypy_cache" -exec rm -r "{}" +
|
|
|
|
find "${@:-.}" -depth -type d -name ".pytest_cache" -exec rm -r "{}" +
|
2012-10-26 18:38:17 +02:00
|
|
|
}
|
2012-03-21 22:34:19 +01:00
|
|
|
|
2020-03-02 13:38:44 +01:00
|
|
|
# Add the user installed site-packages paths to PYTHONPATH, only if the
|
|
|
|
# directory exists. Also preserve the current PYTHONPATH value.
|
|
|
|
# Feel free to autorun this when .zshrc loads.
|
|
|
|
function pyuserpaths() {
|
2021-12-31 20:45:12 +01:00
|
|
|
setopt localoptions extendedglob
|
|
|
|
|
|
|
|
# Check for a non-standard install directory.
|
|
|
|
local user_base="${PYTHONUSERBASE:-"${HOME}/.local"}"
|
|
|
|
|
|
|
|
local python version site_pkgs
|
|
|
|
for python in python2 python3; do
|
|
|
|
# Check if command exists
|
|
|
|
(( ${+commands[$python]} )) || continue
|
|
|
|
|
|
|
|
# Get minor release version.
|
|
|
|
# The patch version is variable length, truncate it.
|
|
|
|
version=${(M)${"$($python -V 2>&1)":7}#[^.]##.[^.]##}
|
|
|
|
|
|
|
|
# Add version specific path, if:
|
|
|
|
# - it exists in the filesystem
|
|
|
|
# - it isn't in $PYTHONPATH already.
|
|
|
|
site_pkgs="${user_base}/lib/python${version}/site-packages"
|
|
|
|
[[ -d "$site_pkgs" && ! "$PYTHONPATH" =~ (^|:)"$site_pkgs"(:|$) ]] || continue
|
|
|
|
export PYTHONPATH="${site_pkgs}${PYTHONPATH+":${PYTHONPATH}"}"
|
|
|
|
done
|
2020-03-02 13:38:44 +01:00
|
|
|
}
|
|
|
|
|
2012-03-21 22:34:19 +01:00
|
|
|
# Grep among .py files
|
2020-05-23 22:33:09 +02:00
|
|
|
alias pygrep='grep -nr --include="*.py"'
|
2013-09-10 11:33:58 +02:00
|
|
|
|
2017-01-20 11:05:01 +01:00
|
|
|
# Run proper IPython regarding current virtualenv (if any)
|
2022-04-09 14:45:42 +02:00
|
|
|
alias ipython="python3 -c 'import IPython; IPython.terminal.ipapp.launch_new_instance()'"
|
2021-09-24 22:37:09 +02:00
|
|
|
|
|
|
|
# Share local directory as a HTTP server
|
2022-04-09 14:45:42 +02:00
|
|
|
alias pyserver="python3 -m http.server"
|
2021-04-01 23:35:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
## venv utilities
|
|
|
|
|
|
|
|
# Activate a the python virtual environment specified.
|
|
|
|
# If none specified, use 'venv'.
|
|
|
|
function vrun() {
|
|
|
|
local name="${1:-venv}"
|
|
|
|
local venvpath="${name:P}"
|
|
|
|
|
|
|
|
if [[ ! -d "$venvpath" ]]; then
|
|
|
|
echo >&2 "Error: no such venv in current directory: $name"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! -f "${venvpath}/bin/activate" ]]; then
|
|
|
|
echo >&2 "Error: '${name}' is not a proper virtual environment"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
. "${venvpath}/bin/activate" || return $?
|
|
|
|
echo "Activated virtual environment ${name}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Create a new virtual environment, with default name 'venv'.
|
|
|
|
function mkv() {
|
|
|
|
local name="${1:-venv}"
|
|
|
|
local venvpath="${name:P}"
|
|
|
|
|
|
|
|
python3 -m venv "${name}" || return
|
|
|
|
echo >&2 "Created venv in '${venvpath}'"
|
|
|
|
vrun "${name}"
|
|
|
|
}
|