/
niceSOFT
/
python3-wheel
Обзор
Документация
Войти
/
niceSOFT
/
python3-wheel
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/reference/wheel_unpack.rst
46 строк
814 B
JakobDev
Fix typo in documentation (#492)
05 дек 2022, 19:20
Не верифицирован
05 дек 2022, 19:20
d140029
Код
Авторство
О чём код?
wheel unpack ============ Usage ----- :: wheel unpack <wheel_file> Description ----------- Unpack the given wheel file. This is the equivalent of ``unzip <wheel_file>``, except that it also checks that the hashes and file sizes match with those in ``RECORD`` and exits with an error if it encounters a mismatch. Options ------- .. option:: -d, --dest <dir> Directory to unpack the wheel into. Examples -------- * Unpack a wheel:: $ wheel unpack someproject-1.5.0-py2-py3-none.whl Unpacking to: ./someproject-1.5.0 * If a file's hash does not match:: $ wheel unpack someproject-1.5.0-py2-py3-none.whl Unpacking to: ./someproject-1.5.0 Traceback (most recent call last): ... wheel.install.BadWheelFile: Bad hash for file 'mypackage/module.py' $ echo $? 1