Fizzler 1.3.1
dotnet add package Fizzler --version 1.3.1
NuGet\Install-Package Fizzler -Version 1.3.1
<PackageReference Include="Fizzler" Version="1.3.1" />
paket add Fizzler --version 1.3.1
#r "nuget: Fizzler, 1.3.1"
// Install Fizzler as a Cake Addin #addin nuget:?package=Fizzler&version=1.3.1 // Install Fizzler as a Cake Tool #tool nuget:?package=Fizzler&version=1.3.1
Fizzler: .NET CSS Selector Engine
Fizzler is a .NET Standard 1.0 library; it is a W3C Selectors (Level 3) parser and generic selector framework over document hierarchies.
The default implementation is based on HTMLAgilityPack and selects from HTML documents. The unit tests are based on the jQuery selector engine tests.
Contributions are welcome in forms of:
- Increased selector support
- Implementation over an HTML-like hierarchical document model
- Re-factorings
- Improved tests
Examples
The following example uses Fizzler.Systems.HtmlAgilityPack:
// Load the document using HTMLAgilityPack as normal
var html = new HtmlDocument();
html.LoadHtml(@"
<html>
<head></head>
<body>
<div>
<p class='content'>Fizzler</p>
<p>CSS Selector Engine</p></div>
</body>
</html>");
// Fizzler for HtmlAgilityPack is implemented as the
// QuerySelectorAll extension method on HtmlNode
var document = html.DocumentNode;
// yields: [<p class="content">Fizzler</p>]
document.QuerySelectorAll(".content");
// yields: [<p class="content">Fizzler</p>,<p>CSS Selector Engine</p>]
document.QuerySelectorAll("p");
// yields empty sequence
document.QuerySelectorAll("body>p");
// yields [<p class="content">Fizzler</p>,<p>CSS Selector Engine</p>]
document.QuerySelectorAll("body p");
// yields [<p class="content">Fizzler</p>]
document.QuerySelectorAll("p:first-child");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.0 is compatible. netstandard1.1 was computed. netstandard1.2 was computed. netstandard1.3 was computed. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wp8 was computed. wp81 was computed. wpa81 was computed. |
Windows Store | netcore was computed. netcore45 was computed. netcore451 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 1.0
- NETStandard.Library (>= 1.6.1)
- System.Diagnostics.Contracts (>= 4.3.0)
-
.NETStandard 2.0
- No dependencies.
NuGet packages (14)
Showing the top 5 NuGet packages that depend on Fizzler:
Package | Downloads |
---|---|
Fizzler.Systems.HtmlAgilityPack
Fizzler is a W3C Selectors parser and generic selector framework for document hierarchies. This package enables Fizzler over HTMLAgilityPack, adding QuerySelector and QuerySelectorAll (from Selectors API Level 1) for HtmlNode objects. |
|
fion.modelerp.core
ModelErp |
|
Svg.Core
Public fork of the C# SVG rendering library on codeplex: https://svg.codeplex.com/ This started out as a minor modification to enable the writing of proper SVG strings. But now after almost two years we have so many fixes and improvements that we decided to share our current codebase to the public in order to improve it even further. So please feel free to fork it and open pull requests for any fix, improvement or feature you add. License: Microsoft Public License: https://svg.codeplex.com/license |
|
XTract
F# screen scraping package. |
|
Tessin.Bladerunner
Package Description |
GitHub repositories (8)
Showing the top 5 popular GitHub repositories that depend on Fizzler:
Repository | Stars |
---|---|
chocolatey/ChocolateyGUI
A delicious GUI for Chocolatey
|
|
svg-net/SVG
Fork of the ms svg library
|
|
ModuleArt/quick-picture-viewer
🖼️ Lightweight, versatile desktop image viewer for Windows. The best replacement for the default Windows photo viewer.
|
|
Harsha-Global/AspNetCore-Harsha
Asp.Net Core Ultimate Guide course | Web University by Harsha
|
|
Redth/ResizetizerNT
Add SVG's and PNG's to your shared Xamarin Project
|
Version | Downloads | Last updated |
---|---|---|
1.3.1 | 16,894 | 7/10/2024 |
1.3.0 | 518,067 | 2/6/2021 |
1.3.0-beta1 | 2,508 | 4/15/2020 |
1.2.1 | 2,958,800 | 1/7/2021 |
1.2.0 | 3,971,974 | 2/1/2018 |
1.1.0 | 185,641 | 11/29/2017 |
1.0.0 | 289,917 | 10/16/2014 |
1.0.0-beta2 | 2,267 | 1/23/2013 |
1.0.0-beta1 | 1,237 | 1/20/2013 |
0.9.3 | 372,290 | 9/21/2012 |
0.9.2 | 1,679 | 9/20/2012 |
0.9.1 | 1,679 | 9/13/2012 |
0.9.0 | 2,012 | 8/4/2012 |