{"id":16646649,"url":"https://github.com/alexdelorenzo/html_wrapper","last_synced_at":"2026-05-21T00:33:20.282Z","repository":{"id":57437661,"uuid":"69498296","full_name":"alexdelorenzo/html_wrapper","owner":"alexdelorenzo","description":"HTML parser with lxml backend. Implements subset of BeautifulSoup API","archived":false,"fork":false,"pushed_at":"2022-01-09T05:40:32.000Z","size":51,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-15T16:15:42.663Z","etag":null,"topics":["beautifulsoup-api","html","html-wrapper","python3"],"latest_commit_sha":null,"homepage":"https://alexdelorenzo.dev","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexdelorenzo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-09-28T19:48:57.000Z","updated_at":"2025-06-24T07:30:20.000Z","dependencies_parsed_at":"2022-09-15T11:20:22.721Z","dependency_job_id":null,"html_url":"https://github.com/alexdelorenzo/html_wrapper","commit_stats":null,"previous_names":["thismachinechills/html_wrapper"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/alexdelorenzo/html_wrapper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexdelorenzo%2Fhtml_wrapper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexdelorenzo%2Fhtml_wrapper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexdelorenzo%2Fhtml_wrapper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexdelorenzo%2Fhtml_wrapper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexdelorenzo","download_url":"https://codeload.github.com/alexdelorenzo/html_wrapper/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexdelorenzo%2Fhtml_wrapper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28069681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-27T02:00:05.897Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["beautifulsoup-api","html","html-wrapper","python3"],"created_at":"2024-10-12T08:42:44.299Z","updated_at":"2025-12-27T03:18:26.251Z","avatar_url":"https://github.com/alexdelorenzo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# html_wrapper\n\n`html_wrapper` implements a small subset of the `BeautifulSoup4` API. It can be anywhere from 10x-100x faster than `bs4` for some use cases.\n\n\n## Installation\n`python3 -m pip install html_wrapper`\n\n\n## Example\nIt's faster to instantiate and parse HTML. Suits my needs.\n\n```python3\nIn [1]: from html_wrapper import HtmlWrapper\n\nIn [2]: from bs4 import BeautifulSoup\n\nIn [3]: from requests import get\n\nIn [4]: html: bytes = get(\"https://en.wikipedia.org/wiki/HTML\").content\n\nIn [5]: %timeit HtmlWrapper(html).text\n23.4 ms ± 563 µs per loop (mean ± std. dev. of 7 runs, 10 loops each)\n\nIn [6]: %timeit BeautifulSoup(html).text\n190 ms ± 29.3 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)\n```\n\n\n## License\nSee `LICENSE`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexdelorenzo%2Fhtml_wrapper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexdelorenzo%2Fhtml_wrapper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexdelorenzo%2Fhtml_wrapper/lists"}