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\chardet\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 4,601 | 0.8 | 0 | 0.018519 | awesome-app | 133 | 2024-08-09T05:17:58.879919 | Apache-2.0 | false | baf9ea7617c7a78ea271f02dbe327a46 |
\n\n | .venv\Lib\site-packages\chardet\__pycache__\__main__.cpython-313.pyc | __main__.cpython-313.pyc | Other | 355 | 0.7 | 0 | 0 | react-lib | 482 | 2024-10-24T08:50:27.618068 | MIT | false | a3ebc4b1c13994a8301a73f1bf577eb3 |
[console_scripts]\nchardetect = chardet.cli.chardetect:main\n | .venv\Lib\site-packages\chardet-5.2.0.dist-info\entry_points.txt | entry_points.txt | Other | 59 | 0.5 | 0 | 0 | python-kit | 202 | 2025-02-03T15:49:19.451153 | GPL-3.0 | false | 735bb4ba93a089398144993471b6cb56 |
pip\n | .venv\Lib\site-packages\chardet-5.2.0.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | python-kit | 843 | 2024-10-14T13:17:09.446150 | BSD-3-Clause | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but... | .venv\Lib\site-packages\chardet-5.2.0.dist-info\LICENSE | LICENSE | Other | 26,530 | 0.85 | 0.13745 | 0 | python-kit | 188 | 2025-02-09T13:37:30.284086 | Apache-2.0 | false | 4fbd65380cdd255951079008b364516c |
Metadata-Version: 2.1\nName: chardet\nVersion: 5.2.0\nSummary: Universal encoding detector for Python 3\nHome-page: https://github.com/chardet/chardet\nAuthor: Mark Pilgrim\nAuthor-email: mark@diveintomark.org\nMaintainer: Daniel Blanchard\nMaintainer-email: dan.blanchard@gmail.com\nLicense: LGPL\nProject-URL: Document... | .venv\Lib\site-packages\chardet-5.2.0.dist-info\METADATA | METADATA | Other | 3,418 | 0.8 | 0.010309 | 0 | awesome-app | 559 | 2023-08-12T13:02:11.570484 | MIT | false | 80352d14ccb37516b6aea57075e5a166 |
../../Scripts/chardetect.exe,sha256=eNgk23mwNvkaVJ6dHFhNElFdafRC7PhjTKWISO8XI10,108423\nchardet-5.2.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\nchardet-5.2.0.dist-info/LICENSE,sha256=3GJlINzVOiL3J68-5Cx3DlbJemT-OtsGN5nYqwMv5VE,26530\nchardet-5.2.0.dist-info/METADATA,sha256=PAr2NQ6hQWpjyF... | .venv\Lib\site-packages\chardet-5.2.0.dist-info\RECORD | RECORD | Other | 7,375 | 0.7 | 0 | 0 | node-utils | 20 | 2024-10-18T22:21:56.771548 | GPL-3.0 | false | 01760c5d85e2d488114c8d9f032c5849 |
chardet\n | .venv\Lib\site-packages\chardet-5.2.0.dist-info\top_level.txt | top_level.txt | Other | 8 | 0.5 | 0 | 0 | react-lib | 461 | 2024-05-03T14:37:44.030850 | GPL-3.0 | false | dfa288092949be4ded87cfe9be2702a5 |
Wheel-Version: 1.0\nGenerator: bdist_wheel (0.41.0)\nRoot-Is-Purelib: true\nTag: py3-none-any\n\n | .venv\Lib\site-packages\chardet-5.2.0.dist-info\WHEEL | WHEEL | Other | 92 | 0.5 | 0 | 0 | awesome-app | 715 | 2024-09-09T18:44:29.583733 | MIT | false | 3eced86d3f01a481e60a39780b007038 |
from __future__ import annotations\n\nimport logging\nfrom os import PathLike\nfrom typing import BinaryIO\n\nfrom .cd import (\n coherence_ratio,\n encoding_languages,\n mb_encoding_languages,\n merge_coherence_ratios,\n)\nfrom .constant import IANA_SUPPORTED, TOO_BIG_SEQUENCE, TOO_SMALL_SEQUENCE, TRACE\nf... | .venv\Lib\site-packages\charset_normalizer\api.py | api.py | Python | 23,285 | 0.95 | 0.121257 | 0.010187 | vue-tools | 549 | 2024-04-24T04:16:49.510233 | GPL-3.0 | false | 339d93f83fe3de7b801b9b975451d780 |
from __future__ import annotations\n\nimport importlib\nfrom codecs import IncrementalDecoder\nfrom collections import Counter\nfrom functools import lru_cache\nfrom typing import Counter as TypeCounter\n\nfrom .constant import (\n FREQUENCIES,\n KO_NAMES,\n LANGUAGE_SUPPORTED_COUNT,\n TOO_SMALL_SEQUENCE,\n... | .venv\Lib\site-packages\charset_normalizer\cd.py | cd.py | Python | 12,917 | 0.85 | 0.205063 | 0 | awesome-app | 216 | 2025-01-01T18:31:22.160729 | BSD-3-Clause | false | 0f85d12a12255b461a01e23207764719 |
from __future__ import annotations\n\nfrom codecs import BOM_UTF8, BOM_UTF16_BE, BOM_UTF16_LE, BOM_UTF32_BE, BOM_UTF32_LE\nfrom encodings.aliases import aliases\nfrom re import IGNORECASE\nfrom re import compile as re_compile\n\n# Contain for each eligible encoding a list of/item bytes SIG/BOM\nENCODING_MARKS: dict[str... | .venv\Lib\site-packages\charset_normalizer\constant.py | constant.py | Python | 44,728 | 0.95 | 0.002481 | 0.005528 | python-kit | 939 | 2023-10-05T20:40:25.991472 | Apache-2.0 | false | b7726e2b58c69f65168a35c7c9ec3653 |
from __future__ import annotations\n\nfrom typing import TYPE_CHECKING, Any\nfrom warnings import warn\n\nfrom .api import from_bytes\nfrom .constant import CHARDET_CORRESPONDENCE\n\n# TODO: remove this check when dropping Python 3.7 support\nif TYPE_CHECKING:\n from typing_extensions import TypedDict\n\n class R... | .venv\Lib\site-packages\charset_normalizer\legacy.py | legacy.py | Python | 2,351 | 0.95 | 0.234375 | 0.06 | node-utils | 274 | 2025-05-02T23:01:26.751545 | BSD-3-Clause | false | 6def13d1e62db3716bfda2348273f88e |
MZ | .venv\Lib\site-packages\charset_normalizer\md.cp313-win_amd64.pyd | md.cp313-win_amd64.pyd | Other | 10,752 | 0.8 | 0 | 0 | react-lib | 711 | 2024-02-22T20:50:26.424363 | BSD-3-Clause | false | 86ac2f49250785380f7c3841468354bc |
from __future__ import annotations\n\nfrom functools import lru_cache\nfrom logging import getLogger\n\nfrom .constant import (\n COMMON_SAFE_ASCII_CHARACTERS,\n TRACE,\n UNICODE_SECONDARY_RANGE_KEYWORD,\n)\nfrom .utils import (\n is_accentuated,\n is_arabic,\n is_arabic_isolated_form,\n is_case_va... | .venv\Lib\site-packages\charset_normalizer\md.py | md.py | Python | 20,780 | 0.95 | 0.222047 | 0.017928 | awesome-app | 654 | 2023-08-18T06:34:29.413725 | Apache-2.0 | false | ad21a83e729a104bd0b04eaf9e6ae3de |
MZ | .venv\Lib\site-packages\charset_normalizer\md__mypyc.cp313-win_amd64.pyd | md__mypyc.cp313-win_amd64.pyd | Other | 125,440 | 0.75 | 0.00722 | 0.011861 | vue-tools | 707 | 2024-12-27T15:09:55.180774 | Apache-2.0 | false | 562dfc796db8f0748cd2cf8ff25ed346 |
from __future__ import annotations\n\nfrom encodings.aliases import aliases\nfrom hashlib import sha256\nfrom json import dumps\nfrom re import sub\nfrom typing import Any, Iterator, List, Tuple\n\nfrom .constant import RE_POSSIBLE_ENCODING_INDICATION, TOO_BIG_SEQUENCE\nfrom .utils import iana_name, is_multi_byte_encod... | .venv\Lib\site-packages\charset_normalizer\models.py | models.py | Python | 12,754 | 0.95 | 0.202778 | 0.033333 | vue-tools | 854 | 2025-03-16T21:01:31.299683 | Apache-2.0 | false | 2abdd713a6c2c3822626c1c2ba6d907d |
from __future__ import annotations\n\nimport importlib\nimport logging\nimport unicodedata\nfrom codecs import IncrementalDecoder\nfrom encodings.aliases import aliases\nfrom functools import lru_cache\nfrom re import findall\nfrom typing import Generator\n\nfrom _multibytecodec import ( # type: ignore[import-not-foun... | .venv\Lib\site-packages\charset_normalizer\utils.py | utils.py | Python | 12,584 | 0.95 | 0.190821 | 0.009934 | awesome-app | 518 | 2025-03-26T02:57:54.921701 | GPL-3.0 | false | 76073a099d3afbf374b233dcaeb9aaad |
"""\nExpose version\n"""\n\nfrom __future__ import annotations\n\n__version__ = "3.4.2"\nVERSION = __version__.split(".")\n | .venv\Lib\site-packages\charset_normalizer\version.py | version.py | Python | 123 | 0.85 | 0 | 0 | react-lib | 870 | 2023-10-06T02:39:38.955522 | Apache-2.0 | false | 22bfc76bbdcc66cb401e2c9c921b4687 |
"""\nCharset-Normalizer\n~~~~~~~~~~~~~~\nThe Real First Universal Charset Detector.\nA library that helps you read text from an unknown charset encoding.\nMotivated by chardet, This package is trying to resolve the issue by taking a new approach.\nAll IANA character set names for which the Python core library provides ... | .venv\Lib\site-packages\charset_normalizer\__init__.py | __init__.py | Python | 1,638 | 0.95 | 0.0625 | 0.05 | awesome-app | 165 | 2023-09-17T06:48:17.376743 | GPL-3.0 | false | 307f5a947843fd468106001212156178 |
from __future__ import annotations\n\nfrom .cli import cli_detect\n\nif __name__ == "__main__":\n cli_detect()\n | .venv\Lib\site-packages\charset_normalizer\__main__.py | __main__.py | Python | 115 | 0.85 | 0.166667 | 0 | python-kit | 887 | 2024-12-15T05:02:13.551670 | Apache-2.0 | false | fb780dc34cd71306500b916e316a2cbd |
from __future__ import annotations\n\nfrom .__main__ import cli_detect, query_yes_no\n\n__all__ = (\n "cli_detect",\n "query_yes_no",\n)\n | .venv\Lib\site-packages\charset_normalizer\cli\__init__.py | __init__.py | Python | 144 | 0.85 | 0 | 0 | node-utils | 247 | 2025-05-27T10:07:00.483994 | BSD-3-Clause | false | b1bbd2ff8505ff3edd43b1857907f2fb |
\n\n | .venv\Lib\site-packages\charset_normalizer\cli\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 338 | 0.7 | 0 | 0 | node-utils | 459 | 2024-07-07T15:51:57.345523 | GPL-3.0 | false | 3a27d23a5592c02444de4a218e3a290c |
\n\n | .venv\Lib\site-packages\charset_normalizer\cli\__pycache__\__main__.cpython-313.pyc | __main__.cpython-313.pyc | Other | 14,515 | 0.95 | 0.084337 | 0 | react-lib | 826 | 2024-10-26T05:35:30.002956 | MIT | false | 472efc754b1aac624c4a93fea61f9181 |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\api.cpython-313.pyc | api.cpython-313.pyc | Other | 18,709 | 0.95 | 0.061404 | 0 | vue-tools | 459 | 2024-04-12T09:51:11.051759 | Apache-2.0 | false | ffc1bfd56a1a5b106469a34fefd098c3 |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\cd.cpython-313.pyc | cd.cpython-313.pyc | Other | 13,391 | 0.95 | 0.06338 | 0.014286 | react-lib | 931 | 2024-05-28T05:00:55.533638 | MIT | false | a3164749499a553c42b0014b286750f0 |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\constant.cpython-313.pyc | constant.cpython-313.pyc | Other | 40,815 | 0.8 | 0.010929 | 0 | node-utils | 617 | 2025-03-27T06:34:31.961388 | MIT | false | 77256f2367c1033d94280cc8d0ac4506 |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\legacy.cpython-313.pyc | legacy.cpython-313.pyc | Other | 2,877 | 0.95 | 0.108108 | 0 | vue-tools | 784 | 2024-03-31T17:09:19.058354 | MIT | false | f2a77e0c96d7c9e39be05bd2505f4eea |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\md.cpython-313.pyc | md.cpython-313.pyc | Other | 25,432 | 0.95 | 0.021858 | 0.005587 | vue-tools | 628 | 2024-06-01T23:56:33.274101 | Apache-2.0 | false | 9b91289f0e9c95b2f149de666e416b1e |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\models.cpython-313.pyc | models.cpython-313.pyc | Other | 17,296 | 0.8 | 0.022388 | 0 | python-kit | 256 | 2023-12-17T19:29:58.769574 | GPL-3.0 | false | 0bc64362ed0c0a296d92977e9c7ee823 |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\utils.cpython-313.pyc | utils.cpython-313.pyc | Other | 14,051 | 0.95 | 0.022222 | 0.007634 | vue-tools | 406 | 2025-05-14T01:45:57.868200 | GPL-3.0 | false | 633c01b512b3fd712c648ab097d49a83 |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\version.cpython-313.pyc | version.cpython-313.pyc | Other | 377 | 0.8 | 0 | 0 | node-utils | 590 | 2024-08-17T21:58:09.260195 | MIT | false | caed6d492c3d9407243a92b1b361fffc |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 1,770 | 0.95 | 0.058824 | 0 | react-lib | 982 | 2025-04-07T19:25:30.992894 | GPL-3.0 | false | bfc700f4d5e9a2d67fb951de35a1a5bd |
\n\n | .venv\Lib\site-packages\charset_normalizer\__pycache__\__main__.cpython-313.pyc | __main__.cpython-313.pyc | Other | 352 | 0.7 | 0 | 0 | vue-tools | 1,000 | 2024-08-13T09:04:26.172670 | GPL-3.0 | false | 566043b19f9266f0fcf429ebc67f0894 |
[console_scripts]\nnormalizer = charset_normalizer:cli.cli_detect\n | .venv\Lib\site-packages\charset_normalizer-3.4.2.dist-info\entry_points.txt | entry_points.txt | Other | 65 | 0.5 | 0 | 0 | awesome-app | 200 | 2023-12-18T20:16:54.296468 | MIT | false | 7bf3687ce46264babb237f70762b472d |
pip\n | .venv\Lib\site-packages\charset_normalizer-3.4.2.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | python-kit | 938 | 2023-09-29T15:56:55.275121 | MIT | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
Metadata-Version: 2.4\nName: charset-normalizer\nVersion: 3.4.2\nSummary: The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.\nAuthor-email: "Ahmed R. TAHRI" <tahri.ahmed@proton.me>\nMaintainer-email: "Ahmed R. TAHRI" <tahri.ahmed@proton.me>\nLicense: MIT\nProject-URL... | .venv\Lib\site-packages\charset_normalizer-3.4.2.dist-info\METADATA | METADATA | Other | 36,474 | 0.95 | 0.102599 | 0.258123 | node-utils | 162 | 2025-03-26T11:45:54.682640 | MIT | false | 5934c3f4fdc78b5c5da4e81afe331f88 |
../../Scripts/normalizer.exe,sha256=NQ7bIsSQu0gaeWi_HF30B9yChP0R-OMK1eQRkBOxVOo,108428\ncharset_normalizer-3.4.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\ncharset_normalizer-3.4.2.dist-info/METADATA,sha256=WneNNyl9QvsRZYzK1FeEC6Wwag4iIFoTAoevPgpZFTY,36474\ncharset_normalizer-3.4.2.dist-i... | .venv\Lib\site-packages\charset_normalizer-3.4.2.dist-info\RECORD | RECORD | Other | 2,775 | 0.7 | 0 | 0 | vue-tools | 362 | 2024-08-02T05:25:01.055413 | MIT | false | 1e46a1ab419d757796c48c2b2c565d4f |
charset_normalizer\n | .venv\Lib\site-packages\charset_normalizer-3.4.2.dist-info\top_level.txt | top_level.txt | Other | 19 | 0.5 | 0 | 0 | awesome-app | 866 | 2024-06-01T12:52:31.056587 | GPL-3.0 | false | 2272ed22c63ebee3f83cd23e68ee7407 |
Wheel-Version: 1.0\nGenerator: setuptools (80.1.0)\nRoot-Is-Purelib: false\nTag: cp313-cp313-win_amd64\n\n | .venv\Lib\site-packages\charset_normalizer-3.4.2.dist-info\WHEEL | WHEEL | Other | 101 | 0.7 | 0 | 0 | node-utils | 780 | 2024-05-19T03:01:55.681839 | MIT | false | 5fd3e273201118821d4cffda0d7c3549 |
MIT License\n\nCopyright (c) 2025 TAHRI Ahmed R.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publ... | .venv\Lib\site-packages\charset_normalizer-3.4.2.dist-info\licenses\LICENSE | LICENSE | Other | 1,092 | 0.7 | 0 | 0 | react-lib | 853 | 2024-05-17T20:15:12.055749 | BSD-3-Clause | false | 48178f3fc1374ad7e830412f812bde05 |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nimport re\nimport sys\nimport os\n\nfrom .ansi import AnsiFore, AnsiBack, AnsiStyle, Style, BEL\nfrom .winterm import enable_vt_processing, WinTerm, WinColor, WinStyle\nfrom .win32 import windll, winapi_test\n\n\nwinterm = None\nif windll is no... | .venv\Lib\site-packages\colorama\ansitowin32.py | ansitowin32.py | Python | 11,128 | 0.95 | 0.220217 | 0.106838 | react-lib | 199 | 2023-09-03T14:14:57.874403 | GPL-3.0 | false | 0ca18c79c4292fce0b3067b001b53b45 |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nimport atexit\nimport contextlib\nimport sys\n\nfrom .ansitowin32 import AnsiToWin32\n\n\ndef _wipe_internal_state_for_tests():\n global orig_stdout, orig_stderr\n orig_stdout = None\n orig_stderr = None\n\n global wrapped_stdout, w... | .venv\Lib\site-packages\colorama\initialise.py | initialise.py | Python | 3,325 | 0.95 | 0.239669 | 0.087912 | node-utils | 280 | 2023-08-23T02:03:38.037557 | BSD-3-Clause | false | 1a15620a349c61b3c9c135dfcd47bd73 |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\n\n# from winbase.h\nSTDOUT = -11\nSTDERR = -12\n\nENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x0004\n\ntry:\n import ctypes\n from ctypes import LibraryLoader\n windll = LibraryLoader(ctypes.WinDLL)\n from ctypes import wintypes\nexcept (... | .venv\Lib\site-packages\colorama\win32.py | win32.py | Python | 6,181 | 0.95 | 0.133333 | 0.064103 | python-kit | 865 | 2023-07-18T23:11:06.988503 | BSD-3-Clause | false | 0af1249cc740b035c9018a878510ee8e |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\ntry:\n from msvcrt import get_osfhandle\nexcept ImportError:\n def get_osfhandle(_):\n raise OSError("This isn't windows!")\n\n\nfrom . import win32\n\n# from wincon.h\nclass WinColor(object):\n BLACK = 0\n BLUE = 1\n ... | .venv\Lib\site-packages\colorama\winterm.py | winterm.py | Python | 7,134 | 0.95 | 0.194872 | 0.168605 | awesome-app | 392 | 2024-02-10T10:01:18.527972 | MIT | false | a52a65aeedfbf43c54d6302f0d2809cb |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nfrom .initialise import init, deinit, reinit, colorama_text, just_fix_windows_console\nfrom .ansi import Fore, Back, Style, Cursor\nfrom .ansitowin32 import AnsiToWin32\n\n__version__ = '0.4.6'\n\n | .venv\Lib\site-packages\colorama\__init__.py | __init__.py | Python | 266 | 0.95 | 0 | 0.2 | python-kit | 990 | 2023-09-16T17:52:34.727030 | GPL-3.0 | false | c2daa3dfab2ba0694195cf5f15a32808 |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nfrom io import StringIO, TextIOWrapper\nfrom unittest import TestCase, main\ntry:\n from contextlib import ExitStack\nexcept ImportError:\n # python 2\n from contextlib2 import ExitStack\n\ntry:\n from unittest.mock import MagicMock... | .venv\Lib\site-packages\colorama\tests\ansitowin32_test.py | ansitowin32_test.py | Python | 10,678 | 0.95 | 0.12585 | 0.031873 | node-utils | 267 | 2024-01-23T22:13:56.542483 | MIT | true | ffd5754e37673ceac9f2c816e1d354a6 |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nimport sys\nfrom unittest import TestCase, main\n\nfrom ..ansi import Back, Fore, Style\nfrom ..ansitowin32 import AnsiToWin32\n\nstdout_orig = sys.stdout\nstderr_orig = sys.stderr\n\n\nclass AnsiTest(TestCase):\n\n def setUp(self):\n ... | .venv\Lib\site-packages\colorama\tests\ansi_test.py | ansi_test.py | Python | 2,839 | 0.95 | 0.105263 | 0.083333 | awesome-app | 122 | 2024-03-06T14:44:53.649729 | MIT | true | 5986a9683e8505bb1a6bb312767143e3 |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nimport sys\nfrom unittest import TestCase, main, skipUnless\n\ntry:\n from unittest.mock import patch, Mock\nexcept ImportError:\n from mock import patch, Mock\n\nfrom ..ansitowin32 import StreamWrapper\nfrom ..initialise import init, jus... | .venv\Lib\site-packages\colorama\tests\initialise_test.py | initialise_test.py | Python | 6,741 | 0.95 | 0.132275 | 0.064516 | python-kit | 53 | 2025-07-05T03:12:10.582496 | Apache-2.0 | true | 711f7c7a03992d3c9b8523960e2cbffb |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nimport sys\nfrom unittest import TestCase, main\n\nfrom ..ansitowin32 import StreamWrapper, AnsiToWin32\nfrom .utils import pycharm, replace_by, replace_original_by, StreamTTY, StreamNonTTY\n\n\ndef is_a_tty(stream):\n return StreamWrapper(s... | .venv\Lib\site-packages\colorama\tests\isatty_test.py | isatty_test.py | Python | 1,866 | 0.95 | 0.175439 | 0.022727 | node-utils | 381 | 2025-03-23T17:30:16.815032 | Apache-2.0 | true | 7634e0302b0f5f962627b1922b07a3b9 |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nfrom contextlib import contextmanager\nfrom io import StringIO\nimport sys\nimport os\n\n\nclass StreamTTY(StringIO):\n def isatty(self):\n return True\n\nclass StreamNonTTY(StringIO):\n def isatty(self):\n return False\n\n@... | .venv\Lib\site-packages\colorama\tests\utils.py | utils.py | Python | 1,079 | 0.95 | 0.163265 | 0.02381 | vue-tools | 217 | 2023-12-17T00:21:51.033165 | Apache-2.0 | true | 31142629e641450ac51d1d4556112c7c |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\nimport sys\nfrom unittest import TestCase, main, skipUnless\n\ntry:\n from unittest.mock import Mock, patch\nexcept ImportError:\n from mock import Mock, patch\n\nfrom ..winterm import WinColor, WinStyle, WinTerm\n\n\nclass WinTermTest(Te... | .venv\Lib\site-packages\colorama\tests\winterm_test.py | winterm_test.py | Python | 3,709 | 0.95 | 0.083969 | 0.01 | node-utils | 119 | 2025-07-09T08:21:48.249031 | GPL-3.0 | true | 3322cabd2108da984bd053bf61b8c1cc |
# Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file.\n | .venv\Lib\site-packages\colorama\tests\__init__.py | __init__.py | Python | 75 | 0.6 | 0 | 1 | node-utils | 241 | 2024-09-13T01:30:20.567907 | BSD-3-Clause | true | b1fda43e92dec74456ef61c18b3071ff |
\n\n | .venv\Lib\site-packages\colorama\tests\__pycache__\ansitowin32_test.cpython-313.pyc | ansitowin32_test.cpython-313.pyc | Other | 17,811 | 0.8 | 0.006494 | 0 | awesome-app | 823 | 2025-04-10T07:41:05.405550 | Apache-2.0 | true | 88f225e73cd7719af3c90086461cdfff |
\n\n | .venv\Lib\site-packages\colorama\tests\__pycache__\ansi_test.cpython-313.pyc | ansi_test.cpython-313.pyc | Other | 5,518 | 0.8 | 0 | 0 | python-kit | 253 | 2024-02-05T16:49:20.070748 | MIT | true | f6eb6cfc82c3ccaf2015968fc097bdcc |
\n\n | .venv\Lib\site-packages\colorama\tests\__pycache__\initialise_test.cpython-313.pyc | initialise_test.cpython-313.pyc | Other | 11,787 | 0.8 | 0 | 0 | python-kit | 331 | 2025-06-08T18:48:03.671172 | BSD-3-Clause | true | fed60bf1426032a5ae93fc6d806b0060 |
\n\n | .venv\Lib\site-packages\colorama\tests\__pycache__\isatty_test.cpython-313.pyc | isatty_test.cpython-313.pyc | Other | 4,942 | 0.8 | 0 | 0 | vue-tools | 453 | 2024-06-16T02:51:30.697815 | GPL-3.0 | true | 642a42c0d2eeb0ff69635d9d9782e3f7 |
\n\n | .venv\Lib\site-packages\colorama\tests\__pycache__\utils.cpython-313.pyc | utils.cpython-313.pyc | Other | 2,553 | 0.8 | 0 | 0 | node-utils | 77 | 2024-06-19T23:28:09.922334 | Apache-2.0 | true | 3a3e4a36bc6d3f1a719e3df06c654188 |
\n\n | .venv\Lib\site-packages\colorama\tests\__pycache__\winterm_test.cpython-313.pyc | winterm_test.cpython-313.pyc | Other | 6,643 | 0.95 | 0 | 0.022222 | python-kit | 130 | 2023-08-03T15:49:58.804077 | GPL-3.0 | true | 7dbe8dd888c535723372c4f2f5c2b417 |
\n\n | .venv\Lib\site-packages\colorama\tests\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 189 | 0.7 | 0 | 0 | vue-tools | 748 | 2023-11-01T04:19:56.170602 | BSD-3-Clause | true | 0bc873c2070a8f0318be977b48e24731 |
\n\n | .venv\Lib\site-packages\colorama\__pycache__\ansi.cpython-313.pyc | ansi.cpython-313.pyc | Other | 4,121 | 0.8 | 0 | 0 | react-lib | 470 | 2025-01-11T08:49:27.581354 | BSD-3-Clause | false | f135ab91a924248857e100dd6de5acdc |
\n\n | .venv\Lib\site-packages\colorama\__pycache__\ansitowin32.cpython-313.pyc | ansitowin32.cpython-313.pyc | Other | 16,587 | 0.95 | 0.048077 | 0 | node-utils | 363 | 2023-08-16T14:16:57.276207 | BSD-3-Clause | false | 6b9364153843b53fd53b42779b6d507b |
\n\n | .venv\Lib\site-packages\colorama\__pycache__\initialise.cpython-313.pyc | initialise.cpython-313.pyc | Other | 3,617 | 0.8 | 0 | 0 | python-kit | 254 | 2024-11-09T01:16:24.273070 | MIT | false | 6376b5643c2e65098cd614d752871f58 |
\n\n | .venv\Lib\site-packages\colorama\__pycache__\win32.cpython-313.pyc | win32.cpython-313.pyc | Other | 8,217 | 0.8 | 0 | 0 | vue-tools | 143 | 2023-11-04T17:16:20.671325 | BSD-3-Clause | false | 1d28bef3799efcb99e08128493a6408b |
\n\n | .venv\Lib\site-packages\colorama\__pycache__\winterm.cpython-313.pyc | winterm.cpython-313.pyc | Other | 9,327 | 0.8 | 0 | 0 | vue-tools | 608 | 2024-10-25T22:07:06.659157 | Apache-2.0 | false | 5573c0767888fbe6d942cb8d7d982906 |
\n\n | .venv\Lib\site-packages\colorama\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 483 | 0.7 | 0 | 0 | node-utils | 839 | 2024-12-24T12:44:33.342848 | Apache-2.0 | false | 7bcb48b0e6336a8b5eb7efa14bc1a116 |
pip\n | .venv\Lib\site-packages\colorama-0.4.6.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | react-lib | 83 | 2025-06-26T05:21:17.653637 | MIT | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
Metadata-Version: 2.1\nName: colorama\nVersion: 0.4.6\nSummary: Cross-platform colored terminal text.\nProject-URL: Homepage, https://github.com/tartley/colorama\nAuthor-email: Jonathan Hartley <tartley@tartley.com>\nLicense-File: LICENSE.txt\nKeywords: ansi,color,colour,crossplatform,terminal,text,windows,xplatform\nC... | .venv\Lib\site-packages\colorama-0.4.6.dist-info\METADATA | METADATA | Other | 17,158 | 0.95 | 0.129252 | 0.10119 | react-lib | 826 | 2025-05-02T01:08:41.336209 | BSD-3-Clause | false | 40a32558d34334475bc175d03087174d |
colorama-0.4.6.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\ncolorama-0.4.6.dist-info/METADATA,sha256=e67SnrUMOym9sz_4TjF3vxvAV4T3aF7NyqRHHH3YEMw,17158\ncolorama-0.4.6.dist-info/RECORD,,\ncolorama-0.4.6.dist-info/WHEEL,sha256=cdcF4Fbd0FPtw2EMIOwH-3rSOTUdTCeOSXRMD1iLUb8,105\ncolorama-0.4.6.di... | .venv\Lib\site-packages\colorama-0.4.6.dist-info\RECORD | RECORD | Other | 2,174 | 0.7 | 0 | 0 | node-utils | 940 | 2023-08-02T17:34:28.639989 | GPL-3.0 | false | b30fa6ac5d3b1418c880dea1ae32b7b6 |
Wheel-Version: 1.0\nGenerator: hatchling 1.11.1\nRoot-Is-Purelib: true\nTag: py2-none-any\nTag: py3-none-any\n | .venv\Lib\site-packages\colorama-0.4.6.dist-info\WHEEL | WHEEL | Other | 105 | 0.7 | 0 | 0 | vue-tools | 753 | 2023-10-18T05:35:55.770698 | BSD-3-Clause | false | 292bc427f145c72dff4f09705f9581e4 |
Copyright (c) 2010 Jonathan Hartley\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\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the foll... | .venv\Lib\site-packages\colorama-0.4.6.dist-info\licenses\LICENSE.txt | LICENSE.txt | Other | 1,491 | 0.7 | 0 | 0.136364 | react-lib | 711 | 2025-04-23T11:52:54.083936 | GPL-3.0 | false | b4936429a56a652b84c5c01280dcaa26 |
"""Default classes for Comm and CommManager, for usage in IPython.\n"""\n\n# Copyright (c) IPython Development Team.\n# Distributed under the terms of the Modified BSD License.\nfrom __future__ import annotations\n\nimport contextlib\nimport logging\nimport typing as t\nimport uuid\n\nfrom traitlets.utils.importstring ... | .venv\Lib\site-packages\comm\base_comm.py | base_comm.py | Python | 10,153 | 0.95 | 0.198738 | 0.066406 | node-utils | 531 | 2023-09-27T01:29:29.726665 | MIT | false | 25496c9c3eda20ced5209b918d2dc239 |
"""Comm package.\n\nCopyright (c) IPython Development Team.\nDistributed under the terms of the Modified BSD License.\n\nThis package provides a way to register a Kernel Comm implementation, as per\nthe Jupyter kernel protocol.\nIt also provides a base Comm implementation and a default CommManager for the IPython case.... | .venv\Lib\site-packages\comm\__init__.py | __init__.py | Python | 1,441 | 0.95 | 0.15 | 0.02381 | node-utils | 73 | 2024-05-10T08:00:45.780771 | GPL-3.0 | false | 85c38c9ea9b5b391c170961f793b9dbb |
\n\n | .venv\Lib\site-packages\comm\__pycache__\base_comm.cpython-313.pyc | base_comm.cpython-313.pyc | Other | 12,858 | 0.95 | 0.099338 | 0 | node-utils | 59 | 2023-11-03T14:25:42.911615 | GPL-3.0 | false | a93f9c112c3dc43124ecde27cc939249 |
\n\n | .venv\Lib\site-packages\comm\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 2,096 | 0.8 | 0.093023 | 0 | awesome-app | 931 | 2024-12-26T11:32:09.133247 | GPL-3.0 | false | d9886945802327c165cb7960b61e2b0c |
pip\n | .venv\Lib\site-packages\comm-0.2.2.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | node-utils | 256 | 2025-01-07T16:32:09.034541 | Apache-2.0 | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
Metadata-Version: 2.1\nName: comm\nVersion: 0.2.2\nSummary: Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.\nProject-URL: Homepage, https://github.com/ipython/comm\nAuthor: Jupyter contributors\nLicense: BSD 3-Clause License\n \n Copyright (c) 2022, Jupyter\n All rights... | .venv\Lib\site-packages\comm-0.2.2.dist-info\METADATA | METADATA | Other | 3,689 | 0.95 | 0.051546 | 0.098592 | node-utils | 998 | 2024-10-11T21:44:24.328811 | MIT | false | 48060e8999641b8c00ea519103a135f6 |
comm-0.2.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\ncomm-0.2.2.dist-info/METADATA,sha256=o5oGQm64kDFK0M9OjFoJBG32bQfW4dNJWrdqlsoChAA,3689\ncomm-0.2.2.dist-info/RECORD,,\ncomm-0.2.2.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87\ncomm-0.2.2.dist-info/licenses/LICEN... | .venv\Lib\site-packages\comm-0.2.2.dist-info\RECORD | RECORD | Other | 689 | 0.7 | 0 | 0 | react-lib | 957 | 2024-08-12T18:44:35.268389 | BSD-3-Clause | false | 2a6498368c278f2cf17666b2ccd1811e |
Wheel-Version: 1.0\nGenerator: hatchling 1.21.1\nRoot-Is-Purelib: true\nTag: py3-none-any\n | .venv\Lib\site-packages\comm-0.2.2.dist-info\WHEEL | WHEEL | Other | 87 | 0.5 | 0 | 0 | python-kit | 307 | 2024-10-31T14:36:10.149638 | MIT | false | a2e74b4e3aea204ad48eb8854874f5a5 |
BSD 3-Clause License\n\nCopyright (c) 2022, Jupyter\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, this\n list of condi... | .venv\Lib\site-packages\comm-0.2.2.dist-info\licenses\LICENSE | LICENSE | Other | 1,515 | 0.7 | 0 | 0 | python-kit | 13 | 2024-06-29T23:07:58.941994 | BSD-3-Clause | false | 3a623b76c23287751590a7793a86e552 |
from __future__ import annotations\n\nfrom itertools import chain, pairwise\nfrom typing import TYPE_CHECKING\n\nimport numpy as np\n\nfrom contourpy.typecheck import check_code_array, check_offset_array, check_point_array\nfrom contourpy.types import CLOSEPOLY, LINETO, MOVETO, code_dtype, offset_dtype, point_dtype\n\n... | .venv\Lib\site-packages\contourpy\array.py | array.py | Python | 9,240 | 0.95 | 0.218391 | 0.01005 | awesome-app | 870 | 2025-01-16T22:27:04.109369 | GPL-3.0 | false | 5c501bfde86fbfcf02b0b1ceaa39c3fa |
from __future__ import annotations\n\nimport math\n\n\ndef calc_chunk_sizes(\n chunk_size: int | tuple[int, int] | None,\n chunk_count: int | tuple[int, int] | None,\n total_chunk_count: int | None,\n ny: int,\n nx: int,\n) -> tuple[int, int]:\n """Calculate chunk sizes.\n\n Args:\n chunk_si... | .venv\Lib\site-packages\contourpy\chunk.py | chunk.py | Python | 3,374 | 0.95 | 0.168421 | 0 | awesome-app | 851 | 2024-04-17T02:26:11.294196 | Apache-2.0 | false | da4f48ae0db5cc99836b478a7ae7427c |
from __future__ import annotations\n\nfrom itertools import pairwise\nfrom typing import TYPE_CHECKING, cast\n\nimport numpy as np\n\nfrom contourpy._contourpy import FillType, LineType\nimport contourpy.array as arr\nfrom contourpy.enum_util import as_fill_type, as_line_type\nfrom contourpy.typecheck import check_fill... | .venv\Lib\site-packages\contourpy\convert.py | convert.py | Python | 26,775 | 0.95 | 0.217391 | 0.001783 | react-lib | 685 | 2025-04-06T00:29:31.411490 | BSD-3-Clause | false | 76d1258f2a3e1fed5809daf0512a8ab5 |
from __future__ import annotations\n\nfrom typing import TYPE_CHECKING, cast\n\nfrom contourpy._contourpy import FillType, LineType\nfrom contourpy.array import (\n concat_codes_or_none,\n concat_offsets_or_none,\n concat_points_or_none,\n concat_points_or_none_with_nan,\n)\nfrom contourpy.enum_util import ... | .venv\Lib\site-packages\contourpy\dechunk.py | dechunk.py | Python | 7,963 | 0.95 | 0.173913 | 0.035714 | awesome-app | 436 | 2025-01-13T17:25:07.915323 | Apache-2.0 | false | 5b29f2e1bde1fbe9dbac6fa164adf604 |
from __future__ import annotations\n\nfrom contourpy._contourpy import FillType, LineType, ZInterp\n\n\ndef as_fill_type(fill_type: FillType | str) -> FillType:\n """Coerce a FillType or string value to a FillType.\n\n Args:\n fill_type (FillType or str): Value to convert.\n\n Return:\n FillType:... | .venv\Lib\site-packages\contourpy\enum_util.py | enum_util.py | Python | 1,576 | 0.85 | 0.157895 | 0 | vue-tools | 267 | 2023-11-14T13:53:24.217514 | Apache-2.0 | false | 66f2bf9eb052e750f879cc2f9de1ed2b |
from __future__ import annotations\n\nfrom typing import TYPE_CHECKING, Any, cast\n\nimport numpy as np\n\nfrom contourpy import FillType, LineType\nfrom contourpy.enum_util import as_fill_type, as_line_type\nfrom contourpy.types import MOVETO, code_dtype, offset_dtype, point_dtype\n\nif TYPE_CHECKING:\n import cont... | .venv\Lib\site-packages\contourpy\typecheck.py | typecheck.py | Python | 10,950 | 0.95 | 0.339901 | 0.010811 | node-utils | 859 | 2024-03-16T03:57:07.691168 | BSD-3-Clause | false | 2d6cf917e2e721c9855914e72cf11399 |
from __future__ import annotations\n\nimport numpy as np\n\n# dtypes of arrays returned by ContourPy.\npoint_dtype = np.float64\ncode_dtype = np.uint8\noffset_dtype = np.uint32\n\n# Kind codes used in Matplotlib Paths.\nMOVETO = 1\nLINETO = 2\nCLOSEPOLY = 79\n | .venv\Lib\site-packages\contourpy\types.py | types.py | Python | 260 | 0.95 | 0 | 0.2 | react-lib | 925 | 2024-10-03T11:37:32.980838 | BSD-3-Clause | false | 6e88dddf9e5154385cf690ecd5324a93 |
!<arch>\n/ -1 0 182 `\n | .venv\Lib\site-packages\contourpy\_contourpy.cp313-win_amd64.lib | _contourpy.cp313-win_amd64.lib | Other | 2,068 | 0.8 | 0 | 0 | python-kit | 744 | 2023-11-01T06:16:46.557252 | MIT | false | 5ee1c35f56b031c658f700170e9cf60f |
from typing import ClassVar, NoReturn, TypeAlias\n\nimport numpy as np\nimport numpy.typing as npt\n\nimport contourpy._contourpy as cpy\n\n# Input numpy array types, the same as in common.h\nCoordinateArray: TypeAlias = npt.NDArray[np.float64]\nMaskArray: TypeAlias = npt.NDArray[np.bool_]\nLevelArray: TypeAlias = npt.... | .venv\Lib\site-packages\contourpy\_contourpy.pyi | _contourpy.pyi | Other | 7,321 | 0.95 | 0.326633 | 0.043956 | node-utils | 440 | 2024-11-20T22:50:58.377879 | Apache-2.0 | false | 6cc069763a1bc941adf429fa3b085363 |
__version__ = "1.3.2"\n | .venv\Lib\site-packages\contourpy\_version.py | _version.py | Python | 23 | 0.5 | 0 | 0 | node-utils | 951 | 2025-01-02T13:13:04.947960 | Apache-2.0 | false | 99c0fd59a954826e9422399f22c94d7f |
from __future__ import annotations\n\nfrom typing import TYPE_CHECKING\n\nimport numpy as np\n\nfrom contourpy._contourpy import (\n ContourGenerator,\n FillType,\n LineType,\n Mpl2005ContourGenerator,\n Mpl2014ContourGenerator,\n SerialContourGenerator,\n ThreadedContourGenerator,\n ZInterp,\n ... | .venv\Lib\site-packages\contourpy\__init__.py | __init__.py | Python | 12,116 | 0.95 | 0.164912 | 0.070833 | python-kit | 767 | 2025-05-24T05:22:14.195920 | BSD-3-Clause | false | 4cc52508f40bbf83d18ef7f47b50a861 |
from __future__ import annotations\n\nimport io\nfrom typing import TYPE_CHECKING, Any\n\nfrom bokeh.io import export_png, export_svg, show\nfrom bokeh.io.export import get_screenshot_as_png\nfrom bokeh.layouts import gridplot\nfrom bokeh.models.annotations.labels import Label\nfrom bokeh.palettes import Category10\nfr... | .venv\Lib\site-packages\contourpy\util\bokeh_renderer.py | bokeh_renderer.py | Python | 14,298 | 0.95 | 0.115044 | 0.013423 | node-utils | 95 | 2025-01-16T03:38:56.436143 | Apache-2.0 | false | 3428255bb19d0af4fc20f0f354c405f2 |
from __future__ import annotations\n\nfrom typing import TYPE_CHECKING, cast\n\nfrom contourpy import FillType, LineType\nfrom contourpy.array import offsets_from_codes\nfrom contourpy.convert import convert_lines\nfrom contourpy.dechunk import dechunk_lines\n\nif TYPE_CHECKING:\n from contourpy._contourpy import (\... | .venv\Lib\site-packages\contourpy\util\bokeh_util.py | bokeh_util.py | Python | 2,878 | 0.95 | 0.202703 | 0 | vue-tools | 61 | 2025-02-13T15:19:56.115613 | Apache-2.0 | false | 07499f2a15a42827c140cbcc071f609a |
from __future__ import annotations\n\nfrom typing import TYPE_CHECKING, Any\n\nimport numpy as np\n\nif TYPE_CHECKING:\n from contourpy._contourpy import CoordinateArray\n\n\ndef simple(\n shape: tuple[int, int], want_mask: bool = False,\n) -> tuple[CoordinateArray, CoordinateArray, CoordinateArray | np.ma.Masked... | .venv\Lib\site-packages\contourpy\util\data.py | data.py | Python | 2,664 | 0.95 | 0.115385 | 0.016949 | node-utils | 0 | 2024-01-18T13:40:32.097925 | GPL-3.0 | false | a7d54f52b0ddfdfb49164deef4ec4907 |
from __future__ import annotations\n\nimport io\nfrom itertools import pairwise\nfrom typing import TYPE_CHECKING, Any, cast\n\nimport matplotlib.collections as mcollections\nimport matplotlib.pyplot as plt\nimport numpy as np\n\nfrom contourpy import FillType, LineType\nfrom contourpy.convert import convert_filled, co... | .venv\Lib\site-packages\contourpy\util\mpl_renderer.py | mpl_renderer.py | Python | 20,660 | 0.95 | 0.143925 | 0.014737 | react-lib | 360 | 2024-12-22T15:11:59.132612 | Apache-2.0 | false | 0b29ceb7764c581f0b5e274f369deaec |
from __future__ import annotations\n\nfrom itertools import pairwise\nfrom typing import TYPE_CHECKING, cast\n\nimport matplotlib.path as mpath\nimport numpy as np\n\nfrom contourpy import FillType, LineType\nfrom contourpy.array import codes_from_offsets\n\nif TYPE_CHECKING:\n from contourpy._contourpy import FillR... | .venv\Lib\site-packages\contourpy\util\mpl_util.py | mpl_util.py | Python | 3,529 | 0.95 | 0.324675 | 0.014493 | awesome-app | 272 | 2025-06-08T02:04:01.116402 | GPL-3.0 | false | 5741ead8fb69ac8a6d4aa021e242218b |
from __future__ import annotations\n\nfrom abc import ABC, abstractmethod\nfrom typing import TYPE_CHECKING, Any\n\nimport numpy as np\n\nif TYPE_CHECKING:\n import io\n\n from numpy.typing import ArrayLike\n\n from contourpy._contourpy import CoordinateArray, FillReturn, FillType, LineReturn, LineType\n\n\ncl... | .venv\Lib\site-packages\contourpy\util\renderer.py | renderer.py | Python | 5,284 | 0.85 | 0.162651 | 0.013986 | python-kit | 135 | 2023-09-24T05:01:26.988400 | BSD-3-Clause | false | b01872683ccf489b3b5d467e38c538e3 |
# _build_config.py.in is converted into _build_config.py during the meson build process.\n\nfrom __future__ import annotations\n\n\ndef build_config() -> dict[str, str]:\n """\n Return a dictionary containing build configuration settings.\n\n All dictionary keys and values are strings, for example ``False`` is... | .venv\Lib\site-packages\contourpy\util\_build_config.py | _build_config.py | Python | 2,085 | 0.95 | 0.083333 | 0.163265 | python-kit | 715 | 2024-12-30T05:12:58.368860 | BSD-3-Clause | false | b029b41fe4d98fb624e148bc9f7504fd |
from __future__ import annotations\n\nfrom contourpy.util._build_config import build_config\n\n__all__ = ["build_config"]\n | .venv\Lib\site-packages\contourpy\util\__init__.py | __init__.py | Python | 123 | 0.85 | 0 | 0 | vue-tools | 733 | 2023-07-29T09:18:40.057393 | MIT | false | 67b33e2bbb6822381a7429ab758a3d57 |
\n\n | .venv\Lib\site-packages\contourpy\util\__pycache__\bokeh_renderer.cpython-313.pyc | bokeh_renderer.cpython-313.pyc | Other | 17,708 | 0.95 | 0.02439 | 0 | react-lib | 218 | 2025-02-20T02:49:42.417902 | MIT | false | 34f561b6f1e35ceccc253f40b411f7bb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.