forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython_find_library_path.sh
More file actions
executable file
·62 lines (56 loc) · 1.61 KB
/
Copy pathpython_find_library_path.sh
File metadata and controls
executable file
·62 lines (56 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/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/DevOps-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 python_find_library_path.py
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
python="${PYTHON:-python}"
python="$(type -P "$python" || die "'$python' not found")"
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