| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
X.Web.MetaExtractor is a powerful library that allows you to extract meta information from any web page URL. It provides a variety of content loaders to handle HTTP requests using different libraries.
To install the library, use the following command:
dotnet add package X.Web.MetaExtractorHere is a basic example of how to use the X.Web.MetaExtractor library:
using X.Web.MetaExtractor;
using X.Web.MetaExtractor.ContentLoaders;
using X.Web.MetaExtractor.LanguageDetectors;
// Create instances of the necessary components
IContentLoader contentLoader = new FlurlContentLoader();
ILanguageDetector languageDetector = new LanguageDetector();
string defaultImage = "https://example.com/example.jpg";
// Create an instance of the Extractor
IExtractor extractor = new Extractor(defaultImage, contentLoader, languageDetector);
// Extract information from a URL
var webPage = await extractor.Extract(new Uri("https://example.com"), CancellationToken.None);
// Display the extracted information
Console.WriteLine($"Title: {webPage.Title}");
Console.WriteLine($"Description: {webPage.Description}");
Console.WriteLine($"Keywords: {webPage.Keywords}");
Console.WriteLine($"Language: {webPage.Language}");
// Process links
if (webPage.Links != null)
{
Console.WriteLine($"Found {webPage.Links.Count} links:");
foreach (var link in webPage.Links)
{
Console.WriteLine($"- {link.Title}: {link.Value}");
}
}IExtractor defines the interface for extracting web page information, returning a comprehensive WebPage model.
ILanguageDetector defines the interface for detecting the language of the page content.
IContentLoader defines the interface for loading the content of a web page asynchronously.
WebPage is the main model containing extracted information from a web page, including metadata, links, and source information.
Link is a record that represents a hyperlink extracted from HTML content with Title and Value properties.
Source is a record that contains information about the origin of web content, including the original URL and raw page content.
The library architecture supports multiple specialized extractors that work together to build a complete representation of a web page:
X.Web.MetaExtractor.ContentLoaders.Flurl provides a content loader using the Flurl HTTP library.
X.Web.MetaExtractor.ContentLoaders.FsHttp leverages the FsHttp library to load content.
X.Web.MetaExtractor.ContentLoaders.HttpClient utilizes the HttpClient class to load content.
X.Web.MetaExtractor.ContentLoaders.RestSharp uses the RestSharp library for content loading.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License. See the LICENSE file for more details.
| Back | FazBrowse Home | New Git URL |