You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/python_find_library_path.sh

62 lines
1.5 KiB
Bash

#!/usr/bin/env bash
# shellcheck disable=SC2230
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2019-09-27 17:54:37 +0100 (Fri, 27 Sep 2019)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
# Shows the path to Python libraries given as arguments
#
# There is a better version of this in the adjacent DevOps Python Tools repo called find_python_library_path.py
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
python="${PYTHON:-python}"
find_python_sys_path(){
cat <<EOF |
from __future__ import print_function
# more likely to be right than \$USER
import getpass
import os
import sys
user = getpass.getuser()
for path in sys.path:
# don't return local /Users/\$USER/Library/Python/2.7/lib/python/site-packages
# as that is not the source of sys
if user in path:
continue
if 'Python.framework' in path:
path = path.rsplit('{}lib{}'.format(os.sep, os.sep))[0]
print(path)
break
elif path.endswith('/site-packages'):
print(path)
break
EOF
"$python" #|
#sed 's,/python/*[[:digit:].]*/site-packages,,'
}
if [ $# -eq 0 ]; then
find_python_sys_path
fi
for arg; do
if [ "$arg" = "sys" ]; then
find_python_sys_path
else
"$python" -c "from __future__ import print_function; import $arg; print($arg.__file__)"
fi
done