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
#cython: language_level=3\n\n"""\nFunctions in this module give python-space wrappers for cython functions\nexposed in numpy/__init__.pxd, so they can be tested in test_cython.py\n"""\ncimport numpy as cnp\ncnp.import_array()\n\n\ndef is_td64(obj):\n return cnp.is_timedelta64_object(obj)\n\n\ndef is_dt64(obj):\n return cnp.is_datetime64_object(obj)\n\n\ndef get_dt64_value(obj):\n return cnp.get_datetime64_value(obj)\n\n\ndef get_td64_value(obj):\n return cnp.get_timedelta64_value(obj)\n\n\ndef get_dt64_unit(obj):\n return cnp.get_datetime64_unit(obj)\n\n\ndef is_integer(obj):\n return isinstance(obj, (cnp.integer, int))\n\n\ndef get_datetime_iso_8601_strlen():\n return cnp.get_datetime_iso_8601_strlen(0, cnp.NPY_FR_ns)\n\n\ndef convert_datetime64_to_datetimestruct():\n cdef:\n cnp.npy_datetimestruct dts\n cnp.PyArray_DatetimeMetaData meta\n cnp.int64_t value = 1647374515260292\n # i.e. (time.time() * 10**6) at 2022-03-15 20:01:55.260292 UTC\n\n meta.base = cnp.NPY_FR_us\n meta.num = 1\n cnp.convert_datetime64_to_datetimestruct(&meta, value, &dts)\n return dts\n\n\ndef make_iso_8601_datetime(dt: "datetime"):\n cdef:\n cnp.npy_datetimestruct dts\n char result[36] # 36 corresponds to NPY_FR_s passed below\n int local = 0\n int utc = 0\n int tzoffset = 0\n\n dts.year = dt.year\n dts.month = dt.month\n dts.day = dt.day\n dts.hour = dt.hour\n dts.min = dt.minute\n dts.sec = dt.second\n dts.us = dt.microsecond\n dts.ps = dts.as = 0\n\n cnp.make_iso_8601_datetime(\n &dts,\n result,\n sizeof(result),\n local,\n utc,\n cnp.NPY_FR_s,\n tzoffset,\n cnp.NPY_NO_CASTING,\n )\n return result\n\n\ncdef cnp.broadcast multiiter_from_broadcast_obj(object bcast):\n cdef dict iter_map = {\n 1: cnp.PyArray_MultiIterNew1,\n 2: cnp.PyArray_MultiIterNew2,\n 3: cnp.PyArray_MultiIterNew3,\n 4: cnp.PyArray_MultiIterNew4,\n 5: cnp.PyArray_MultiIterNew5,\n }\n arrays = [x.base for x in bcast.iters]\n cdef cnp.broadcast result = iter_map[len(arrays)](*arrays)\n return result\n\n\ndef get_multiiter_size(bcast: "broadcast"):\n cdef cnp.broadcast multi = multiiter_from_broadcast_obj(bcast)\n return multi.size\n\n\ndef get_multiiter_number_of_dims(bcast: "broadcast"):\n cdef cnp.broadcast multi = multiiter_from_broadcast_obj(bcast)\n return multi.nd\n\n\ndef get_multiiter_current_index(bcast: "broadcast"):\n cdef cnp.broadcast multi = multiiter_from_broadcast_obj(bcast)\n return multi.index\n\n\ndef get_multiiter_num_of_iterators(bcast: "broadcast"):\n cdef cnp.broadcast multi = multiiter_from_broadcast_obj(bcast)\n return multi.numiter\n\n\ndef get_multiiter_shape(bcast: "broadcast"):\n cdef cnp.broadcast multi = multiiter_from_broadcast_obj(bcast)\n return tuple([multi.dimensions[i] for i in range(bcast.nd)])\n\n\ndef get_multiiter_iters(bcast: "broadcast"):\n cdef cnp.broadcast multi = multiiter_from_broadcast_obj(bcast)\n return tuple([<cnp.flatiter>multi.iters[i] for i in range(bcast.numiter)])\n\n\ndef get_default_integer():\n if cnp.NPY_DEFAULT_INT == cnp.NPY_LONG:\n return cnp.dtype("long")\n if cnp.NPY_DEFAULT_INT == cnp.NPY_INTP:\n return cnp.dtype("intp")\n return None\n\ndef get_ravel_axis():\n return cnp.NPY_RAVEL_AXIS\n\n\ndef conv_intp(cnp.intp_t val):\n return val\n\n\ndef get_dtype_flags(cnp.dtype dtype):\n return dtype.flags\n\n\ncdef cnp.NpyIter* npyiter_from_nditer_obj(object it):\n """A function to create a NpyIter struct from a nditer object.\n\n This function is only meant for testing purposes and only extracts the\n necessary info from nditer to test the functionality of NpyIter methods\n """\n cdef:\n cnp.NpyIter* cit\n cnp.PyArray_Descr* op_dtypes[3]\n cnp.npy_uint32 op_flags[3]\n cnp.PyArrayObject* ops[3]\n cnp.npy_uint32 flags = 0\n\n if it.has_index:\n flags |= cnp.NPY_ITER_C_INDEX\n if it.has_delayed_bufalloc:\n flags |= cnp.NPY_ITER_BUFFERED | cnp.NPY_ITER_DELAY_BUFALLOC\n if it.has_multi_index:\n flags |= cnp.NPY_ITER_MULTI_INDEX\n\n # one of READWRITE, READONLY and WRTIEONLY at the minimum must be specified for op_flags\n for i in range(it.nop):\n op_flags[i] = cnp.NPY_ITER_READONLY\n\n for i in range(it.nop):\n op_dtypes[i] = cnp.PyArray_DESCR(it.operands[i])\n ops[i] = <cnp.PyArrayObject*>it.operands[i]\n\n cit = cnp.NpyIter_MultiNew(it.nop, &ops[0], flags, cnp.NPY_KEEPORDER,\n cnp.NPY_NO_CASTING, &op_flags[0],\n <cnp.PyArray_Descr**>NULL)\n return cit\n\n\ndef get_npyiter_size(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n result = cnp.NpyIter_GetIterSize(cit)\n cnp.NpyIter_Deallocate(cit)\n return result\n\n\ndef get_npyiter_ndim(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n result = cnp.NpyIter_GetNDim(cit)\n cnp.NpyIter_Deallocate(cit)\n return result\n\n\ndef get_npyiter_nop(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n result = cnp.NpyIter_GetNOp(cit)\n cnp.NpyIter_Deallocate(cit)\n return result\n\n\ndef get_npyiter_operands(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n try:\n arr = cnp.NpyIter_GetOperandArray(cit)\n return tuple([<cnp.ndarray>arr[i] for i in range(it.nop)])\n finally:\n cnp.NpyIter_Deallocate(cit)\n\n\ndef get_npyiter_itviews(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n result = tuple([cnp.NpyIter_GetIterView(cit, i) for i in range(it.nop)])\n cnp.NpyIter_Deallocate(cit)\n return result\n\n\ndef get_npyiter_dtypes(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n try:\n arr = cnp.NpyIter_GetDescrArray(cit)\n return tuple([<cnp.dtype>arr[i] for i in range(it.nop)])\n finally:\n cnp.NpyIter_Deallocate(cit)\n\n\ndef npyiter_has_delayed_bufalloc(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n result = cnp.NpyIter_HasDelayedBufAlloc(cit)\n cnp.NpyIter_Deallocate(cit)\n return result\n\n\ndef npyiter_has_index(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n result = cnp.NpyIter_HasIndex(cit)\n cnp.NpyIter_Deallocate(cit)\n return result\n\n\ndef npyiter_has_multi_index(it: "nditer"):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n result = cnp.NpyIter_HasMultiIndex(cit)\n cnp.NpyIter_Deallocate(cit)\n return result\n\n\ndef test_get_multi_index_iter_next(it: "nditer", cnp.ndarray[cnp.float64_t, ndim=2] arr):\n cdef cnp.NpyIter* cit = npyiter_from_nditer_obj(it)\n cdef cnp.NpyIter_GetMultiIndexFunc get_multi_index = \\n cnp.NpyIter_GetGetMultiIndex(cit, NULL)\n cdef cnp.NpyIter_IterNextFunc iternext = \\n cnp.NpyIter_GetIterNext(cit, NULL)\n return 1\n\n\ndef npyiter_has_finished(it: "nditer"):\n cdef cnp.NpyIter* cit\n try:\n cit = npyiter_from_nditer_obj(it)\n cnp.NpyIter_GotoIterIndex(cit, it.index)\n return not (cnp.NpyIter_GetIterIndex(cit) < cnp.NpyIter_GetIterSize(cit))\n finally:\n cnp.NpyIter_Deallocate(cit)\n\ndef compile_fillwithbyte():\n # Regression test for gh-25878, mostly checks it compiles.\n cdef cnp.npy_intp dims[2]\n dims = (1, 2)\n pos = cnp.PyArray_ZEROS(2, dims, cnp.NPY_UINT8, 0)\n cnp.PyArray_FILLWBYTE(pos, 1)\n return pos\n\ndef inc2_cfloat_struct(cnp.ndarray[cnp.cfloat_t] arr):\n # This works since we compile in C mode, it will fail in cpp mode\n arr[1].real += 1\n arr[1].imag += 1\n # This works in both modes\n arr[1].real = arr[1].real + 1\n arr[1].imag = arr[1].imag + 1\n\n\ndef npystring_pack(arr):\n cdef char *string = "Hello world"\n cdef size_t size = 11\n\n allocator = cnp.NpyString_acquire_allocator(\n <cnp.PyArray_StringDTypeObject *>cnp.PyArray_DESCR(arr)\n )\n\n # copy string->packed_string, the pointer to the underlying array buffer\n ret = cnp.NpyString_pack(\n allocator, <cnp.npy_packed_static_string *>cnp.PyArray_DATA(arr), string, size,\n )\n\n cnp.NpyString_release_allocator(allocator)\n return ret\n\n\ndef npystring_load(arr):\n allocator = cnp.NpyString_acquire_allocator(\n <cnp.PyArray_StringDTypeObject *>cnp.PyArray_DESCR(arr)\n )\n\n cdef cnp.npy_static_string sdata\n sdata.size = 0\n sdata.buf = NULL\n\n cdef cnp.npy_packed_static_string *packed_string = <cnp.npy_packed_static_string *>cnp.PyArray_DATA(arr)\n cdef int is_null = cnp.NpyString_load(allocator, packed_string, &sdata)\n cnp.NpyString_release_allocator(allocator)\n if is_null == -1:\n raise ValueError("String unpacking failed.")\n elif is_null == 1:\n # String in the array buffer is the null string\n return ""\n else:\n # Cython syntax for copying a c string to python bytestring:\n # slice the char * by the length of the string\n return sdata.buf[:sdata.size].decode('utf-8')\n\n\ndef npystring_pack_multiple(arr1, arr2):\n cdef cnp.npy_string_allocator *allocators[2]\n cdef cnp.PyArray_Descr *descrs[2]\n descrs[0] = cnp.PyArray_DESCR(arr1)\n descrs[1] = cnp.PyArray_DESCR(arr2)\n\n cnp.NpyString_acquire_allocators(2, descrs, allocators)\n\n # Write into the first element of each array\n cdef int ret1 = cnp.NpyString_pack(\n allocators[0], <cnp.npy_packed_static_string *>cnp.PyArray_DATA(arr1), "Hello world", 11,\n )\n cdef int ret2 = cnp.NpyString_pack(\n allocators[1], <cnp.npy_packed_static_string *>cnp.PyArray_DATA(arr2), "test this", 9,\n )\n\n # Write a null string into the last element\n cdef cnp.npy_intp elsize = cnp.PyArray_ITEMSIZE(arr1)\n cdef int ret3 = cnp.NpyString_pack_null(\n allocators[0],\n <cnp.npy_packed_static_string *>(<char *>cnp.PyArray_DATA(arr1) + 2*elsize),\n )\n\n cnp.NpyString_release_allocators(2, allocators)\n if ret1 == -1 or ret2 == -1 or ret3 == -1:\n return -1\n\n return 0\n\n\ndef npystring_allocators_other_types(arr1, arr2):\n cdef cnp.npy_string_allocator *allocators[2]\n cdef cnp.PyArray_Descr *descrs[2]\n descrs[0] = cnp.PyArray_DESCR(arr1)\n descrs[1] = cnp.PyArray_DESCR(arr2)\n\n cnp.NpyString_acquire_allocators(2, descrs, allocators)\n\n # None of the dtypes here are StringDType, so every allocator\n # should be NULL upon acquisition.\n cdef int ret = 0\n for allocator in allocators:\n if allocator != NULL:\n ret = -1\n break\n\n cnp.NpyString_release_allocators(2, allocators)\n return ret\n\n\ndef check_npy_uintp_type_enum():\n # Regression test for gh-27890: cnp.NPY_UINTP was not defined.\n # Cython would fail to compile this before gh-27890 was fixed.\n return cnp.NPY_UINTP > 0\n
.venv\Lib\site-packages\numpy\_core\tests\examples\cython\checks.pyx
checks.pyx
Other
11,147
0.95
0.174263
0.057971
react-lib
468
2025-01-04T08:31:00.497379
GPL-3.0
true
01ff46d049785fc6a727f392036eceed
project('checks', 'c', 'cython')\n\npy = import('python').find_installation(pure: false)\n\ncc = meson.get_compiler('c')\ncy = meson.get_compiler('cython')\n\n# Keep synced with pyproject.toml\nif not cy.version().version_compare('>=3.0.6')\n error('tests requires Cython >= 3.0.6')\nendif\n\ncython_args = []\nif cy.version().version_compare('>=3.1.0')\n cython_args += ['-Xfreethreading_compatible=True']\nendif\n\nnpy_include_path = run_command(py, [\n '-c',\n 'import os; os.chdir(".."); import numpy; print(os.path.abspath(numpy.get_include()))'\n ], check: true).stdout().strip()\n\nnpy_path = run_command(py, [\n '-c',\n 'import os; os.chdir(".."); import numpy; print(os.path.dirname(numpy.__file__).removesuffix("numpy"))'\n ], check: true).stdout().strip()\n\n# TODO: This is a hack due to gh-25135, where cython may not find the right\n# __init__.pyd file.\nadd_project_arguments('-I', npy_path, language : 'cython')\n\npy.extension_module(\n 'checks',\n 'checks.pyx',\n install: false,\n c_args: [\n '-DNPY_NO_DEPRECATED_API=0', # Cython still uses old NumPy C API\n # Require 1.25+ to test datetime additions\n '-DNPY_TARGET_VERSION=NPY_2_0_API_VERSION',\n ],\n include_directories: [npy_include_path],\n cython_args: cython_args,\n)\n
.venv\Lib\site-packages\numpy\_core\tests\examples\cython\meson.build
meson.build
Other
1,311
0.95
0.046512
0.114286
python-kit
425
2024-09-10T12:06:52.996785
MIT
true
0d4862e3e14e4cd5dc5c53a7329dd13a
"""\nProvide python-space access to the functions exposed in numpy/__init__.pxd\nfor testing.\n"""\n\nimport os\nfrom distutils.core import setup\n\nimport Cython\nfrom Cython.Build import cythonize\nfrom setuptools.extension import Extension\n\nimport numpy as np\nfrom numpy._utils import _pep440\n\nmacros = [\n ("NPY_NO_DEPRECATED_API", 0),\n # Require 1.25+ to test datetime additions\n ("NPY_TARGET_VERSION", "NPY_2_0_API_VERSION"),\n]\n\nchecks = Extension(\n "checks",\n sources=[os.path.join('.', "checks.pyx")],\n include_dirs=[np.get_include()],\n define_macros=macros,\n)\n\nextensions = [checks]\n\ncompiler_directives = {}\nif _pep440.parse(Cython.__version__) >= _pep440.parse("3.1.0a0"):\n compiler_directives['freethreading_compatible'] = True\n\nsetup(\n ext_modules=cythonize(\n extensions,\n compiler_directives=compiler_directives)\n)\n
.venv\Lib\site-packages\numpy\_core\tests\examples\cython\setup.py
setup.py
Python
898
0.95
0.051282
0.032258
awesome-app
827
2024-05-05T16:45:10.881953
GPL-3.0
true
9400c54d4453b76ba0411219d313c6bb
\n\n
.venv\Lib\site-packages\numpy\_core\tests\examples\cython\__pycache__\setup.cpython-313.pyc
setup.cpython-313.pyc
Other
1,249
0.95
0.037037
0
python-kit
733
2023-10-18T08:59:24.329620
GPL-3.0
true
f1961ba78479092b4694bc3c41309fcf
#define Py_LIMITED_API 0x03060000\n\n#include <Python.h>\n#include <numpy/arrayobject.h>\n#include <numpy/ufuncobject.h>\n\nstatic PyModuleDef moduledef = {\n .m_base = PyModuleDef_HEAD_INIT,\n .m_name = "limited_api1"\n};\n\nPyMODINIT_FUNC PyInit_limited_api1(void)\n{\n import_array();\n import_umath();\n return PyModule_Create(&moduledef);\n}\n
.venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\limited_api1.c
limited_api1.c
C
363
0.95
0
0.285714
react-lib
388
2024-06-17T07:16:17.385288
Apache-2.0
true
377b5f02c99f6268aba0736696058d43
#cython: language_level=3\n\n"""\nMake sure cython can compile in limited API mode (see meson.build)\n"""\n\ncdef extern from "numpy/arrayobject.h":\n pass\ncdef extern from "numpy/arrayscalars.h":\n pass\n\n
.venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\limited_api2.pyx
limited_api2.pyx
Other
214
0.95
0
0.125
awesome-app
242
2025-04-30T22:27:45.224214
MIT
true
1d109c26b441898df3b77c8fb62809bf
#if Py_LIMITED_API != PY_VERSION_HEX & 0xffff0000\n # error "Py_LIMITED_API not defined to Python major+minor version"\n#endif\n\n#include <Python.h>\n#include <numpy/arrayobject.h>\n#include <numpy/ufuncobject.h>\n\nstatic PyModuleDef moduledef = {\n .m_base = PyModuleDef_HEAD_INIT,\n .m_name = "limited_api_latest"\n};\n\nPyMODINIT_FUNC PyInit_limited_api_latest(void)\n{\n import_array();\n import_umath();\n return PyModule_Create(&moduledef);\n}\n
.venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\limited_api_latest.c
limited_api_latest.c
C
471
0.95
0.052632
0.375
vue-tools
682
2024-06-06T07:40:54.797152
BSD-3-Clause
true
6e9cb8408e8e91f959d355a243abd248
project('checks', 'c', 'cython')\n\npy = import('python').find_installation(pure: false)\n\ncc = meson.get_compiler('c')\ncy = meson.get_compiler('cython')\n\n# Keep synced with pyproject.toml\nif not cy.version().version_compare('>=3.0.6')\n error('tests requires Cython >= 3.0.6')\nendif\n\nnpy_include_path = run_command(py, [\n '-c',\n 'import os; os.chdir(".."); import numpy; print(os.path.abspath(numpy.get_include()))'\n ], check: true).stdout().strip()\n\nnpy_path = run_command(py, [\n '-c',\n 'import os; os.chdir(".."); import numpy; print(os.path.dirname(numpy.__file__).removesuffix("numpy"))'\n ], check: true).stdout().strip()\n\n# TODO: This is a hack due to https://github.com/cython/cython/issues/5820,\n# where cython may not find the right __init__.pyd file.\nadd_project_arguments('-I', npy_path, language : 'cython')\n\npy.extension_module(\n 'limited_api1',\n 'limited_api1.c',\n c_args: [\n '-DNPY_NO_DEPRECATED_API=NPY_1_21_API_VERSION',\n ],\n include_directories: [npy_include_path],\n limited_api: '3.6',\n)\n\npy.extension_module(\n 'limited_api_latest',\n 'limited_api_latest.c',\n c_args: [\n '-DNPY_NO_DEPRECATED_API=NPY_1_21_API_VERSION',\n ],\n include_directories: [npy_include_path],\n limited_api: py.language_version(),\n)\n\npy.extension_module(\n 'limited_api2',\n 'limited_api2.pyx',\n install: false,\n c_args: [\n '-DNPY_NO_DEPRECATED_API=0',\n # Require 1.25+ to test datetime additions\n '-DNPY_TARGET_VERSION=NPY_2_0_API_VERSION',\n '-DCYTHON_LIMITED_API=1',\n ],\n include_directories: [npy_include_path],\n limited_api: '3.7',\n)\n
.venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\meson.build
meson.build
Other
1,686
0.95
0.016949
0.08
node-utils
478
2024-02-28T17:48:37.114793
Apache-2.0
true
624772fe404f5da082001f15fbafea70
"""\nBuild an example package using the limited Python C API.\n"""\n\nimport os\n\nfrom setuptools import Extension, setup\n\nimport numpy as np\n\nmacros = [("NPY_NO_DEPRECATED_API", 0), ("Py_LIMITED_API", "0x03060000")]\n\nlimited_api = Extension(\n "limited_api",\n sources=[os.path.join('.', "limited_api.c")],\n include_dirs=[np.get_include()],\n define_macros=macros,\n)\n\nextensions = [limited_api]\n\nsetup(\n ext_modules=extensions\n)\n
.venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\setup.py
setup.py
Python
461
0.85
0
0
vue-tools
621
2023-08-07T03:17:58.449609
Apache-2.0
true
322da87d3d4776e2c8483d92e3225e8f
\n\n
.venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\__pycache__\setup.cpython-313.pyc
setup.cpython-313.pyc
Other
797
0.8
0
0
awesome-app
703
2024-08-11T18:59:34.349264
BSD-3-Clause
true
33f920f29083547989763f540f3efad9
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_abc.cpython-313.pyc
test_abc.cpython-313.pyc
Other
4,537
0.95
0
0
react-lib
959
2025-02-18T11:54:21.002486
MIT
true
62406243895ad1a8147bc5a0ccc85e89
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_api.cpython-313.pyc
test_api.cpython-313.pyc
Other
39,100
0.8
0
0
vue-tools
133
2023-12-08T00:31:24.685048
GPL-3.0
true
2ee3a617e8ce02bf140a23b053f3f977
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_argparse.cpython-313.pyc
test_argparse.cpython-313.pyc
Other
5,178
0.95
0.065789
0
react-lib
728
2024-08-03T17:54:45.959930
GPL-3.0
true
2a3595f827a5cf224589c89e4cd16ddf
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_arraymethod.cpython-313.pyc
test_arraymethod.cpython-313.pyc
Other
5,136
0.8
0
0
awesome-app
919
2024-01-16T11:18:30.289407
Apache-2.0
true
7251ad13fa33988e529bcbaedf3fcca8
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_arrayobject.cpython-313.pyc
test_arrayobject.cpython-313.pyc
Other
4,274
0.8
0
0.036364
python-kit
146
2024-11-23T02:44:33.573031
BSD-3-Clause
true
b939d599fabdd06fc6560957e763d070
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_arrayprint.cpython-313.pyc
test_arrayprint.cpython-313.pyc
Other
73,813
0.75
0.007463
0.007886
awesome-app
187
2023-07-21T12:31:58.422368
Apache-2.0
true
3fcb709100679252f8c1c2577326a036
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_array_api_info.cpython-313.pyc
test_array_api_info.cpython-313.pyc
Other
6,008
0.8
0
0
awesome-app
921
2024-04-09T21:25:59.572683
Apache-2.0
true
51b7a0f2b6ac2c5f1abcb2290acebde8
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_array_coercion.cpython-313.pyc
test_array_coercion.cpython-313.pyc
Other
52,507
0.95
0.013487
0.028
awesome-app
696
2024-10-02T22:44:20.551417
Apache-2.0
true
54e55ec30c7f6224df582e428a06f281
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_array_interface.cpython-313.pyc
test_array_interface.cpython-313.pyc
Other
8,290
0.95
0.05
0.125926
react-lib
545
2024-12-16T07:29:57.589072
Apache-2.0
true
79de9324d1b43ea7bc5b90ff0369a86a
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_casting_floatingpoint_errors.cpython-313.pyc
test_casting_floatingpoint_errors.cpython-313.pyc
Other
9,130
0.8
0.00885
0.038462
python-kit
163
2025-06-10T03:02:57.344083
Apache-2.0
true
b1bcaac0ee1ea06a763ece10fbcb4e58
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_casting_unittests.cpython-313.pyc
test_casting_unittests.cpython-313.pyc
Other
39,565
0.8
0.010676
0.00369
node-utils
578
2025-06-29T17:12:49.520102
BSD-3-Clause
true
209662f85b85f417c1284dc4eebb3b71
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_conversion_utils.cpython-313.pyc
test_conversion_utils.cpython-313.pyc
Other
13,352
0.8
0.017544
0.00885
node-utils
410
2024-01-01T00:40:21.151697
Apache-2.0
true
c56c28035135e6aa63646d08ad311f2b
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_cpu_dispatcher.cpython-313.pyc
test_cpu_dispatcher.cpython-313.pyc
Other
1,583
0.7
0
0
python-kit
419
2024-05-01T03:21:33.424541
BSD-3-Clause
true
38d9838ef7b5f89c87685dc0c324ab8c
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_cpu_features.cpython-313.pyc
test_cpu_features.cpython-313.pyc
Other
20,676
0.95
0.066667
0.029412
vue-tools
164
2025-06-02T11:21:46.466728
MIT
true
e00b9a267edd59e826f1fe76cb042ab0
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_custom_dtypes.cpython-313.pyc
test_custom_dtypes.cpython-313.pyc
Other
21,286
0.8
0.006579
0
python-kit
814
2024-02-10T12:52:06.418177
BSD-3-Clause
true
6b963451404f3ac92e00829d2483425d
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_cython.cpython-313.pyc
test_cython.cpython-313.pyc
Other
19,220
0.95
0.008333
0
python-kit
896
2024-06-04T16:37:21.336517
MIT
true
e893a60675dda664b18deb7a85dd38e0
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_defchararray.cpython-313.pyc
test_defchararray.cpython-313.pyc
Other
64,773
0.75
0.010929
0.00838
python-kit
465
2024-10-29T21:13:10.538725
MIT
true
7e3e38d6ef44a753035d2f204efb7c89
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_deprecations.cpython-313.pyc
test_deprecations.cpython-313.pyc
Other
31,107
0.95
0.083333
0.008299
awesome-app
134
2024-06-16T18:55:47.644831
MIT
true
3aaebf5b8baa723c074fb7c3cd4e234d
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_dlpack.cpython-313.pyc
test_dlpack.cpython-313.pyc
Other
13,111
0.8
0
0
awesome-app
30
2025-05-17T11:04:11.505805
Apache-2.0
true
ffc4a52001fa14ac258f27bcd276a5a4
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_einsum.cpython-313.pyc
test_einsum.cpython-313.pyc
Other
77,090
0.75
0.016129
0.00409
awesome-app
577
2023-10-21T06:19:19.704858
Apache-2.0
true
32a882d978adf6db38967ba058ef2488
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_errstate.cpython-313.pyc
test_errstate.cpython-313.pyc
Other
8,758
0.95
0
0.010753
awesome-app
124
2024-09-29T21:26:59.288276
BSD-3-Clause
true
49a1498b1880e001c391cd1589b27125
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_extint128.cpython-313.pyc
test_extint128.cpython-313.pyc
Other
10,311
0.8
0.010204
0
react-lib
479
2024-03-09T13:01:29.127105
BSD-3-Clause
true
7bb7795ea9f107ca99348fb16aa3ae81
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_function_base.cpython-313.pyc
test_function_base.cpython-313.pyc
Other
28,907
0.95
0
0.011765
awesome-app
530
2023-09-09T20:53:24.152653
BSD-3-Clause
true
3b3bb0859747293dda2e0dda198eb230
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_getlimits.cpython-313.pyc
test_getlimits.cpython-313.pyc
Other
14,144
0.95
0.009434
0.1
awesome-app
401
2024-02-13T17:35:57.782087
BSD-3-Clause
true
6183575ff641d5d26c9a9c7a13ca5085
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_half.cpython-313.pyc
test_half.cpython-313.pyc
Other
37,283
0.95
0.004367
0.026667
react-lib
202
2023-12-29T12:02:07.675178
MIT
true
89ff930e134e47e8f8d081d4b7517687
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_hashtable.cpython-313.pyc
test_hashtable.cpython-313.pyc
Other
1,747
0.8
0
0
vue-tools
14
2024-10-05T13:02:07.921189
Apache-2.0
true
1efd41bb2ef4ee5940515e4f744490e5
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_indexerrors.cpython-313.pyc
test_indexerrors.cpython-313.pyc
Other
11,580
0.8
0.02381
0
vue-tools
280
2024-03-14T02:03:23.732800
Apache-2.0
true
651b4f148f57d702d82a97181eea58ab
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_indexing.cpython-313.pyc
test_indexing.cpython-313.pyc
Other
84,506
0.75
0.01676
0.011765
react-lib
294
2025-06-21T20:39:05.512631
Apache-2.0
true
b10931e5f3fffb682fc043080b361fa5
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_item_selection.cpython-313.pyc
test_item_selection.cpython-313.pyc
Other
10,622
0.8
0
0
vue-tools
150
2024-01-16T18:37:55.293741
GPL-3.0
true
05e7f4c3d30b11c9a03f9cc9ba0df458
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_limited_api.cpython-313.pyc
test_limited_api.cpython-313.pyc
Other
4,706
0.95
0.019231
0
vue-tools
164
2024-11-14T21:02:34.846858
GPL-3.0
true
5901e5e1dac40153a0264e3bda21ceda
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_longdouble.cpython-313.pyc
test_longdouble.cpython-313.pyc
Other
23,313
0.8
0.004098
0.012931
node-utils
801
2024-03-13T12:25:54.252839
BSD-3-Clause
true
224cf74d57aaa62bc1c6a1e3e045397b
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_machar.cpython-313.pyc
test_machar.cpython-313.pyc
Other
1,824
0.8
0
0.130435
python-kit
284
2024-06-23T21:55:41.997619
BSD-3-Clause
true
9bbbc403317dabe248d301b4dc42be75
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_memmap.cpython-313.pyc
test_memmap.cpython-313.pyc
Other
14,524
0.8
0
0
awesome-app
943
2024-03-20T16:04:44.234750
BSD-3-Clause
true
507c80e887859def7f7490c371fcb225
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_mem_overlap.cpython-313.pyc
test_mem_overlap.cpython-313.pyc
Other
47,965
0.95
0
0.008571
python-kit
200
2023-09-21T19:40:22.805582
Apache-2.0
true
705293fb6382caa333a58b0116acb9c5
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_mem_policy.cpython-313.pyc
test_mem_policy.cpython-313.pyc
Other
20,210
0.95
0.066421
0.053435
node-utils
662
2023-11-23T05:03:06.230452
Apache-2.0
true
25ae94b6712faff07838bb13f8501a4f
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_multithreading.cpython-313.pyc
test_multithreading.cpython-313.pyc
Other
14,899
0.95
0.005376
0.018293
python-kit
432
2024-04-10T12:02:24.065479
MIT
true
3b8931cdc7e521f1710e217363e9e0c2
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_nep50_promotions.cpython-313.pyc
test_nep50_promotions.cpython-313.pyc
Other
17,977
0.8
0.008929
0
awesome-app
990
2024-10-11T05:59:38.535194
BSD-3-Clause
true
f84e313305292d121975b4006e96ab15
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_numerictypes.cpython-313.pyc
test_numerictypes.cpython-313.pyc
Other
42,360
0.8
0
0
awesome-app
865
2025-05-11T01:23:44.919087
GPL-3.0
true
14c0c14dac51c67d00cf4e2b62592ca1
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_overrides.cpython-313.pyc
test_overrides.cpython-313.pyc
Other
52,468
0.95
0.010959
0.01662
python-kit
176
2024-10-21T14:09:17.465588
BSD-3-Clause
true
b858a7b01548d95c93f78aaebd47ccc2
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_print.cpython-313.pyc
test_print.cpython-313.pyc
Other
11,504
0.95
0.088
0.008696
python-kit
965
2025-03-31T06:33:07.002465
Apache-2.0
true
534dac6c872202dec0b972b6ef0a7faa
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_protocols.cpython-313.pyc
test_protocols.cpython-313.pyc
Other
3,341
0.8
0
0
python-kit
549
2025-03-11T20:01:48.939591
BSD-3-Clause
true
cf76642b90613c323dd7eb48fd89edd1
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_records.cpython-313.pyc
test_records.cpython-313.pyc
Other
39,392
0.8
0
0.007299
awesome-app
500
2024-12-21T17:37:39.849631
BSD-3-Clause
true
bd4825a101a14a20d27429484eb2cd21
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalarbuffer.cpython-313.pyc
test_scalarbuffer.cpython-313.pyc
Other
9,490
0.8
0
0
python-kit
730
2024-08-26T03:01:41.435184
MIT
true
6e10e6b3fa7a06c6b83821c42056335e
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalarinherit.cpython-313.pyc
test_scalarinherit.cpython-313.pyc
Other
6,501
0.8
0.015152
0
node-utils
882
2024-09-15T08:55:02.033584
GPL-3.0
true
448aed4de6ec491738111b429f708c0d
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalarmath.cpython-313.pyc
test_scalarmath.cpython-313.pyc
Other
73,989
0.75
0.003226
0.006885
python-kit
345
2023-12-18T12:05:54.401318
MIT
true
d67b9090cb972cd0b3a0999ac76fa35a
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalarprint.cpython-313.pyc
test_scalarprint.cpython-313.pyc
Other
21,043
0.8
0.008621
0.026549
python-kit
828
2025-02-08T18:43:49.534021
Apache-2.0
true
ac7f8a9797d7e98af1f80a88c42d3da5
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalar_ctors.cpython-313.pyc
test_scalar_ctors.cpython-313.pyc
Other
14,187
0.8
0
0.013072
awesome-app
28
2024-08-20T12:17:15.265457
GPL-3.0
true
ccb986ae44794947543b1ccffdf3ad64
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalar_methods.cpython-313.pyc
test_scalar_methods.cpython-313.pyc
Other
17,455
0.8
0.006329
0
awesome-app
766
2025-05-01T21:03:28.299669
BSD-3-Clause
true
063f5fcdb1d5dc61d2a447cc39ab0730
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_shape_base.cpython-313.pyc
test_shape_base.cpython-313.pyc
Other
50,232
0.95
0.009434
0
vue-tools
758
2023-08-23T08:46:57.468654
Apache-2.0
true
2160c3a00fcdb2cc3438ec1f6bfa6bd0
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_simd.cpython-313.pyc
test_simd.cpython-313.pyc
Other
69,284
0.75
0.0067
0.006932
python-kit
933
2024-10-18T10:06:05.736810
GPL-3.0
true
0170747702911f493157573392a96295
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_simd_module.cpython-313.pyc
test_simd_module.cpython-313.pyc
Other
7,176
0.8
0
0.017241
node-utils
101
2025-03-26T00:16:33.971953
MIT
true
437d6ff5a87818ee0bf243d2e00af682
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_stringdtype.cpython-313.pyc
test_stringdtype.cpython-313.pyc
Other
93,037
0.75
0.006289
0.013106
vue-tools
320
2023-10-02T06:43:19.959372
Apache-2.0
true
d7d8c785f21e9018b4f84da2b897840f
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_strings.cpython-313.pyc
test_strings.cpython-313.pyc
Other
84,328
0.75
0.012066
0.010938
react-lib
710
2024-07-22T14:20:47.660920
Apache-2.0
true
86737cc004114e9cc28aa9cb7a294e6e
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_umath_accuracy.cpython-313.pyc
test_umath_accuracy.cpython-313.pyc
Other
8,750
0.8
0.011765
0.011905
python-kit
48
2025-07-05T19:22:30.719409
Apache-2.0
true
3b1106abc4076f21fa8639d8cee8e5f4
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_umath_complex.cpython-313.pyc
test_umath_complex.cpython-313.pyc
Other
43,153
0.95
0
0.02583
python-kit
112
2025-01-23T12:06:28.918660
GPL-3.0
true
c02524272a83146e321f83da97d0bb60
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_unicode.cpython-313.pyc
test_unicode.cpython-313.pyc
Other
19,314
0.8
0
0
react-lib
559
2025-03-14T16:32:45.308656
Apache-2.0
true
04743090e60fc3745ad02565b6a4986d
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\test__exceptions.cpython-313.pyc
test__exceptions.cpython-313.pyc
Other
5,633
0.8
0.034483
0
react-lib
458
2025-03-24T01:36:40.230505
GPL-3.0
true
8816e61a4ba02838ebc71ffe4630b3e8
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\_locales.cpython-313.pyc
_locales.cpython-313.pyc
Other
3,559
0.95
0.117647
0
react-lib
296
2024-02-25T10:25:36.490685
GPL-3.0
true
e4d846c03c26177eadf54289722b9180
\n\n
.venv\Lib\site-packages\numpy\_core\tests\__pycache__\_natype.cpython-313.pyc
_natype.cpython-313.pyc
Other
8,432
0.8
0.010101
0.072165
vue-tools
298
2024-11-05T10:09:05.706608
MIT
true
53e1f5a092ef7aafdb1322698c820004
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\arrayprint.cpython-313.pyc
arrayprint.cpython-313.pyc
Other
70,202
0.75
0.066038
0.016913
vue-tools
495
2024-01-24T00:42:49.543472
BSD-3-Clause
false
548929a8feee0bf6c5b95402bff86836
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\cversions.cpython-313.pyc
cversions.cpython-313.pyc
Other
632
0.7
0
0
react-lib
517
2023-10-22T15:02:47.357455
MIT
false
054a0e8e49b0d93ea2176ba1da1f4bfc
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\defchararray.cpython-313.pyc
defchararray.cpython-313.pyc
Other
37,864
0.95
0.05486
0
vue-tools
289
2025-02-09T15:40:00.178781
BSD-3-Clause
false
30b5a655c069c3e377bb1ad0c60efa8e
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\einsumfunc.cpython-313.pyc
einsumfunc.cpython-313.pyc
Other
47,820
0.95
0.037525
0.03107
python-kit
817
2024-07-27T08:59:08.388731
BSD-3-Clause
false
15f6f8d4f92dba68a1dda77e2f815ec8
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\function_base.cpython-313.pyc
function_base.cpython-313.pyc
Other
19,755
0.95
0.038462
0
react-lib
91
2025-07-04T11:28:36.687289
GPL-3.0
false
93f6f710b6c1475cd7ef2a28a6ff9811
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\getlimits.cpython-313.pyc
getlimits.cpython-313.pyc
Other
27,695
0.95
0.100239
0.002667
awesome-app
630
2024-12-14T07:33:18.941842
MIT
false
4b15007e2ac74b71ffe9b755b9108b8a
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\memmap.cpython-313.pyc
memmap.cpython-313.pyc
Other
12,886
0.95
0.034221
0
node-utils
733
2025-01-27T16:35:32.997667
BSD-3-Clause
false
40b9b65308b69e62ecb2c1124fb063c2
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\multiarray.cpython-313.pyc
multiarray.cpython-313.pyc
Other
53,655
0.75
0.045854
0.014243
vue-tools
682
2024-04-29T07:48:04.174185
BSD-3-Clause
false
340c0f0bd19447def7237591b94d42f7
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\numeric.cpython-313.pyc
numeric.cpython-313.pyc
Other
84,865
0.75
0.047319
0.005319
python-kit
974
2024-08-18T22:34:08.078176
Apache-2.0
false
701adc7b523a17358048cc160c97d23d
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\numerictypes.cpython-313.pyc
numerictypes.cpython-313.pyc
Other
16,937
0.95
0.070248
0.019802
vue-tools
787
2024-02-17T15:11:21.906076
GPL-3.0
false
f334312d55a615646b61d32da8f6b195
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\overrides.cpython-313.pyc
overrides.cpython-313.pyc
Other
7,846
0.95
0.243697
0.009434
node-utils
491
2024-02-07T13:38:45.967927
Apache-2.0
false
9eb403f198dca661a426dbf5a8b4ae75
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\printoptions.cpython-313.pyc
printoptions.cpython-313.pyc
Other
933
0.85
0.066667
0
vue-tools
299
2024-03-29T06:54:24.078302
MIT
false
1a503dad918675c33e57d8706b4c9fc6
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\records.cpython-313.pyc
records.cpython-313.pyc
Other
38,547
0.95
0.054264
0.005164
node-utils
438
2024-06-23T06:06:34.937356
MIT
false
e894e3ab054b561ba29476d250f65d4b
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\shape_base.cpython-313.pyc
shape_base.cpython-313.pyc
Other
32,489
0.95
0.038926
0.009756
react-lib
920
2023-08-11T01:51:40.073035
GPL-3.0
false
6cc4230a950efcb5f96ae98c0f3c094d
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\strings.cpython-313.pyc
strings.cpython-313.pyc
Other
56,233
0.75
0.016727
0.008977
awesome-app
574
2024-08-14T06:04:59.191177
BSD-3-Clause
false
458d93d98a67ff9fc8d34adbc6063e6d
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\umath.cpython-313.pyc
umath.cpython-313.pyc
Other
2,008
0.85
0.034483
0
node-utils
88
2023-08-02T08:31:17.047482
Apache-2.0
false
3bf77abb3fd67b9620395abb371fdfaf
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_add_newdocs_scalars.cpython-313.pyc
_add_newdocs_scalars.cpython-313.pyc
Other
13,236
0.95
0.051852
0
react-lib
202
2023-12-13T22:19:45.051877
MIT
false
a47da916caadbe091e7195a31522908e
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_asarray.cpython-313.pyc
_asarray.cpython-313.pyc
Other
4,071
0.85
0.040404
0.069767
python-kit
368
2025-04-01T17:28:58.879916
GPL-3.0
false
711d0e8e2b8b0c30f6b1e12dc1aff02c
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_dtype.cpython-313.pyc
_dtype.cpython-313.pyc
Other
13,450
0.95
0.043478
0
python-kit
148
2025-06-23T14:29:37.898615
BSD-3-Clause
false
bdac1491ef267a0f4c57bb3552ff95aa
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_dtype_ctypes.cpython-313.pyc
_dtype_ctypes.cpython-313.pyc
Other
4,876
0.95
0.047619
0.113208
node-utils
954
2024-09-16T08:38:32.159240
BSD-3-Clause
false
24888797afb8271ff437ce77a483ba9e
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_exceptions.cpython-313.pyc
_exceptions.cpython-313.pyc
Other
8,485
0.95
0.068182
0
python-kit
145
2025-05-06T01:26:13.339805
BSD-3-Clause
false
18f34b5f16ef72a2b7c11412ef3631a2
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_internal.cpython-313.pyc
_internal.cpython-313.pyc
Other
34,762
0.95
0.040506
0.002865
node-utils
357
2024-02-03T00:24:25.640315
BSD-3-Clause
false
49a4166ad2aadb70e89906fe9d4ffdb6
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_machar.cpython-313.pyc
_machar.cpython-313.pyc
Other
11,635
0.95
0.050505
0
node-utils
169
2023-08-19T19:26:05.710546
GPL-3.0
false
2b8e7dd01db0e57fd8b5bfc8485b831a
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_methods.cpython-313.pyc
_methods.cpython-313.pyc
Other
11,400
0.95
0.031008
0
vue-tools
439
2024-12-04T17:12:15.126589
MIT
false
a26f67f58e04314aaf12dada002ee51c
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_string_helpers.cpython-313.pyc
_string_helpers.cpython-313.pyc
Other
3,077
0.95
0.035294
0
react-lib
227
2025-05-15T21:03:54.681690
MIT
false
054e7e136f7abb0be696698333ddf83d
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_type_aliases.cpython-313.pyc
_type_aliases.cpython-313.pyc
Other
3,791
0.8
0.016949
0.019231
vue-tools
99
2025-01-24T17:10:23.105444
BSD-3-Clause
false
151a63d1310d06a9854df5448542aee1
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\_ufunc_config.cpython-313.pyc
_ufunc_config.cpython-313.pyc
Other
15,538
0.95
0.071429
0
python-kit
208
2024-09-09T08:25:27.754779
BSD-3-Clause
false
0e4e11ee02eeacdc834e286c8207860e
\n\n
.venv\Lib\site-packages\numpy\_core\__pycache__\__init__.cpython-313.pyc
__init__.cpython-313.pyc
Other
5,705
0.95
0.022989
0.027397
react-lib
424
2023-10-01T00:09:40.432897
GPL-3.0
false
ab24c2a608aa6fe8c181b86e2a9087fa
"""This hook should collect all binary files and any hidden modules that numpy\nneeds.\n\nOur (some-what inadequate) docs for writing PyInstaller hooks are kept here:\nhttps://pyinstaller.readthedocs.io/en/stable/hooks.html\n\n"""\nfrom PyInstaller.compat import is_pure_conda\nfrom PyInstaller.utils.hooks import collect_dynamic_libs\n\n# Collect all DLLs inside numpy's installation folder, dump them into built\n# app's root.\nbinaries = collect_dynamic_libs("numpy", ".")\n\n# If using Conda without any non-conda virtual environment manager:\nif is_pure_conda:\n # Assume running the NumPy from Conda-forge and collect it's DLLs from the\n # communal Conda bin directory. DLLs from NumPy's dependencies must also be\n # collected to capture MKL, OpenBlas, OpenMP, etc.\n from PyInstaller.utils.hooks import conda_support\n datas = conda_support.collect_dynamic_libs("numpy", dependencies=True)\n\n# Submodules PyInstaller cannot detect. `_dtype_ctypes` is only imported\n# from C and `_multiarray_tests` is used in tests (which are not packed).\nhiddenimports = ['numpy._core._dtype_ctypes', 'numpy._core._multiarray_tests']\n\n# Remove testing and building code and packages that are referenced throughout\n# NumPy but are not really dependencies.\nexcludedimports = [\n "scipy",\n "pytest",\n "f2py",\n "setuptools",\n "distutils",\n "numpy.distutils",\n]\n
.venv\Lib\site-packages\numpy\_pyinstaller\hook-numpy.py
hook-numpy.py
Python
1,398
0.95
0.055556
0.333333
vue-tools
834
2025-05-30T12:54:00.695994
MIT
false
071baa1eb7c91d6b080f7cd987ccf738
from typing import Final\n\n# from `PyInstaller.compat`\nis_conda: Final[bool]\nis_pure_conda: Final[bool]\n\n# from `PyInstaller.utils.hooks`\ndef is_module_satisfies(requirements: str, version: None = None, version_attr: None = None) -> bool: ...\n\nbinaries: Final[list[tuple[str, str]]]\n\nhiddenimports: Final[list[str]]\nexcludedimports: Final[list[str]]\n
.venv\Lib\site-packages\numpy\_pyinstaller\hook-numpy.pyi
hook-numpy.pyi
Other
362
0.95
0.076923
0.222222
vue-tools
895
2023-08-12T16:06:40.129058
BSD-3-Clause
false
37d5f58cd9066444169646225d76cb4d
"""A crude *bit of everything* smoke test to verify PyInstaller compatibility.\n\nPyInstaller typically goes wrong by forgetting to package modules, extension\nmodules or shared libraries. This script should aim to touch as many of those\nas possible in an attempt to trip a ModuleNotFoundError or a DLL load failure\ndue to an uncollected resource. Missing resources are unlikely to lead to\narithmetic errors so there's generally no need to verify any calculation's\noutput - merely that it made it to the end OK. This script should not\nexplicitly import any of numpy's submodules as that gives PyInstaller undue\nhints that those submodules exist and should be collected (accessing implicitly\nloaded submodules is OK).\n\n"""\nimport numpy as np\n\na = np.arange(1., 10.).reshape((3, 3)) % 5\nnp.linalg.det(a)\na @ a\na @ a.T\nnp.linalg.inv(a)\nnp.sin(np.exp(a))\nnp.linalg.svd(a)\nnp.linalg.eigh(a)\n\nnp.unique(np.random.randint(0, 10, 100))\nnp.sort(np.random.uniform(0, 10, 100))\n\nnp.fft.fft(np.exp(2j * np.pi * np.arange(8) / 8))\nnp.ma.masked_array(np.arange(10), np.random.rand(10) < .5).sum()\nnp.polynomial.Legendre([7, 8, 9]).roots()\n\nprint("I made it!")\n
.venv\Lib\site-packages\numpy\_pyinstaller\tests\pyinstaller-smoke.py
pyinstaller-smoke.py
Python
1,175
0.85
0
0
node-utils
253
2023-08-16T03:33:25.995177
MIT
true
a3f669ddbb9af32a30f63e0957915b42