Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > > site-packages > numpy > _pyinstaller >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 0 bytes | April 17 2025 13:10:58. | |
hook-numpy.py | File | 1409 bytes | April 17 2025 13:10:58. | |
pyinstaller-smoke.py | File | 1143 bytes | April 17 2025 13:10:58. | |
test_pyinstaller.py | File | 1135 bytes | April 17 2025 13:10:58. |
import subprocess from pathlib import Path import pytest # PyInstaller has been very unproactive about replacing 'imp' with 'importlib'. @pytest.mark.filterwarnings('ignore::DeprecationWarning') # It also leaks io.BytesIO()s. @pytest.mark.filterwarnings('ignore::ResourceWarning') @pytest.mark.parametrize("mode", ["--onedir", "--onefile"]) @pytest.mark.slow def test_pyinstaller(mode, tmp_path): """Compile and run pyinstaller-smoke.py using PyInstaller.""" pyinstaller_cli = pytest.importorskip("PyInstaller.__main__").run source = Path(__file__).with_name("pyinstaller-smoke.py").resolve() args = [ # Place all generated files in ``tmp_path``. '--workpath', str(tmp_path / "build"), '--distpath', str(tmp_path / "dist"), '--specpath', str(tmp_path), mode, str(source), ] pyinstaller_cli(args) if mode == "--onefile": exe = tmp_path / "dist" / source.stem else: exe = tmp_path / "dist" / source.stem / source.stem p = subprocess.run([str(exe)], check=True, stdout=subprocess.PIPE) assert p.stdout.strip() == b"I made it!"
SILENT KILLER Tool