content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
\n\n | .venv\Lib\site-packages\notebook_shim\__pycache__\traits.cpython-313.pyc | traits.cpython-313.pyc | Other | 6,625 | 0.8 | 0.184615 | 0 | vue-tools | 527 | 2024-03-23T04:36:13.142787 | MIT | false | 0278d9c180ae5c41e1a5f914aefc4113 |
\n\n | .venv\Lib\site-packages\notebook_shim\__pycache__\_version.cpython-313.pyc | _version.cpython-313.pyc | Other | 261 | 0.7 | 0 | 0 | react-lib | 9 | 2024-11-20T16:55:09.921710 | BSD-3-Clause | false | 724393de48133abfcccf0082b918ff85 |
\n\n | .venv\Lib\site-packages\notebook_shim\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 372 | 0.7 | 0 | 0 | vue-tools | 305 | 2023-08-10T06:25:56.050344 | GPL-3.0 | false | e589fc92227532a77f242d8bd8520bba |
pip\n | .venv\Lib\site-packages\notebook_shim-0.2.4.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | python-kit | 779 | 2024-11-27T07:14:49.399347 | BSD-3-Clause | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
Metadata-Version: 2.1\nName: notebook_shim\nVersion: 0.2.4\nSummary: A shim layer for notebook traits and config\nAuthor-email: Jupyter Development Team <jupyter@googlegroups.com>\nLicense: BSD 3-Clause License\n \n Copyright (c) 2022 Project Jupyter Contributors\n All rights reserved.\n \n ... | .venv\Lib\site-packages\notebook_shim-0.2.4.dist-info\METADATA | METADATA | Other | 4,032 | 0.95 | 0.111111 | 0.042254 | node-utils | 688 | 2025-03-08T00:17:27.644516 | GPL-3.0 | false | 48ef1db100e20ea1b897f469300448ce |
../../etc/jupyter/jupyter_server_config.d/notebook_shim.json,sha256=t1_5Rmm0oG8XxVUzl9q5ciYm87jRLd2NQ-CGYXOz6zs,106\nnotebook_shim-0.2.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\nnotebook_shim-0.2.4.dist-info/METADATA,sha256=LrAxPYLARCilYGvys8eZh_p3i_bCi_4xUHLmB8Jk61c,4032\nnotebook_shim... | .venv\Lib\site-packages\notebook_shim-0.2.4.dist-info\RECORD | RECORD | Other | 2,238 | 0.7 | 0 | 0 | vue-tools | 144 | 2023-10-09T13:46:42.915860 | GPL-3.0 | false | 1dbc1c97d91597e76089dbe242dea43f |
Wheel-Version: 1.0\nGenerator: hatchling 1.21.1\nRoot-Is-Purelib: true\nTag: py3-none-any\n | .venv\Lib\site-packages\notebook_shim-0.2.4.dist-info\WHEEL | WHEEL | Other | 87 | 0.5 | 0 | 0 | python-kit | 328 | 2023-12-08T01:36:23.276291 | MIT | false | a2e74b4e3aea204ad48eb8854874f5a5 |
BSD 3-Clause License\n\nCopyright (c) 2022 Project Jupyter Contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, th... | .venv\Lib\site-packages\notebook_shim-0.2.4.dist-info\licenses\LICENSE | LICENSE | Other | 1,535 | 0.7 | 0 | 0 | python-kit | 262 | 2023-10-28T00:56:57.822039 | BSD-3-Clause | false | f91a22ac359078bf4380ccbace244c41 |
"""\nPytest configuration and fixtures for the Numpy test suite.\n"""\nimport os\nimport string\nimport sys\nimport tempfile\nimport warnings\nfrom contextlib import contextmanager\n\nimport hypothesis\nimport pytest\n\nimport numpy\nimport numpy as np\nfrom numpy._core._multiarray_tests import get_fpu_mode\nfrom numpy... | .venv\Lib\site-packages\numpy\conftest.py | conftest.py | Python | 8,835 | 0.95 | 0.131783 | 0.086124 | awesome-app | 464 | 2024-06-12T06:58:53.012884 | MIT | true | 1f92366a9f754ca7baf2b91c16000910 |
"""\nThis module is home to specific dtypes related functionality and their classes.\nFor more general information about dtypes, also see `numpy.dtype` and\n:ref:`arrays.dtypes`.\n\nSimilar to the builtin ``types`` module, this submodule defines types (classes)\nthat are not widely used directly.\n\n.. versionadded:: N... | .venv\Lib\site-packages\numpy\dtypes.py | dtypes.py | Python | 1,353 | 0.95 | 0.073171 | 0.103448 | vue-tools | 854 | 2023-08-23T07:32:27.370245 | MIT | false | 9e09c2ddc281ffba284a681e4208648d |
# ruff: noqa: ANN401\nfrom typing import (\n Any,\n Generic,\n LiteralString,\n Never,\n NoReturn,\n Self,\n TypeAlias,\n final,\n overload,\n type_check_only,\n)\nfrom typing import Literal as L\n\nfrom typing_extensions import TypeVar\n\nimport numpy as np\n\n__all__ = [ # noqa: RUF022\... | .venv\Lib\site-packages\numpy\dtypes.pyi | dtypes.pyi | Other | 16,175 | 0.95 | 0.22187 | 0.04014 | node-utils | 618 | 2023-11-19T15:42:18.994737 | BSD-3-Clause | false | 69e3acd4e9d4f94fbc0d0d90302125bf |
"""\nExceptions and Warnings\n=======================\n\nGeneral exceptions used by NumPy. Note that some exceptions may be module\nspecific, such as linear algebra errors.\n\n.. versionadded:: NumPy 1.25\n\n The exceptions module is new in NumPy 1.25. Older exceptions remain\n available through the main NumPy ... | .venv\Lib\site-packages\numpy\exceptions.py | exceptions.py | Python | 8,047 | 0.95 | 0.137652 | 0.021978 | python-kit | 538 | 2024-12-06T02:56:04.477986 | Apache-2.0 | false | 38b34ead9424761b84cc8293e5d3f33e |
from typing import overload\n\n__all__ = [\n "ComplexWarning",\n "VisibleDeprecationWarning",\n "ModuleDeprecationWarning",\n "TooHardError",\n "AxisError",\n "DTypePromotionError",\n]\n\nclass ComplexWarning(RuntimeWarning): ...\nclass ModuleDeprecationWarning(DeprecationWarning): ...\nclass VisibleD... | .venv\Lib\site-packages\numpy\exceptions.pyi | exceptions.pyi | Other | 776 | 0.85 | 0.36 | 0 | react-lib | 480 | 2024-05-15T11:41:15.240120 | Apache-2.0 | false | 61a88a40466862d7e4563701b9d7fe50 |
import warnings\n\n# 2018-05-29, PendingDeprecationWarning added to matrix.__new__\n# 2020-01-23, numpy 1.19.0 PendingDeprecatonWarning\nwarnings.warn("Importing from numpy.matlib is deprecated since 1.19.0. "\n "The matrix subclass is not the recommended way to represent "\n "matrices or deal... | .venv\Lib\site-packages\numpy\matlib.py | matlib.py | Python | 11,018 | 0.95 | 0.055263 | 0.015974 | react-lib | 353 | 2024-08-18T10:22:34.812952 | Apache-2.0 | false | 6b4a07236b75c200609a2c56f3047bbb |
from typing import Any, Literal, TypeAlias, TypeVar, overload\n\nimport numpy as np\nimport numpy.typing as npt\nfrom numpy import ( # noqa: F401\n False_,\n ScalarType,\n True_,\n __array_namespace_info__,\n __version__,\n abs,\n absolute,\n acos,\n acosh,\n add,\n all,\n allclose,... | .venv\Lib\site-packages\numpy\matlib.pyi | matlib.pyi | Other | 10,184 | 0.95 | 0.039519 | 0.017575 | node-utils | 402 | 2023-10-24T05:39:21.468355 | MIT | false | 4a805553d4b617f6bd9a65c3ca378bc1 |
\n"""\nModule to expose more detailed version info for the installed `numpy`\n"""\nversion = "2.3.1"\n__version__ = version\nfull_version = version\n\ngit_revision = "4d833e5df760c382f24ee3eb643dc20c3da4a5a1"\nrelease = 'dev' not in version and '+' not in version\nshort_version = version.split("+")[0]\n | .venv\Lib\site-packages\numpy\version.py | version.py | Python | 304 | 0.7 | 0.090909 | 0 | vue-tools | 51 | 2024-07-16T14:11:31.293382 | BSD-3-Clause | false | 6e50af7fa35a5f6f24130c1b0a831de5 |
from typing import Final, LiteralString\n\n__all__ = (\n '__version__',\n 'full_version',\n 'git_revision',\n 'release',\n 'short_version',\n 'version',\n)\n\nversion: Final[LiteralString]\n__version__: Final[LiteralString]\nfull_version: Final[LiteralString]\n\ngit_revision: Final[LiteralString]\nrel... | .venv\Lib\site-packages\numpy\version.pyi | version.pyi | Other | 376 | 0.85 | 0 | 0 | awesome-app | 86 | 2025-02-08T08:58:39.599630 | MIT | false | 7f51171c3b11d39cfffdedfc5f9e7bc7 |
"""\nArray API Inspection namespace\n\nThis is the namespace for inspection functions as defined by the array API\nstandard. See\nhttps://data-apis.org/array-api/latest/API_specification/inspection.html for\nmore details.\n\n"""\nfrom numpy._core import (\n bool,\n complex64,\n complex128,\n dtype,\n flo... | .venv\Lib\site-packages\numpy\_array_api_info.py | _array_api_info.py | Python | 10,700 | 0.95 | 0.101156 | 0 | python-kit | 509 | 2025-04-09T12:12:00.339402 | BSD-3-Clause | false | 0a8a02bd75b9f1bb5b8a32c98c86e040 |
from typing import (\n ClassVar,\n Literal,\n Never,\n TypeAlias,\n TypedDict,\n TypeVar,\n final,\n overload,\n type_check_only,\n)\n\nimport numpy as np\n\n_Device: TypeAlias = Literal["cpu"]\n_DeviceLike: TypeAlias = _Device | None\n\n_Capabilities = TypedDict(\n "_Capabilities",\n {... | .venv\Lib\site-packages\numpy\_array_api_info.pyi | _array_api_info.pyi | Other | 5,071 | 0.85 | 0.115942 | 0.058511 | awesome-app | 334 | 2025-01-21T19:09:06.830099 | BSD-3-Clause | false | 204da84613e52a4d75fc98c6187af573 |
import argparse\nimport sys\nfrom pathlib import Path\n\nfrom .lib._utils_impl import get_include\nfrom .version import __version__\n\n\ndef main() -> None:\n parser = argparse.ArgumentParser()\n parser.add_argument(\n "--version",\n action="version",\n version=__version__,\n help="Pri... | .venv\Lib\site-packages\numpy\_configtool.py | _configtool.py | Python | 1,046 | 0.85 | 0.153846 | 0 | vue-tools | 298 | 2023-09-04T07:49:11.224313 | Apache-2.0 | false | d31f52918750616494082e8115284a89 |
def main() -> None: ...\n | .venv\Lib\site-packages\numpy\_configtool.pyi | _configtool.pyi | Other | 25 | 0.65 | 1 | 0 | awesome-app | 794 | 2023-10-23T11:07:35.817867 | GPL-3.0 | false | 163a29351e4447c95e0d3fb1be5ca0dc |
""" Distributor init file\n\nDistributors: you can add custom code here to support particular distributions\nof numpy.\n\nFor example, this is a good place to put any BLAS/LAPACK initialization code.\n\nThe numpy standard source distribution will not put code in this file, so you\ncan safely replace this file with your... | .venv\Lib\site-packages\numpy\_distributor_init.py | _distributor_init.py | Python | 436 | 0.95 | 0.066667 | 0 | node-utils | 104 | 2024-09-29T21:11:32.012310 | MIT | false | bafc6e80db03883c578c7990c35e67f6 |
# intentionally left blank\n | .venv\Lib\site-packages\numpy\_distributor_init.pyi | _distributor_init.pyi | Other | 28 | 0.6 | 0 | 1 | awesome-app | 459 | 2024-01-16T20:48:27.463737 | GPL-3.0 | false | 42a79b8b1e7abd9128fcd3553a3b3282 |
"""\nDict of expired attributes that are discontinued since 2.0 release.\nEach item is associated with a migration note.\n"""\n\n__expired_attributes__ = {\n "geterrobj": "Use the np.errstate context manager instead.",\n "seterrobj": "Use the np.errstate context manager instead.",\n "cast": "Use `np.asarray(ar... | .venv\Lib\site-packages\numpy\_expired_attrs_2_0.py | _expired_attrs_2_0.py | Python | 3,905 | 0.85 | 0.050633 | 0 | awesome-app | 801 | 2024-08-07T08:05:54.728117 | GPL-3.0 | false | daa8cd8f9c1905718f2f32fc95960307 |
from typing import Final, TypedDict, final, type_check_only\n\n@final\n@type_check_only\nclass _ExpiredAttributesType(TypedDict):\n geterrobj: str\n seterrobj: str\n cast: str\n source: str\n lookfor: str\n who: str\n fastCopyAndTranspose: str\n set_numeric_ops: str\n NINF: str\n PINF: str... | .venv\Lib\site-packages\numpy\_expired_attrs_2_0.pyi | _expired_attrs_2_0.pyi | Other | 1,315 | 0.85 | 0.016129 | 0 | node-utils | 558 | 2024-05-04T23:42:51.788234 | BSD-3-Clause | false | 174e730073ffa0b16db342e37c41c2fb |
"""\nModule defining global singleton classes.\n\nThis module raises a RuntimeError if an attempt to reload it is made. In that\nway the identities of the classes defined here are fixed and will remain so\neven if numpy itself is reloaded. In particular, a function like the following\nwill still work correctly after nu... | .venv\Lib\site-packages\numpy\_globals.py | _globals.py | Python | 3,187 | 0.95 | 0.25 | 0.057143 | node-utils | 675 | 2024-10-01T20:18:39.416301 | Apache-2.0 | false | d96015a9c3abfaf67a9f235242a3388d |
__all__ = ["_CopyMode", "_NoValue"]\n\nimport enum\nfrom typing import Final, final\n\n@final\nclass _CopyMode(enum.Enum):\n ALWAYS = True\n NEVER = False\n IF_NEEDED = 2\n\n def __bool__(self, /) -> bool: ...\n\n@final\nclass _NoValueType: ...\n\n_NoValue: Final[_NoValueType] = ...\n | .venv\Lib\site-packages\numpy\_globals.pyi | _globals.pyi | Other | 297 | 0.85 | 0.176471 | 0 | python-kit | 266 | 2024-04-27T18:29:27.870678 | MIT | false | dcca3c26ed1077b7099883c8015b9806 |
"""\nPytest test running.\n\nThis module implements the ``test()`` function for NumPy modules. The usual\nboiler plate for doing that is to put the following in the module\n``__init__.py`` file::\n\n from numpy._pytesttester import PytestTester\n test = PytestTester(__name__)\n del PytestTester\n\n\nWarnings f... | .venv\Lib\site-packages\numpy\_pytesttester.py | _pytesttester.py | Python | 6,529 | 0.95 | 0.134328 | 0.077419 | node-utils | 606 | 2024-05-09T15:47:49.820080 | Apache-2.0 | true | 368824b657c83e3f4d8c16d1812ed78f |
from collections.abc import Iterable\nfrom typing import Literal as L\n\n__all__ = ["PytestTester"]\n\nclass PytestTester:\n module_name: str\n def __init__(self, module_name: str) -> None: ...\n def __call__(\n self,\n label: L["fast", "full"] = ...,\n verbose: int = ...,\n extra_a... | .venv\Lib\site-packages\numpy\_pytesttester.pyi | _pytesttester.pyi | Other | 515 | 0.85 | 0.166667 | 0 | node-utils | 876 | 2024-05-17T18:54:28.986710 | MIT | true | a8bd151c684f3b1f190741e3cea93363 |
# This file is generated by numpy's build process\n# It contains system_info results at the time of building this package.\nfrom enum import Enum\nfrom numpy._core._multiarray_umath import (\n __cpu_features__,\n __cpu_baseline__,\n __cpu_dispatch__,\n)\n\n__all__ = ["show_config"]\n_built_with_meson = True\n\... | .venv\Lib\site-packages\numpy\__config__.py | __config__.py | Python | 5,693 | 0.95 | 0.1 | 0.013605 | awesome-app | 844 | 2024-05-15T08:38:54.342264 | Apache-2.0 | false | e55fa8f7febc7cf3ee5aec76ee0c5435 |
from enum import Enum\nfrom types import ModuleType\nfrom typing import Final, NotRequired, TypedDict, overload, type_check_only\nfrom typing import Literal as L\n\n_CompilerConfigDictValue = TypedDict(\n "_CompilerConfigDictValue",\n {\n "name": str,\n "linker": str,\n "version": str,\n ... | .venv\Lib\site-packages\numpy\__config__.pyi | __config__.pyi | Other | 2,469 | 0.95 | 0.088235 | 0.011364 | react-lib | 156 | 2024-12-23T07:25:44.360893 | MIT | false | 13d850c4050b5fea0d7a99204299d249 |
# NumPy static imports for Cython >= 3.0\n#\n# If any of the PyArray_* functions are called, import_array must be\n# called first. This is done automatically by Cython 3.0+ if a call\n# is not detected inside of the module.\n#\n# Author: Dag Sverre Seljebotn\n#\n\nfrom cpython.ref cimport Py_INCREF\nfrom cpython.objec... | .venv\Lib\site-packages\numpy\__init__.cython-30.pxd | __init__.cython-30.pxd | Other | 48,364 | 0.95 | 0.034649 | 0.140038 | node-utils | 855 | 2023-11-01T14:38:00.552269 | Apache-2.0 | false | cafe28c0cc9f6d182ad083409dc617ec |
# NumPy static imports for Cython < 3.0\n#\n# If any of the PyArray_* functions are called, import_array must be\n# called first.\n#\n# Author: Dag Sverre Seljebotn\n#\n\nDEF _buffer_format_string_len = 255\n\ncimport cpython.buffer as pybuf\nfrom cpython.ref cimport Py_INCREF\nfrom cpython.mem cimport PyObject_Malloc,... | .venv\Lib\site-packages\numpy\__init__.pxd | __init__.pxd | Other | 44,912 | 0.95 | 0.032062 | 0.148297 | python-kit | 337 | 2024-05-29T10:38:14.954912 | Apache-2.0 | false | c05f3c04378a692c4d3f46b9560d000f |
"""\nNumPy\n=====\n\nProvides\n 1. An array object of arbitrary homogeneous items\n 2. Fast mathematical operations over arrays\n 3. Linear Algebra, Fourier Transforms, Random Number Generation\n\nHow to use the documentation\n----------------------------\nDocumentation is available in two forms: docstrings provided... | .venv\Lib\site-packages\numpy\__init__.py | __init__.py | Python | 26,476 | 0.95 | 0.067021 | 0.045506 | python-kit | 341 | 2024-06-03T22:13:14.088581 | BSD-3-Clause | false | 304ddec72368a0b0b40c38f1c38fe7d4 |
from numpy._core.defchararray import *\nfrom numpy._core.defchararray import __all__, __doc__\n | .venv\Lib\site-packages\numpy\char\__init__.py | __init__.py | Python | 95 | 0.65 | 0 | 0 | awesome-app | 287 | 2023-10-30T23:02:50.162799 | MIT | false | 72a58e36aee2c726c02f6117091ace7b |
from numpy._core.defchararray import (\n add,\n array,\n asarray,\n capitalize,\n center,\n chararray,\n compare_chararrays,\n count,\n decode,\n encode,\n endswith,\n equal,\n expandtabs,\n find,\n greater,\n greater_equal,\n index,\n isalnum,\n isalpha,\n is... | .venv\Lib\site-packages\numpy\char\__init__.pyi | __init__.pyi | Other | 1,651 | 0.85 | 0 | 0 | awesome-app | 945 | 2024-09-07T09:16:34.751690 | Apache-2.0 | false | e6eea76006cc6fde7852f7753df26376 |
\n\n | .venv\Lib\site-packages\numpy\char\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 283 | 0.7 | 0 | 0 | python-kit | 930 | 2024-06-05T07:52:01.089875 | Apache-2.0 | false | 19d3efc84e52ecc4c5c615a93cf3c66a |
def __getattr__(attr_name):\n from numpy._core import arrayprint\n\n from ._utils import _raise_warning\n ret = getattr(arrayprint, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.arrayprint' has no attribute {attr_name}")\n _raise_warning(attr_name, "a... | .venv\Lib\site-packages\numpy\core\arrayprint.py | arrayprint.py | Python | 349 | 0.85 | 0.2 | 0 | node-utils | 871 | 2024-05-31T12:17:20.335495 | MIT | false | 2ed0ce347f7311246c5c54042c617be9 |
def __getattr__(attr_name):\n from numpy._core import defchararray\n\n from ._utils import _raise_warning\n ret = getattr(defchararray, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.defchararray' has no attribute {attr_name}")\n _raise_warning(attr_na... | .venv\Lib\site-packages\numpy\core\defchararray.py | defchararray.py | Python | 357 | 0.85 | 0.2 | 0 | awesome-app | 713 | 2023-10-23T02:06:31.582284 | BSD-3-Clause | false | fb768d8d175db8aa18acc9ba6db1ccee |
def __getattr__(attr_name):\n from numpy._core import einsumfunc\n\n from ._utils import _raise_warning\n ret = getattr(einsumfunc, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.einsumfunc' has no attribute {attr_name}")\n _raise_warning(attr_name, "e... | .venv\Lib\site-packages\numpy\core\einsumfunc.py | einsumfunc.py | Python | 349 | 0.85 | 0.2 | 0 | awesome-app | 227 | 2023-07-29T11:05:12.463783 | Apache-2.0 | false | 09a475eeb6f60b053a546e5e91f6d244 |
def __getattr__(attr_name):\n from numpy._core import fromnumeric\n\n from ._utils import _raise_warning\n ret = getattr(fromnumeric, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.fromnumeric' has no attribute {attr_name}")\n _raise_warning(attr_name,... | .venv\Lib\site-packages\numpy\core\fromnumeric.py | fromnumeric.py | Python | 353 | 0.85 | 0.2 | 0 | vue-tools | 20 | 2025-06-26T21:27:01.200526 | BSD-3-Clause | false | 68452de7419997a4a62b1d1b1ecf9c8c |
def __getattr__(attr_name):\n from numpy._core import function_base\n\n from ._utils import _raise_warning\n ret = getattr(function_base, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.function_base' has no attribute {attr_name}")\n _raise_warning(attr... | .venv\Lib\site-packages\numpy\core\function_base.py | function_base.py | Python | 361 | 0.85 | 0.2 | 0 | python-kit | 346 | 2025-02-10T03:35:06.826807 | GPL-3.0 | false | 87c9b13467e92d46a525b8d619f525f5 |
def __getattr__(attr_name):\n from numpy._core import getlimits\n\n from ._utils import _raise_warning\n ret = getattr(getlimits, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.getlimits' has no attribute {attr_name}")\n _raise_warning(attr_name, "getl... | .venv\Lib\site-packages\numpy\core\getlimits.py | getlimits.py | Python | 345 | 0.85 | 0.2 | 0 | react-lib | 169 | 2025-04-25T03:16:09.546017 | GPL-3.0 | false | 870fcf95b5d035188339d2dbf7a7f659 |
from numpy._core import multiarray\n\n# these must import without warning or error from numpy.core.multiarray to\n# support old pickle files\nfor item in ["_reconstruct", "scalar"]:\n globals()[item] = getattr(multiarray, item)\n\n# Pybind11 (in versions <= 2.11.1) imports _ARRAY_API from the multiarray\n# submodule... | .venv\Lib\site-packages\numpy\core\multiarray.py | multiarray.py | Python | 818 | 0.95 | 0.12 | 0.263158 | python-kit | 131 | 2024-02-06T15:20:25.486474 | BSD-3-Clause | false | 8574144c1bf083e986a5d4e3f756de2f |
def __getattr__(attr_name):\n from numpy._core import numeric\n\n from ._utils import _raise_warning\n\n sentinel = object()\n ret = getattr(numeric, attr_name, sentinel)\n if ret is sentinel:\n raise AttributeError(\n f"module 'numpy.core.numeric' has no attribute {attr_name}")\n _r... | .venv\Lib\site-packages\numpy\core\numeric.py | numeric.py | Python | 372 | 0.85 | 0.166667 | 0 | awesome-app | 403 | 2024-04-20T08:56:00.303231 | MIT | false | 0ff26f202237d5c1a02397db5d244eb1 |
def __getattr__(attr_name):\n from numpy._core import numerictypes\n\n from ._utils import _raise_warning\n ret = getattr(numerictypes, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.numerictypes' has no attribute {attr_name}")\n _raise_warning(attr_na... | .venv\Lib\site-packages\numpy\core\numerictypes.py | numerictypes.py | Python | 357 | 0.85 | 0.2 | 0 | node-utils | 126 | 2024-01-27T15:57:08.518960 | MIT | false | dddd3874b7458b00c3c3be9874abb49e |
def __getattr__(attr_name):\n from numpy._core import overrides\n\n from ._utils import _raise_warning\n ret = getattr(overrides, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.overrides' has no attribute {attr_name}")\n _raise_warning(attr_name, "over... | .venv\Lib\site-packages\numpy\core\overrides.py | overrides.py | Python | 345 | 0.85 | 0.2 | 0 | python-kit | 176 | 2024-03-30T15:57:32.608321 | MIT | false | 24b265a7f31bf91531e0dfc76ccdd568 |
# NOTE: At runtime, this submodule dynamically re-exports any `numpy._core.overrides`\n# member, and issues a `DeprecationWarning` when accessed. But since there is no\n# `__dir__` or `__all__` present, these annotations would be unverifiable. Because\n# this module is also deprecated in favor of `numpy._core`, and the... | .venv\Lib\site-packages\numpy\core\overrides.pyi | overrides.pyi | Other | 532 | 0.95 | 0.142857 | 1 | awesome-app | 875 | 2023-10-28T16:13:49.509608 | BSD-3-Clause | false | e0b8564a78566c928ca831d4d83edf88 |
def __getattr__(attr_name):\n from numpy._core import records\n\n from ._utils import _raise_warning\n ret = getattr(records, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.records' has no attribute {attr_name}")\n _raise_warning(attr_name, "records")\... | .venv\Lib\site-packages\numpy\core\records.py | records.py | Python | 337 | 0.85 | 0.2 | 0 | python-kit | 898 | 2023-09-03T21:49:43.687325 | Apache-2.0 | false | ace2cf1d8468fe30a85b8a61714ced08 |
def __getattr__(attr_name):\n from numpy._core import shape_base\n\n from ._utils import _raise_warning\n ret = getattr(shape_base, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.shape_base' has no attribute {attr_name}")\n _raise_warning(attr_name, "s... | .venv\Lib\site-packages\numpy\core\shape_base.py | shape_base.py | Python | 349 | 0.85 | 0.2 | 0 | react-lib | 230 | 2024-12-23T10:27:40.434694 | MIT | false | a697a89d9cf265f8dc8537494543928a |
def __getattr__(attr_name):\n from numpy._core import umath\n\n from ._utils import _raise_warning\n ret = getattr(umath, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core.umath' has no attribute {attr_name}")\n _raise_warning(attr_name, "umath")\n ret... | .venv\Lib\site-packages\numpy\core\umath.py | umath.py | Python | 329 | 0.85 | 0.2 | 0 | vue-tools | 981 | 2025-04-09T18:45:11.806495 | BSD-3-Clause | false | 4fae0a94eb4e91c1cf250c8761fcac5b |
def __getattr__(attr_name):\n from numpy._core import _dtype\n\n from ._utils import _raise_warning\n ret = getattr(_dtype, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core._dtype' has no attribute {attr_name}")\n _raise_warning(attr_name, "_dtype")\n ... | .venv\Lib\site-packages\numpy\core\_dtype.py | _dtype.py | Python | 333 | 0.85 | 0.2 | 0 | awesome-app | 636 | 2023-11-18T16:09:51.884284 | Apache-2.0 | false | 39636ceec778138dcad35b043b589765 |
def __getattr__(attr_name):\n from numpy._core import _dtype_ctypes\n\n from ._utils import _raise_warning\n ret = getattr(_dtype_ctypes, attr_name, None)\n if ret is None:\n raise AttributeError(\n f"module 'numpy.core._dtype_ctypes' has no attribute {attr_name}")\n _raise_warning(attr... | .venv\Lib\site-packages\numpy\core\_dtype_ctypes.py | _dtype_ctypes.py | Python | 361 | 0.85 | 0.2 | 0 | awesome-app | 192 | 2023-10-04T18:29:09.992254 | Apache-2.0 | false | 07c99d7b885b92d481e883ae2afa10f5 |
from numpy._core import _internal\n\n\n# Build a new array from the information in a pickle.\n# Note that the name numpy.core._internal._reconstruct is embedded in\n# pickles of ndarrays made with NumPy before release 1.0\n# so don't remove the name here, or you'll\n# break backward compatibility.\ndef _reconstruct(sub... | .venv\Lib\site-packages\numpy\core\_internal.py | _internal.py | Python | 976 | 0.95 | 0.111111 | 0.333333 | python-kit | 12 | 2025-03-08T09:22:52.512610 | BSD-3-Clause | false | 8309c18655daaa9bfc85dc3d77cf59f6 |
from numpy import ufunc\nfrom numpy._core import _multiarray_umath\n\nfor item in _multiarray_umath.__dir__():\n # ufuncs appear in pickles with a path in numpy.core._multiarray_umath\n # and so must import from this namespace without warning or error\n attr = getattr(_multiarray_umath, item)\n if isinstanc... | .venv\Lib\site-packages\numpy\core\_multiarray_umath.py | _multiarray_umath.py | Python | 2,155 | 0.95 | 0.140351 | 0.136364 | node-utils | 447 | 2024-03-18T16:03:46.720589 | MIT | false | ef0ae05a51bd3c6a427989acc5a0dd89 |
import warnings\n\n\ndef _raise_warning(attr: str, submodule: str | None = None) -> None:\n new_module = "numpy._core"\n old_module = "numpy.core"\n if submodule is not None:\n new_module = f"{new_module}.{submodule}"\n old_module = f"{old_module}.{submodule}"\n warnings.warn(\n f"{old_... | .venv\Lib\site-packages\numpy\core\_utils.py | _utils.py | Python | 944 | 0.85 | 0.095238 | 0 | react-lib | 405 | 2023-09-26T14:45:41.740310 | MIT | false | 92f84ad62c0480e7cd7d6b01376344c4 |
"""\nThe `numpy.core` submodule exists solely for backward compatibility\npurposes. The original `core` was renamed to `_core` and made private.\n`numpy.core` will be removed in the future.\n"""\nfrom numpy import _core\n\nfrom ._utils import _raise_warning\n\n\n# We used to use `np.core._ufunc_reconstruct` to unpickle... | .venv\Lib\site-packages\numpy\core\__init__.py | __init__.py | Python | 1,323 | 0.95 | 0.121212 | 0.307692 | awesome-app | 854 | 2024-08-21T17:48:11.101401 | MIT | false | 28e92f4677259bbd143ff186d803ebd2 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\arrayprint.cpython-313.pyc | arrayprint.cpython-313.pyc | Other | 629 | 0.7 | 0 | 0 | node-utils | 684 | 2024-09-22T09:56:15.709213 | GPL-3.0 | false | 38cb34a42bc62c978e73f989890c95c3 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\defchararray.cpython-313.pyc | defchararray.cpython-313.pyc | Other | 635 | 0.7 | 0 | 0 | vue-tools | 665 | 2024-09-10T05:32:39.367833 | GPL-3.0 | false | b4a1c50d2884ab01273438748b486a2e |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\einsumfunc.cpython-313.pyc | einsumfunc.cpython-313.pyc | Other | 629 | 0.7 | 0 | 0 | awesome-app | 630 | 2024-03-24T02:52:32.226019 | GPL-3.0 | false | ae5761896c2403df0e315adc20a0f900 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\fromnumeric.cpython-313.pyc | fromnumeric.cpython-313.pyc | Other | 632 | 0.7 | 0 | 0 | node-utils | 323 | 2023-11-09T05:59:43.419708 | Apache-2.0 | false | 619309fd14e6b337def3854602a9d5be |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\function_base.cpython-313.pyc | function_base.cpython-313.pyc | Other | 638 | 0.85 | 0 | 0 | python-kit | 34 | 2025-06-21T13:52:27.460253 | BSD-3-Clause | false | 79fceb67764bcf8e56c8fb8660d6f4de |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\getlimits.cpython-313.pyc | getlimits.cpython-313.pyc | Other | 626 | 0.7 | 0 | 0 | awesome-app | 687 | 2024-10-24T00:36:27.559168 | MIT | false | 9adda72d0d3d750463a1d5452ea50d05 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\multiarray.cpython-313.pyc | multiarray.cpython-313.pyc | Other | 846 | 0.7 | 0 | 0 | awesome-app | 118 | 2023-08-10T00:09:00.816297 | BSD-3-Clause | false | c8d8fde722d494667429db0f5058d75c |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\numeric.cpython-313.pyc | numeric.cpython-313.pyc | Other | 668 | 0.8 | 0 | 0 | awesome-app | 694 | 2024-03-20T04:44:31.469642 | BSD-3-Clause | false | c5726c2bfaa82f07275a717936478092 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\numerictypes.cpython-313.pyc | numerictypes.cpython-313.pyc | Other | 635 | 0.7 | 0 | 0 | awesome-app | 964 | 2025-06-28T07:40:53.806820 | Apache-2.0 | false | 6e89475d441fbc2e22807af056fd5d95 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\overrides.cpython-313.pyc | overrides.cpython-313.pyc | Other | 626 | 0.7 | 0 | 0 | awesome-app | 742 | 2025-01-01T11:59:43.971785 | BSD-3-Clause | false | 0db17cfd6718edc0d30b9d32392fab58 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\records.cpython-313.pyc | records.cpython-313.pyc | Other | 620 | 0.8 | 0 | 0 | react-lib | 640 | 2023-08-31T10:15:10.538440 | BSD-3-Clause | false | 2055b813421905b9025f7711cacd7e92 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\shape_base.cpython-313.pyc | shape_base.cpython-313.pyc | Other | 629 | 0.7 | 0 | 0 | vue-tools | 401 | 2024-04-28T11:44:29.758017 | BSD-3-Clause | false | 3be9dceecb026676b37666967f809be2 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\umath.cpython-313.pyc | umath.cpython-313.pyc | Other | 614 | 0.7 | 0 | 0 | awesome-app | 59 | 2025-04-28T02:25:12.002717 | MIT | false | 2a0df3a9b560f85223e229e30d14f859 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\_dtype.cpython-313.pyc | _dtype.cpython-313.pyc | Other | 617 | 0.7 | 0 | 0.142857 | vue-tools | 887 | 2023-11-24T19:37:16.021845 | GPL-3.0 | false | 8fdb0cf79c613459cfccd42e69288060 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\_dtype_ctypes.cpython-313.pyc | _dtype_ctypes.cpython-313.pyc | Other | 638 | 0.7 | 0 | 0 | awesome-app | 50 | 2025-03-30T08:26:22.871123 | GPL-3.0 | false | 2f7bb151a30e634fea7d62098c2c9d33 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\_internal.cpython-313.pyc | _internal.cpython-313.pyc | Other | 953 | 0.7 | 0 | 0 | awesome-app | 525 | 2025-05-15T19:55:29.406039 | MIT | false | b54d63a8b7ff62412159aaaa61effe73 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\_multiarray_umath.cpython-313.pyc | _multiarray_umath.cpython-313.pyc | Other | 2,133 | 0.95 | 0.028571 | 0 | python-kit | 778 | 2024-10-17T13:15:00.540868 | BSD-3-Clause | false | 84ac678d8de5aaa75bbf3d2c0d7aea11 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\_utils.cpython-313.pyc | _utils.cpython-313.pyc | Other | 1,175 | 0.85 | 0 | 0 | node-utils | 668 | 2024-06-23T18:11:39.283070 | GPL-3.0 | false | 629fb27efff1223584a4671a0de3a5b2 |
\n\n | .venv\Lib\site-packages\numpy\core\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 1,147 | 0.85 | 0.052632 | 0 | node-utils | 981 | 2024-12-27T09:42:37.617527 | MIT | false | 7319b02c362d1470a397cd8040d5565d |
"""\n============================\n``ctypes`` Utility Functions\n============================\n\nSee Also\n--------\nload_library : Load a C library.\nndpointer : Array restype/argtype with verification.\nas_ctypes : Create a ctypes array from an ndarray.\nas_array : Create an ndarray from a ctypes array.\n\nReferences... | .venv\Lib\site-packages\numpy\ctypeslib\_ctypeslib.py | _ctypeslib.py | Python | 19,682 | 0.95 | 0.155887 | 0.050201 | python-kit | 94 | 2024-09-14T00:54:30.910419 | Apache-2.0 | false | 474fd9106c9352913fb3b43f06790200 |
# NOTE: Numpy's mypy plugin is used for importing the correct\n# platform-specific `ctypes._SimpleCData[int]` sub-type\nimport ctypes\nfrom collections.abc import Iterable, Sequence\nfrom ctypes import c_int64 as _c_intp\nfrom typing import (\n Any,\n ClassVar,\n Generic,\n TypeAlias,\n TypeVar,\n ove... | .venv\Lib\site-packages\numpy\ctypeslib\_ctypeslib.pyi | _ctypeslib.pyi | Other | 8,329 | 0.95 | 0.257143 | 0.034632 | vue-tools | 990 | 2023-10-27T20:30:11.443498 | MIT | false | fd9f5d4c2e563ae735e241161a423df0 |
from ._ctypeslib import (\n __all__,\n __doc__,\n _concrete_ndptr,\n _ndptr,\n as_array,\n as_ctypes,\n as_ctypes_type,\n c_intp,\n ctypes,\n load_library,\n ndpointer,\n)\n | .venv\Lib\site-packages\numpy\ctypeslib\__init__.py | __init__.py | Python | 206 | 0.85 | 0 | 0 | vue-tools | 627 | 2023-09-28T19:31:49.876124 | BSD-3-Clause | false | f442a6d0c68309589773e12ed724a449 |
import ctypes\nfrom ctypes import c_int64 as _c_intp\n\nfrom ._ctypeslib import (\n __all__ as __all__,\n)\nfrom ._ctypeslib import (\n __doc__ as __doc__,\n)\nfrom ._ctypeslib import (\n _concrete_ndptr as _concrete_ndptr,\n)\nfrom ._ctypeslib import (\n _ndptr as _ndptr,\n)\nfrom ._ctypeslib import (\n ... | .venv\Lib\site-packages\numpy\ctypeslib\__init__.pyi | __init__.pyi | Other | 652 | 0.85 | 0 | 0 | node-utils | 169 | 2024-07-28T06:07:30.255773 | MIT | false | c2ea4e4af140d68120a6c0afd2713be1 |
\n\n | .venv\Lib\site-packages\numpy\ctypeslib\__pycache__\_ctypeslib.cpython-313.pyc | _ctypeslib.cpython-313.pyc | Other | 21,550 | 0.95 | 0.04359 | 0.00304 | python-kit | 966 | 2024-11-29T09:51:22.255194 | MIT | false | 3ea2c4fc9480282517365836c86d3aa2 |
\n\n | .venv\Lib\site-packages\numpy\ctypeslib\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 454 | 0.7 | 0 | 0 | node-utils | 419 | 2024-04-29T03:35:13.819745 | Apache-2.0 | false | b06991336aa2ecd34b6478f84da6d724 |
"""\n===================\nUniversal Functions\n===================\n\nUfuncs are, generally speaking, mathematical functions or operations that are\napplied element-by-element to the contents of an array. That is, the result\nin each output array element only depends on the value in the corresponding\ninput array (or a... | .venv\Lib\site-packages\numpy\doc\ufuncs.py | ufuncs.py | Python | 5,552 | 0.95 | 0.086957 | 0.037383 | vue-tools | 424 | 2025-05-12T09:07:14.814386 | Apache-2.0 | false | 1a4131f2aec9e8d4051b6a52ccaf66a1 |
\n\n | .venv\Lib\site-packages\numpy\doc\__pycache__\ufuncs.cpython-313.pyc | ufuncs.cpython-313.pyc | Other | 5,608 | 0.95 | 0.086331 | 0.037383 | vue-tools | 629 | 2024-04-22T06:13:03.740017 | MIT | false | 115773792dcae105d0dac00e090e2cc8 |
"""\nAuxiliary functions for f2py2e.\n\nCopyright 1999 -- 2011 Pearu Peterson all rights reserved.\nCopyright 2011 -- present NumPy Developers.\nPermission to use, modify, and distribute this software is given under the\nterms of the NumPy (BSD style) LICENSE.\n\nNO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RI... | .venv\Lib\site-packages\numpy\f2py\auxfuncs.py | auxfuncs.py | Python | 27,924 | 0.95 | 0.291833 | 0.006702 | awesome-app | 860 | 2023-12-19T22:47:35.138205 | Apache-2.0 | false | b786634bb555039aa2982e2f4a4ffeac |
from collections.abc import Callable, Mapping\nfrom pprint import pprint as show\nfrom typing import Any, Final, Never, TypeAlias, TypeVar, overload\nfrom typing import Literal as L\n\nfrom _typeshed import FileDescriptorOrPath\n\nfrom .cfuncs import errmess\n\n__all__ = [\n "applyrules",\n "containscommon",\n ... | .venv\Lib\site-packages\numpy\f2py\auxfuncs.pyi | auxfuncs.pyi | Other | 8,275 | 0.95 | 0.386364 | 0.040816 | awesome-app | 686 | 2024-12-11T07:57:30.925237 | MIT | false | a5d728656e3004f4a4d9919d00c1451b |
"""\nCopyright 1999 -- 2011 Pearu Peterson all rights reserved.\nCopyright 2011 -- present NumPy Developers.\nPermission to use, modify, and distribute this software is given under the\nterms of the NumPy License.\n\nNO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.\n"""\nfrom . import __version__\n\nf2py_ver... | .venv\Lib\site-packages\numpy\f2py\capi_maps.py | capi_maps.py | Python | 30,890 | 0.95 | 0.21455 | 0.040951 | node-utils | 587 | 2023-08-18T15:49:09.569685 | GPL-3.0 | false | 01e7f8df0df9b8430b064f64cece7a32 |
from .auxfuncs import _ROut, _Var, process_f2cmap_dict\n\n__all__ = [\n "cb_routsign2map",\n "cb_sign2map",\n "common_sign2map",\n "getarrdims",\n "getarrdocsign",\n "getctype",\n "getinit",\n "getpydocsign",\n "getstrlength",\n "modsign2map",\n "process_f2cmap_dict",\n "routsign2map... | .venv\Lib\site-packages\numpy\f2py\capi_maps.pyi | capi_maps.pyi | Other | 1,099 | 0.95 | 0.393939 | 0.033333 | vue-tools | 479 | 2025-06-20T14:28:46.542231 | Apache-2.0 | false | 12e11a0b403410b2aa262b58b67177ed |
"""\nBuild call-back mechanism for f2py2e.\n\nCopyright 1999 -- 2011 Pearu Peterson all rights reserved.\nCopyright 2011 -- present NumPy Developers.\nPermission to use, modify, and distribute this software is given under the\nterms of the NumPy License.\n\nNO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.\n"... | .venv\Lib\site-packages\numpy\f2py\cb_rules.py | cb_rules.py | Python | 25,716 | 0.95 | 0.145865 | 0.122257 | react-lib | 86 | 2023-08-01T02:06:01.732131 | BSD-3-Clause | false | fe3450460656d1309580e9ad7a8e2528 |
from collections.abc import Mapping\nfrom typing import Any, Final\n\nfrom .__version__ import version\n\n##\n\nf2py_version: Final = version\n\ncb_routine_rules: Final[dict[str, str | list[str]]] = ...\ncb_rout_rules: Final[list[dict[str, str | Any]]] = ...\ncb_arg_rules: Final[list[dict[str, str | Any]]] = ...\n\ncb_... | .venv\Lib\site-packages\numpy\f2py\cb_rules.pyi | cb_rules.pyi | Other | 512 | 0.95 | 0.117647 | 0.090909 | react-lib | 160 | 2023-09-28T10:18:39.722339 | GPL-3.0 | false | f71092ba21c1a59790e88969c8f492a4 |
"""\nC declarations, CPP macros, and C functions for f2py2e.\nOnly required declarations/macros/functions will be used.\n\nCopyright 1999 -- 2011 Pearu Peterson all rights reserved.\nCopyright 2011 -- present NumPy Developers.\nPermission to use, modify, and distribute this software is given under the\nterms of the Num... | .venv\Lib\site-packages\numpy\f2py\cfuncs.py | cfuncs.py | Python | 54,223 | 0.75 | 0.165067 | 0.218814 | python-kit | 580 | 2024-03-20T17:37:18.859872 | GPL-3.0 | false | 7e54650b534bc2ee5deba9d55eac998a |
from typing import Final, TypeAlias\n\nfrom .__version__ import version\n\n###\n\n_NeedListDict: TypeAlias = dict[str, list[str]]\n_NeedDict: TypeAlias = dict[str, str]\n\n###\n\nf2py_version: Final = version\n\noutneeds: Final[_NeedListDict] = ...\nneeds: Final[_NeedListDict] = ...\n\nincludes0: Final[_NeedDict] = ...... | .venv\Lib\site-packages\numpy\f2py\cfuncs.pyi | cfuncs.pyi | Other | 833 | 0.95 | 0.129032 | 0.086957 | node-utils | 591 | 2024-12-15T19:21:16.736627 | Apache-2.0 | false | e8747be4fc66ec50d656810e524f9c1d |
"""\nBuild common block mechanism for f2py2e.\n\nCopyright 1999 -- 2011 Pearu Peterson all rights reserved.\nCopyright 2011 -- present NumPy Developers.\nPermission to use, modify, and distribute this software is given under the\nterms of the NumPy License\n\nNO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.\... | .venv\Lib\site-packages\numpy\f2py\common_rules.py | common_rules.py | Python | 5,173 | 0.85 | 0.230769 | 0 | vue-tools | 288 | 2024-07-24T00:29:42.905406 | MIT | false | 1be081adc27cb63519619afde73e7a08 |
from collections.abc import Mapping\nfrom typing import Any, Final\n\nfrom .__version__ import version\n\nf2py_version: Final = version\n\ndef findcommonblocks(block: Mapping[str, object], top: int = 1) -> list[tuple[str, list[str], dict[str, Any]]]: ...\ndef buildhooks(m: Mapping[str, object]) -> tuple[dict[str, Any],... | .venv\Lib\site-packages\numpy\f2py\common_rules.pyi | common_rules.pyi | Other | 332 | 0.85 | 0.222222 | 0 | vue-tools | 267 | 2023-09-23T21:48:06.689983 | MIT | false | bca7f649d43da0923092c5f31a5df342 |
import re\nfrom collections.abc import Callable, Iterable, Mapping\nfrom typing import IO, Any, Concatenate, Final, Never, ParamSpec, TypeAlias, overload\nfrom typing import Literal as L\n\nfrom _typeshed import StrOrBytesPath, StrPath\n\nfrom .__version__ import version\nfrom .auxfuncs import isintent_dict as isintent... | .venv\Lib\site-packages\numpy\f2py\crackfortran.pyi | crackfortran.pyi | Other | 10,534 | 0.95 | 0.22093 | 0.117117 | python-kit | 756 | 2024-11-23T13:28:16.942524 | Apache-2.0 | false | 2c981b66ed15983dcf09dd6c46b95795 |
#!/usr/bin/env python3\nimport os\nimport sys\nimport tempfile\n\n\ndef run():\n _path = os.getcwd()\n os.chdir(tempfile.gettempdir())\n print('------')\n print(f'os.name={os.name!r}')\n print('------')\n print(f'sys.platform={sys.platform!r}')\n print('------')\n print('sys.version:')\n prin... | .venv\Lib\site-packages\numpy\f2py\diagnose.py | diagnose.py | Python | 5,224 | 0.95 | 0.174497 | 0.007194 | python-kit | 688 | 2023-11-02T22:16:20.288129 | Apache-2.0 | false | bb067549e77270ff8fc4666cb5878c2b |
def run() -> None: ...\n | .venv\Lib\site-packages\numpy\f2py\diagnose.pyi | diagnose.pyi | Other | 24 | 0.65 | 1 | 0 | awesome-app | 566 | 2024-06-16T00:11:26.733850 | BSD-3-Clause | false | c6a9c26f9cf1370e471f0e2274771af1 |
"""\n\nf2py2e - Fortran to Python C/API generator. 2nd Edition.\n See __usage__ below.\n\nCopyright 1999 -- 2011 Pearu Peterson all rights reserved.\nCopyright 2011 -- present NumPy Developers.\nPermission to use, modify, and distribute this software is given under the\nterms of the NumPy License.\n\nNO WARRANT... | .venv\Lib\site-packages\numpy\f2py\f2py2e.py | f2py2e.py | Python | 29,549 | 0.95 | 0.198473 | 0.02026 | node-utils | 847 | 2024-06-02T07:04:54.561100 | BSD-3-Clause | false | b3f89fc903608efa2b3e21d7c4360fed |
import argparse\nimport pprint\nfrom collections.abc import Hashable, Iterable, Mapping, MutableMapping, Sequence\nfrom types import ModuleType\nfrom typing import Any, Final, NotRequired, TypedDict, type_check_only\n\nfrom typing_extensions import TypeVar, override\n\nfrom .__version__ import version\nfrom .auxfuncs i... | .venv\Lib\site-packages\numpy\f2py\f2py2e.pyi | f2py2e.pyi | Other | 2,229 | 0.95 | 0.236842 | 0.096774 | vue-tools | 431 | 2024-02-05T14:25:54.320011 | Apache-2.0 | false | 781e677c8866eafa0e96c8c24fe1bb0d |
"""\nBuild F90 module support for f2py2e.\n\nCopyright 1999 -- 2011 Pearu Peterson all rights reserved.\nCopyright 2011 -- present NumPy Developers.\nPermission to use, modify, and distribute this software is given under the\nterms of the NumPy License.\n\nNO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.\n""... | .venv\Lib\site-packages\numpy\f2py\f90mod_rules.py | f90mod_rules.py | Python | 10,079 | 0.95 | 0.208178 | 0.020576 | vue-tools | 136 | 2024-12-09T22:43:38.072004 | MIT | false | 9749a2c4c4debfdb80092899903c71cc |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.