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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
from __future__ import annotations\n\n# Use of this source code is governed by the MIT license.\n__license__ = "MIT"\n\nfrom collections import defaultdict\nimport re\nfrom types import ModuleType\nfrom typing import (\n Any,\n cast,\n Dict,\n Iterable,\n List,\n Optional,\n Pattern,\n Set,\n ... | .venv\Lib\site-packages\bs4\builder\__init__.py | __init__.py | Python | 31,130 | 0.95 | 0.152123 | 0.189076 | vue-tools | 550 | 2025-03-05T00:23:12.954102 | GPL-3.0 | false | 1eaf09f1b96a40d3559cf3dddb331c4a |
\n\n | .venv\Lib\site-packages\bs4\builder\__pycache__\_html5lib.cpython-313.pyc | _html5lib.cpython-313.pyc | Other | 23,319 | 0.95 | 0.019802 | 0.020725 | awesome-app | 377 | 2024-01-22T00:27:56.956568 | Apache-2.0 | false | 3010966c48e0b52332a4342cdca34598 |
\n\n | .venv\Lib\site-packages\bs4\builder\__pycache__\_htmlparser.cpython-313.pyc | _htmlparser.cpython-313.pyc | Other | 14,533 | 0.95 | 0.040462 | 0 | awesome-app | 17 | 2024-02-16T10:02:45.519752 | GPL-3.0 | false | 52a79cacceb5e9710c06c99927916af9 |
\n\n | .venv\Lib\site-packages\bs4\builder\__pycache__\_lxml.cpython-313.pyc | _lxml.cpython-313.pyc | Other | 18,530 | 0.8 | 0.068966 | 0.015152 | awesome-app | 870 | 2024-12-01T23:21:05.805360 | BSD-3-Clause | false | b3662f168553b29eaf29f33e4a231138 |
\n\n | .venv\Lib\site-packages\bs4\builder\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 26,902 | 0.95 | 0.105105 | 0 | awesome-app | 903 | 2024-05-09T12:38:02.123271 | GPL-3.0 | false | 0f29675b7e0a4cb40eefd31580291390 |
import pytest\nfrom unittest.mock import patch\nfrom bs4.builder import DetectsXMLParsedAsHTML\n\n\nclass TestDetectsXMLParsedAsHTML:\n @pytest.mark.parametrize(\n "markup,looks_like_xml",\n [\n ("No xml declaration", False),\n ("<html>obviously HTML</html", False),\n (... | .venv\Lib\site-packages\bs4\tests\test_builder.py | test_builder.py | Python | 1,095 | 0.95 | 0.142857 | 0.076923 | react-lib | 73 | 2023-12-29T00:12:33.881181 | BSD-3-Clause | true | f35222511422298c17b9ca316af14cf3 |
"""Tests of the builder registry."""\n\nimport pytest\nimport warnings\nfrom typing import Type\n\nfrom bs4 import BeautifulSoup\nfrom bs4.builder import (\n builder_registry as registry,\n TreeBuilder,\n TreeBuilderRegistry,\n)\nfrom bs4.builder._htmlparser import HTMLParserTreeBuilder\n\nfrom . import (\n ... | .venv\Lib\site-packages\bs4\tests\test_builder_registry.py | test_builder_registry.py | Python | 5,064 | 0.95 | 0.18705 | 0.137615 | vue-tools | 174 | 2024-05-20T06:19:02.284432 | BSD-3-Clause | true | 16ee52ed7b807f80874d0c828a86f6c8 |
# encoding: utf-8\nimport pytest\nimport logging\nimport warnings\nimport bs4\nfrom bs4 import BeautifulSoup\nfrom bs4.dammit import (\n EntitySubstitution,\n EncodingDetector,\n UnicodeDammit,\n)\n\n\nclass TestUnicodeDammit(object):\n """Standalone tests of UnicodeDammit."""\n\n def test_unicode_input(... | .venv\Lib\site-packages\bs4\tests\test_dammit.py | test_dammit.py | Python | 17,840 | 0.95 | 0.133949 | 0.240541 | node-utils | 112 | 2024-12-27T05:03:29.868501 | GPL-3.0 | true | 8b9c85f42965e4bb5deeb264ad2fd335 |
"""Tests of classes in element.py.\n\nThe really big classes -- Tag, PageElement, and NavigableString --\nare tested in separate files.\n"""\n\nimport pytest\nfrom bs4.element import (\n HTMLAttributeDict,\n XMLAttributeDict,\n CharsetMetaAttributeValue,\n ContentMetaAttributeValue,\n NamespacedAttribute... | .venv\Lib\site-packages\bs4\tests\test_element.py | test_element.py | Python | 4,373 | 0.95 | 0.094203 | 0.12963 | node-utils | 171 | 2025-05-10T22:09:44.041827 | BSD-3-Clause | true | a6bef2e7f8909569ea4d33389a303226 |
import pytest\n\nfrom bs4.element import Tag\nfrom bs4.formatter import (\n Formatter,\n HTMLFormatter,\n XMLFormatter,\n)\nfrom . import SoupTest\n\n\nclass TestFormatter(SoupTest):\n def test_default_attributes(self):\n # Test the default behavior of Formatter.attributes().\n formatter = For... | .venv\Lib\site-packages\bs4\tests\test_formatter.py | test_formatter.py | Python | 6,943 | 0.95 | 0.1 | 0.166667 | node-utils | 365 | 2023-07-25T03:50:44.861694 | GPL-3.0 | true | ab6dc4af15f58758f47e504eb919f635 |
"""This file contains test cases reported by third parties using\nfuzzing tools, primarily from Google's oss-fuzz project. Some of these\nrepresent real problems with Beautiful Soup, but many are problems in\nlibraries that Beautiful Soup depends on, and many of the test cases\nrepresent different ways of triggering th... | .venv\Lib\site-packages\bs4\tests\test_fuzz.py | test_fuzz.py | Python | 7,123 | 0.95 | 0.110497 | 0.272727 | node-utils | 159 | 2023-07-24T20:27:55.379196 | Apache-2.0 | true | 5db3f908f49748c1a10e0e240b066250 |
"""Tests to ensure that the html.parser tree builder generates good\ntrees."""\n\nimport pickle\nimport pytest\nfrom bs4.builder._htmlparser import (\n _DuplicateAttributeHandler,\n BeautifulSoupHTMLParser,\n HTMLParserTreeBuilder,\n)\nfrom bs4.exceptions import ParserRejectedMarkup\nfrom typing import Any\nfr... | .venv\Lib\site-packages\bs4\tests\test_htmlparser.py | test_htmlparser.py | Python | 6,662 | 0.95 | 0.124224 | 0.240876 | react-lib | 385 | 2024-06-02T04:44:46.930544 | MIT | true | 6e90d868202e79eda53fd765e5703b05 |
"""Tests to ensure that the lxml tree builder generates good trees."""\n\nimport pickle\nimport pytest\nimport warnings\nfrom . import LXML_PRESENT, LXML_VERSION\n\nif LXML_PRESENT:\n from bs4.builder._lxml import LXMLTreeBuilder, LXMLTreeBuilderForXML\n\nfrom bs4 import (\n BeautifulStoneSoup,\n)\nfrom . import ... | .venv\Lib\site-packages\bs4\tests\test_lxml.py | test_lxml.py | Python | 7,453 | 0.95 | 0.122449 | 0.242424 | awesome-app | 807 | 2023-11-29T00:52:34.079231 | Apache-2.0 | true | 54eb60d65c938c264c716509243575ab |
import pytest\n\nfrom bs4.element import (\n CData,\n Comment,\n Declaration,\n Doctype,\n NavigableString,\n RubyParenthesisString,\n RubyTextString,\n Script,\n Stylesheet,\n TemplateString,\n)\n\nfrom . import SoupTest\n\n\nclass TestNavigableString(SoupTest):\n def test_text_acquisi... | .venv\Lib\site-packages\bs4\tests\test_navigablestring.py | test_navigablestring.py | Python | 5,599 | 0.95 | 0.109677 | 0.179688 | node-utils | 860 | 2025-05-14T01:41:26.100977 | MIT | true | b57c9b544208774efa3695425d8fd021 |
# -*- coding: utf-8 -*-\n"""Tests of Beautiful Soup as a whole."""\n\nimport logging\nimport pickle\nimport pytest\nfrom typing import Iterable\n\nfrom bs4 import (\n BeautifulSoup,\n GuessedAtParserWarning,\n dammit,\n)\nfrom bs4.builder import (\n TreeBuilder,\n)\nfrom bs4.element import (\n AttributeV... | .venv\Lib\site-packages\bs4\tests\test_soup.py | test_soup.py | Python | 22,669 | 0.95 | 0.16113 | 0.168932 | vue-tools | 341 | 2024-09-29T17:25:52.436386 | BSD-3-Clause | true | a9b53b02b38550758a513d1131a01c74 |
import warnings\nfrom bs4.element import (\n Comment,\n NavigableString,\n)\nfrom . import SoupTest\n\n\nclass TestTag(SoupTest):\n """Test various methods of Tag which aren't so complicated they\n need their own classes.\n """\n\n def test__should_pretty_print(self):\n # Test the rules about w... | .venv\Lib\site-packages\bs4\tests\test_tag.py | test_tag.py | Python | 9,690 | 0.95 | 0.195021 | 0.225641 | react-lib | 493 | 2024-02-21T03:15:03.687543 | Apache-2.0 | true | 6d783674ac754c90f3c474114174da4e |
<css | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-4670634698080256.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-4670634698080256.testcase | Other | 15 | 0.5 | 0.1 | 0 | node-utils | 61 | 2023-07-12T19:15:47.793427 | MIT | true | fca200c31a56d801c21fb7c94f899d8a |
<!DOCTyPEV PUBLIC'''' | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-4818336571064320.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-4818336571064320.testcase | Other | 23 | 0.5 | 0.1 | 0 | vue-tools | 873 | 2025-07-07T21:25:02.707611 | MIT | true | 84e05a31387b8db7629bc95c4ffda834 |
)<a><math><TR><a><mI><a><p><a> | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-4999465949331456.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-4999465949331456.testcase | Other | 30 | 0.5 | 0.1 | 0 | awesome-app | 309 | 2023-07-12T01:02:56.922493 | BSD-3-Clause | true | 6470f115c164cd55b0de6141a65ba85c |
- <s/><ht<!charset=utf<t>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><\n<html ,j n/ 0// | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-5000587759190016.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-5000587759190016.testcase | Other | 15,347 | 0.8 | 0 | 0 | vue-tools | 947 | 2025-04-19T02:03:14.545897 | Apache-2.0 | true | bfd11ecc7dc12473d101c58d499095ff |
<s | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-5167584867909632.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-5167584867909632.testcase | Other | 19,469 | 0.8 | 0 | 0 | vue-tools | 784 | 2025-01-11T18:09:14.598886 | BSD-3-Clause | true | c201403489628d0842715525bef2099f |
<r/D=' | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-5270998950477824.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-5270998950477824.testcase | Other | 12 | 0.5 | 0.1 | 0 | python-kit | 830 | 2023-07-10T20:28:04.685419 | GPL-3.0 | true | 828458f62f0cfffb011d94980ffd5a20 |
><applet></applet><applet></applet><apple|><applet><applet><appl><applet><applet></applet></applet></applet></applet><applet></applet><apple>t<applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><applet><... | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-5375146639360000.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-5375146639360000.testcase | Other | 4,317 | 0.7 | 0.1 | 0 | awesome-app | 193 | 2023-11-22T22:34:34.200136 | Apache-2.0 | true | 2e4b4aeae31f2ac289d7901c68314208 |
O\nS<q\nT><v="quiv="Content-Type"content=gha-- | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-5492400320282624.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-5492400320282624.testcase | Other | 11,502 | 0.8 | 0 | 0 | react-lib | 821 | 2024-11-09T20:00:41.747206 | BSD-3-Clause | true | 690a3453e8d3a86e03e1b641cdae2c51 |
\n<![ | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-5703933063462912.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-5703933063462912.testcase | Other | 5 | 0.5 | 0 | 0 | vue-tools | 529 | 2023-12-04T05:57:07.265143 | Apache-2.0 | true | 09ae0c7749551545232df0ed22f208f9 |
-<math><sElect><mi><sElect><sElect> | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-5843991618256896.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-5843991618256896.testcase | Other | 35 | 0.5 | 0.1 | 0 | awesome-app | 135 | 2023-12-31T18:59:35.826958 | BSD-3-Clause | true | 1e7c84252ccc327e2792f691c56744ee |
:fontipt><!--</script><script><pt><script<>!--</script6<<head/Xpe" charse/ | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-5984173902397440.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-5984173902397440.testcase | Other | 51,495 | 0.8 | 0 | 0 | react-lib | 843 | 2024-12-14T23:48:51.034834 | GPL-3.0 | true | 382638df193384d3a4b50614ba91be1a |
)<math><math><math><math><math><math><math><annotation-xul>&)<math><math><annotation-xul>&)<math><math><annotation-xul>&)<math><math><annotation-xul>&)<math><math><annotation-xul>&)<math><math><annotation-xul>&)<math><math><annotation-xul>&)<math><math><annotation-xul>&)<math><math><annotation-xul>&)<math><math><annota... | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-6124268085182464.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-6124268085182464.testcase | Other | 10,380 | 0.7 | 0.1 | 0 | react-lib | 629 | 2024-09-16T01:26:57.396909 | Apache-2.0 | true | c5527d0160f8af49a19b7b0065f5a7bf |
<table><svg><html> | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-6241471367348224.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-6241471367348224.testcase | Other | 19 | 0.5 | 0.1 | 0 | python-kit | 246 | 2023-12-11T08:29:05.927693 | GPL-3.0 | true | 5639f6ee4abb90155d952ad864172cb9 |
- <math><select><mi><select><select>t | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-6306874195312640.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-6306874195312640.testcase | Other | 47 | 0.5 | 0.1 | 0 | react-lib | 60 | 2023-10-21T22:33:20.006455 | GPL-3.0 | true | 487f66b8794b4ca818b9c1c6511bc056 |
)<math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><math><... | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-6450958476902400.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-6450958476902400.testcase | Other | 3,546 | 0.7 | 0.1 | 0 | node-utils | 209 | 2024-02-02T15:22:35.112913 | Apache-2.0 | true | 8408a78f5ba83bc150eb6d5280141361 |
<TABLE><<!>;<!><<!>.<lec><th>i><a><mat | .venv\Lib\site-packages\bs4\tests\fuzz\clusterfuzz-testcase-minimized-bs4_fuzzer-6600557255327744.testcase | clusterfuzz-testcase-minimized-bs4_fuzzer-6600557255327744.testcase | Other | 124 | 0.7 | 0.1 | 0 | awesome-app | 158 | 2024-09-12T06:58:50.790816 | MIT | true | 9533158de6d495cdd394b03e6a537dfc |
Q<a href=="1" b="10" a="2" a="3" a="4">Multiple values for the same attri=ute.</b>\n<div><tabble</td></tr></table></div>\n<div><tablee id="3"><tr><td>foo</td></tr></table or XM:<table id="2"><tr><td>f<oo/td></tr></table></ble id="1"><tr><tdd of | .venv\Lib\site-packages\bs4\tests\fuzz\crash-0d306a50c8ed8bcd0785b67000fcd5dea1d33f08.testcase | crash-0d306a50c8ed8bcd0785b67000fcd5dea1d33f08.testcase | Other | 2,607 | 0.7 | 0.076923 | 0 | awesome-app | 956 | 2024-12-04T09:32:44.473654 | MIT | true | 6e7c04daf2d8b791a784f03dff48f46d |
Z | .venv\Lib\site-packages\bs4\tests\fuzz\crash-ffbdfa8a2b26f13537b68d3794b0478a4090ee4a.testcase | crash-ffbdfa8a2b26f13537b68d3794b0478a4090ee4a.testcase | Other | 103 | 0.5 | 0 | 0 | react-lib | 397 | 2024-02-19T02:36:29.244367 | MIT | true | 85678aa28e1340a932ea57031284ad85 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_builder.cpython-313.pyc | test_builder.cpython-313.pyc | Other | 1,660 | 0.8 | 0 | 0 | awesome-app | 411 | 2024-11-28T05:25:16.949930 | Apache-2.0 | true | 22893913fd6416eb62f3f38b4e1e6821 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_builder_registry.cpython-313.pyc | test_builder_registry.cpython-313.pyc | Other | 7,841 | 0.95 | 0.017857 | 0 | node-utils | 20 | 2024-03-18T14:53:40.870142 | MIT | true | 4fd7b09b0af2a998c9ff1509e8fa69c9 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_css.cpython-313.pyc | test_css.cpython-313.pyc | Other | 29,061 | 0.95 | 0.066038 | 0.009934 | vue-tools | 196 | 2023-10-25T13:26:41.649093 | MIT | true | 27c17937a38cd8de9f0ea7be55c4f747 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_dammit.cpython-313.pyc | test_dammit.cpython-313.pyc | Other | 19,964 | 0.95 | 0.00885 | 0 | python-kit | 491 | 2024-10-09T19:59:35.421629 | MIT | true | 6c531a5992e51565c82118b04d670d77 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_element.cpython-313.pyc | test_element.cpython-313.pyc | Other | 6,216 | 0.8 | 0 | 0.054054 | vue-tools | 449 | 2024-04-26T04:02:21.693154 | MIT | true | 12c6de8569306b5f706ed5a6fbf5a6aa |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_filter.cpython-313.pyc | test_filter.cpython-313.pyc | Other | 32,467 | 0.95 | 0.040462 | 0.003003 | vue-tools | 911 | 2025-04-24T10:24:27.918451 | BSD-3-Clause | true | 76080f2ba53fd8702110a8306316c095 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_formatter.cpython-313.pyc | test_formatter.cpython-313.pyc | Other | 7,810 | 0.8 | 0 | 0.010753 | node-utils | 560 | 2025-01-16T21:18:34.486108 | MIT | true | 2144a39833c3950e7f1f830d03ca5544 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_fuzz.cpython-313.pyc | test_fuzz.cpython-313.pyc | Other | 7,111 | 0.95 | 0.015873 | 0 | python-kit | 66 | 2023-11-08T21:34:09.961196 | MIT | true | 8af136046e7f9b15a87e0171ad935a37 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_html5lib.cpython-313.pyc | test_html5lib.cpython-313.pyc | Other | 11,944 | 0.8 | 0.015385 | 0 | vue-tools | 408 | 2023-12-13T10:14:21.379469 | Apache-2.0 | true | 5e1d4b753b7156c399713675cd8a7388 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_htmlparser.cpython-313.pyc | test_htmlparser.cpython-313.pyc | Other | 7,351 | 0.8 | 0.037736 | 0 | node-utils | 746 | 2024-03-03T13:29:22.717539 | MIT | true | c2de349261391b1c1fe8243df67eb94c |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_lxml.cpython-313.pyc | test_lxml.cpython-313.pyc | Other | 8,276 | 0.95 | 0.024096 | 0 | awesome-app | 62 | 2024-05-25T13:24:23.198322 | Apache-2.0 | true | 33ffdbdb27d434cba5aa6dd5f1e28dcb |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_navigablestring.cpython-313.pyc | test_navigablestring.cpython-313.pyc | Other | 8,695 | 0.8 | 0 | 0.041096 | awesome-app | 916 | 2025-03-05T16:35:23.690157 | Apache-2.0 | true | d9153e97f76c55fe30cc29c4306c6dfe |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_pageelement.cpython-313.pyc | test_pageelement.cpython-313.pyc | Other | 23,059 | 0.95 | 0.032967 | 0.011364 | vue-tools | 643 | 2023-11-16T22:49:38.048362 | MIT | true | bf7cfb2dd94308d9ad45caef9ca659c6 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_soup.cpython-313.pyc | test_soup.cpython-313.pyc | Other | 32,176 | 0.95 | 0.018182 | 0.018315 | awesome-app | 405 | 2023-10-16T02:49:45.528733 | Apache-2.0 | true | b82843f6f5053d3a182e18e2be068b8f |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_tag.cpython-313.pyc | test_tag.cpython-313.pyc | Other | 14,264 | 0.8 | 0.24 | 0 | python-kit | 480 | 2025-05-02T13:37:33.113731 | BSD-3-Clause | true | 7a078ba63de2950778649fa1b66b2321 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\test_tree.cpython-313.pyc | test_tree.cpython-313.pyc | Other | 94,386 | 0.75 | 0.028213 | 0.001715 | python-kit | 104 | 2023-09-21T21:02:57.525294 | BSD-3-Clause | true | 7bb6321e646255fb6846acecc76c0dd9 |
\n\n | .venv\Lib\site-packages\bs4\tests\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 68,569 | 0.75 | 0.039911 | 0 | vue-tools | 190 | 2025-03-17T19:57:34.697277 | BSD-3-Clause | true | 45e487bd602bb86188c3edafb7a92744 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\css.cpython-313.pyc | css.cpython-313.pyc | Other | 13,540 | 0.95 | 0.089041 | 0.008439 | node-utils | 408 | 2023-12-28T11:39:08.902351 | Apache-2.0 | false | 23fbc46a2492683b120ad7fc4d1eef52 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\dammit.cpython-313.pyc | dammit.cpython-313.pyc | Other | 45,694 | 0.95 | 0.044234 | 0 | react-lib | 308 | 2025-05-11T07:13:30.981005 | GPL-3.0 | false | 27488ba0907a969caae349234b45b984 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\diagnose.cpython-313.pyc | diagnose.cpython-313.pyc | Other | 12,767 | 0.95 | 0.02439 | 0.009009 | vue-tools | 45 | 2024-01-26T16:06:19.347118 | MIT | false | c3c9ccfed9a8c4ba953009924919fe21 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\element.cpython-313.pyc | element.cpython-313.pyc | Other | 105,596 | 0.75 | 0.073994 | 0.002467 | react-lib | 753 | 2023-12-21T23:16:25.955957 | GPL-3.0 | false | f624ac63fde590f987aaa54b187fb081 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\exceptions.cpython-313.pyc | exceptions.cpython-313.pyc | Other | 1,855 | 0.8 | 0.095238 | 0 | node-utils | 158 | 2024-12-26T08:35:54.952508 | GPL-3.0 | false | 7155a52d92aeee92ab6165c926056309 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\filter.cpython-313.pyc | filter.cpython-313.pyc | Other | 28,660 | 0.95 | 0.107784 | 0.003497 | react-lib | 17 | 2023-08-30T15:26:02.518534 | Apache-2.0 | false | cced5d295a0d40a02da6a0d04e777822 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\formatter.cpython-313.pyc | formatter.cpython-313.pyc | Other | 10,202 | 0.95 | 0.047904 | 0.059211 | python-kit | 60 | 2024-01-03T06:32:18.419770 | BSD-3-Clause | false | 6de317c21846b5a37a71600767148feb |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\_deprecation.cpython-313.pyc | _deprecation.cpython-313.pyc | Other | 3,744 | 0.95 | 0.1 | 0 | react-lib | 3 | 2024-02-08T22:26:38.260767 | BSD-3-Clause | false | 7dc6bb887ead1a604ef5b1e3a702c2ab |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\_typing.cpython-313.pyc | _typing.cpython-313.pyc | Other | 3,610 | 0.8 | 0 | 0 | vue-tools | 23 | 2024-06-04T19:26:10.959489 | Apache-2.0 | false | 82f392aa27fe16cb8ee9e1081f154b98 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\_warnings.cpython-313.pyc | _warnings.cpython-313.pyc | Other | 5,673 | 0.95 | 0.083333 | 0 | vue-tools | 512 | 2024-01-12T07:39:27.539895 | Apache-2.0 | false | 4a3a89f99878cc772212250ab8caa4d9 |
\n\n | .venv\Lib\site-packages\bs4\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 39,312 | 0.95 | 0.072692 | 0.01573 | react-lib | 493 | 2024-12-28T08:35:42.153726 | GPL-3.0 | false | 651df78b0ba501ac3fcb7c7b41494be2 |
"""\ncertifi.py\n~~~~~~~~~~\n\nThis module returns the installation location of cacert.pem or its contents.\n"""\nimport sys\nimport atexit\n\ndef exit_cacert_ctx() -> None:\n _CACERT_CTX.__exit__(None, None, None) # type: ignore[union-attr]\n\n\nif sys.version_info >= (3, 11):\n\n from importlib.resources impor... | .venv\Lib\site-packages\certifi\core.py | core.py | Python | 3,394 | 0.95 | 0.096386 | 0.455882 | node-utils | 100 | 2025-01-06T18:20:20.707000 | BSD-3-Clause | false | 77567a68e36469b2c2550db9fcc3c2a9 |
from .core import contents, where\n\n__all__ = ["contents", "where"]\n__version__ = "2025.06.15"\n | .venv\Lib\site-packages\certifi\__init__.py | __init__.py | Python | 94 | 0.65 | 0 | 0 | vue-tools | 835 | 2025-01-15T07:25:22.351916 | Apache-2.0 | false | 9db2e68db24503c357e3bbf458c70076 |
import argparse\n\nfrom certifi import contents, where\n\nparser = argparse.ArgumentParser()\nparser.add_argument("-c", "--contents", action="store_true")\nargs = parser.parse_args()\n\nif args.contents:\n print(contents())\nelse:\n print(where())\n | .venv\Lib\site-packages\certifi\__main__.py | __main__.py | Python | 243 | 0.85 | 0.083333 | 0 | vue-tools | 282 | 2025-04-15T05:05:42.213202 | Apache-2.0 | false | 269e7f0ca2fa570b10e690595e6aedab |
\n\n | .venv\Lib\site-packages\certifi\__pycache__\core.cpython-313.pyc | core.cpython-313.pyc | Other | 2,064 | 0.95 | 0 | 0 | react-lib | 658 | 2024-03-30T00:59:06.984921 | BSD-3-Clause | false | b9e087ab28a867a20fb41cc005fb7837 |
\n\n | .venv\Lib\site-packages\certifi\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 309 | 0.7 | 0 | 0 | react-lib | 241 | 2024-01-26T08:35:52.380335 | Apache-2.0 | false | cf7b2f21f7c6af2e56d524dae17a3dcf |
\n\n | .venv\Lib\site-packages\certifi\__pycache__\__main__.cpython-313.pyc | __main__.cpython-313.pyc | Other | 626 | 0.8 | 0 | 0 | python-kit | 615 | 2025-05-31T14:45:37.001047 | Apache-2.0 | false | f4f51d91a08bd1e8ff1b27ce45452b1f |
pip\n | .venv\Lib\site-packages\certifi-2025.6.15.dist-info\INSTALLER | INSTALLER | Other | 4 | 0.5 | 0 | 0 | vue-tools | 188 | 2024-12-23T14:49:41.440106 | Apache-2.0 | false | 365c9bfeb7d89244f2ce01c1de44cb85 |
Metadata-Version: 2.4\nName: certifi\nVersion: 2025.6.15\nSummary: Python package for providing Mozilla's CA Bundle.\nHome-page: https://github.com/certifi/python-certifi\nAuthor: Kenneth Reitz\nAuthor-email: me@kennethreitz.com\nLicense: MPL-2.0\nProject-URL: Source, https://github.com/certifi/python-certifi\nClassifi... | .venv\Lib\site-packages\certifi-2025.6.15.dist-info\METADATA | METADATA | Other | 2,423 | 0.95 | 0.064935 | 0 | vue-tools | 340 | 2024-09-24T08:37:12.899247 | MIT | false | ab7244efeff4d37ad438ac16d369abac |
certifi-2025.6.15.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4\ncertifi-2025.6.15.dist-info/METADATA,sha256=zgiNbFi9bMv8olVT9OQxB7G5-xQmCjQZ5eO7Z0IGKoI,2423\ncertifi-2025.6.15.dist-info/RECORD,,\ncertifi-2025.6.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91\ncertifi... | .venv\Lib\site-packages\certifi-2025.6.15.dist-info\RECORD | RECORD | Other | 1,023 | 0.7 | 0 | 0 | node-utils | 868 | 2025-04-27T11:30:43.803085 | Apache-2.0 | false | 3736ffe512cfc227b8f53d804c63b1a5 |
certifi\n | .venv\Lib\site-packages\certifi-2025.6.15.dist-info\top_level.txt | top_level.txt | Other | 8 | 0.5 | 0 | 0 | awesome-app | 816 | 2024-07-18T05:44:31.898377 | MIT | false | 5ebd7f7c387ebb31c14e3c701023ac97 |
Wheel-Version: 1.0\nGenerator: setuptools (80.9.0)\nRoot-Is-Purelib: true\nTag: py3-none-any\n\n | .venv\Lib\site-packages\certifi-2025.6.15.dist-info\WHEEL | WHEEL | Other | 91 | 0.5 | 0 | 0 | node-utils | 768 | 2023-08-25T14:36:28.628374 | MIT | false | 08dd01ac2afdbb287cc668d51c7056c8 |
This package contains a modified version of ca-bundle.crt:\n\nca-bundle.crt -- Bundle of CA Root Certificates\n\nThis is a bundle of X.509 certificates of public Certificate Authorities\n(CA). These were automatically extracted from Mozilla's root certificates\nfile (certdata.txt). This file can be found in the mozill... | .venv\Lib\site-packages\certifi-2025.6.15.dist-info\licenses\LICENSE | LICENSE | Other | 989 | 0.8 | 0.05 | 0.125 | awesome-app | 377 | 2024-08-11T06:17:12.289696 | MIT | false | 11618cb6a975948679286b1211bd573c |
from .error import VerificationError\n\nclass CffiOp(object):\n def __init__(self, op, arg):\n self.op = op\n self.arg = arg\n\n def as_c_expr(self):\n if self.op is None:\n assert isinstance(self.arg, str)\n return '(_cffi_opcode_t)(%s)' % (self.arg,)\n classname... | .venv\Lib\site-packages\cffi\cffi_opcode.py | cffi_opcode.py | Python | 5,731 | 0.95 | 0.069519 | 0 | react-lib | 13 | 2024-05-09T20:38:36.203255 | BSD-3-Clause | false | 03105b61433c21a14054e155c387af1d |
\nclass FFIError(Exception):\n __module__ = 'cffi'\n\nclass CDefError(Exception):\n __module__ = 'cffi'\n def __str__(self):\n try:\n current_decl = self.args[1]\n filename = current_decl.coord.file\n linenum = current_decl.coord.line\n prefix = '%s:%d: ' % (f... | .venv\Lib\site-packages\cffi\error.py | error.py | Python | 877 | 0.85 | 0.258065 | 0 | vue-tools | 342 | 2024-08-07T06:43:50.956842 | GPL-3.0 | false | 7f02d866313a0d928aa9c1162eafb9e7 |
import sys, os\nfrom .error import VerificationError\n\n\nLIST_OF_FILE_NAMES = ['sources', 'include_dirs', 'library_dirs',\n 'extra_objects', 'depends']\n\ndef get_extension(srcfilename, modname, sources=(), **kwds):\n from cffi._shimmed_dist_utils import Extension\n allsources = [srcfilename... | .venv\Lib\site-packages\cffi\ffiplatform.py | ffiplatform.py | Python | 3,584 | 0.95 | 0.221239 | 0.06 | node-utils | 509 | 2024-05-07T07:51:24.333994 | GPL-3.0 | false | 7c1aaf7202d5575e4daaf1dfcf5e7b35 |
import sys\n\nif sys.version_info < (3,):\n try:\n from thread import allocate_lock\n except ImportError:\n from dummy_thread import allocate_lock\nelse:\n try:\n from _thread import allocate_lock\n except ImportError:\n from _dummy_thread import allocate_lock\n\n\n##import sys\n... | .venv\Lib\site-packages\cffi\lock.py | lock.py | Python | 747 | 0.95 | 0.3 | 0.576923 | react-lib | 816 | 2023-09-21T10:23:32.228082 | MIT | false | 4cc065d5df79eddf6bcfc06bd4a8e54a |
import types\nimport weakref\n\nfrom .lock import allocate_lock\nfrom .error import CDefError, VerificationError, VerificationMissing\n\n# type qualifiers\nQ_CONST = 0x01\nQ_RESTRICT = 0x02\nQ_VOLATILE = 0x04\n\ndef qualify(quals, replace_with):\n if quals & Q_CONST:\n replace_with = ' const ' + replace_wi... | .venv\Lib\site-packages\cffi\model.py | model.py | Python | 21,797 | 0.95 | 0.234628 | 0.065764 | vue-tools | 410 | 2025-03-21T02:54:47.908481 | BSD-3-Clause | false | 309212a09385f6c54065bf261dc42cea |
\n/* This part is from file 'cffi/parse_c_type.h'. It is copied at the\n beginning of C sources generated by CFFI's ffi.set_source(). */\n\ntypedef void *_cffi_opcode_t;\n\n#define _CFFI_OP(opcode, arg) (_cffi_opcode_t)(opcode | (((uintptr_t)(arg)) << 8))\n#define _CFFI_GETOP(cffi_opcode) ((unsigned char)(uintp... | .venv\Lib\site-packages\cffi\parse_c_type.h | parse_c_type.h | C | 5,976 | 0.95 | 0.033149 | 0.561728 | node-utils | 571 | 2023-09-18T14:55:17.021508 | Apache-2.0 | false | 0138c9742e437b5c5f5468acff804f27 |
#\n# DEPRECATED: implementation for ffi.verify()\n#\nimport sys\nfrom . import model\nfrom .error import VerificationError\nfrom . import _imp_emulation as imp\n\n\nclass VCPythonEngine(object):\n _class_key = 'x'\n _gen_python_module = True\n\n def __init__(self, verifier):\n self.verifier = verifier\n... | .venv\Lib\site-packages\cffi\vengine_cpy.py | vengine_cpy.py | Python | 43,752 | 0.95 | 0.190959 | 0.187311 | vue-tools | 545 | 2025-02-26T21:54:57.519412 | MIT | false | daf6eb10097ce2b765bbb5a4187998ff |
#\n# DEPRECATED: implementation for ffi.verify()\n#\nimport sys, os\nimport types\n\nfrom . import model\nfrom .error import VerificationError\n\n\nclass VGenericEngine(object):\n _class_key = 'g'\n _gen_python_module = False\n\n def __init__(self, verifier):\n self.verifier = verifier\n self.ffi... | .venv\Lib\site-packages\cffi\vengine_gen.py | vengine_gen.py | Python | 26,939 | 0.95 | 0.235641 | 0.142395 | react-lib | 361 | 2023-12-05T21:27:17.427196 | BSD-3-Clause | false | 1cb6605c045da47463d53561ac8fbcc2 |
#ifndef CFFI_MESSAGEBOX\n# ifdef _MSC_VER\n# define CFFI_MESSAGEBOX 1\n# else\n# define CFFI_MESSAGEBOX 0\n# endif\n#endif\n\n\n#if CFFI_MESSAGEBOX\n/* Windows only: logic to take the Python-CFFI embedding logic\n initialization errors and display them in a background thread\n with MessageBox. The idea is that... | .venv\Lib\site-packages\cffi\_cffi_errors.h | _cffi_errors.h | C | 3,908 | 0.95 | 0.161074 | 0.188976 | awesome-app | 416 | 2023-07-27T12:56:06.959591 | Apache-2.0 | false | 64efe54b03e5ae3a4da6775598600f51 |
\ntry:\n # this works on Python < 3.12\n from imp import *\n\nexcept ImportError:\n # this is a limited emulation for Python >= 3.12.\n # Note that this is used only for tests or for the old ffi.verify().\n # This is copied from the source code of Python 3.11.\n\n from _imp import (acquire_lock, relea... | .venv\Lib\site-packages\cffi\_imp_emulation.py | _imp_emulation.py | Python | 2,960 | 0.95 | 0.228916 | 0.070423 | vue-tools | 227 | 2024-08-27T08:49:09.833282 | Apache-2.0 | false | e84849d59d243dfc32ddf6992db2e5c5 |
"""\nTemporary shim module to indirect the bits of distutils we need from setuptools/distutils while providing useful\nerror messages beyond `No module named 'distutils' on Python >= 3.12, or when setuptools' vendored distutils is broken.\n\nThis is a compromise to avoid a hard-dep on setuptools for Python >= 3.12, sin... | .venv\Lib\site-packages\cffi\_shimmed_dist_utils.py | _shimmed_dist_utils.py | Python | 2,230 | 0.95 | 0.177778 | 0.184211 | react-lib | 459 | 2024-01-29T01:49:07.316295 | GPL-3.0 | false | 8fc51e95b05afee467430862d9d15a0a |
__all__ = ['FFI', 'VerificationError', 'VerificationMissing', 'CDefError',\n 'FFIError']\n\nfrom .api import FFI\nfrom .error import CDefError, FFIError, VerificationError, VerificationMissing\nfrom .error import PkgConfigError\n\n__version__ = "1.17.1"\n__version_info__ = (1, 17, 1)\n\n# The verifier module ... | .venv\Lib\site-packages\cffi\__init__.py | __init__.py | Python | 513 | 0.95 | 0.071429 | 0.272727 | react-lib | 875 | 2024-05-11T18:16:50.948488 | GPL-3.0 | false | 73a106798b33aaf7607639ef38601110 |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\api.cpython-313.pyc | api.cpython-313.pyc | Other | 49,992 | 0.95 | 0.068041 | 0.006652 | python-kit | 620 | 2024-10-30T02:53:32.559806 | BSD-3-Clause | false | f13c818ebe921f5e0f8c5ceba82fb7d7 |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\backend_ctypes.cpython-313.pyc | backend_ctypes.cpython-313.pyc | Other | 64,505 | 0.75 | 0.015385 | 0.024048 | python-kit | 90 | 2024-01-21T17:13:13.220777 | BSD-3-Clause | false | 6114bac05be597a9ac74532ea96fe096 |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\cffi_opcode.cpython-313.pyc | cffi_opcode.cpython-313.pyc | Other | 6,938 | 0.8 | 0 | 0 | awesome-app | 860 | 2024-08-11T12:26:30.866688 | MIT | false | 349199db20df8a4198af5c8239c32d9c |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\commontypes.cpython-313.pyc | commontypes.cpython-313.pyc | Other | 3,117 | 0.8 | 0.022222 | 0.025641 | node-utils | 540 | 2024-10-04T08:48:59.079770 | BSD-3-Clause | false | 88f596a235e0935187a3f41703344756 |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\cparser.cpython-313.pyc | cparser.cpython-313.pyc | Other | 48,098 | 0.95 | 0.028571 | 0.020134 | awesome-app | 958 | 2025-02-18T03:31:47.987339 | Apache-2.0 | false | 980ee9737e1ff463857a2cd613404811 |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\error.cpython-313.pyc | error.cpython-313.pyc | Other | 2,030 | 0.8 | 0.047619 | 0 | node-utils | 331 | 2023-12-22T06:02:31.655196 | BSD-3-Clause | false | 0945e1efe52caa3844dd329673e6a6ee |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\ffiplatform.cpython-313.pyc | ffiplatform.cpython-313.pyc | Other | 5,909 | 0.8 | 0 | 0 | node-utils | 459 | 2024-07-14T21:00:45.501471 | Apache-2.0 | false | 97c094681a0e392abd80f378a9c0223a |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\lock.cpython-313.pyc | lock.cpython-313.pyc | Other | 525 | 0.7 | 0 | 0 | vue-tools | 401 | 2024-05-11T13:08:35.967106 | Apache-2.0 | false | 1c5139223c2b8afa64734e511749ac3f |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\model.cpython-313.pyc | model.cpython-313.pyc | Other | 30,889 | 0.95 | 0.011811 | 0.00823 | python-kit | 864 | 2024-06-28T08:26:06.334996 | Apache-2.0 | false | adf7158823334a12a322109ef0f6f7f0 |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\pkgconfig.cpython-313.pyc | pkgconfig.cpython-313.pyc | Other | 6,513 | 0.8 | 0.048387 | 0 | vue-tools | 628 | 2025-04-12T14:17:23.113950 | BSD-3-Clause | false | 890124a6bb087ab2fe2c94a4a0fda0a2 |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\recompiler.cpython-313.pyc | recompiler.cpython-313.pyc | Other | 82,686 | 0.75 | 0.019802 | 0.021314 | python-kit | 725 | 2025-01-01T20:39:13.204682 | GPL-3.0 | false | 58b1d6e013089ee2ee893dd54610d14e |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\setuptools_ext.cpython-313.pyc | setuptools_ext.cpython-313.pyc | Other | 10,979 | 0.8 | 0.037736 | 0 | vue-tools | 689 | 2024-12-25T13:26:15.566629 | GPL-3.0 | false | 404cca2cbf7c32ab5c5cb365d698b966 |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\vengine_cpy.cpython-313.pyc | vengine_cpy.cpython-313.pyc | Other | 51,474 | 0.95 | 0.052161 | 0.13141 | vue-tools | 577 | 2024-01-14T03:43:36.067183 | GPL-3.0 | false | 591191295d4e5f6a34d4441a8921839d |
\n\n | .venv\Lib\site-packages\cffi\__pycache__\vengine_gen.cpython-313.pyc | vengine_gen.cpython-313.pyc | Other | 34,575 | 0.95 | 0.045161 | 0.106312 | python-kit | 565 | 2025-01-29T04:47:33.136882 | BSD-3-Clause | false | b864e51ddf19670be0e06521f13bb115 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.