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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
import subprocess\nfrom pathlib import Path\n\nimport pytest\n\n\n# PyInstaller has been very unproactive about replacing 'imp' with 'importlib'.\n@pytest.mark.filterwarnings('ignore::DeprecationWarning')\n# It also leaks io.BytesIO()s.\n@pytest.mark.filterwarnings('ignore::ResourceWarning')\n@pytest.mark.parametrize("... | .venv\Lib\site-packages\numpy\_pyinstaller\tests\test_pyinstaller.py | test_pyinstaller.py | Python | 1,170 | 0.95 | 0.057143 | 0.107143 | awesome-app | 831 | 2024-11-16T19:45:57.418857 | MIT | true | 87575a08d8cb2b388a398519a3d1311b |
import pytest\n\nfrom numpy.testing import IS_EDITABLE, IS_WASM\n\nif IS_WASM:\n pytest.skip(\n "WASM/Pyodide does not use or support Fortran",\n allow_module_level=True\n )\n\n\nif IS_EDITABLE:\n pytest.skip(\n "Editable install doesn't support tests with a compile step",\n allow_m... | .venv\Lib\site-packages\numpy\_pyinstaller\tests\__init__.py | __init__.py | Python | 345 | 0.85 | 0.125 | 0 | vue-tools | 386 | 2023-09-22T18:29:31.147478 | BSD-3-Clause | true | 00111e98b442351da700056a5765bb06 |
\n\n | .venv\Lib\site-packages\numpy\_pyinstaller\tests\__pycache__\pyinstaller-smoke.cpython-313.pyc | pyinstaller-smoke.cpython-313.pyc | Other | 2,595 | 0.95 | 0 | 0 | react-lib | 25 | 2025-04-04T16:39:22.615248 | MIT | true | f82b21c7a88837a8441fb383f1d4ff18 |
\n\n | .venv\Lib\site-packages\numpy\_pyinstaller\tests\__pycache__\test_pyinstaller.cpython-313.pyc | test_pyinstaller.cpython-313.pyc | Other | 1,963 | 0.85 | 0 | 0 | node-utils | 503 | 2024-02-07T12:57:51.000203 | MIT | true | b2ab150c20cf4b4d446abb76ad732eed |
\n\n | .venv\Lib\site-packages\numpy\_pyinstaller\tests\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 570 | 0.7 | 0 | 0 | node-utils | 157 | 2025-02-25T05:15:43.715540 | GPL-3.0 | true | a2a04b48818995f3595bb556e8d11208 |
\n\n | .venv\Lib\site-packages\numpy\_pyinstaller\__pycache__\hook-numpy.cpython-313.pyc | hook-numpy.cpython-313.pyc | Other | 938 | 0.95 | 0.0625 | 0 | vue-tools | 822 | 2024-04-18T07:09:31.763268 | Apache-2.0 | false | 689803ee7d6227d9cf6de0fe55082541 |
\n\n | .venv\Lib\site-packages\numpy\_pyinstaller\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 193 | 0.7 | 0 | 0 | python-kit | 733 | 2024-11-09T08:15:26.726167 | Apache-2.0 | false | cb4b0755ffbecad53f0a2c35f446b5c8 |
"""A module for creating docstrings for sphinx ``data`` domains."""\n\nimport re\nimport textwrap\n\nfrom ._array_like import NDArray\n\n_docstrings_list = []\n\n\ndef add_newdoc(name: str, value: str, doc: str) -> None:\n """Append ``_docstrings_list`` with a docstring for `name`.\n\n Parameters\n ----------\... | .venv\Lib\site-packages\numpy\_typing\_add_docstring.py | _add_docstring.py | Python | 4,152 | 0.95 | 0.104575 | 0.063063 | node-utils | 472 | 2023-08-30T12:50:26.684598 | BSD-3-Clause | false | 61ce78624deb2a4dd87bd6cdbc464da4 |
import sys\nfrom collections.abc import Callable, Collection, Sequence\nfrom typing import TYPE_CHECKING, Any, Protocol, TypeAlias, TypeVar, runtime_checkable\n\nimport numpy as np\nfrom numpy import dtype\n\nfrom ._nbit_base import _32Bit, _64Bit\nfrom ._nested_sequence import _NestedSequence\nfrom ._shape import _Any... | .venv\Lib\site-packages\numpy\_typing\_array_like.py | _array_like.py | Python | 4,294 | 0.95 | 0.113208 | 0.170455 | node-utils | 292 | 2025-04-23T16:47:49.525873 | GPL-3.0 | false | 42c8d880edfca392e98ca44c3ed6aab4 |
"""\nA module with various ``typing.Protocol`` subclasses that implement\nthe ``__call__`` magic method.\n\nSee the `Mypy documentation`_ on protocols for more details.\n\n.. _`Mypy documentation`: https://mypy.readthedocs.io/en/stable/protocols.html#callback-protocols\n\n"""\n\nfrom typing import (\n Any,\n NoRe... | .venv\Lib\site-packages\numpy\_typing\_callable.pyi | _callable.pyi | Other | 12,133 | 0.95 | 0.338798 | 0.006079 | vue-tools | 861 | 2024-04-14T09:31:04.714498 | Apache-2.0 | false | 8518bef3b2cbdfacebbc3404797fa5ca |
from typing import Literal\n\n_BoolCodes = Literal[\n "bool", "bool_",\n "?", "|?", "=?", "<?", ">?",\n "b1", "|b1", "=b1", "<b1", ">b1",\n] # fmt: skip\n\n_UInt8Codes = Literal["uint8", "u1", "|u1", "=u1", "<u1", ">u1"]\n_UInt16Codes = Literal["uint16", "u2", "|u2", "=u2", "<u2", ">u2"]\n_UInt32Codes = Liter... | .venv\Lib\site-packages\numpy\_typing\_char_codes.py | _char_codes.py | Python | 8,977 | 0.95 | 0.004695 | 0.045685 | vue-tools | 146 | 2025-04-16T01:59:56.272529 | Apache-2.0 | false | eb8529ee9fa55d2b1b1d5adc2e7acf28 |
from collections.abc import Sequence # noqa: F811\nfrom typing import (\n Any,\n Protocol,\n TypeAlias,\n TypedDict,\n TypeVar,\n runtime_checkable,\n)\n\nimport numpy as np\n\nfrom ._char_codes import (\n _BoolCodes,\n _BytesCodes,\n _ComplexFloatingCodes,\n _DT64Codes,\n _FloatingCod... | .venv\Lib\site-packages\numpy\_typing\_dtype_like.py | _dtype_like.py | Python | 3,876 | 0.95 | 0.096491 | 0.290323 | awesome-app | 248 | 2024-02-12T21:24:26.023367 | Apache-2.0 | false | e98d65acd4d0209f82f610cebcacd9ca |
"""A module with platform-specific extended precision\n`numpy.number` subclasses.\n\nThe subclasses are defined here (instead of ``__init__.pyi``) such\nthat they can be imported conditionally via the numpy's mypy plugin.\n"""\n\nimport numpy as np\n\nfrom . import _96Bit, _128Bit\n\nfloat96 = np.floating[_96Bit]\nfloa... | .venv\Lib\site-packages\numpy\_typing\_extended_precision.py | _extended_precision.py | Python | 449 | 0.85 | 0 | 0 | python-kit | 996 | 2024-02-08T10:34:13.060009 | MIT | false | 3dc6045562bb8c3aae085b046985e40a |
"""A module with the precisions of platform-specific `~numpy.number`s."""\n\nfrom typing import TypeAlias\n\nfrom ._nbit_base import _8Bit, _16Bit, _32Bit, _64Bit, _96Bit, _128Bit\n\n# To-be replaced with a `npt.NBitBase` subclass by numpy's mypy plugin\n_NBitByte: TypeAlias = _8Bit\n_NBitShort: TypeAlias = _16Bit\n_NB... | .venv\Lib\site-packages\numpy\_typing\_nbit.py | _nbit.py | Python | 651 | 0.95 | 0 | 0.066667 | python-kit | 339 | 2024-04-23T01:28:29.847327 | BSD-3-Clause | false | a8df6ded6f55748426a7a6f9b5b7069a |
"""A module with the precisions of generic `~numpy.number` types."""\nfrom typing import final\n\nfrom numpy._utils import set_module\n\n\n@final # Disallow the creation of arbitrary `NBitBase` subclasses\n@set_module("numpy.typing")\nclass NBitBase:\n """\n A type representing `numpy.number` precision during st... | .venv\Lib\site-packages\numpy\_typing\_nbit_base.py | _nbit_base.py | Python | 3,152 | 0.95 | 0.180851 | 0.027397 | vue-tools | 273 | 2023-10-20T02:25:24.139753 | GPL-3.0 | false | 2cacbb8196a93c3c72e0d935c6b2ca72 |
# pyright: reportDeprecated=false\n# pyright: reportGeneralTypeIssues=false\n# mypy: disable-error-code=misc\n\nfrom typing import final\n\nfrom typing_extensions import deprecated\n\n# Deprecated in NumPy 2.3, 2025-05-01\n@deprecated(\n "`NBitBase` is deprecated and will be removed from numpy.typing in the "\n "... | .venv\Lib\site-packages\numpy\_typing\_nbit_base.pyi | _nbit_base.pyi | Other | 780 | 0.95 | 0.225 | 0.137931 | python-kit | 20 | 2024-05-22T04:34:05.456497 | Apache-2.0 | false | fdd1b48a2d0d5eed69682ab7fcb8daf6 |
"""A module containing the `_NestedSequence` protocol."""\n\nfrom typing import TYPE_CHECKING, Any, Protocol, TypeVar, runtime_checkable\n\nif TYPE_CHECKING:\n from collections.abc import Iterator\n\n__all__ = ["_NestedSequence"]\n\n_T_co = TypeVar("_T_co", covariant=True)\n\n\n@runtime_checkable\nclass _NestedSeque... | .venv\Lib\site-packages\numpy\_typing\_nested_sequence.py | _nested_sequence.py | Python | 2,584 | 0.95 | 0.177215 | 0.017241 | react-lib | 180 | 2023-11-16T03:55:15.615301 | GPL-3.0 | false | dca8369b94ca548f4c179bd33e33fc27 |
from typing import Any, TypeAlias\n\nimport numpy as np\n\n# NOTE: `_StrLike_co` and `_BytesLike_co` are pointless, as `np.str_` and\n# `np.bytes_` are already subclasses of their builtin counterpart\n_CharLike_co: TypeAlias = str | bytes\n\n# The `<X>Like_co` type-aliases below represent all scalars that can be\n# coe... | .venv\Lib\site-packages\numpy\_typing\_scalars.py | _scalars.py | Python | 964 | 0.95 | 0 | 0.294118 | python-kit | 523 | 2023-12-05T00:13:43.842302 | BSD-3-Clause | false | a5e9e02101b9aa47f3ebbbf20d9f3be1 |
from collections.abc import Sequence\nfrom typing import Any, SupportsIndex, TypeAlias\n\n_Shape: TypeAlias = tuple[int, ...]\n_AnyShape: TypeAlias = tuple[Any, ...]\n\n# Anything that can be coerced to a shape tuple\n_ShapeLike: TypeAlias = SupportsIndex | Sequence[SupportsIndex]\n | .venv\Lib\site-packages\numpy\_typing\_shape.py | _shape.py | Python | 283 | 0.95 | 0 | 0.166667 | python-kit | 452 | 2024-02-06T19:25:17.331373 | MIT | false | 3b7203150d900c30f9202522f3e45058 |
from numpy import ufunc\n\n_UFunc_Nin1_Nout1 = ufunc\n_UFunc_Nin2_Nout1 = ufunc\n_UFunc_Nin1_Nout2 = ufunc\n_UFunc_Nin2_Nout2 = ufunc\n_GUFunc_Nin2_Nout1 = ufunc\n | .venv\Lib\site-packages\numpy\_typing\_ufunc.py | _ufunc.py | Python | 163 | 0.85 | 0 | 0 | node-utils | 640 | 2023-11-03T18:22:39.461977 | BSD-3-Clause | false | 063579f8d9f087e3a7c4a7eec6103241 |
"""A module with private type-check-only `numpy.ufunc` subclasses.\n\nThe signatures of the ufuncs are too varied to reasonably type\nwith a single class. So instead, `ufunc` has been expanded into\nfour private subclasses, one for each combination of\n`~ufunc.nin` and `~ufunc.nout`.\n"""\n\nfrom typing import (\n A... | .venv\Lib\site-packages\numpy\_typing\_ufunc.pyi | _ufunc.pyi | Other | 27,516 | 0.95 | 0.187035 | 0.084555 | node-utils | 734 | 2024-06-26T10:15:26.278946 | Apache-2.0 | false | 0f349f1f5f214a2cd4272dc9a5931939 |
"""Private counterpart of ``numpy.typing``."""\n\nfrom ._array_like import ArrayLike as ArrayLike\nfrom ._array_like import NDArray as NDArray\nfrom ._array_like import _ArrayLike as _ArrayLike\nfrom ._array_like import _ArrayLikeAnyString_co as _ArrayLikeAnyString_co\nfrom ._array_like import _ArrayLikeBool_co as _Arr... | .venv\Lib\site-packages\numpy\_typing\__init__.py | __init__.py | Python | 7,336 | 0.95 | 0 | 0.057554 | awesome-app | 484 | 2023-12-29T11:52:14.578413 | BSD-3-Clause | false | 8b05458456083f31a3c76afcf71d7247 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_add_docstring.cpython-313.pyc | _add_docstring.cpython-313.pyc | Other | 4,781 | 0.95 | 0.077519 | 0.06 | python-kit | 203 | 2024-07-10T02:26:43.777375 | MIT | false | bb3c8dce793e6999a175f3299db2d159 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_array_like.cpython-313.pyc | _array_like.cpython-313.pyc | Other | 5,914 | 0.95 | 0.025974 | 0.013514 | vue-tools | 124 | 2025-05-04T23:05:11.072614 | BSD-3-Clause | false | cba796657c02054f819b21b42353c937 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_char_codes.cpython-313.pyc | _char_codes.cpython-313.pyc | Other | 7,073 | 0.8 | 0 | 0 | react-lib | 867 | 2025-03-11T23:55:56.932516 | GPL-3.0 | false | 22411f9d91fffb9f3c5a5e5be767c899 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_dtype_like.cpython-313.pyc | _dtype_like.cpython-313.pyc | Other | 4,015 | 0.8 | 0 | 0 | react-lib | 875 | 2024-01-28T07:15:26.378220 | BSD-3-Clause | false | 2d7754d872d701f06fce27ca4c821c10 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_extended_precision.cpython-313.pyc | _extended_precision.cpython-313.pyc | Other | 782 | 0.85 | 0 | 0 | vue-tools | 110 | 2023-08-21T03:34:34.667358 | Apache-2.0 | false | ccc642caaef952efbe948fe84b04a7c1 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_nbit.cpython-313.pyc | _nbit.cpython-313.pyc | Other | 964 | 0.8 | 0 | 0 | react-lib | 990 | 2023-10-10T00:14:11.552142 | BSD-3-Clause | false | 1ee383cc3f64c7f6c685618136e020f7 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_nbit_base.cpython-313.pyc | _nbit_base.cpython-313.pyc | Other | 3,926 | 0.95 | 0.101449 | 0 | python-kit | 514 | 2024-02-17T21:57:13.255581 | Apache-2.0 | false | 8f63aaed1089addf6337f9926b58ab5d |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_nested_sequence.cpython-313.pyc | _nested_sequence.cpython-313.pyc | Other | 3,373 | 0.95 | 0.09434 | 0.022727 | node-utils | 607 | 2025-04-30T12:46:11.268514 | BSD-3-Clause | false | 25c47c560ff4d54792b07f8f6e9cecd1 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_scalars.cpython-313.pyc | _scalars.cpython-313.pyc | Other | 1,424 | 0.8 | 0 | 0 | awesome-app | 354 | 2025-07-06T08:37:51.698070 | GPL-3.0 | false | aa3e2029fca6651acaed6fe7376bd236 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_shape.cpython-313.pyc | _shape.cpython-313.pyc | Other | 529 | 0.8 | 0 | 0 | awesome-app | 357 | 2023-10-14T11:57:08.678756 | BSD-3-Clause | false | f0081db4b0ff1e80d466e3703ef17d3f |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\_ufunc.cpython-313.pyc | _ufunc.cpython-313.pyc | Other | 370 | 0.7 | 0 | 0 | vue-tools | 679 | 2024-12-15T22:55:15.733239 | MIT | false | c9a91ca33b59c5818aae9f1098ceffd7 |
\n\n | .venv\Lib\site-packages\numpy\_typing\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 5,111 | 0.8 | 0 | 0 | awesome-app | 881 | 2024-12-01T01:59:42.557623 | Apache-2.0 | false | 438c899c6d3a8a45cccaec50ab61e0d0 |
"""\nA set of methods retained from np.compat module that\nare still used across codebase.\n"""\n\n__all__ = ["asunicode", "asbytes"]\n\n\ndef asunicode(s):\n if isinstance(s, bytes):\n return s.decode('latin1')\n return str(s)\n\n\ndef asbytes(s):\n if isinstance(s, bytes):\n return s\n retur... | .venv\Lib\site-packages\numpy\_utils\_convertions.py | _convertions.py | Python | 347 | 0.85 | 0.222222 | 0 | node-utils | 459 | 2025-05-03T03:28:27.359718 | BSD-3-Clause | false | caabffb8dcb48b4119d613081234202d |
__all__ = ["asbytes", "asunicode"]\n\ndef asunicode(s: bytes | str) -> str: ...\ndef asbytes(s: bytes | str) -> str: ...\n | .venv\Lib\site-packages\numpy\_utils\_convertions.pyi | _convertions.pyi | Other | 122 | 0.85 | 0.5 | 0 | vue-tools | 227 | 2023-12-02T06:11:57.952350 | BSD-3-Clause | false | 75c2b93630c612beb2db94cc2390bc31 |
"""Subset of inspect module from upstream python\n\nWe use this instead of upstream because upstream inspect is slow to import, and\nsignificantly contributes to numpy import times. Importing this copy has almost\nno overhead.\n\n"""\nimport types\n\n__all__ = ['getargspec', 'formatargspec']\n\n# ----------------------... | .venv\Lib\site-packages\numpy\_utils\_inspect.py | _inspect.py | Python | 7,628 | 0.95 | 0.234375 | 0.03871 | python-kit | 926 | 2024-06-20T22:57:58.753347 | GPL-3.0 | false | 2ca14450f94948a43d035e1e2c9b5fec |
import types\nfrom collections.abc import Callable, Mapping\nfrom typing import Any, Final, TypeAlias, TypeVar, overload\n\nfrom _typeshed import SupportsLenAndGetItem\nfrom typing_extensions import TypeIs\n\n__all__ = ["formatargspec", "getargspec"]\n\n###\n\n_T = TypeVar("_T")\n_RT = TypeVar("_RT")\n\n_StrSeq: TypeAl... | .venv\Lib\site-packages\numpy\_utils\_inspect.pyi | _inspect.pyi | Other | 2,326 | 0.95 | 0.15493 | 0.125 | react-lib | 998 | 2024-06-25T10:48:37.986847 | Apache-2.0 | false | 02c064d55111fa81115c30e23273ed68 |
"""Utility to compare pep440 compatible version strings.\n\nThe LooseVersion and StrictVersion classes that distutils provides don't\nwork; they don't recognize anything like alpha/beta/rc/dev versions.\n"""\n\n# Copyright (c) Donald Stufft and individual contributors.\n# All rights reserved.\n\n# Redistribution and us... | .venv\Lib\site-packages\numpy\_utils\_pep440.py | _pep440.py | Python | 14,474 | 0.95 | 0.207819 | 0.201087 | awesome-app | 447 | 2023-09-08T06:49:50.510719 | Apache-2.0 | false | f40609cdfb73028993dc4b01d0a00f67 |
import re\nfrom collections.abc import Callable\nfrom typing import (\n Any,\n ClassVar,\n Final,\n Generic,\n NamedTuple,\n TypeVar,\n final,\n type_check_only,\n)\nfrom typing import (\n Literal as L,\n)\n\nfrom typing_extensions import TypeIs\n\n__all__ = ["VERSION_PATTERN", "InvalidVersio... | .venv\Lib\site-packages\numpy\_utils\_pep440.pyi | _pep440.pyi | Other | 3,991 | 0.95 | 0.363636 | 0.028846 | awesome-app | 73 | 2024-06-26T06:00:18.974023 | MIT | false | c52165cd0a30e31b30a6fb796b4d2210 |
"""\nThis is a module for defining private helpers which do not depend on the\nrest of NumPy.\n\nEverything in here must be self-contained so that it can be\nimported anywhere else without creating circular imports.\nIf a utility requires the import of NumPy, it probably belongs\nin ``numpy._core``.\n"""\n\nimport func... | .venv\Lib\site-packages\numpy\_utils\__init__.py | __init__.py | Python | 3,572 | 0.95 | 0.315789 | 0 | vue-tools | 113 | 2024-10-09T06:41:05.788322 | MIT | false | 3d599c815f1242ff47ec698bbb735203 |
from collections.abc import Callable, Iterable\nfrom typing import Protocol, TypeVar, overload, type_check_only\n\nfrom _typeshed import IdentityFunction\n\nfrom ._convertions import asbytes as asbytes\nfrom ._convertions import asunicode as asunicode\n\n###\n\n_T = TypeVar("_T")\n_HasModuleT = TypeVar("_HasModuleT", b... | .venv\Lib\site-packages\numpy\_utils\__init__.pyi | __init__.pyi | Other | 756 | 0.95 | 0.133333 | 0.136364 | node-utils | 875 | 2024-05-29T12:15:46.559407 | Apache-2.0 | false | a3bc8d78a7155e4d3a1e3ce109cf9583 |
\n\n | .venv\Lib\site-packages\numpy\_utils\__pycache__\_convertions.cpython-313.pyc | _convertions.cpython-313.pyc | Other | 860 | 0.8 | 0 | 0 | node-utils | 79 | 2024-07-01T21:16:06.112809 | MIT | false | 100c204fa2ef340afd24290ce0f47530 |
\n\n | .venv\Lib\site-packages\numpy\_utils\__pycache__\_inspect.cpython-313.pyc | _inspect.cpython-313.pyc | Other | 9,267 | 0.95 | 0.102041 | 0 | node-utils | 518 | 2025-02-28T20:20:25.117029 | Apache-2.0 | false | 8ac9b8fcaba1ffdafb335a230ca17357 |
\n\n | .venv\Lib\site-packages\numpy\_utils\__pycache__\_pep440.cpython-313.pyc | _pep440.cpython-313.pyc | Other | 19,100 | 0.8 | 0.017964 | 0.00625 | awesome-app | 396 | 2024-10-03T10:11:48.336081 | GPL-3.0 | false | d8674044c82afa8cab11dd31c1bd8b18 |
\n\n | .venv\Lib\site-packages\numpy\_utils\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 4,086 | 0.95 | 0.269841 | 0 | awesome-app | 79 | 2023-10-05T22:44:41.904086 | GPL-3.0 | false | 08f66b7f07af2c115365d0f9213b10c4 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\conftest.cpython-313.pyc | conftest.cpython-313.pyc | Other | 10,467 | 0.95 | 0.052632 | 0 | awesome-app | 226 | 2023-09-08T19:56:49.813691 | Apache-2.0 | true | 6cb51b6396b7291bc955e152e5220431 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\dtypes.cpython-313.pyc | dtypes.cpython-313.pyc | Other | 1,540 | 0.85 | 0 | 0 | awesome-app | 38 | 2024-04-20T17:06:47.878365 | BSD-3-Clause | false | 6f9579ed332abe07d91a356339946e1a |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\exceptions.cpython-313.pyc | exceptions.cpython-313.pyc | Other | 8,466 | 0.95 | 0.108247 | 0 | python-kit | 269 | 2023-12-02T11:16:03.636471 | BSD-3-Clause | false | 509f00ed6aa97e59abcb898ec65ce2f7 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\matlib.cpython-313.pyc | matlib.cpython-313.pyc | Other | 10,912 | 0.95 | 0.026866 | 0 | node-utils | 881 | 2023-10-12T03:07:15.819876 | Apache-2.0 | false | e0cb1c8eba6311a52806b3a0433b6ede |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\version.cpython-313.pyc | version.cpython-313.pyc | Other | 561 | 0.8 | 0.083333 | 0 | awesome-app | 600 | 2025-05-11T04:20:24.590666 | BSD-3-Clause | false | b648e008dc814908e69c87828cc9eff4 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\_array_api_info.cpython-313.pyc | _array_api_info.cpython-313.pyc | Other | 9,970 | 0.95 | 0.065385 | 0 | awesome-app | 758 | 2024-08-21T16:09:33.951742 | Apache-2.0 | false | 82a5230c078eb767941a033977d256c9 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\_configtool.cpython-313.pyc | _configtool.cpython-313.pyc | Other | 1,687 | 0.8 | 0.047619 | 0.05 | vue-tools | 983 | 2024-09-17T21:17:51.752037 | BSD-3-Clause | false | acb3f9f8cbfa6545895e34891b46230f |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\_distributor_init.cpython-313.pyc | _distributor_init.cpython-313.pyc | Other | 659 | 0.7 | 0 | 0 | vue-tools | 783 | 2024-06-09T19:52:04.520825 | Apache-2.0 | false | 4df32ed0dc8f7b378f42e4840ea17723 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\_expired_attrs_2_0.cpython-313.pyc | _expired_attrs_2_0.cpython-313.pyc | Other | 4,294 | 0.95 | 0.129032 | 0 | react-lib | 933 | 2025-05-28T13:27:36.967590 | BSD-3-Clause | false | faa32e28bc90e1ace084d404f859b65f |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\_globals.cpython-313.pyc | _globals.cpython-313.pyc | Other | 3,904 | 0.95 | 0.220588 | 0.017544 | react-lib | 213 | 2025-05-26T08:44:37.536066 | GPL-3.0 | false | 9888308e317672c61f208a8ad2dd1df0 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\_pytesttester.cpython-313.pyc | _pytesttester.cpython-313.pyc | Other | 6,464 | 0.95 | 0.082192 | 0.016 | awesome-app | 976 | 2025-04-21T15:14:08.876279 | GPL-3.0 | true | 66c53f5f79ab95743a4712c0e0f9f741 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\__config__.cpython-313.pyc | __config__.cpython-313.pyc | Other | 5,310 | 0.8 | 0.028986 | 0 | node-utils | 366 | 2024-01-24T16:40:32.442539 | Apache-2.0 | false | bd6d7e265cb7abdc5ff31287173067d0 |
\n\n | .venv\Lib\site-packages\numpy\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 28,080 | 0.95 | 0.066667 | 0 | awesome-app | 793 | 2023-08-22T03:42:53.988780 | Apache-2.0 | false | 9ac7d21377b1124d706870d2080f2e71 |
Version: 1.10.1\nArguments: ['C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-9tmma_o0\\cp313-win_amd64\\build\\venv\\Scripts\\delvewheel', 'repair', '--add-path', 'D:/a/numpy/numpy/.openblas/lib', '-w', 'C:\\Users\\runneradmin\\AppData\\Local\\Temp\\cibw-run-9tmma_o0\\cp313-win_amd64\\repaired_wheel', 'C:\\User... | .venv\Lib\site-packages\numpy-2.3.1.dist-info\DELVEWHEEL | DELVEWHEEL | Other | 446 | 0.7 | 0 | 0 | node-utils | 17 | 2023-11-16T06:12:51.931308 | MIT | false | 9f29c052236b8993d2eadac92748b7a2 |
[pkg_config]\nnumpy = numpy._core.lib.pkgconfig\n\n[array_api]\nnumpy = numpy\n\n[pyinstaller40]\nhook-dirs = numpy:_pyinstaller_hooks_dir\n\n[console_scripts]\nf2py = numpy.f2py.f2py2e:main\nnumpy-config = numpy._configtool:main\n\n | .venv\Lib\site-packages\numpy-2.3.1.dist-info\entry_points.txt | entry_points.txt | Other | 220 | 0.7 | 0 | 0 | vue-tools | 513 | 2024-03-15T00:04:58.253809 | GPL-3.0 | false | 6f858322c9bc0659f250a01c58792b67 |
pip\n | .venv\Lib\site-packages\numpy-2.3.1.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | python-kit | 592 | 2023-08-17T18:08:03.525521 | BSD-3-Clause | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
Copyright (c) 2005-2025, NumPy Developers.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of condit... | .venv\Lib\site-packages\numpy-2.3.1.dist-info\LICENSE.txt | LICENSE.txt | Other | 47,722 | 0.95 | 0.116842 | 0.003916 | python-kit | 439 | 2024-06-15T08:02:44.973332 | Apache-2.0 | false | f32d19840e1856e798229fd7ef142928 |
Metadata-Version: 2.1\nName: numpy\nVersion: 2.3.1\nSummary: Fundamental package for array computing in Python\nAuthor: Travis E. Oliphant et al.\nMaintainer-Email: NumPy Developers <numpy-discussion@python.org>\nLicense: Copyright (c) 2005-2025, NumPy Developers.\n All rights reserved.\n \n Red... | .venv\Lib\site-packages\numpy-2.3.1.dist-info\METADATA | METADATA | Other | 60,884 | 0.75 | 0.111111 | 0.003468 | awesome-app | 653 | 2025-01-25T10:26:38.953425 | Apache-2.0 | false | 30f7207de483c9d37f62dca86303a646 |
Wheel-Version: 1.0\nGenerator: meson\nRoot-Is-Purelib: false\nTag: cp313-cp313-win_amd64 | .venv\Lib\site-packages\numpy-2.3.1.dist-info\WHEEL | WHEEL | Other | 85 | 0.5 | 0 | 0 | node-utils | 812 | 2024-06-26T07:59:43.043876 | GPL-3.0 | false | 51337c97620c3b1e0d781ad8efe86cea |
from abc import ABCMeta\n\n\nclass EnforceOverridesMeta(ABCMeta):\n def __new__(mcls, name, bases, namespace, **kwargs):\n # Ignore any methods defined on the metaclass when enforcing overrides.\n for method in dir(mcls):\n if not method.startswith("__") and method != "mro":\n ... | .venv\Lib\site-packages\overrides\enforce.py | enforce.py | Python | 2,349 | 0.95 | 0.327586 | 0.04 | node-utils | 986 | 2024-10-21T17:08:26.892769 | BSD-3-Clause | false | a29117c7bfdec804e5d411b7d09225e6 |
#\n# Copyright 2016 Keunhong Lee\n#\n# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agre... | .venv\Lib\site-packages\overrides\final.py | final.py | Python | 1,511 | 0.95 | 0.222222 | 0.394737 | python-kit | 322 | 2024-09-12T10:07:13.873806 | GPL-3.0 | false | 7c4ebebd2ef84089b8d2104a39df7537 |
#\n# Copyright 2019 Mikko Korpela\n#\n# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agr... | .venv\Lib\site-packages\overrides\overrides.py | overrides.py | Python | 7,505 | 0.95 | 0.225806 | 0.112195 | vue-tools | 719 | 2024-06-10T04:48:21.032779 | Apache-2.0 | false | dd30f38536df98dc218255b4ce77e916 |
import inspect\nfrom inspect import Parameter\nfrom types import FunctionType\nfrom typing import Callable, Dict, Optional, Tuple, Type, TypeVar, Union, get_type_hints\n\nfrom .typing_utils import get_args, issubtype\n\n_WrappedMethod = TypeVar("_WrappedMethod", bound=Union[FunctionType, Callable])\n_WrappedMethod2 = T... | .venv\Lib\site-packages\overrides\signature.py | signature.py | Python | 11,785 | 0.95 | 0.186885 | 0.018657 | awesome-app | 727 | 2023-10-12T09:34:36.342424 | Apache-2.0 | false | 8645cddcecd96521d5f5a38e3acdf50b |
"""\nBackport Python3.8+ typing utils & issubtype & more\n\n\n\n:\n from overrides.final import final\nelse:\n from typing import final\nfrom overrides.overrides import __VERSION__, overrides, override\n\n\n__all__ = [\n "__VERSION__",\n "override",\n "overrides",\n "final",... | .venv\Lib\site-packages\overrides\__init__.py | __init__.py | Python | 333 | 0.85 | 0.058824 | 0 | react-lib | 714 | 2024-04-30T18:30:16.459112 | BSD-3-Clause | false | ac350d727609bee5e6063b520137dee8 |
\n\n | .venv\Lib\site-packages\overrides\__pycache__\enforce.cpython-313.pyc | enforce.cpython-313.pyc | Other | 3,544 | 0.95 | 0.111111 | 0 | react-lib | 750 | 2024-06-26T08:46:17.122753 | MIT | false | b1fa5eeaf6a07dc2b78ce3d3799bde5a |
\n\n | .venv\Lib\site-packages\overrides\__pycache__\final.cpython-313.pyc | final.cpython-313.pyc | Other | 1,171 | 0.95 | 0.363636 | 0 | node-utils | 702 | 2023-11-02T11:13:41.831206 | BSD-3-Clause | false | 211f7e20abd97f8c6090209ce55f3893 |
\n\n | .venv\Lib\site-packages\overrides\__pycache__\overrides.cpython-313.pyc | overrides.cpython-313.pyc | Other | 7,991 | 0.95 | 0.166667 | 0 | python-kit | 687 | 2024-01-26T22:21:51.166491 | MIT | false | dd6065caf646fb9c8ce4ec53ea4b01c5 |
\n\n | .venv\Lib\site-packages\overrides\__pycache__\signature.cpython-313.pyc | signature.cpython-313.pyc | Other | 15,088 | 0.95 | 0.021127 | 0.023256 | node-utils | 518 | 2024-12-17T12:50:13.304790 | BSD-3-Clause | false | f06b1cc52a21d0f31bb47ca176b87c1a |
\n\n | .venv\Lib\site-packages\overrides\__pycache__\typing_utils.cpython-313.pyc | typing_utils.cpython-313.pyc | Other | 20,771 | 0.95 | 0.011765 | 0.012876 | node-utils | 752 | 2024-11-06T17:19:57.347213 | Apache-2.0 | false | 0872e1e1c359c3de84bd0adcaf42ade5 |
\n\n | .venv\Lib\site-packages\overrides\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 553 | 0.7 | 0 | 0 | python-kit | 3 | 2023-10-15T10:30:40.233755 | MIT | false | f7582eb2651d37e7770d08412f0ab950 |
pip\n | .venv\Lib\site-packages\overrides-7.7.0.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | node-utils | 956 | 2024-02-28T05:31:45.380361 | BSD-3-Clause | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n "License" shall mean the terms and conditions for use, reproduc... | .venv\Lib\site-packages\overrides-7.7.0.dist-info\LICENSE | LICENSE | Other | 11,358 | 0.95 | 0.118812 | 0 | vue-tools | 85 | 2024-09-02T09:44:39.066622 | Apache-2.0 | false | fa818a259cbed7ce8bc2a22d35a464fc |
Metadata-Version: 2.1\nName: overrides\nVersion: 7.7.0\nSummary: A decorator to automatically detect mismatch when overriding a method.\nHome-page: https://github.com/mkorpela/overrides\nAuthor: Mikko Korpela\nAuthor-email: mikko.korpela@gmail.com\nLicense: Apache License, Version 2.0\nKeywords: override,inheritence,OO... | .venv\Lib\site-packages\overrides-7.7.0.dist-info\METADATA | METADATA | Other | 5,756 | 0.95 | 0.172973 | 0.016 | python-kit | 488 | 2023-10-31T21:30:41.856364 | GPL-3.0 | false | a97bb57b6a096e827d5db0d21d9fb276 |
overrides-7.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\noverrides-7.7.0.dist-info/LICENSE,sha256=xllut76FgcGL5zbIRvuRc7aezPbvlMUTWJPsVr2Sugg,11358\noverrides-7.7.0.dist-info/METADATA,sha256=YdaLvNew0ovZ-LgYzW8fzE5DfdbFSuYDrU2z-YbCgkU,5756\noverrides-7.7.0.dist-info/RECORD,,\noverrides-... | .venv\Lib\site-packages\overrides-7.7.0.dist-info\RECORD | RECORD | Other | 1,344 | 0.7 | 0 | 0 | react-lib | 976 | 2024-07-29T07:37:14.030033 | MIT | false | 9c6694aa1d6b9fa7c1bf9b570245dabd |
overrides\n | .venv\Lib\site-packages\overrides-7.7.0.dist-info\top_level.txt | top_level.txt | Other | 10 | 0.5 | 0 | 0 | python-kit | 546 | 2024-01-22T14:21:24.217806 | BSD-3-Clause | false | 45da8d03b558d27851b80e9a5d20bee5 |
Wheel-Version: 1.0\nGenerator: bdist_wheel (0.42.0)\nRoot-Is-Purelib: true\nTag: py3-none-any\n\n | .venv\Lib\site-packages\overrides-7.7.0.dist-info\WHEEL | WHEEL | Other | 92 | 0.5 | 0 | 0 | python-kit | 234 | 2023-12-08T22:29:59.545197 | BSD-3-Clause | false | a227bf38fb17005b3bdb56ccc428b1bb |
# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n\nfrom __future__ import annotations\n\nimport operator\nimport os\nimport platform\nimport sys\nfrom typing import AbstractSet, Any, Cal... | .venv\Lib\site-packages\packaging\markers.py | markers.py | Python | 12,049 | 0.95 | 0.165746 | 0.111864 | awesome-app | 303 | 2023-09-16T20:38:29.576269 | BSD-3-Clause | false | 1be7f129d91388653f23a0fc7414bbfe |
from __future__ import annotations\n\nimport email.feedparser\nimport email.header\nimport email.message\nimport email.parser\nimport email.policy\nimport pathlib\nimport sys\nimport typing\nfrom typing import (\n Any,\n Callable,\n Generic,\n Literal,\n TypedDict,\n cast,\n)\n\nfrom . import licenses... | .venv\Lib\site-packages\packaging\metadata.py | metadata.py | Python | 34,739 | 0.95 | 0.162413 | 0.22325 | awesome-app | 897 | 2024-05-08T12:07:36.702137 | GPL-3.0 | false | 7cfeeeeb4a2be7848c92ae82b5c9f6a1 |
# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\nfrom __future__ import annotations\n\nfrom typing import Any, Iterator\n\nfrom ._parser import parse_requirement as _parse_requirement\nf... | .venv\Lib\site-packages\packaging\requirements.py | requirements.py | Python | 2,947 | 0.95 | 0.186813 | 0.112676 | python-kit | 765 | 2024-03-17T05:41:04.065873 | GPL-3.0 | false | 2fc711cf5b4a1a8ac92aab0bd4e13284 |
# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n"""\n.. testsetup::\n\n from packaging.specifiers import Specifier, SpecifierSet, InvalidSpecifier\n from packaging.version import ... | .venv\Lib\site-packages\packaging\specifiers.py | specifiers.py | Python | 40,055 | 0.95 | 0.175662 | 0.182898 | react-lib | 978 | 2023-09-20T11:00:21.265851 | GPL-3.0 | false | 5e70fd47551983ebba03505f168e3b12 |
# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n\nfrom __future__ import annotations\n\nimport logging\nimport platform\nimport re\nimport struct\nimport subprocess\nimport sys\nimport ... | .venv\Lib\site-packages\packaging\tags.py | tags.py | Python | 22,745 | 0.95 | 0.217988 | 0.119266 | node-utils | 601 | 2025-03-01T23:02:10.762609 | BSD-3-Clause | false | 343d067796e4b905805026a1740edf57 |
# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n\nfrom __future__ import annotations\n\nimport functools\nimport re\nfrom typing import NewType, Tuple, Union, cast\n\nfrom .tags import ... | .venv\Lib\site-packages\packaging\utils.py | utils.py | Python | 5,050 | 0.95 | 0.147239 | 0.079365 | python-kit | 142 | 2024-08-10T19:23:33.505245 | BSD-3-Clause | false | f6d73a168977560761887d65c7e9ed18 |
# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n"""\n.. testsetup::\n\n from packaging.version import parse, Version\n"""\n\nfrom __future__ import annotations\n\nimport itertools\ni... | .venv\Lib\site-packages\packaging\version.py | version.py | Python | 16,676 | 0.95 | 0.152921 | 0.102564 | vue-tools | 812 | 2023-07-15T08:24:19.101312 | GPL-3.0 | false | fa56706c3c4b493a029a0069d9601e0e |
"""\nELF file parser.\n\nThis provides a class ``ELFFile`` that parses an ELF executable in a similar\ninterface to ``ZipFile``. Only the read interface is implemented.\n\nBased on: https://gist.github.com/lyssdod/f51579ae8d93c8657a5564aefc2ffbca\nELF header: https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.... | .venv\Lib\site-packages\packaging\_elffile.py | _elffile.py | Python | 3,286 | 0.95 | 0.174312 | 0.034091 | node-utils | 343 | 2024-03-24T23:07:05.431809 | MIT | false | e83ac3c80a6482b83578c3ef6cfed4b9 |
from __future__ import annotations\n\nimport collections\nimport contextlib\nimport functools\nimport os\nimport re\nimport sys\nimport warnings\nfrom typing import Generator, Iterator, NamedTuple, Sequence\n\nfrom ._elffile import EIClass, EIData, ELFFile, EMachine\n\nEF_ARM_ABIMASK = 0xFF000000\nEF_ARM_ABI_VER5 = 0x0... | .venv\Lib\site-packages\packaging\_manylinux.py | _manylinux.py | Python | 9,596 | 0.95 | 0.19084 | 0.214286 | awesome-app | 550 | 2024-09-13T02:08:04.696909 | MIT | false | 46426bd482848dbd15d36e0807583368 |
"""PEP 656 support.\n\nThis module implements logic to detect if the currently running Python is\nlinked against musl, and what musl version is used.\n"""\n\nfrom __future__ import annotations\n\nimport functools\nimport re\nimport subprocess\nimport sys\nfrom typing import Iterator, NamedTuple, Sequence\n\nfrom ._elff... | .venv\Lib\site-packages\packaging\_musllinux.py | _musllinux.py | Python | 2,694 | 0.95 | 0.223529 | 0 | python-kit | 114 | 2024-07-31T08:33:11.193661 | GPL-3.0 | false | d0d487bb6b89df7d122f768d8f1f2f2d |
"""Handwritten parser of dependency specifiers.\n\nThe docstring for each __parse_* function contains EBNF-inspired grammar representing\nthe implementation.\n"""\n\nfrom __future__ import annotations\n\nimport ast\nfrom typing import NamedTuple, Sequence, Tuple, Union\n\nfrom ._tokenizer import DEFAULT_RULES, Tokenize... | .venv\Lib\site-packages\packaging\_parser.py | _parser.py | Python | 10,221 | 0.95 | 0.147309 | 0.025641 | react-lib | 771 | 2024-04-29T14:06:05.379949 | GPL-3.0 | false | b8877d075d76fdd0aee2efa2001819a7 |
# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n\n\nclass InfinityType:\n def __repr__(self) -> str:\n return "Infinity"\n\n def __hash__(self) -> int:\n return hash... | .venv\Lib\site-packages\packaging\_structures.py | _structures.py | Python | 1,431 | 0.95 | 0.311475 | 0.076923 | python-kit | 644 | 2024-12-17T19:10:07.349910 | GPL-3.0 | false | de664fedc083927d3d084f416190d876 |
from __future__ import annotations\n\nimport contextlib\nimport re\nfrom dataclasses import dataclass\nfrom typing import Iterator, NoReturn\n\nfrom .specifiers import Specifier\n\n\n@dataclass\nclass Token:\n name: str\n text: str\n position: int\n\n\nclass ParserSyntaxError(Exception):\n """The provided s... | .venv\Lib\site-packages\packaging\_tokenizer.py | _tokenizer.py | Python | 5,310 | 0.85 | 0.133333 | 0.018293 | vue-tools | 952 | 2024-09-20T17:14:45.331927 | MIT | false | 58bff3ae79b26a93d63f3a9429d70860 |
# This file is dual licensed under the terms of the Apache License, Version\n# 2.0, and the BSD License. See the LICENSE file in the root of this repository\n# for complete details.\n\n__title__ = "packaging"\n__summary__ = "Core utilities for Python packages"\n__uri__ = "https://github.com/pypa/packaging"\n\n__version... | .venv\Lib\site-packages\packaging\__init__.py | __init__.py | Python | 494 | 0.8 | 0.133333 | 0.272727 | vue-tools | 81 | 2024-12-25T12:33:48.399164 | Apache-2.0 | false | bb0d0797c99f155fda872b2ee324d93d |
\nfrom __future__ import annotations\n\nfrom typing import TypedDict\n\nclass SPDXLicense(TypedDict):\n id: str\n deprecated: bool\n\nclass SPDXException(TypedDict):\n id: str\n deprecated: bool\n\n\nVERSION = '3.25.0'\n\nLICENSES: dict[str, SPDXLicense] = {\n '0bsd': {'id': '0BSD', 'deprecated': False},... | .venv\Lib\site-packages\packaging\licenses\_spdx.py | _spdx.py | Python | 48,398 | 0.85 | 0.002635 | 0 | vue-tools | 680 | 2025-05-09T13:49:56.303614 | BSD-3-Clause | false | 313a72cf4425cf31a445d4745d659eb3 |
#######################################################################################\n#\n# Adapted from:\n# https://github.com/pypa/hatch/blob/5352e44/backend/src/hatchling/licenses/parse.py\n#\n# MIT License\n#\n# Copyright (c) 2017-present Ofek Lev <oss@ofek.dev>\n#\n# Permission is hereby granted, free of charge... | .venv\Lib\site-packages\packaging\licenses\__init__.py | __init__.py | Python | 5,715 | 0.95 | 0.124138 | 0.317073 | python-kit | 700 | 2025-06-10T23:46:10.271687 | Apache-2.0 | false | 846baef42775413a7e03df50cec988e7 |
\n\n | .venv\Lib\site-packages\packaging\licenses\__pycache__\_spdx.cpython-313.pyc | _spdx.cpython-313.pyc | Other | 47,431 | 0.8 | 0 | 0 | awesome-app | 314 | 2024-11-13T21:45:41.582772 | BSD-3-Clause | false | 0ab3dadc622d4b69fa67ded876af0f55 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.