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:mod:``pandas.io.xml`` is a module for reading XML.\n"""\n\nfrom __future__ import annotations\n\nimport io\nfrom os import PathLike\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Callable,\n)\nimport warnings\n\nfrom pandas._libs import lib\nfrom pandas.compat._optional import import_optional_dependency... | .venv\Lib\site-packages\pandas\io\xml.py | xml.py | Python | 38,656 | 0.95 | 0.158879 | 0.033986 | react-lib | 305 | 2025-01-08T16:11:56.310414 | BSD-3-Clause | false | 564808e125710852257535496e737f10 |
from __future__ import annotations\n\nfrom typing import (\n TYPE_CHECKING,\n Literal,\n)\n\nimport numpy as np\n\nfrom pandas._config import using_string_dtype\n\nfrom pandas._libs import lib\nfrom pandas.compat import (\n pa_version_under18p0,\n pa_version_under19p0,\n)\nfrom pandas.compat._optional impor... | .venv\Lib\site-packages\pandas\io\_util.py | _util.py | Python | 2,676 | 0.95 | 0.106383 | 0.026667 | python-kit | 548 | 2023-08-22T12:32:00.944653 | GPL-3.0 | false | 57bbcefa9990466e055403868050425d |
# ruff: noqa: TCH004\nfrom typing import TYPE_CHECKING\n\nif TYPE_CHECKING:\n # import modules that have public classes/functions\n from pandas.io import (\n formats,\n json,\n stata,\n )\n\n # mark only those modules as public\n __all__ = ["formats", "json", "stata"]\n | .venv\Lib\site-packages\pandas\io\__init__.py | __init__.py | Python | 293 | 0.95 | 0.076923 | 0.272727 | react-lib | 653 | 2024-04-25T13:55:45.868971 | MIT | false | 48ab8bb14318e86ebd6d9a4c5163d55d |
"""\nPyperclip\n\nA cross-platform clipboard module for Python,\nwith copy & paste functions for plain text.\nBy Al Sweigart al@inventwithpython.com\nLicence at LICENSES/PYPERCLIP_LICENSE\n\nUsage:\n import pyperclip\n pyperclip.copy('The text to be copied to the clipboard.')\n spam = pyperclip.paste()\n\n if not p... | .venv\Lib\site-packages\pandas\io\clipboard\__init__.py | __init__.py | Python | 24,235 | 0.95 | 0.190094 | 0.081699 | awesome-app | 319 | 2023-10-05T09:55:44.826926 | MIT | false | 85b1ff12cf7350b01faefcf0dbced676 |
\n\n | .venv\Lib\site-packages\pandas\io\clipboard\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 29,662 | 0.95 | 0.072139 | 0 | awesome-app | 505 | 2024-06-15T06:21:59.310714 | GPL-3.0 | false | 8507ea0f6fc7b2cc9e13d18dd3148700 |
from __future__ import annotations\n\nfrom collections.abc import (\n Hashable,\n Iterable,\n Mapping,\n Sequence,\n)\nimport datetime\nfrom functools import partial\nfrom io import BytesIO\nimport os\nfrom textwrap import fill\nfrom typing import (\n IO,\n TYPE_CHECKING,\n Any,\n Callable,\n ... | .venv\Lib\site-packages\pandas\io\excel\_base.py | _base.py | Python | 59,073 | 0.75 | 0.133816 | 0.072281 | node-utils | 456 | 2024-10-27T11:34:05.298227 | Apache-2.0 | false | 559b9caf57c3a67976ac0fd268818910 |
from __future__ import annotations\n\nfrom datetime import (\n date,\n datetime,\n time,\n timedelta,\n)\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Union,\n)\n\nfrom pandas.compat._optional import import_optional_dependency\nfrom pandas.util._decorators import doc\n\nimport pandas as pd\nfrom ... | .venv\Lib\site-packages\pandas\io\excel\_calamine.py | _calamine.py | Python | 3,474 | 0.85 | 0.132231 | 0 | awesome-app | 181 | 2024-09-01T00:54:50.520639 | MIT | false | c94a91a9529827268ffd42c1c5b656d4 |
from __future__ import annotations\n\nfrom typing import (\n TYPE_CHECKING,\n cast,\n)\n\nimport numpy as np\n\nfrom pandas._typing import (\n FilePath,\n ReadBuffer,\n Scalar,\n StorageOptions,\n)\nfrom pandas.compat._optional import import_optional_dependency\nfrom pandas.util._decorators import doc... | .venv\Lib\site-packages\pandas\io\excel\_odfreader.py | _odfreader.py | Python | 8,262 | 0.95 | 0.15415 | 0.038647 | awesome-app | 312 | 2025-06-19T03:39:21.132348 | Apache-2.0 | false | 05bf55ab6aa3f705fe3a9dfb8c9e53f6 |
from __future__ import annotations\n\nfrom collections import defaultdict\nimport datetime\nimport json\nfrom typing import (\n TYPE_CHECKING,\n Any,\n DefaultDict,\n cast,\n overload,\n)\n\nfrom pandas.io.excel._base import ExcelWriter\nfrom pandas.io.excel._util import (\n combine_kwargs,\n valid... | .venv\Lib\site-packages\pandas\io\excel\_odswriter.py | _odswriter.py | Python | 11,210 | 0.95 | 0.114846 | 0.025806 | awesome-app | 156 | 2023-09-29T14:24:20.172309 | BSD-3-Clause | false | a92ffb50ee1e42a94eaf555777a27ec4 |
from __future__ import annotations\n\nimport mmap\nfrom typing import (\n TYPE_CHECKING,\n Any,\n cast,\n)\n\nimport numpy as np\n\nfrom pandas.compat._optional import import_optional_dependency\nfrom pandas.util._decorators import doc\n\nfrom pandas.core.shared_docs import _shared_docs\n\nfrom pandas.io.excel... | .venv\Lib\site-packages\pandas\io\excel\_openpyxl.py | _openpyxl.py | Python | 19,861 | 0.95 | 0.131455 | 0.027624 | node-utils | 865 | 2025-06-19T16:47:06.430277 | GPL-3.0 | false | 5569abc511d199f21d8936a92f0487b7 |
# pyright: reportMissingImports=false\nfrom __future__ import annotations\n\nfrom typing import TYPE_CHECKING\n\nfrom pandas.compat._optional import import_optional_dependency\nfrom pandas.util._decorators import doc\n\nfrom pandas.core.shared_docs import _shared_docs\n\nfrom pandas.io.excel._base import BaseExcelReade... | .venv\Lib\site-packages\pandas\io\excel\_pyxlsb.py | _pyxlsb.py | Python | 4,358 | 0.95 | 0.19685 | 0.130841 | react-lib | 360 | 2023-11-06T18:32:31.640750 | MIT | false | 754791c57bf785e3948be7bd0efc8a2a |
from __future__ import annotations\n\nfrom collections.abc import (\n Hashable,\n Iterable,\n MutableMapping,\n Sequence,\n)\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Callable,\n Literal,\n TypeVar,\n overload,\n)\n\nfrom pandas.compat._optional import import_optional_dependency\n\nf... | .venv\Lib\site-packages\pandas\io\excel\_util.py | _util.py | Python | 8,105 | 0.95 | 0.155689 | 0.015326 | python-kit | 664 | 2024-01-22T04:52:03.850826 | GPL-3.0 | false | a9f7ba1e0d3da21fc611263e1fb6901a |
from __future__ import annotations\n\nfrom datetime import time\nimport math\nfrom typing import TYPE_CHECKING\n\nimport numpy as np\n\nfrom pandas.compat._optional import import_optional_dependency\nfrom pandas.util._decorators import doc\n\nfrom pandas.core.shared_docs import _shared_docs\n\nfrom pandas.io.excel._bas... | .venv\Lib\site-packages\pandas\io\excel\_xlrd.py | _xlrd.py | Python | 4,556 | 0.95 | 0.13986 | 0.059322 | node-utils | 134 | 2023-11-17T06:58:09.335645 | BSD-3-Clause | false | 4b3e719d6d15879665a5e3a22632b7f9 |
from __future__ import annotations\n\nimport json\nfrom typing import (\n TYPE_CHECKING,\n Any,\n)\n\nfrom pandas.io.excel._base import ExcelWriter\nfrom pandas.io.excel._util import (\n combine_kwargs,\n validate_freeze_panes,\n)\n\nif TYPE_CHECKING:\n from pandas._typing import (\n ExcelWriterIf... | .venv\Lib\site-packages\pandas\io\excel\_xlsxwriter.py | _xlsxwriter.py | Python | 9,191 | 0.95 | 0.123239 | 0.044355 | vue-tools | 185 | 2024-10-16T16:25:09.407013 | Apache-2.0 | false | da44dae9771c9d1ca7ec9373d5c91aa3 |
from pandas.io.excel._base import (\n ExcelFile,\n ExcelWriter,\n read_excel,\n)\nfrom pandas.io.excel._odswriter import ODSWriter as _ODSWriter\nfrom pandas.io.excel._openpyxl import OpenpyxlWriter as _OpenpyxlWriter\nfrom pandas.io.excel._util import register_writer\nfrom pandas.io.excel._xlsxwriter import X... | .venv\Lib\site-packages\pandas\io\excel\__init__.py | __init__.py | Python | 486 | 0.85 | 0 | 0 | awesome-app | 192 | 2024-04-18T17:52:15.021282 | GPL-3.0 | false | 81afed8d218e5032bcdbffe7771e1b4e |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_base.cpython-313.pyc | _base.cpython-313.pyc | Other | 58,532 | 0.75 | 0.071125 | 0.039855 | awesome-app | 756 | 2024-10-27T10:23:34.106462 | GPL-3.0 | false | 00eb73c28061c01dff84bee3923a8541 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_calamine.cpython-313.pyc | _calamine.cpython-313.pyc | Other | 5,147 | 0.95 | 0 | 0 | vue-tools | 867 | 2023-11-29T03:29:40.267235 | Apache-2.0 | false | 8ae04cb683fdb74a822d019066eba499 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_odfreader.cpython-313.pyc | _odfreader.cpython-313.pyc | Other | 10,498 | 0.95 | 0.007246 | 0 | node-utils | 351 | 2024-12-10T05:24:25.945143 | BSD-3-Clause | false | b800123373e6a6a0c2e9cab73b037283 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_odswriter.cpython-313.pyc | _odswriter.cpython-313.pyc | Other | 12,965 | 0.95 | 0.010582 | 0 | node-utils | 483 | 2023-07-23T15:40:03.837380 | GPL-3.0 | false | d2838ca117012a15850f5b01d9478210 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_openpyxl.cpython-313.pyc | _openpyxl.cpython-313.pyc | Other | 22,520 | 0.95 | 0.016713 | 0 | node-utils | 320 | 2025-04-14T08:03:14.660803 | GPL-3.0 | false | 2117b4de0bbcb4fa37a2afb0662b7033 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_pyxlsb.cpython-313.pyc | _pyxlsb.cpython-313.pyc | Other | 5,432 | 0.95 | 0 | 0 | awesome-app | 897 | 2024-11-20T22:29:13.823169 | BSD-3-Clause | false | cf3711e591a98de27a70461ac8bc8d15 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_util.cpython-313.pyc | _util.cpython-313.pyc | Other | 9,770 | 0.95 | 0.071429 | 0.005747 | vue-tools | 987 | 2024-08-04T10:27:49.315939 | GPL-3.0 | false | 3c3f5d4d7995fa07f7cc5b5b07650693 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_xlrd.cpython-313.pyc | _xlrd.cpython-313.pyc | Other | 5,614 | 0.95 | 0.013514 | 0 | awesome-app | 785 | 2024-01-05T15:41:08.555485 | GPL-3.0 | false | 0659687aa8d1a8c4db205b6495498628 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\_xlsxwriter.cpython-313.pyc | _xlsxwriter.cpython-313.pyc | Other | 8,655 | 0.95 | 0.010101 | 0.010417 | vue-tools | 293 | 2025-05-04T12:37:37.430535 | GPL-3.0 | false | ee799d1d6e011948622708cf25be2f60 |
\n\n | .venv\Lib\site-packages\pandas\io\excel\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 708 | 0.7 | 0 | 0 | node-utils | 128 | 2024-02-15T07:01:21.685042 | Apache-2.0 | false | 218772ca92c095bb0b4a2227711125a7 |
"""\nInternal module for console introspection\n"""\nfrom __future__ import annotations\n\nfrom shutil import get_terminal_size\n\n\ndef get_console_size() -> tuple[int | None, int | None]:\n """\n Return console size as tuple = (width, height).\n\n Returns (None,None) in non-interactive session.\n """\n ... | .venv\Lib\site-packages\pandas\io\formats\console.py | console.py | Python | 2,748 | 0.95 | 0.170213 | 0.246575 | awesome-app | 879 | 2024-09-30T18:28:13.651148 | MIT | false | d8afd34ff661a65782197b165e9f04ea |
"""\nUtilities for interpreting CSS from Stylers for formatting non-HTML outputs.\n"""\nfrom __future__ import annotations\n\nimport re\nfrom typing import (\n TYPE_CHECKING,\n Callable,\n)\nimport warnings\n\nfrom pandas.errors import CSSWarning\nfrom pandas.util._exceptions import find_stack_level\n\nif TYPE_CH... | .venv\Lib\site-packages\pandas\io\formats\css.py | css.py | Python | 12,793 | 0.95 | 0.147268 | 0.038147 | react-lib | 908 | 2025-06-12T01:00:51.963199 | BSD-3-Clause | false | 4e9722ebf7ae7badf8dfacd571162e48 |
"""\nModule for formatting output data into CSV files.\n"""\n\nfrom __future__ import annotations\n\nfrom collections.abc import (\n Hashable,\n Iterable,\n Iterator,\n Sequence,\n)\nimport csv as csvlib\nimport os\nfrom typing import (\n TYPE_CHECKING,\n Any,\n cast,\n)\n\nimport numpy as np\n\nfr... | .venv\Lib\site-packages\pandas\io\formats\csvs.py | csvs.py | Python | 10,526 | 0.95 | 0.187879 | 0.054348 | node-utils | 3 | 2024-11-29T09:24:32.741902 | GPL-3.0 | false | 7c68af32632f0124d05ac9643309855f |
"""\nUtilities for conversion to writer-agnostic Excel representation.\n"""\nfrom __future__ import annotations\n\nfrom collections.abc import (\n Hashable,\n Iterable,\n Mapping,\n Sequence,\n)\nimport functools\nimport itertools\nimport re\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Callable,... | .venv\Lib\site-packages\pandas\io\formats\excel.py | excel.py | Python | 32,994 | 0.95 | 0.178794 | 0.064286 | vue-tools | 90 | 2024-11-27T14:40:39.771484 | BSD-3-Clause | false | 3a86d279342321994706d63a90cd9576 |
"""\nInternal module for formatting output data in csv, html, xml,\nand latex files. This module also applies to display formatting.\n"""\nfrom __future__ import annotations\n\nfrom collections.abc import (\n Generator,\n Hashable,\n Mapping,\n Sequence,\n)\nfrom contextlib import contextmanager\nfrom csv i... | .venv\Lib\site-packages\pandas\io\formats\format.py | format.py | Python | 66,127 | 0.75 | 0.166667 | 0.052419 | python-kit | 206 | 2023-09-28T03:42:47.592565 | MIT | false | 746d229a42eb1bbe7069272f5a82f289 |
"""\nModule for formatting output data in HTML.\n"""\nfrom __future__ import annotations\n\nfrom textwrap import dedent\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Final,\n cast,\n)\n\nfrom pandas._config import get_option\n\nfrom pandas._libs import lib\n\nfrom pandas import (\n MultiIndex,\n opt... | .venv\Lib\site-packages\pandas\io\formats\html.py | html.py | Python | 24,165 | 0.95 | 0.221362 | 0.102151 | python-kit | 482 | 2023-10-26T15:55:28.397295 | MIT | false | 10980c5ac81289717d908979f0dea491 |
from __future__ import annotations\n\nfrom abc import (\n ABC,\n abstractmethod,\n)\nimport sys\nfrom textwrap import dedent\nfrom typing import TYPE_CHECKING\n\nfrom pandas._config import get_option\n\nfrom pandas.io.formats import format as fmt\nfrom pandas.io.formats.printing import pprint_thing\n\nif TYPE_CHE... | .venv\Lib\site-packages\pandas\io\formats\info.py | info.py | Python | 32,621 | 0.95 | 0.162579 | 0.013172 | awesome-app | 717 | 2024-12-21T16:18:28.766278 | BSD-3-Clause | false | feea8b4a45ee5862100c81427e4fe797 |
"""\nPrinting tools.\n"""\nfrom __future__ import annotations\n\nfrom collections.abc import (\n Iterable,\n Mapping,\n Sequence,\n)\nimport sys\nfrom typing import (\n Any,\n Callable,\n TypeVar,\n Union,\n)\nfrom unicodedata import east_asian_width\n\nfrom pandas._config import get_option\n\nfrom... | .venv\Lib\site-packages\pandas\io\formats\printing.py | printing.py | Python | 17,950 | 0.95 | 0.201049 | 0.120833 | node-utils | 197 | 2023-12-06T19:42:46.452902 | BSD-3-Clause | false | b67743f9e6a722e371368f76c02c8dec |
"""\nModule for formatting output data in console (to string).\n"""\nfrom __future__ import annotations\n\nfrom shutil import get_terminal_size\nfrom typing import TYPE_CHECKING\n\nimport numpy as np\n\nfrom pandas.io.formats.printing import pprint_thing\n\nif TYPE_CHECKING:\n from collections.abc import Iterable\n\... | .venv\Lib\site-packages\pandas\io\formats\string.py | string.py | Python | 6,707 | 0.95 | 0.208738 | 0.048193 | awesome-app | 901 | 2024-06-13T01:55:00.185547 | BSD-3-Clause | false | a3678b6e6e960988aba150fd809d319f |
from __future__ import annotations\n\nfrom collections import defaultdict\nfrom collections.abc import Sequence\nfrom functools import partial\nimport re\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Callable,\n DefaultDict,\n Optional,\n TypedDict,\n Union,\n)\nfrom uuid import uuid4\n\nimport n... | .venv\Lib\site-packages\pandas\io\formats\style_render.py | style_render.py | Python | 90,899 | 0.75 | 0.152583 | 0.0236 | awesome-app | 281 | 2024-03-21T14:04:10.714264 | Apache-2.0 | false | 3be6a0a25ec4f74ecd6bc55e440eefd4 |
"""\n:mod:`pandas.io.formats.xml` is a module for formatting data in XML.\n"""\nfrom __future__ import annotations\n\nimport codecs\nimport io\nfrom typing import (\n TYPE_CHECKING,\n Any,\n final,\n)\nimport warnings\n\nfrom pandas.errors import AbstractMethodError\nfrom pandas.util._decorators import (\n ... | .venv\Lib\site-packages\pandas\io\formats\xml.py | xml.py | Python | 16,029 | 0.95 | 0.155357 | 0.006849 | vue-tools | 228 | 2025-03-11T18:50:36.188322 | BSD-3-Clause | false | dc40dffec95b0b5735421c1d94325c87 |
# GH37967: Enable the use of CSS named colors, as defined in\n# matplotlib.colors.CSS4_COLORS, when exporting to Excel.\n# This data has been copied here, instead of being imported from matplotlib,\n# not to have ``to_excel`` methods require matplotlib.\n# source: matplotlib._color_data (3.3.3)\nfrom __future__ import ... | .venv\Lib\site-packages\pandas\io\formats\_color_data.py | _color_data.py | Python | 4,332 | 0.95 | 0 | 0.032051 | awesome-app | 664 | 2024-10-08T14:27:43.418313 | BSD-3-Clause | false | a1601190849f9e6470789dc374596b4d |
# ruff: noqa: TCH004\nfrom typing import TYPE_CHECKING\n\nif TYPE_CHECKING:\n # import modules that have public classes/functions\n from pandas.io.formats import style\n\n # and mark only those modules as public\n __all__ = ["style"]\n | .venv\Lib\site-packages\pandas\io\formats\__init__.py | __init__.py | Python | 238 | 0.95 | 0.111111 | 0.428571 | react-lib | 423 | 2024-08-14T11:33:09.879071 | BSD-3-Clause | false | 367ac44ebdad6b99acee490c9d7ec92d |
{# Update the html_style/table_structure.html documentation too #}\n{% if doctype_html %}\n<!DOCTYPE html>\n<html>\n<head>\n<meta charset="{{encoding}}">\n{% if not exclude_styles %}{% include html_style_tpl %}{% endif %}\n</head>\n<body>\n{% include html_table_tpl %}\n</body>\n</html>\n{% elif not doctype_html %}\n{% ... | .venv\Lib\site-packages\pandas\io\formats\templates\html.tpl | html.tpl | Other | 412 | 0.8 | 0.1875 | 0 | python-kit | 489 | 2024-05-19T04:47:00.414125 | BSD-3-Clause | false | 3f05e66967c6b0302441acfa32188906 |
{%- block before_style -%}{%- endblock before_style -%}\n{% block style %}\n<style type="text/css">\n{% block table_styles %}\n{% for s in table_styles %}\n#T_{{uuid}} {{s.selector}} {\n{% for p,val in s.props %}\n {{p}}: {{val}};\n{% endfor %}\n}\n{% endfor %}\n{% endblock table_styles %}\n{% block before_cellstyle %... | .venv\Lib\site-packages\pandas\io\formats\templates\html_style.tpl | html_style.tpl | Other | 694 | 0.8 | 0.269231 | 0.038462 | awesome-app | 16 | 2023-08-19T00:10:33.938730 | GPL-3.0 | false | 43ba850965e17e925bd6c5c4949a3f45 |
{% block before_table %}{% endblock before_table %}\n{% block table %}\n{% if exclude_styles %}\n<table>\n{% else %}\n<table id="T_{{uuid}}"{% if table_attributes %} {{table_attributes}}{% endif %}>\n{% endif %}\n{% block caption %}\n{% if caption and caption is string %}\n <caption>{{caption}}</caption>\n{% elif capt... | .venv\Lib\site-packages\pandas\io\formats\templates\html_table.tpl | html_table.tpl | Other | 1,811 | 0.7 | 0.333333 | 0 | awesome-app | 715 | 2024-09-21T18:53:31.405890 | BSD-3-Clause | false | 23c0d7924b208dace6821573d9d9cadf |
{% if environment == "longtable" %}\n{% include "latex_longtable.tpl" %}\n{% else %}\n{% include "latex_table.tpl" %}\n{% endif %}\n | .venv\Lib\site-packages\pandas\io\formats\templates\latex.tpl | latex.tpl | Other | 127 | 0.7 | 0.2 | 0 | node-utils | 986 | 2024-04-25T09:12:11.637478 | MIT | false | 51c8fe7f3635bb9f1be8fcf3b9acc415 |
\begin{longtable}\n{%- set position = parse_table(table_styles, 'position') %}\n{%- if position is not none %}\n[{{position}}]\n{%- endif %}\n{%- set column_format = parse_table(table_styles, 'column_format') %}\n{% raw %}{{% endraw %}{{column_format}}{% raw %}}{% endraw %}\n\n{% for style in table_styles %}\n{% if sty... | .venv\Lib\site-packages\pandas\io\formats\templates\latex_longtable.tpl | latex_longtable.tpl | Other | 2,877 | 0.7 | 0.341463 | 0 | react-lib | 143 | 2024-05-01T04:25:33.855067 | Apache-2.0 | false | a598d029ea7c36d86acd1a6e03d3a041 |
{% if environment or parse_wrap(table_styles, caption) %}\n\begin{% raw %}{{% endraw %}{{environment if environment else "table"}}{% raw %}}{% endraw %}\n{%- set position = parse_table(table_styles, 'position') %}\n{%- if position is not none %}\n[{{position}}]\n{%- endif %}\n\n{% set position_float = parse_table(table... | .venv\Lib\site-packages\pandas\io\formats\templates\latex_table.tpl | latex_table.tpl | Other | 2,221 | 0.7 | 0.385965 | 0 | react-lib | 194 | 2025-03-18T03:58:20.373763 | Apache-2.0 | false | ca96849d67480728bac107c2b81f0545 |
{% for r in head %}\n{% for c in r %}{% if c["is_visible"] %}\n{{ c["display_value"] }}{% if not loop.last %}{{ delimiter }}{% endif %}\n{% endif %}{% endfor %}\n\n{% endfor %}\n{% for r in body %}\n{% for c in r %}{% if c["is_visible"] %}\n{{ c["display_value"] }}{% if not loop.last %}{{ delimiter }}{% endif %}\n{% en... | .venv\Lib\site-packages\pandas\io\formats\templates\string.tpl | string.tpl | Other | 344 | 0.7 | 0.666667 | 0 | react-lib | 383 | 2025-04-11T15:34:33.792977 | BSD-3-Clause | false | 736a2e491b9b6f83de0bb15b8879390b |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\console.cpython-313.pyc | console.cpython-313.pyc | Other | 2,484 | 0.8 | 0.095238 | 0 | node-utils | 386 | 2023-09-20T07:13:01.024037 | MIT | false | c374c0711c33e1cccb19c6d2d739cc7d |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\css.cpython-313.pyc | css.cpython-313.pyc | Other | 14,023 | 0.95 | 0.037234 | 0 | awesome-app | 659 | 2024-08-28T10:38:40.745664 | Apache-2.0 | false | ecac49dd158ef0f42bf17c896b2a3b44 |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\csvs.cpython-313.pyc | csvs.cpython-313.pyc | Other | 15,871 | 0.8 | 0.017857 | 0 | python-kit | 683 | 2025-01-08T09:48:09.860715 | Apache-2.0 | false | bf95cd7a87fcfecf27c23cc66c5e8b38 |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\excel.cpython-313.pyc | excel.cpython-313.pyc | Other | 37,665 | 0.8 | 0.038674 | 0.002907 | vue-tools | 479 | 2024-04-06T22:51:34.584794 | BSD-3-Clause | false | e5821ca20accc95e8cbf143186bb4b19 |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\format.cpython-313.pyc | format.cpython-313.pyc | Other | 83,496 | 0.75 | 0.034292 | 0.014388 | python-kit | 734 | 2023-08-05T08:30:41.133904 | Apache-2.0 | false | de4eede4fc4113de3c7d0e69b28bc9e3 |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\html.cpython-313.pyc | html.cpython-313.pyc | Other | 27,807 | 0.95 | 0.057508 | 0.01087 | awesome-app | 197 | 2025-02-26T08:01:27.167204 | MIT | false | 04369215eb17907fcc700ed6c98dda4b |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\info.cpython-313.pyc | info.cpython-313.pyc | Other | 45,744 | 0.95 | 0.068901 | 0.01006 | awesome-app | 888 | 2024-02-23T14:33:29.559544 | BSD-3-Clause | false | f3c7dfb308e9bd101833a70fe0f5beaa |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\printing.cpython-313.pyc | printing.cpython-313.pyc | Other | 22,247 | 0.95 | 0.04059 | 0 | react-lib | 907 | 2025-02-02T09:38:39.916876 | GPL-3.0 | false | 4fad33e9e27a2ca9c49c08175a34a1c9 |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\string.cpython-313.pyc | string.cpython-313.pyc | Other | 10,693 | 0.8 | 0.019802 | 0 | react-lib | 461 | 2024-08-26T12:56:04.177438 | Apache-2.0 | false | 2fab67fb2f603617e5a27334335fc385 |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\style_render.cpython-313.pyc | style_render.cpython-313.pyc | Other | 95,380 | 0.75 | 0.053538 | 0.006241 | react-lib | 783 | 2024-12-21T20:20:27.208667 | GPL-3.0 | false | 09714342779e46c4653a8e16fa7e3439 |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\xml.cpython-313.pyc | xml.cpython-313.pyc | Other | 20,999 | 0.95 | 0.060837 | 0.02193 | awesome-app | 410 | 2024-07-25T06:25:31.676776 | Apache-2.0 | false | a86222ac098a215264a31fad209f457c |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\_color_data.cpython-313.pyc | _color_data.cpython-313.pyc | Other | 5,948 | 0.8 | 0 | 0 | awesome-app | 611 | 2023-08-02T06:02:50.388678 | MIT | false | 776cc05cda1bc6662c6e346a9095fd4a |
\n\n | .venv\Lib\site-packages\pandas\io\formats\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 340 | 0.7 | 0 | 0 | node-utils | 742 | 2023-08-06T03:54:34.236895 | MIT | false | da649c6a0a08de63abddc0a472c6e5d6 |
from __future__ import annotations\n\nfrom abc import (\n ABC,\n abstractmethod,\n)\nfrom collections import abc\nfrom io import StringIO\nfrom itertools import islice\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Callable,\n Generic,\n Literal,\n TypeVar,\n final,\n overload,\n)\nimport... | .venv\Lib\site-packages\pandas\io\json\_json.py | _json.py | Python | 48,231 | 0.95 | 0.148594 | 0.031758 | vue-tools | 71 | 2025-01-06T01:47:17.734899 | BSD-3-Clause | false | a53ba0d71eb0ba59a4414c59af27669d |
# ---------------------------------------------------------------------\n# JSON normalization routines\nfrom __future__ import annotations\n\nfrom collections import (\n abc,\n defaultdict,\n)\nimport copy\nfrom typing import (\n TYPE_CHECKING,\n Any,\n DefaultDict,\n)\n\nimport numpy as np\n\nfrom panda... | .venv\Lib\site-packages\pandas\io\json\_normalize.py | _normalize.py | Python | 17,212 | 0.95 | 0.170956 | 0.067368 | node-utils | 960 | 2024-04-03T21:19:12.933332 | MIT | false | 3f5867702b14c3bf178b77b06bbf3ce9 |
"""\nTable Schema builders\n\nhttps://specs.frictionlessdata.io/table-schema/\n"""\nfrom __future__ import annotations\n\nfrom typing import (\n TYPE_CHECKING,\n Any,\n cast,\n)\nimport warnings\n\nfrom pandas._libs import lib\nfrom pandas._libs.json import ujson_loads\nfrom pandas._libs.tslibs import timezone... | .venv\Lib\site-packages\pandas\io\json\_table_schema.py | _table_schema.py | Python | 11,594 | 0.95 | 0.128535 | 0.01506 | awesome-app | 602 | 2023-12-09T13:38:11.814955 | Apache-2.0 | false | 4d1948f85cd2f553ff315d6bddaf30ff |
from pandas.io.json._json import (\n read_json,\n to_json,\n ujson_dumps,\n ujson_loads,\n)\nfrom pandas.io.json._table_schema import build_table_schema\n\n__all__ = [\n "ujson_dumps",\n "ujson_loads",\n "read_json",\n "to_json",\n "build_table_schema",\n]\n | .venv\Lib\site-packages\pandas\io\json\__init__.py | __init__.py | Python | 270 | 0.85 | 0 | 0 | vue-tools | 292 | 2024-05-20T00:54:00.786078 | BSD-3-Clause | false | 918b93524104a1f520cc23a4a79af2ec |
\n\n | .venv\Lib\site-packages\pandas\io\json\__pycache__\_json.cpython-313.pyc | _json.cpython-313.pyc | Other | 54,857 | 0.75 | 0.066154 | 0.020583 | vue-tools | 404 | 2023-12-07T13:36:22.918078 | BSD-3-Clause | false | 91b917b3bb96304ebecc6635160ba22d |
\n\n | .venv\Lib\site-packages\pandas\io\json\__pycache__\_normalize.cpython-313.pyc | _normalize.cpython-313.pyc | Other | 17,367 | 0.95 | 0.064024 | 0.020134 | react-lib | 521 | 2024-09-12T11:01:50.854882 | MIT | false | 9ee6c455a5bc39f6f072a8eb84c1e662 |
\n\n | .venv\Lib\site-packages\pandas\io\json\__pycache__\_table_schema.cpython-313.pyc | _table_schema.cpython-313.pyc | Other | 13,599 | 0.95 | 0.055085 | 0 | awesome-app | 298 | 2023-10-14T12:05:40.182765 | BSD-3-Clause | false | 4246ce3c44ab10d6e164dc5ff2443e2c |
\n\n | .venv\Lib\site-packages\pandas\io\json\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 440 | 0.7 | 0 | 0 | react-lib | 417 | 2024-03-23T01:16:07.007174 | MIT | false | 8b55d7950532766603dfd62e919422c7 |
from __future__ import annotations\n\nfrom typing import TYPE_CHECKING\nimport warnings\n\nfrom pandas._libs import lib\nfrom pandas.compat._optional import import_optional_dependency\nfrom pandas.errors import (\n ParserError,\n ParserWarning,\n)\nfrom pandas.util._exceptions import find_stack_level\n\nfrom pand... | .venv\Lib\site-packages\pandas\io\parsers\arrow_parser_wrapper.py | arrow_parser_wrapper.py | Python | 11,080 | 0.95 | 0.19322 | 0.082031 | python-kit | 276 | 2024-02-18T22:13:06.291505 | GPL-3.0 | false | 2d178bc01403f6605a7708efb1b49654 |
from __future__ import annotations\n\nfrom collections import defaultdict\nfrom copy import copy\nimport csv\nimport datetime\nfrom enum import Enum\nimport itertools\nfrom typing import (\n TYPE_CHECKING,\n Any,\n Callable,\n cast,\n final,\n overload,\n)\nimport warnings\n\nimport numpy as np\n\nfro... | .venv\Lib\site-packages\pandas\io\parsers\base_parser.py | base_parser.py | Python | 49,980 | 0.95 | 0.176471 | 0.074544 | python-kit | 569 | 2023-11-03T23:34:29.872885 | Apache-2.0 | false | f7d27f4379e70c1885e2040a6ec9ce0a |
from __future__ import annotations\n\nfrom collections import defaultdict\nfrom typing import TYPE_CHECKING\nimport warnings\n\nimport numpy as np\n\nfrom pandas._libs import (\n lib,\n parsers,\n)\nfrom pandas.compat._optional import import_optional_dependency\nfrom pandas.errors import DtypeWarning\nfrom pandas... | .venv\Lib\site-packages\pandas\io\parsers\c_parser_wrapper.py | c_parser_wrapper.py | Python | 14,199 | 0.95 | 0.158537 | 0.142857 | vue-tools | 216 | 2024-11-09T05:45:53.561348 | MIT | false | 279a641715c8b63ff2a9163fd20d560c |
from __future__ import annotations\n\nfrom collections import (\n abc,\n defaultdict,\n)\nfrom collections.abc import (\n Hashable,\n Iterator,\n Mapping,\n Sequence,\n)\nimport csv\nfrom io import StringIO\nimport re\nfrom typing import (\n IO,\n TYPE_CHECKING,\n DefaultDict,\n Literal,\n... | .venv\Lib\site-packages\pandas\io\parsers\python_parser.py | python_parser.py | Python | 48,456 | 0.95 | 0.192502 | 0.082343 | python-kit | 601 | 2023-10-03T22:08:36.688675 | Apache-2.0 | false | 2ad6fbd95f06f46abc83af2bfff3a62f |
"""\nModule contains tools for processing files into DataFrames or other objects\n\nGH#48849 provides a convenient way of deprecating keyword arguments\n"""\nfrom __future__ import annotations\n\nfrom collections import (\n abc,\n defaultdict,\n)\nimport csv\nimport sys\nfrom textwrap import fill\nfrom typing imp... | .venv\Lib\site-packages\pandas\io\parsers\readers.py | readers.py | Python | 87,157 | 0.75 | 0.12757 | 0.063267 | node-utils | 6 | 2024-09-23T04:56:16.238429 | BSD-3-Clause | false | 6081e92b13a850a748077dacef9ce8df |
from pandas.io.parsers.readers import (\n TextFileReader,\n TextParser,\n read_csv,\n read_fwf,\n read_table,\n)\n\n__all__ = ["TextFileReader", "TextParser", "read_csv", "read_fwf", "read_table"]\n | .venv\Lib\site-packages\pandas\io\parsers\__init__.py | __init__.py | Python | 204 | 0.85 | 0 | 0 | node-utils | 573 | 2024-06-23T00:23:53.995461 | MIT | false | 0d5da962fceb47f4dd2ce7f635a26446 |
\n\n | .venv\Lib\site-packages\pandas\io\parsers\__pycache__\arrow_parser_wrapper.cpython-313.pyc | arrow_parser_wrapper.cpython-313.pyc | Other | 12,937 | 0.95 | 0.02069 | 0 | vue-tools | 204 | 2023-12-12T08:59:36.187456 | BSD-3-Clause | false | 2b501385b7622dc8077609b82378a8c6 |
\n\n | .venv\Lib\site-packages\pandas\io\parsers\__pycache__\base_parser.cpython-313.pyc | base_parser.cpython-313.pyc | Other | 54,078 | 0.95 | 0.042781 | 0.011472 | node-utils | 19 | 2024-12-09T11:37:17.113484 | Apache-2.0 | false | 9ead159ac33a7ab21e3786a79926c2b4 |
\n\n | .venv\Lib\site-packages\pandas\io\parsers\__pycache__\c_parser_wrapper.cpython-313.pyc | c_parser_wrapper.cpython-313.pyc | Other | 15,079 | 0.95 | 0 | 0.017857 | react-lib | 739 | 2025-06-28T12:57:06.015331 | Apache-2.0 | false | da84b77110acda71439d528686a426cc |
\n\n | .venv\Lib\site-packages\pandas\io\parsers\__pycache__\python_parser.cpython-313.pyc | python_parser.cpython-313.pyc | Other | 50,940 | 0.95 | 0.024742 | 0.004425 | vue-tools | 954 | 2024-11-21T23:40:41.717277 | MIT | false | 37a2ab07c550a3dcd1f50cb90856a05e |
\n\n | .venv\Lib\site-packages\pandas\io\parsers\__pycache__\readers.cpython-313.pyc | readers.cpython-313.pyc | Other | 83,022 | 0.75 | 0.098933 | 0.022556 | react-lib | 823 | 2023-12-04T23:18:14.312372 | GPL-3.0 | false | b010066624766ad86bb135627426dbfe |
\n\n | .venv\Lib\site-packages\pandas\io\parsers\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 371 | 0.7 | 0 | 0 | react-lib | 918 | 2023-08-03T17:50:30.817959 | Apache-2.0 | false | 612f1423be665ae0ef1e0eb23827d364 |
"""\nRead SAS7BDAT files\n\nBased on code written by Jared Hobbs:\n https://bitbucket.org/jaredhobbs/sas7bdat\n\nSee also:\n https://github.com/BioStatMatt/sas7bdat\n\nPartial documentation of the file format:\n https://cran.r-project.org/package=sas7bdat/vignettes/sas7bdat.pdf\n\nReference for binary data compressi... | .venv\Lib\site-packages\pandas\io\sas\sas7bdat.py | sas7bdat.py | Python | 27,730 | 0.95 | 0.119423 | 0.023041 | node-utils | 958 | 2023-07-17T22:38:39.536245 | MIT | false | 62a5a74e9f5e32ecbcfe11fdc2c21de5 |
"""\nRead SAS sas7bdat or xport files.\n"""\nfrom __future__ import annotations\n\nfrom abc import (\n ABC,\n abstractmethod,\n)\nfrom typing import (\n TYPE_CHECKING,\n overload,\n)\n\nfrom pandas.util._decorators import doc\n\nfrom pandas.core.shared_docs import _shared_docs\n\nfrom pandas.io.common impor... | .venv\Lib\site-packages\pandas\io\sas\sasreader.py | sasreader.py | Python | 4,885 | 0.95 | 0.106742 | 0.019868 | python-kit | 750 | 2025-05-15T20:29:40.642078 | GPL-3.0 | false | 6647ccafde587c47dbee9b705e935322 |
from __future__ import annotations\n\nfrom typing import Final\n\nmagic: Final = (\n b"\x00\x00\x00\x00\x00\x00\x00\x00"\n b"\x00\x00\x00\x00\xc2\xea\x81\x60"\n b"\xb3\x14\x11\xcf\xbd\x92\x08\x00"\n b"\x09\xc7\x31\x8c\x18\x1f\x10\x11"\n)\n\nalign_1_checker_value: Final = b"3"\nalign_1_offset: Final = 32\nal... | .venv\Lib\site-packages\pandas\io\sas\sas_constants.py | sas_constants.py | Python | 8,719 | 0.95 | 0.003226 | 0.04698 | awesome-app | 470 | 2024-09-01T08:31:42.084380 | Apache-2.0 | false | 4e3323a024532e467d441e4e7bc8bb05 |
"""\nRead a SAS XPort format file into a Pandas DataFrame.\n\nBased on code from Jack Cushman (github.com/jcushman/xport).\n\nThe file format is defined here:\n\nhttps://support.sas.com/content/dam/SAS/support/en/technical-papers/record-layout-of-a-sas-version-5-or-6-data-set-in-sas-transport-xport-format.pdf\n"""\nfro... | .venv\Lib\site-packages\pandas\io\sas\sas_xport.py | sas_xport.py | Python | 15,134 | 0.95 | 0.100394 | 0.103365 | node-utils | 269 | 2025-04-26T07:10:15.781276 | GPL-3.0 | false | f8a2f09553df3305ab95386dbb4889ec |
from pandas.io.sas.sasreader import read_sas\n\n__all__ = ["read_sas"]\n | .venv\Lib\site-packages\pandas\io\sas\__init__.py | __init__.py | Python | 69 | 0.65 | 0 | 0 | react-lib | 748 | 2024-05-30T18:03:20.825151 | BSD-3-Clause | false | 24190ae2b13b328594a39898fb18f050 |
\n\n | .venv\Lib\site-packages\pandas\io\sas\__pycache__\sas7bdat.cpython-313.pyc | sas7bdat.cpython-313.pyc | Other | 36,099 | 0.8 | 0.016216 | 0.011364 | vue-tools | 567 | 2024-07-11T13:11:28.721178 | GPL-3.0 | false | 6ef11c680fb32c0ec1c0897de0654f45 |
\n\n | .venv\Lib\site-packages\pandas\io\sas\__pycache__\sasreader.cpython-313.pyc | sasreader.cpython-313.pyc | Other | 5,830 | 0.95 | 0.042017 | 0 | awesome-app | 576 | 2025-03-11T05:35:15.904390 | GPL-3.0 | false | 47ed0dcd2a18045195220f0882677d70 |
\n\n | .venv\Lib\site-packages\pandas\io\sas\__pycache__\sas_constants.cpython-313.pyc | sas_constants.cpython-313.pyc | Other | 10,059 | 0.8 | 0 | 0 | awesome-app | 723 | 2024-07-14T11:30:05.189115 | BSD-3-Clause | false | 34d343d8a120df263238c175e0ec9a68 |
\n\n | .venv\Lib\site-packages\pandas\io\sas\__pycache__\sas_xport.cpython-313.pyc | sas_xport.cpython-313.pyc | Other | 17,277 | 0.8 | 0.020243 | 0 | node-utils | 617 | 2023-12-15T20:13:07.032505 | BSD-3-Clause | false | 74a357530882311543af1b3a8a383777 |
\n\n | .venv\Lib\site-packages\pandas\io\sas\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 274 | 0.7 | 0 | 0 | python-kit | 713 | 2024-12-20T11:48:55.815380 | MIT | false | 87b43844c2717e4a05aa540c9648a555 |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\api.cpython-313.pyc | api.cpython-313.pyc | Other | 1,381 | 0.8 | 0 | 0 | node-utils | 213 | 2024-11-03T02:38:03.858820 | BSD-3-Clause | false | c40ba92b1ec891b8085dec41b8e6c19c |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\clipboards.cpython-313.pyc | clipboards.cpython-313.pyc | Other | 6,701 | 0.95 | 0.076336 | 0.026786 | react-lib | 362 | 2024-12-05T22:30:07.667839 | GPL-3.0 | false | 1a4f5730708631c422a30ecb53fbf2ca |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\common.cpython-313.pyc | common.cpython-313.pyc | Other | 41,185 | 0.95 | 0.031599 | 0.002088 | react-lib | 771 | 2025-02-21T15:09:38.745429 | BSD-3-Clause | false | 0ceb4da224a9cb5b74336b64d1aa0e62 |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\feather_format.cpython-313.pyc | feather_format.cpython-313.pyc | Other | 4,644 | 0.95 | 0.042105 | 0.034884 | vue-tools | 794 | 2024-10-28T17:52:40.556214 | BSD-3-Clause | false | dc0ea22666864d107306488fde8c68cc |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\gbq.cpython-313.pyc | gbq.cpython-313.pyc | Other | 8,962 | 0.95 | 0.084746 | 0.019608 | vue-tools | 54 | 2024-06-24T23:06:54.844975 | BSD-3-Clause | false | 2cb33b724a82e8e132faad3672e474f3 |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\html.cpython-313.pyc | html.cpython-313.pyc | Other | 44,222 | 0.95 | 0.075255 | 0.026786 | node-utils | 232 | 2024-12-22T13:16:09.661582 | BSD-3-Clause | false | af5648e5660b0664e1fe80654401f59c |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\orc.cpython-313.pyc | orc.cpython-313.pyc | Other | 8,490 | 0.95 | 0.058511 | 0.041176 | react-lib | 882 | 2025-03-19T23:55:04.068474 | MIT | false | c2068082c41bdd8abec529ea7bd4ca12 |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\parquet.cpython-313.pyc | parquet.cpython-313.pyc | Other | 23,661 | 0.95 | 0.066832 | 0.013624 | python-kit | 995 | 2024-04-09T19:57:25.221633 | BSD-3-Clause | false | 06ce9374ec47469e046ff2a429eeaa35 |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\pickle.cpython-313.pyc | pickle.cpython-313.pyc | Other | 6,497 | 0.95 | 0.024242 | 0 | python-kit | 292 | 2024-11-04T20:33:36.056871 | MIT | false | 276954d509463c7147f3caa7e445fc94 |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\spss.cpython-313.pyc | spss.cpython-313.pyc | Other | 2,593 | 0.95 | 0.051724 | 0.040816 | node-utils | 415 | 2025-02-20T22:13:36.076745 | Apache-2.0 | false | abc2532b4e6126f0df199c9b9c6f8726 |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\sql.cpython-313.pyc | sql.cpython-313.pyc | Other | 103,746 | 0.75 | 0.058646 | 0.024104 | python-kit | 58 | 2023-09-02T07:17:07.176045 | BSD-3-Clause | false | e5eddb2f28549bc1cecaecbf606c7f9d |
\n\n | .venv\Lib\site-packages\pandas\io\__pycache__\xml.cpython-313.pyc | xml.cpython-313.pyc | Other | 42,032 | 0.95 | 0.073759 | 0.037643 | node-utils | 570 | 2023-12-18T22:54:13.328534 | BSD-3-Clause | false | a0e55cfd0cc0f1804f687862ea336f02 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.