PATH:
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
import platform def windows_only(func): if platform.system() != 'Windows': return lambda *args, **kwargs: None return func @windows_only def hide_file(path): """ Set the hidden attribute on a file or directory. From https://stackoverflow.com/questions/19622133/ `path` must be text. """ import ctypes __import__('ctypes.wintypes') SetFileAttributes = ctypes.windll.kernel32.SetFileAttributesW SetFileAttributes.argtypes = ctypes.wintypes.LPWSTR, ctypes.wintypes.DWORD SetFileAttributes.restype = ctypes.wintypes.BOOL FILE_ATTRIBUTE_HIDDEN = 0x02 ret = SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN) if not ret: raise ctypes.WinError()
[-] errors.py
[edit]
[-] sandbox.py
[edit]
[-] _path.py
[edit]
[-] depends.py
[edit]
[-] _reqs.py
[edit]
[-] cli.exe
[edit]
[-] cli-64.exe
[edit]
[+]
..
[-] gui-arm64.exe
[edit]
[-] warnings.py
[edit]
[-] gui.exe
[edit]
[+]
extern
[-] gui-64.exe
[edit]
[-] script.tmpl
[edit]
[-] package_index.py
[edit]
[+]
_distutils
[-] windows_support.py
[edit]
[-] modified.py
[edit]
[-] glob.py
[edit]
[-] _imp.py
[edit]
[-] wheel.py
[edit]
[-] launch.py
[edit]
[-] dist.py
[edit]
[+]
_vendor
[-] cli-32.exe
[edit]
[+]
__pycache__
[-] py312compat.py
[edit]
[-] installer.py
[edit]
[-] msvc.py
[edit]
[-] archive_util.py
[edit]
[-] _normalization.py
[edit]
[-] discovery.py
[edit]
[-] monkey.py
[edit]
[+]
config
[-] _entry_points.py
[edit]
[-] version.py
[edit]
[-] _core_metadata.py
[edit]
[-] _itertools.py
[edit]
[-] logging.py
[edit]
[-] gui-32.exe
[edit]
[-] unicode_utils.py
[edit]
[-] namespaces.py
[edit]
[-] build_meta.py
[edit]
[-] __init__.py
[edit]
[-] cli-arm64.exe
[edit]
[+]
command
[-] script (dev).tmpl
[edit]
[-] _importlib.py
[edit]
[-] dep_util.py
[edit]
[-] extension.py
[edit]