Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > > site-packages > numpy > > lib
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 | - | - | |
tests | Directory | - | - | |
__init__.py | File | 2763 bytes | April 17 2025 13:10:58. | |
__init__.pyi | File | 5596 bytes | April 17 2025 13:10:58. | |
_datasource.py | File | 22631 bytes | April 17 2025 13:10:58. | |
_iotools.py | File | 30868 bytes | April 17 2025 13:10:58. | |
_version.py | File | 4855 bytes | April 17 2025 13:10:58. | |
_version.pyi | File | 633 bytes | April 17 2025 13:10:58. | |
arraypad.py | File | 31803 bytes | April 17 2025 13:10:58. | |
arraypad.pyi | File | 1728 bytes | April 17 2025 13:10:58. | |
arraysetops.py | File | 33655 bytes | April 17 2025 13:10:58. | |
arraysetops.pyi | File | 8337 bytes | April 17 2025 13:10:58. | |
arrayterator.py | File | 7063 bytes | April 17 2025 13:10:58. | |
arrayterator.pyi | File | 1537 bytes | April 17 2025 13:10:58. | |
format.py | File | 34769 bytes | April 17 2025 13:10:58. | |
format.pyi | File | 748 bytes | April 17 2025 13:10:58. | |
function_base.py | File | 189103 bytes | April 17 2025 13:10:58. | |
function_base.pyi | File | 16585 bytes | April 17 2025 13:10:58. | |
histograms.py | File | 37697 bytes | April 17 2025 13:10:58. | |
histograms.pyi | File | 995 bytes | April 17 2025 13:10:58. | |
index_tricks.py | File | 31346 bytes | April 17 2025 13:10:58. | |
index_tricks.pyi | File | 4251 bytes | April 17 2025 13:10:58. | |
mixins.py | File | 7071 bytes | April 17 2025 13:10:58. | |
mixins.pyi | File | 3117 bytes | April 17 2025 13:10:58. | |
nanfunctions.py | File | 65775 bytes | April 17 2025 13:10:58. | |
nanfunctions.pyi | File | 606 bytes | April 17 2025 13:10:58. | |
npyio.py | File | 97316 bytes | April 17 2025 13:10:58. | |
npyio.pyi | File | 9728 bytes | April 17 2025 13:10:58. | |
polynomial.py | File | 44133 bytes | April 17 2025 13:10:58. | |
polynomial.pyi | File | 6958 bytes | April 17 2025 13:10:58. | |
recfunctions.py | File | 59423 bytes | April 17 2025 13:10:58. | |
scimath.py | File | 15037 bytes | April 17 2025 13:10:58. | |
scimath.pyi | File | 2883 bytes | April 17 2025 13:10:58. | |
setup.py | File | 405 bytes | April 17 2025 13:10:58. | |
shape_base.py | File | 38947 bytes | April 17 2025 13:10:58. | |
shape_base.pyi | File | 5184 bytes | April 17 2025 13:10:58. | |
stride_tricks.py | File | 17911 bytes | April 17 2025 13:10:58. | |
stride_tricks.pyi | File | 1747 bytes | April 17 2025 13:10:58. | |
twodim_base.py | File | 32947 bytes | April 17 2025 13:10:58. | |
twodim_base.pyi | File | 5370 bytes | April 17 2025 13:10:58. | |
type_check.py | File | 19954 bytes | April 17 2025 13:10:58. | |
type_check.pyi | File | 5571 bytes | April 17 2025 13:10:58. | |
ufunclike.py | File | 6325 bytes | April 17 2025 13:10:58. | |
ufunclike.pyi | File | 1293 bytes | April 17 2025 13:10:58. | |
user_array.py | File | 7721 bytes | April 17 2025 13:10:58. | |
utils.py | File | 37804 bytes | April 17 2025 13:10:58. | |
utils.pyi | File | 2360 bytes | April 17 2025 13:10:58. |
""" **Note:** almost all functions in the ``numpy.lib`` namespace are also present in the main ``numpy`` namespace. Please use the functions as ``np.<funcname>`` where possible. ``numpy.lib`` is mostly a space for implementing functions that don't belong in core or in another NumPy submodule with a clear purpose (e.g. ``random``, ``fft``, ``linalg``, ``ma``). Most contains basic functions that are used by several submodules and are useful to have in the main name-space. """ from numpy.version import version as __version__ # Public submodules # Note: recfunctions and (maybe) format are public too, but not imported from . import mixins from . import scimath as emath # Private submodules # load module names. See https://github.com/networkx/networkx/issues/5838 from . import type_check from . import index_tricks from . import function_base from . import nanfunctions from . import shape_base from . import stride_tricks from . import twodim_base from . import ufunclike from . import histograms from . import polynomial from . import utils from . import arraysetops from . import npyio from . import arrayterator from . import arraypad from . import _version from .type_check import * from .index_tricks import * from .function_base import * from .nanfunctions import * from .shape_base import * from .stride_tricks import * from .twodim_base import * from .ufunclike import * from .histograms import * from .polynomial import * from .utils import * from .arraysetops import * from .npyio import * from .arrayterator import Arrayterator from .arraypad import * from ._version import * from numpy.core._multiarray_umath import tracemalloc_domain __all__ = ['emath', 'tracemalloc_domain', 'Arrayterator'] __all__ += type_check.__all__ __all__ += index_tricks.__all__ __all__ += function_base.__all__ __all__ += shape_base.__all__ __all__ += stride_tricks.__all__ __all__ += twodim_base.__all__ __all__ += ufunclike.__all__ __all__ += arraypad.__all__ __all__ += polynomial.__all__ __all__ += utils.__all__ __all__ += arraysetops.__all__ __all__ += npyio.__all__ __all__ += nanfunctions.__all__ __all__ += histograms.__all__ from numpy._pytesttester import PytestTester test = PytestTester(__name__) del PytestTester def __getattr__(attr): # Warn for reprecated attributes import math import warnings if attr == 'math': warnings.warn( "`np.lib.math` is a deprecated alias for the standard library " "`math` module (Deprecated Numpy 1.25). Replace usages of " "`numpy.lib.math` with `math`", DeprecationWarning, stacklevel=2) return math else: raise AttributeError("module {!r} has no attribute " "{!r}".format(__name__, attr))
SILENT KILLER Tool