module pycode.pip_helper
¶
Classes¶
class |
truncated documentation |
---|---|
Any exception raised by one of the following function. |
Functions¶
function |
truncated documentation |
---|---|
Calls |
|
calls |
|
Extracts information from a package. |
Documentation¶
Helpers for pip
Some links to look:
-
exception
pyquickhelper.pycode.pip_helper.
PQPipError
(*args)[source]¶ Bases:
Exception
Any exception raised by one of the following function.
- Parameters
args – either a string 3 strings (cmd, out, err)
-
pyquickhelper.pycode.pip_helper.
get_package_info
(name=None, start=0, end=- 1)[source]¶ Calls
pip show
to retrieve information about packages.- Parameters
name – name of he packages or None to get all of them in a list
start – start at package n (in list return by
get_packages_list
)end – end at package n, -1 for all
- Returns
dictionary or list of dictionaries
-
pyquickhelper.pycode.pip_helper.
get_packages_list
()[source]¶ calls
pip list
to retrieve the list of packages