MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / install_zip

Function install_zip

scripts/download_headless.py:79–83  ·  view source on GitHub ↗
(zippath: str, installpath: str, clean: bool)

Source from the content-addressed store, hash-verified

77
78
79def install_zip(zippath: str, installpath: str, clean: bool):
80 with zipfile.ZipFile(zippath, 'r') as zip_ref:
81 zip_ref.extractall(installpath)
82 if clean:
83 os.unlink(zippath)
84
85
86def download_and_install(

Callers 1

download_and_installFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected