{"id":17955247,"url":"https://github.com/atifaziz/fizzler","last_synced_at":"2025-04-13T00:43:47.365Z","repository":{"id":36941431,"uuid":"41248871","full_name":"atifaziz/Fizzler","owner":"atifaziz","description":".NET CSS Selector Engine","archived":false,"fork":false,"pushed_at":"2024-07-14T17:46:42.000Z","size":730,"stargazers_count":137,"open_issues_count":14,"forks_count":29,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-04-13T00:43:42.790Z","etag":null,"topics":["css"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atifaziz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-08-23T12:30:18.000Z","updated_at":"2025-03-03T17:58:58.000Z","dependencies_parsed_at":"2024-10-29T10:52:57.134Z","dependency_job_id":null,"html_url":"https://github.com/atifaziz/Fizzler","commit_stats":{"total_commits":350,"total_committers":2,"mean_commits":175.0,"dds":0.2114285714285714,"last_synced_commit":"8323ec7a49ce5dff579b1aa146492ee7aa0ab10d"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atifaziz%2FFizzler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atifaziz%2FFizzler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atifaziz%2FFizzler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atifaziz%2FFizzler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atifaziz","download_url":"https://codeload.github.com/atifaziz/Fizzler/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248650419,"owners_count":21139672,"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","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":["css"],"created_at":"2024-10-29T10:25:34.831Z","updated_at":"2025-04-13T00:43:47.342Z","avatar_url":"https://github.com/atifaziz.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fizzler: .NET CSS Selector Engine\n\n[![Build Status][build-badge]][builds]\n[![NuGet][nuget-badge]][nuget-pkg]\n[![MyGet][myget-badge]][edge-pkgs]\n\nFizzler is a .NET Standard 1.0 library; it is a [W3C Selectors\n(Level 3)][w3cs3] parser and generic selector framework over document\nhierarchies.\n\nThe [default implementation][fizzhap] is based on [HTMLAgilityPack][hap] and\nselects from HTML documents. The unit tests are based on the jQuery\nselector engine tests.\n\nContributions are welcome in forms of:\n\n  * Increased selector support\n  * Implementation over an HTML-like hierarchical document model\n  * Re-factorings\n  * Improved tests\n\n## Examples\n\nThe following example uses [Fizzler.Systems.HtmlAgilityPack][fizzhap]:\n\n```c#\n// Load the document using HTMLAgilityPack as normal\nvar html = new HtmlDocument();\nhtml.LoadHtml(@\"\n  \u003chtml\u003e\n      \u003chead\u003e\u003c/head\u003e\n      \u003cbody\u003e\n        \u003cdiv\u003e\n          \u003cp class='content'\u003eFizzler\u003c/p\u003e\n          \u003cp\u003eCSS Selector Engine\u003c/p\u003e\u003c/div\u003e\n      \u003c/body\u003e\n  \u003c/html\u003e\");\n\n// Fizzler for HtmlAgilityPack is implemented as the\n// QuerySelectorAll extension method on HtmlNode\n\nvar document = html.DocumentNode;\n\n// yields: [\u003cp class=\"content\"\u003eFizzler\u003c/p\u003e]\ndocument.QuerySelectorAll(\".content\");\n\n// yields: [\u003cp class=\"content\"\u003eFizzler\u003c/p\u003e,\u003cp\u003eCSS Selector Engine\u003c/p\u003e]\ndocument.QuerySelectorAll(\"p\");\n\n// yields empty sequence\ndocument.QuerySelectorAll(\"body\u003ep\");\n\n// yields [\u003cp class=\"content\"\u003eFizzler\u003c/p\u003e,\u003cp\u003eCSS Selector Engine\u003c/p\u003e]\ndocument.QuerySelectorAll(\"body p\");\n\n// yields [\u003cp class=\"content\"\u003eFizzler\u003c/p\u003e]\ndocument.QuerySelectorAll(\"p:first-child\");\n```\n\n\n[build-badge]: https://img.shields.io/appveyor/ci/raboof/fizzler/master.svg?label=windows\n[builds]: https://ci.appveyor.com/project/raboof/fizzler\n[myget-badge]: https://img.shields.io/myget/raboof/vpre/Fizzler.svg?label=myget\n[edge-pkgs]: https://www.myget.org/feed/raboof/package/nuget/Fizzler\n[nuget-badge]: https://img.shields.io/nuget/v/Fizzler.svg\n[nuget-pkg]: https://www.nuget.org/packages/Fizzler\n\n[w3cs3]: https://www.w3.org/TR/selectors-3/\n[fizzhap]: http://www.nuget.org/packages/Fizzler.Systems.HtmlAgilityPack/\n[hap]: http://html-agility-pack.net/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatifaziz%2Ffizzler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatifaziz%2Ffizzler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatifaziz%2Ffizzler/lists"}