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.
- Metadata class was changed: The
Contentfield has been removed from theMetadataclass. Ensure to update your code to reflect this change if you were using theContentfield. - Description Extraction Logic: The
Extractorclass now only extracts the description from meta tags, without attempting to parse the content of the page. - New WebPage Model: The library now returns a
WebPagemodel with comprehensive information including links found on the page. - Link Extraction: Added support for extracting and processing all hyperlinks from web pages.
- Extract meta information from any web page URL.
- Extract and process hyperlinks from web pages.
- Support for multiple HTTP libraries:
- Flurl
- FsHttp
- RestSharp
- Detect the language of the page content.
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:
- MetaDocumentExtractor - Extracts metadata from HTML tags
- OpenGraphDocumentExtractor - Extracts Open Graph protocol metadata
- TitleDocumentExtractor - Extracts the page title
- ImageDocumentExtractor - Extracts image URLs from the document
- LinksDocumentExtractor – Extracts all hyperlinks from HTML documents, converting them to strongly-typed
Linkobjects.
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.