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\mistune\plugins\__pycache__\formatting.cpython-313.pyc | formatting.cpython-313.pyc | Other | 8,122 | 0.8 | 0 | 0 | node-utils | 361 | 2023-10-22T00:15:57.628939 | Apache-2.0 | false | 49e5051343965f3701762c814c30e41d |
\n\n | .venv\Lib\site-packages\mistune\plugins\__pycache__\math.cpython-313.pyc | math.cpython-313.pyc | Other | 3,599 | 0.8 | 0.046512 | 0 | python-kit | 690 | 2025-03-14T05:27:03.574582 | GPL-3.0 | false | dd4362321e7792f123e582b7ed3f7a6b |
\n\n | .venv\Lib\site-packages\mistune\plugins\__pycache__\ruby.cpython-313.pyc | ruby.cpython-313.pyc | Other | 4,263 | 0.8 | 0 | 0 | awesome-app | 105 | 2024-06-27T07:43:34.987812 | BSD-3-Clause | false | ab80c6b3400f1a178866f146ef616e8c |
\n\n | .venv\Lib\site-packages\mistune\plugins\__pycache__\speedup.cpython-313.pyc | speedup.cpython-313.pyc | Other | 2,412 | 0.8 | 0 | 0 | node-utils | 286 | 2025-06-04T10:47:46.731846 | Apache-2.0 | false | 01212bf94276bb0e3beb9d6f51c6990d |
\n\n | .venv\Lib\site-packages\mistune\plugins\__pycache__\spoiler.cpython-313.pyc | spoiler.cpython-313.pyc | Other | 4,267 | 0.8 | 0.04 | 0 | awesome-app | 479 | 2023-12-16T01:16:53.223992 | MIT | false | 55cfcbdd33ce5cd4eae095d9f64a2435 |
\n\n | .venv\Lib\site-packages\mistune\plugins\__pycache__\table.cpython-313.pyc | table.cpython-313.pyc | Other | 8,602 | 0.8 | 0 | 0.009346 | node-utils | 535 | 2024-08-03T00:10:58.926558 | GPL-3.0 | false | ab5b6b5aa239d8ddc7559eb127e7bf7b |
\n\n | .venv\Lib\site-packages\mistune\plugins\__pycache__\task_lists.cpython-313.pyc | task_lists.cpython-313.pyc | Other | 3,215 | 0.8 | 0.057143 | 0 | react-lib | 173 | 2024-10-29T04:51:30.101912 | Apache-2.0 | false | 73b5a17ce546dfd379f5e55ec55bddd6 |
\n\n | .venv\Lib\site-packages\mistune\plugins\__pycache__\url.cpython-313.pyc | url.cpython-313.pyc | Other | 1,446 | 0.8 | 0 | 0 | react-lib | 161 | 2025-01-04T04:44:21.093998 | MIT | false | 3140df3f0fc54c6bd60f98d4407bbcd2 |
\n\n | .venv\Lib\site-packages\mistune\plugins\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 2,316 | 0.95 | 0 | 0.052632 | node-utils | 264 | 2024-11-23T05:21:49.481726 | BSD-3-Clause | false | 353a7cadf9c3a6b9681ad8e014330ad5 |
from typing import Any, ClassVar, Dict, Optional, Tuple, Literal\nfrom ..core import BaseRenderer, BlockState\nfrom ..util import escape as escape_text\nfrom ..util import safe_entity, striptags\n\n\nclass HTMLRenderer(BaseRenderer):\n """A renderer for converting Markdown to HTML."""\n\n _escape: bool\n NAME:... | .venv\Lib\site-packages\mistune\renderers\html.py | html.py | Python | 4,926 | 0.95 | 0.287582 | 0.008065 | awesome-app | 582 | 2025-04-01T09:58:58.945019 | Apache-2.0 | false | 3546953c869aac31fe22952c5551a5e2 |
import re\nfrom textwrap import indent\nfrom typing import Any, Dict, Iterable, cast\n\nfrom ..core import BaseRenderer, BlockState\nfrom ..util import strip_end\nfrom ._list import render_list\n\nfenced_re = re.compile(r"^[`~]+", re.M)\n\n\nclass MarkdownRenderer(BaseRenderer):\n """A renderer to re-format Markdown... | .venv\Lib\site-packages\mistune\renderers\markdown.py | markdown.py | Python | 4,962 | 0.95 | 0.253333 | 0.008696 | react-lib | 175 | 2025-04-05T10:40:52.923317 | Apache-2.0 | false | 68db56f69e67ae152e5a69dde69d3c09 |
from textwrap import indent\nfrom typing import Any, Dict, Iterable, List, cast\n\nfrom ..core import BaseRenderer, BlockState\nfrom ..util import strip_end\nfrom ._list import render_list\n\n\nclass RSTRenderer(BaseRenderer):\n """A renderer for converting Markdown to ReST."""\n\n NAME = "rst"\n\n #: marker s... | .venv\Lib\site-packages\mistune\renderers\rst.py | rst.py | Python | 5,523 | 0.95 | 0.234899 | 0.032787 | react-lib | 17 | 2023-12-02T20:19:35.874494 | BSD-3-Clause | false | cae37a7ac1cc2470f74c593ed39ac79b |
from typing import TYPE_CHECKING, Any, Dict, Iterable, cast\n\nfrom ..util import strip_end\n\nif TYPE_CHECKING:\n from ..core import BaseRenderer, BlockState\n\n\ndef render_list(renderer: "BaseRenderer", token: Dict[str, Any], state: "BlockState") -> str:\n attrs = token["attrs"]\n if attrs["ordered"]:\n ... | .venv\Lib\site-packages\mistune\renderers\_list.py | _list.py | Python | 2,066 | 0.85 | 0.214286 | 0 | react-lib | 147 | 2025-06-07T04:53:03.164902 | BSD-3-Clause | false | e9653d7d180d5d44e116bfadd8083cd3 |
\n\n | .venv\Lib\site-packages\mistune\renderers\__pycache__\html.cpython-313.pyc | html.cpython-313.pyc | Other | 8,652 | 0.8 | 0.057971 | 0.029412 | node-utils | 578 | 2023-08-26T08:53:47.567984 | Apache-2.0 | false | 46fa31103029472fb4abc386e9d0fdab |
\n\n | .venv\Lib\site-packages\mistune\renderers\__pycache__\markdown.cpython-313.pyc | markdown.cpython-313.pyc | Other | 8,909 | 0.8 | 0 | 0 | react-lib | 229 | 2023-12-07T17:51:51.092809 | Apache-2.0 | false | ae94bb97b568811dd064900523f2942d |
\n\n | .venv\Lib\site-packages\mistune\renderers\__pycache__\rst.cpython-313.pyc | rst.cpython-313.pyc | Other | 9,307 | 0.8 | 0.00813 | 0 | vue-tools | 868 | 2023-07-14T04:55:02.209183 | MIT | false | ae62f5fca780941e2f2cf350c41ddb51 |
\n\n | .venv\Lib\site-packages\mistune\renderers\__pycache__\_list.cpython-313.pyc | _list.cpython-313.pyc | Other | 2,975 | 0.8 | 0 | 0 | python-kit | 665 | 2025-03-21T18:43:36.298483 | GPL-3.0 | false | e0f923248db933246170dc2add92d2fa |
\n\n | .venv\Lib\site-packages\mistune\renderers\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 192 | 0.7 | 0 | 0 | awesome-app | 136 | 2025-04-30T20:10:55.192441 | MIT | false | da050e2fa5c069faba634a0dbcaf13c3 |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\block_parser.cpython-313.pyc | block_parser.cpython-313.pyc | Other | 20,012 | 0.95 | 0.05 | 0.01227 | python-kit | 894 | 2024-01-04T21:00:33.711165 | Apache-2.0 | false | 93d4cfd2e9615a90c47b90128f4d789a |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\core.cpython-313.pyc | core.cpython-313.pyc | Other | 13,612 | 0.95 | 0.022059 | 0.023438 | react-lib | 792 | 2025-01-18T07:24:50.189719 | MIT | false | 4575e4a049cfc91845b4bd28ebafd940 |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\helpers.cpython-313.pyc | helpers.cpython-313.pyc | Other | 5,862 | 0.8 | 0 | 0 | vue-tools | 876 | 2023-08-12T05:18:28.874246 | GPL-3.0 | false | 85d0a7a0bdaebc6557a0d33a7cec8a3d |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\inline_parser.cpython-313.pyc | inline_parser.cpython-313.pyc | Other | 15,720 | 0.8 | 0 | 0.035971 | python-kit | 554 | 2025-03-06T14:56:46.927522 | BSD-3-Clause | false | 8a23fcb9f0d1504934a8e5029f1ec6c0 |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\list_parser.cpython-313.pyc | list_parser.cpython-313.pyc | Other | 9,526 | 0.8 | 0.010526 | 0 | react-lib | 157 | 2025-01-31T10:15:52.664255 | GPL-3.0 | false | 5ca897b1f00561bbcc39237539596b5e |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\markdown.cpython-313.pyc | markdown.cpython-313.pyc | Other | 5,600 | 0.95 | 0 | 0 | node-utils | 783 | 2023-11-27T04:04:05.821192 | BSD-3-Clause | false | d0378bbbad7c705d6b25a6ef0c630709 |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\toc.cpython-313.pyc | toc.cpython-313.pyc | Other | 4,856 | 0.95 | 0.020833 | 0 | react-lib | 248 | 2024-06-17T12:17:48.493582 | Apache-2.0 | false | fd6c3331d87c18eea9a3c4d6851fdaed |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\util.cpython-313.pyc | util.cpython-313.pyc | Other | 3,830 | 0.8 | 0.047619 | 0.068966 | python-kit | 912 | 2023-08-26T07:37:10.951855 | Apache-2.0 | false | 3c85ea6affe81944546858e847fce7a8 |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 3,235 | 0.95 | 0.018519 | 0.042553 | vue-tools | 447 | 2025-06-25T14:43:14.474107 | BSD-3-Clause | false | 01c36bb6d8ec2c8707bfc97dd6af45b3 |
\n\n | .venv\Lib\site-packages\mistune\__pycache__\__main__.cpython-313.pyc | __main__.cpython-313.pyc | Other | 4,638 | 0.8 | 0 | 0.076923 | vue-tools | 788 | 2024-09-05T14:50:42.769290 | Apache-2.0 | false | 98344124d1b1d9cd462650c71cbf24dc |
pip\n | .venv\Lib\site-packages\mistune-3.1.3.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | awesome-app | 725 | 2024-04-02T10:35:55.060986 | GPL-3.0 | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
Copyright (c) 2014, Hsiaoming Yang\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the followi... | .venv\Lib\site-packages\mistune-3.1.3.dist-info\LICENSE | LICENSE | Other | 1,475 | 0.7 | 0 | 0.428571 | vue-tools | 934 | 2024-04-03T11:34:21.925442 | GPL-3.0 | false | 7662a489238001edfceff24a3ce11cbd |
Metadata-Version: 2.2\nName: mistune\nVersion: 3.1.3\nSummary: A sane and fast Markdown parser with useful plugins and renderers\nAuthor-email: Hsiaoming Yang <me@lepture.com>\nLicense: BSD-3-Clause\nProject-URL: Documentation, https://mistune.lepture.com/\nProject-URL: Source, https://github.com/lepture/mistune\nProje... | .venv\Lib\site-packages\mistune-3.1.3.dist-info\METADATA | METADATA | Other | 1,785 | 0.95 | 0.017857 | 0 | node-utils | 46 | 2023-11-25T17:55:47.974107 | MIT | false | 71691709904b7dba8511aa1b798f6bf9 |
mistune-3.1.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\nmistune-3.1.3.dist-info/LICENSE,sha256=U5AT_Y4Z90T4vw4npTK7_1TNaJ7O96gA9Wrl3IJL6HA,1475\nmistune-3.1.3.dist-info/METADATA,sha256=VV4BIW0GqVIiO89rujLho82SAYNGVTvnqZWomBZuJzI,1785\nmistune-3.1.3.dist-info/RECORD,,\nmistune-3.1.3.dist-... | .venv\Lib\site-packages\mistune-3.1.3.dist-info\RECORD | RECORD | Other | 5,299 | 0.7 | 0 | 0 | react-lib | 122 | 2023-12-25T08:13:28.014855 | Apache-2.0 | false | eaf4d9cf12df2100e460a3eeed186608 |
mistune\n | .venv\Lib\site-packages\mistune-3.1.3.dist-info\top_level.txt | top_level.txt | Other | 8 | 0.5 | 0 | 0 | node-utils | 196 | 2024-02-11T19:51:19.203460 | BSD-3-Clause | false | 9fcadb8eef9639d9c32097190f7d344b |
Wheel-Version: 1.0\nGenerator: setuptools (76.1.0)\nRoot-Is-Purelib: true\nTag: py3-none-any\n\n | .venv\Lib\site-packages\mistune-3.1.3.dist-info\WHEEL | WHEEL | Other | 91 | 0.5 | 0 | 0 | vue-tools | 803 | 2025-02-24T02:45:44.838447 | Apache-2.0 | false | 1183884662222bc6d045674285630815 |
from matplotlib import transforms\nfrom matplotlib.offsetbox import (AnchoredOffsetbox, AuxTransformBox,\n DrawingArea, TextArea, VPacker)\nfrom matplotlib.patches import (Rectangle, ArrowStyle,\n FancyArrowPatch, PathPatch)\nfrom matplotlib.text import Te... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\anchored_artists.py | anchored_artists.py | Python | 17,161 | 0.85 | 0.101449 | 0.036313 | awesome-app | 513 | 2025-07-08T08:51:20.238219 | MIT | false | 5ba8b376b0452151c96bc7e9e3c4c55d |
"""\nHelper classes to adjust the positions of multiple axes at drawing time.\n"""\n\nimport functools\n\nimport numpy as np\n\nimport matplotlib as mpl\nfrom matplotlib import _api\nfrom matplotlib.gridspec import SubplotSpec\nimport matplotlib.transforms as mtransforms\nfrom . import axes_size as Size\n\n\nclass Divi... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\axes_divider.py | axes_divider.py | Python | 21,892 | 0.95 | 0.186084 | 0.055133 | python-kit | 393 | 2024-03-22T04:53:22.762080 | MIT | false | 39113740e7344187459a10329ee211a4 |
from numbers import Number\nimport functools\nfrom types import MethodType\n\nimport numpy as np\n\nfrom matplotlib import _api, cbook\nfrom matplotlib.gridspec import SubplotSpec\n\nfrom .axes_divider import Size, SubplotDivider, Divider\nfrom .mpl_axes import Axes, SimpleAxisArtist\n\n\nclass CbarAxesBase:\n def _... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\axes_grid.py | axes_grid.py | Python | 22,344 | 0.95 | 0.147425 | 0.012448 | awesome-app | 764 | 2025-05-01T21:42:28.800935 | GPL-3.0 | false | 47917c7a21671789217be63d09ad3c3a |
from types import MethodType\n\nimport numpy as np\n\nfrom .axes_divider import make_axes_locatable, Size\nfrom .mpl_axes import Axes, SimpleAxisArtist\n\n\ndef make_rgb_axes(ax, pad=0.01, axes_class=None, **kwargs):\n """\n Parameters\n ----------\n ax : `~matplotlib.axes.Axes`\n Axes instance to cr... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\axes_rgb.py | axes_rgb.py | Python | 5,227 | 0.95 | 0.165605 | 0.037879 | vue-tools | 938 | 2025-01-17T22:11:32.001915 | Apache-2.0 | false | 38cbfbbc8b7ee68841ae72a65b0ffac1 |
"""\nProvides classes of simple units that will be used with `.AxesDivider`\nclass (or others) to determine the size of each Axes. The unit\nclasses define `get_size` method that returns a tuple of two floats,\nmeaning relative and absolute sizes, respectively.\n\nNote that this class is nothing more than a simple tupl... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\axes_size.py | axes_size.py | Python | 7,713 | 0.95 | 0.210332 | 0.009615 | vue-tools | 883 | 2025-02-11T13:09:29.630274 | MIT | false | 93428a31d5fd5683cc5f18b8a1ae674c |
"""\nA collection of functions and objects for creating or placing inset axes.\n"""\n\nfrom matplotlib import _api, _docstring\nfrom matplotlib.offsetbox import AnchoredOffsetbox\nfrom matplotlib.patches import Patch, Rectangle\nfrom matplotlib.path import Path\nfrom matplotlib.transforms import Bbox\nfrom matplotlib.t... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\inset_locator.py | inset_locator.py | Python | 19,649 | 0.95 | 0.121387 | 0.052009 | node-utils | 70 | 2025-01-04T09:08:31.964708 | MIT | false | da9a64f9153e04bb46a00a3e61dee720 |
import matplotlib.axes as maxes\nfrom matplotlib.artist import Artist\nfrom matplotlib.axis import XAxis, YAxis\n\n\nclass SimpleChainedObjects:\n def __init__(self, objects):\n self._objects = objects\n\n def __getattr__(self, k):\n _a = SimpleChainedObjects([getattr(a, k) for a in self._objects])\... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\mpl_axes.py | mpl_axes.py | Python | 4,251 | 0.95 | 0.273438 | 0.028846 | awesome-app | 216 | 2025-04-23T08:54:42.085349 | GPL-3.0 | false | 13721bcac40ceb457fdc226c8041dd9c |
from matplotlib import _api, cbook\nimport matplotlib.artist as martist\nimport matplotlib.transforms as mtransforms\nfrom matplotlib.transforms import Bbox\nfrom .mpl_axes import Axes\n\n\nclass ParasiteAxesBase:\n\n def __init__(self, parent_axes, aux_transform=None,\n *, viewlim_mode=None, **kwarg... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\parasite_axes.py | parasite_axes.py | Python | 9,404 | 0.95 | 0.159533 | 0.074766 | awesome-app | 760 | 2024-12-19T12:56:00.042747 | BSD-3-Clause | false | 41be2ce89284dd3bf007cefd55d5f122 |
from . import axes_size as Size\nfrom .axes_divider import Divider, SubplotDivider, make_axes_locatable\nfrom .axes_grid import AxesGrid, Grid, ImageGrid\n\nfrom .parasite_axes import host_subplot, host_axes\n\n__all__ = ["Size",\n "Divider", "SubplotDivider", "make_axes_locatable",\n "AxesGrid", "G... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__init__.py | __init__.py | Python | 371 | 0.85 | 0 | 0 | node-utils | 406 | 2025-05-09T22:16:33.600170 | BSD-3-Clause | false | 40ca61a5a903a67af811c36bed775a0d |
from matplotlib.testing.conftest import (mpl_test_settings, # noqa\n pytest_configure, pytest_unconfigure)\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\tests\conftest.py | conftest.py | Python | 147 | 0.95 | 0 | 0 | node-utils | 897 | 2025-04-09T05:50:55.528450 | MIT | true | a9af9c9b2ae8eefcebb125a652ac4c2b |
from itertools import product\nimport io\nimport platform\n\nimport matplotlib as mpl\nimport matplotlib.pyplot as plt\nimport matplotlib.ticker as mticker\nfrom matplotlib import cbook\nfrom matplotlib.backend_bases import MouseEvent\nfrom matplotlib.colors import LogNorm\nfrom matplotlib.patches import Circle, Ellips... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\tests\test_axes_grid1.py | test_axes_grid1.py | Python | 29,093 | 0.95 | 0.088235 | 0.093846 | awesome-app | 628 | 2025-02-10T17:29:17.489914 | BSD-3-Clause | true | b33724071120dca9234b45c1f1bf3102 |
from pathlib import Path\n\n\n# Check that the test directories exist\nif not (Path(__file__).parent / "baseline_images").exists():\n raise OSError(\n 'The baseline image directory does not exist. '\n 'This is most likely because the test data is not installed. '\n 'You may need to install matpl... | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\tests\__init__.py | __init__.py | Python | 365 | 0.95 | 0.1 | 0.125 | python-kit | 178 | 2024-03-11T15:02:55.095153 | GPL-3.0 | true | 58fdb0c615f036e99765a61f6b25a3a4 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\tests\__pycache__\conftest.cpython-313.pyc | conftest.cpython-313.pyc | Other | 341 | 0.7 | 0 | 0 | vue-tools | 347 | 2023-11-09T15:53:31.390888 | Apache-2.0 | true | 330945a2f5d905b4b47b8b4c71b6b665 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\tests\__pycache__\test_axes_grid1.cpython-313.pyc | test_axes_grid1.cpython-313.pyc | Other | 44,869 | 0.8 | 0.005263 | 0.066474 | node-utils | 46 | 2023-08-30T04:30:02.130718 | Apache-2.0 | true | 5c92325d481af4b148300cef1e0f47df |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\tests\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 622 | 0.7 | 0 | 0 | react-lib | 756 | 2024-09-22T10:09:26.126141 | GPL-3.0 | true | 0bc69001ed9823cea8d58718997e182a |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\anchored_artists.cpython-313.pyc | anchored_artists.cpython-313.pyc | Other | 15,758 | 0.95 | 0.071207 | 0.02349 | vue-tools | 734 | 2025-06-25T02:14:29.323613 | BSD-3-Clause | false | 6d1734d6f3539e5292f43934852cd45b |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\axes_divider.cpython-313.pyc | axes_divider.cpython-313.pyc | Other | 27,585 | 0.95 | 0.072674 | 0.018868 | awesome-app | 110 | 2025-07-08T15:14:54.858777 | GPL-3.0 | false | 0ac93c6efbc34de721fece78684e8124 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\axes_grid.cpython-313.pyc | axes_grid.cpython-313.pyc | Other | 27,763 | 0.95 | 0.028213 | 0 | python-kit | 669 | 2024-06-20T12:40:51.203815 | BSD-3-Clause | false | e5441685328093e9be17b421739feaff |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\axes_rgb.cpython-313.pyc | axes_rgb.cpython-313.pyc | Other | 7,592 | 0.95 | 0.095238 | 0.034783 | awesome-app | 864 | 2024-06-21T19:43:28.096085 | BSD-3-Clause | false | 8942e6e10ccffd49b859d461096d3dd2 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\axes_size.cpython-313.pyc | axes_size.cpython-313.pyc | Other | 13,111 | 0.95 | 0.025641 | 0 | vue-tools | 48 | 2025-02-05T19:38:45.610191 | MIT | false | 9e3c9f56016f813d5e4172f8ab53fe23 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\inset_locator.cpython-313.pyc | inset_locator.cpython-313.pyc | Other | 23,599 | 0.95 | 0.053619 | 0.070064 | vue-tools | 257 | 2024-01-22T09:13:23.087027 | GPL-3.0 | false | e5f4700a22b4daf3bb3b9483d74ab732 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\mpl_axes.cpython-313.pyc | mpl_axes.cpython-313.pyc | Other | 7,963 | 0.8 | 0 | 0 | node-utils | 241 | 2024-09-22T21:16:15.107059 | GPL-3.0 | false | 8f27e35a6fa21782d15dd0dd069e8bfa |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\parasite_axes.cpython-313.pyc | parasite_axes.cpython-313.pyc | Other | 13,136 | 0.95 | 0.019868 | 0.022059 | react-lib | 239 | 2023-11-01T00:07:07.619745 | GPL-3.0 | false | 91c9bf9fbdfa798b33f8c5552092f045 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axes_grid1\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 567 | 0.7 | 0 | 0 | vue-tools | 244 | 2024-08-20T02:12:10.292388 | BSD-3-Clause | false | 6ded4958595266b7e343df45bb8ad670 |
import numpy as np\nimport math\n\nfrom mpl_toolkits.axisartist.grid_finder import ExtremeFinderSimple\n\n\ndef select_step_degree(dv):\n\n degree_limits_ = [1.5, 3, 7, 13, 20, 40, 70, 120, 270, 520]\n degree_steps_ = [1, 2, 5, 10, 15, 30, 45, 90, 180, 360]\n degree_factors = [1.] * len(degree_steps_)\n\n ... | .venv\Lib\site-packages\mpl_toolkits\axisartist\angle_helper.py | angle_helper.py | Python | 12,952 | 0.95 | 0.190355 | 0.075342 | python-kit | 612 | 2023-11-06T12:58:22.303210 | BSD-3-Clause | false | 700322f454f796ebc5b17e8ba7708b3a |
from mpl_toolkits.axes_grid1.axes_divider import ( # noqa\n Divider, SubplotDivider, AxesDivider, make_axes_locatable)\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\axes_divider.py | axes_divider.py | Python | 122 | 0.95 | 0 | 0 | python-kit | 790 | 2024-05-10T05:20:13.046315 | Apache-2.0 | false | 33521ac2dec364811aaf2b5fe09a9704 |
"""\nAxislines includes modified implementation of the Axes class. The\nbiggest difference is that the artists responsible for drawing the axis spine,\nticks, ticklabels and axis labels are separated out from Matplotlib's Axis\nclass. Originally, this change was motivated to support curvilinear\ngrid. Here are a few re... | .venv\Lib\site-packages\mpl_toolkits\axisartist\axislines.py | axislines.py | Python | 16,556 | 0.95 | 0.204593 | 0.070461 | vue-tools | 42 | 2025-01-02T05:01:38.199935 | GPL-3.0 | false | e6e82b8b66a8c089cda5a9ef0a4aa7bd |
"""\nProvides classes to style the axis lines.\n"""\nimport math\n\nimport numpy as np\n\nimport matplotlib as mpl\nfrom matplotlib.patches import _Style, FancyArrowPatch\nfrom matplotlib.path import Path\nfrom matplotlib.transforms import IdentityTransform\n\n\nclass _FancyAxislineStyle:\n class SimpleArrow(FancyAr... | .venv\Lib\site-packages\mpl_toolkits\axisartist\axisline_style.py | axisline_style.py | Python | 6,723 | 0.95 | 0.19171 | 0.039216 | vue-tools | 355 | 2025-04-21T01:28:12.745439 | GPL-3.0 | false | 8b9031b07cdb3bbaeb0232d851ca2812 |
"""\nThe :mod:`.axis_artist` module implements custom artists to draw axis elements\n(axis lines and labels, tick lines and labels, grid lines).\n\nAxis lines and labels and tick lines and labels are managed by the `AxisArtist`\nclass; grid lines are managed by the `GridlinesCollection` class.\n\nThere is one `AxisArti... | .venv\Lib\site-packages\mpl_toolkits\axisartist\axis_artist.py | axis_artist.py | Python | 38,328 | 0.95 | 0.153226 | 0.041341 | awesome-app | 313 | 2023-12-30T22:11:23.444635 | BSD-3-Clause | false | 906da41c22d76b2c4b065a165defa2cd |
"""\nAn experimental support for curvilinear grid.\n"""\n\n# TODO :\n# see if tick_iterator method can be simplified by reusing the parent method.\n\nimport functools\n\nimport numpy as np\n\nimport matplotlib as mpl\nfrom matplotlib import _api, cbook\nimport matplotlib.patches as mpatches\nfrom matplotlib.path import... | .venv\Lib\site-packages\mpl_toolkits\axisartist\floating_axes.py | floating_axes.py | Python | 10,337 | 0.95 | 0.141818 | 0.115741 | awesome-app | 165 | 2024-06-04T07:17:56.970004 | MIT | false | 08eedb31b6b70852c8ec5cd5ad7341ec |
import numpy as np\n\nfrom matplotlib import ticker as mticker, _api\nfrom matplotlib.transforms import Bbox, Transform\n\n\ndef _find_line_box_crossings(xys, bbox):\n """\n Find the points where a polyline crosses a bbox, and the crossing angles.\n\n Parameters\n ----------\n xys : (N, 2) array\n ... | .venv\Lib\site-packages\mpl_toolkits\axisartist\grid_finder.py | grid_finder.py | Python | 12,265 | 0.95 | 0.205521 | 0.037175 | react-lib | 235 | 2023-12-05T03:32:47.163309 | Apache-2.0 | false | f8a8b3bc1c1f4b7911aa17d9a859b333 |
"""\nAn experimental support for curvilinear grid.\n"""\n\nimport functools\n\nimport numpy as np\n\nimport matplotlib as mpl\nfrom matplotlib import _api\nfrom matplotlib.path import Path\nfrom matplotlib.transforms import Affine2D, IdentityTransform\nfrom .axislines import (\n _FixedAxisArtistHelperBase, _Floating... | .venv\Lib\site-packages\mpl_toolkits\axisartist\grid_helper_curvelinear.py | grid_helper_curvelinear.py | Python | 12,349 | 0.95 | 0.192073 | 0.03321 | awesome-app | 700 | 2023-11-01T02:35:58.703271 | BSD-3-Clause | false | 0a2d0aaf192ff61c8681ff093f5c0d4c |
from mpl_toolkits.axes_grid1.parasite_axes import (\n host_axes_class_factory, parasite_axes_class_factory)\nfrom .axislines import Axes\n\n\nParasiteAxes = parasite_axes_class_factory(Axes)\nHostAxes = SubplotHost = host_axes_class_factory(Axes)\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\parasite_axes.py | parasite_axes.py | Python | 244 | 0.85 | 0 | 0 | node-utils | 955 | 2024-08-18T07:19:55.944287 | GPL-3.0 | false | 36ea8a2ee09cd8fd45976626ebd89b21 |
from .axislines import Axes\nfrom .axislines import ( # noqa: F401\n AxesZero, AxisArtistHelper, AxisArtistHelperRectlinear,\n GridHelperBase, GridHelperRectlinear, Subplot, SubplotZero)\nfrom .axis_artist import AxisArtist, GridlinesCollection # noqa: F401\nfrom .grid_helper_curvelinear import GridHelperCurveL... | .venv\Lib\site-packages\mpl_toolkits\axisartist\__init__.py | __init__.py | Python | 631 | 0.95 | 0 | 0 | python-kit | 328 | 2024-09-08T13:56:18.217032 | BSD-3-Clause | false | bd55d494f544c889512397838de7d877 |
from matplotlib.testing.conftest import (mpl_test_settings, # noqa\n pytest_configure, pytest_unconfigure)\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\conftest.py | conftest.py | Python | 147 | 0.95 | 0 | 0 | vue-tools | 603 | 2024-11-30T22:36:51.031989 | BSD-3-Clause | true | a9af9c9b2ae8eefcebb125a652ac4c2b |
import re\n\nimport numpy as np\nimport pytest\n\nfrom mpl_toolkits.axisartist.angle_helper import (\n FormatterDMS, FormatterHMS, select_step, select_step24, select_step360)\n\n\n_MS_RE = (\n r'''\$ # Mathtext\n (\n # The sign sometimes appears on a 0 when a fraction is shown.\n # C... | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\test_angle_helper.py | test_angle_helper.py | Python | 5,670 | 0.95 | 0.078014 | 0.033333 | awesome-app | 419 | 2025-04-20T18:36:10.128073 | GPL-3.0 | true | 5dc35d5db30bda7219e9ce341f0ffefd |
import numpy as np\nimport matplotlib.pyplot as plt\nfrom matplotlib.testing.decorators import image_comparison\nfrom matplotlib.transforms import IdentityTransform\n\nfrom mpl_toolkits.axisartist.axislines import AxesZero, SubplotZero, Subplot\nfrom mpl_toolkits.axisartist import Axes, SubplotHost\n\n\n@image_comparis... | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\test_axislines.py | test_axislines.py | Python | 4,353 | 0.95 | 0.096552 | 0.018868 | awesome-app | 865 | 2023-11-17T08:11:11.698620 | MIT | true | bf862a848e37b6889b208c38235eef9c |
import matplotlib.pyplot as plt\nfrom matplotlib.testing.decorators import image_comparison\n\nfrom mpl_toolkits.axisartist import AxisArtistHelperRectlinear\nfrom mpl_toolkits.axisartist.axis_artist import (AxisArtist, AxisLabel,\n LabelBase, Ticks, TickLabels)\n\n\n@ima... | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\test_axis_artist.py | test_axis_artist.py | Python | 2,980 | 0.95 | 0.080808 | 0.056338 | react-lib | 712 | 2024-02-03T05:46:39.306750 | BSD-3-Clause | true | 65e49a00307a29e0ca7aa24052951ca8 |
import numpy as np\n\nimport matplotlib.pyplot as plt\nimport matplotlib.projections as mprojections\nimport matplotlib.transforms as mtransforms\nfrom matplotlib.testing.decorators import image_comparison\nfrom mpl_toolkits.axisartist.axislines import Subplot\nfrom mpl_toolkits.axisartist.floating_axes import (\n F... | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\test_floating_axes.py | test_floating_axes.py | Python | 4,083 | 0.95 | 0.034783 | 0.064516 | node-utils | 305 | 2025-05-02T15:38:01.136325 | Apache-2.0 | true | 1677da2a917000a8f16810b8a1b5cf03 |
import numpy as np\nimport pytest\n\nfrom matplotlib.transforms import Bbox\nfrom mpl_toolkits.axisartist.grid_finder import (\n _find_line_box_crossings, FormatterPrettyPrint, MaxNLocator)\n\n\ndef test_find_line_box_crossings():\n x = np.array([-3, -2, -1, 0., 1, 2, 3, 2, 1, 0, -1, -2, -3, 5])\n y = np.arang... | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\test_grid_finder.py | test_grid_finder.py | Python | 1,156 | 0.85 | 0.088235 | 0 | node-utils | 785 | 2023-11-18T17:13:33.241059 | MIT | true | 9c8120ba347f31598bae07cd632a30bd |
import numpy as np\n\nimport matplotlib.pyplot as plt\nfrom matplotlib.path import Path\nfrom matplotlib.projections import PolarAxes\nfrom matplotlib.ticker import FuncFormatter\nfrom matplotlib.transforms import Affine2D, Transform\nfrom matplotlib.testing.decorators import image_comparison\n\nfrom mpl_toolkits.axisa... | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\test_grid_helper_curvelinear.py | test_grid_helper_curvelinear.py | Python | 7,216 | 0.95 | 0.077295 | 0.102564 | node-utils | 554 | 2024-06-07T10:18:29.119506 | BSD-3-Clause | true | cf48e45519fa29e181cebfded21498b4 |
from pathlib import Path\n\n\n# Check that the test directories exist\nif not (Path(__file__).parent / "baseline_images").exists():\n raise OSError(\n 'The baseline image directory does not exist. '\n 'This is most likely because the test data is not installed. '\n 'You may need to install matpl... | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__init__.py | __init__.py | Python | 365 | 0.95 | 0.1 | 0.125 | node-utils | 902 | 2023-11-21T23:24:57.445498 | Apache-2.0 | true | 58fdb0c615f036e99765a61f6b25a3a4 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__pycache__\conftest.cpython-313.pyc | conftest.cpython-313.pyc | Other | 341 | 0.7 | 0 | 0 | python-kit | 311 | 2024-02-25T13:27:43.105081 | GPL-3.0 | true | 5cde906b3e74190757d83237bc99ef06 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__pycache__\test_angle_helper.cpython-313.pyc | test_angle_helper.cpython-313.pyc | Other | 7,911 | 0.8 | 0.033898 | 0.034483 | vue-tools | 615 | 2024-01-05T10:15:24.842777 | MIT | true | 4bcf203da60a15e316d931282375229c |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__pycache__\test_axislines.cpython-313.pyc | test_axislines.cpython-313.pyc | Other | 8,303 | 0.8 | 0 | 0.073171 | react-lib | 306 | 2024-04-19T12:28:22.956311 | MIT | true | 7b135bd74193de3e3ed6e98af5edfe6b |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__pycache__\test_axis_artist.cpython-313.pyc | test_axis_artist.cpython-313.pyc | Other | 5,094 | 0.8 | 0 | 0 | awesome-app | 307 | 2025-05-05T09:54:38.575991 | MIT | true | 4039ab178c7d9b1876124c438d8cadd5 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__pycache__\test_floating_axes.cpython-313.pyc | test_floating_axes.cpython-313.pyc | Other | 6,577 | 0.8 | 0 | 0.059701 | react-lib | 327 | 2024-10-17T23:52:34.525494 | MIT | true | 99a3a55512de7d87f1f876ffa525c301 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__pycache__\test_grid_finder.cpython-313.pyc | test_grid_finder.cpython-313.pyc | Other | 2,297 | 0.8 | 0 | 0.0625 | awesome-app | 632 | 2025-06-02T08:30:00.652123 | Apache-2.0 | true | d0fc5f90bb9869438f40ef6d6cbdadd8 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__pycache__\test_grid_helper_curvelinear.cpython-313.pyc | test_grid_helper_curvelinear.cpython-313.pyc | Other | 10,783 | 0.8 | 0 | 0.033333 | vue-tools | 718 | 2024-10-22T16:57:52.377187 | Apache-2.0 | true | af2d7973d81d1c9151c59e0778210fc7 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\tests\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 622 | 0.7 | 0 | 0 | node-utils | 520 | 2024-05-10T00:53:02.927294 | BSD-3-Clause | true | e5b699443433aa2f33df8539785a7196 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\angle_helper.cpython-313.pyc | angle_helper.cpython-313.pyc | Other | 16,635 | 0.95 | 0.011299 | 0.017751 | python-kit | 245 | 2024-01-12T20:15:39.418098 | BSD-3-Clause | false | 8942245f3e27731c7f60af7107be6b1b |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\axes_divider.cpython-313.pyc | axes_divider.cpython-313.pyc | Other | 357 | 0.7 | 0 | 0 | vue-tools | 384 | 2024-08-23T22:09:30.062510 | Apache-2.0 | false | a8e828d85a45dafe1195a67a2715aa58 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\axislines.cpython-313.pyc | axislines.cpython-313.pyc | Other | 26,253 | 0.95 | 0.075 | 0.061033 | node-utils | 880 | 2025-01-12T14:17:09.783460 | BSD-3-Clause | false | 6a839d11c95441a9563da06054eadf63 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\axisline_style.cpython-313.pyc | axisline_style.cpython-313.pyc | Other | 8,806 | 0.95 | 0.15 | 0.033333 | react-lib | 306 | 2024-12-05T16:08:07.358640 | BSD-3-Clause | false | bdde16a902c3bf7eb95ff537372fba95 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\axis_artist.cpython-313.pyc | axis_artist.cpython-313.pyc | Other | 51,176 | 0.95 | 0.033871 | 0.016917 | node-utils | 842 | 2025-06-06T09:18:11.271307 | BSD-3-Clause | false | e03ba66d7d4afe834164dadcd9a95503 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\floating_axes.cpython-313.pyc | floating_axes.cpython-313.pyc | Other | 13,679 | 0.95 | 0.008 | 0.008621 | python-kit | 36 | 2023-08-31T14:11:28.048399 | GPL-3.0 | false | 84236990ee9d032e0127a15dfb5fbe4d |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\grid_finder.cpython-313.pyc | grid_finder.cpython-313.pyc | Other | 16,619 | 0.95 | 0.032258 | 0.011299 | python-kit | 46 | 2025-04-28T22:02:32.835834 | Apache-2.0 | false | c84bae8f1a3d602cfe6fed6dd6c826cd |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\grid_helper_curvelinear.cpython-313.pyc | grid_helper_curvelinear.cpython-313.pyc | Other | 17,797 | 0.95 | 0.040698 | 0.006211 | react-lib | 940 | 2023-07-20T15:28:56.157005 | BSD-3-Clause | false | df134425e79f88116973b10fab1dce5a |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\parasite_axes.cpython-313.pyc | parasite_axes.cpython-313.pyc | Other | 475 | 0.7 | 0 | 0 | python-kit | 372 | 2024-10-16T22:02:08.171758 | Apache-2.0 | false | c07b7f58780c76a93d14d09aeb74a2a9 |
\n\n | .venv\Lib\site-packages\mpl_toolkits\axisartist\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 903 | 0.7 | 0 | 0 | awesome-app | 476 | 2023-09-01T10:20:32.266179 | Apache-2.0 | false | 6f17edd329358a21bb0498d11746c546 |
# art3d.py, original mplot3d version by John Porter\n# Parts rewritten by Reinier Heeres <reinier@heeres.eu>\n# Minor additions by Ben Axelrod <baxelrod@coroware.com>\n\n"""\nModule containing 3D artist code and functions to convert 2D\nartists into 3D versions which can be added to an Axes3D.\n"""\n\nimport math\n\nim... | .venv\Lib\site-packages\mpl_toolkits\mplot3d\art3d.py | art3d.py | Python | 50,548 | 0.75 | 0.166083 | 0.079639 | python-kit | 401 | 2024-11-04T03:08:40.630410 | Apache-2.0 | false | c7895c08aef3c664429b1c0d439f4ede |
# axis3d.py, original mplot3d version by John Porter\n# Created: 23 Sep 2005\n# Parts rewritten by Reinier Heeres <reinier@heeres.eu>\n\nimport inspect\n\nimport numpy as np\n\nimport matplotlib as mpl\nfrom matplotlib import (\n _api, artist, lines as mlines, axis as maxis, patches as mpatches,\n transforms as m... | .venv\Lib\site-packages\mpl_toolkits\mplot3d\axis3d.py | axis3d.py | Python | 29,327 | 0.95 | 0.146667 | 0.143526 | react-lib | 350 | 2025-02-06T01:32:05.099612 | Apache-2.0 | false | 6ec22476095927561afa83491283d24d |
"""\nVarious transforms used for by the 3D code\n"""\n\nimport numpy as np\n\nfrom matplotlib import _api\n\n\ndef world_transformation(xmin, xmax,\n ymin, ymax,\n zmin, zmax, pb_aspect=None):\n """\n Produce a matrix that scales homogeneous coords in the specified ... | .venv\Lib\site-packages\mpl_toolkits\mplot3d\proj3d.py | proj3d.py | Python | 6,349 | 0.95 | 0.150685 | 0.01676 | react-lib | 750 | 2024-12-07T14:41:33.823216 | MIT | false | 31115df53ea7d7288d5a387cf257d850 |
from .axes3d import Axes3D\n\n__all__ = ['Axes3D']\n | .venv\Lib\site-packages\mpl_toolkits\mplot3d\__init__.py | __init__.py | Python | 49 | 0.65 | 0 | 0 | react-lib | 20 | 2024-02-19T02:33:00.245426 | GPL-3.0 | false | d48e3080576282f5ecc89eed679ecd48 |
from matplotlib.testing.conftest import (mpl_test_settings, # noqa\n pytest_configure, pytest_unconfigure)\n | .venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\conftest.py | conftest.py | Python | 147 | 0.95 | 0 | 0 | node-utils | 371 | 2025-04-23T06:11:49.386142 | Apache-2.0 | true | a9af9c9b2ae8eefcebb125a652ac4c2b |
import numpy as np\n\nimport matplotlib.pyplot as plt\n\nfrom matplotlib.backend_bases import MouseEvent\nfrom mpl_toolkits.mplot3d.art3d import (\n Line3DCollection,\n Poly3DCollection,\n _all_points_on_plane,\n)\n\n\ndef test_scatter_3d_projection_conservation():\n fig = plt.figure()\n ax = fig.add_sub... | .venv\Lib\site-packages\mpl_toolkits\mplot3d\tests\test_art3d.py | test_art3d.py | Python | 3,317 | 0.95 | 0.078431 | 0.2 | python-kit | 835 | 2025-05-25T03:00:24.769234 | GPL-3.0 | true | d3340912b4fa96421bc49c2986f29da7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.