Earl.Crawler 0.0.0-alpha.0.111

This is a prerelease version of Earl.Crawler.
dotnet add package Earl.Crawler --version 0.0.0-alpha.0.111
NuGet\Install-Package Earl.Crawler -Version 0.0.0-alpha.0.111
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Earl.Crawler" Version="0.0.0-alpha.0.111" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Earl.Crawler --version 0.0.0-alpha.0.111
#r "nuget: Earl.Crawler, 0.0.0-alpha.0.111"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Earl.Crawler as a Cake Addin
#addin nuget:?package=Earl.Crawler&version=0.0.0-alpha.0.111&prerelease

// Install Earl.Crawler as a Cake Tool
#tool nuget:?package=Earl.Crawler&version=0.0.0-alpha.0.111&prerelease

<h1 align="center">earl</h1>

<div align="center">

Looking for URLs in your area.

Language Checks Coverage Version

</div>

Earl is a suite of APIs for developing url crawlers & web scrapers driven by a middleware pattern similar to, and strongly influenced by, ASP.NET Core.

Basic Usage

var services = new ServiceCollection()
    .AddEarlCrawler()
    .AddEarlJsonPersistence()
    .BuildServiceProvider();

var crawler = services.GetService<IEarlCrawler>();
var options = CrawlerOptionsBuilder.CreateDefault()
    .BatchSize( 50 )
    .MaxRequestCount( 500 )
    .On<CrawlUrlResultEvent>( 
        ( CrawlUrlResultEvent e, CancellationToken cancellation ) =>
        {
            Console.WriteLine( $"Crawled {e.Result.Url}" );
            return default;
        }
    )
    .Timeout( TimeSpan.FromMinutes( 30 ) )
    .Use(
        ( CrawlUrlContext context, CrawlUrlDelegate next ) =>
        {
            Console.WriteLine( $"Executing delegate middleware while crawling {context.Url}" );
            return next( context );
        }
    )
    .PersistTo( persist => persist.ToJson( json => json.Destination(...) ) )
    .Build();

await crawler.CrawlAsync( new Uri(...), options );

Documentation

Documentation can be find within the READMEs of the sub-directories representing the conceptual components of Earl:

All public APIs should contain thorough XML (triple slash) comments.

Something missing, still have questions? Please open an Issue or submit a PR!

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.0-alpha.0.111 140 3/30/2022
0.0.0-alpha.0.110 106 3/30/2022
0.0.0-alpha.0.109 115 3/30/2022
0.0.0-alpha.0.108 106 3/30/2022
0.0.0-alpha.0.107 112 3/30/2022
0.0.0-alpha.0.106 114 3/30/2022
0.0.0-alpha.0.104 113 3/29/2022
0.0.0-alpha.0.103 118 3/27/2022
0.0.0-alpha.0.102 117 3/27/2022
0.0.0-alpha.0.101 112 3/27/2022
0.0.0-alpha.0.100 113 3/26/2022
0.0.0-alpha.0.99 125 3/26/2022
0.0.0-alpha.0.98 111 3/25/2022
0.0.0-alpha.0.97 115 3/25/2022
0.0.0-alpha.0.96 114 3/25/2022
0.0.0-alpha.0.95 117 3/25/2022
0.0.0-alpha.0.94 121 3/25/2022
0.0.0-alpha.0.93 111 3/25/2022
0.0.0-alpha.0.92 108 3/24/2022
0.0.0-alpha.0.91 109 3/24/2022
0.0.0-alpha.0.90 118 3/24/2022
0.0.0-alpha.0.89 117 3/24/2022
0.0.0-alpha.0.88 109 3/23/2022
0.0.0-alpha.0.85 117 3/23/2022
0.0.0-alpha.0.84 117 3/23/2022
0.0.0-alpha.0.83 114 3/23/2022
0.0.0-alpha.0.82 113 3/23/2022
0.0.0-alpha.0.79 111 3/22/2022
0.0.0-alpha.0.78 109 3/22/2022
0.0.0-alpha.0.77 117 3/22/2022
0.0.0-alpha.0.76 109 3/22/2022
0.0.0-alpha.0.74 109 3/22/2022
0.0.0-alpha.0.73 112 3/22/2022
0.0.0-alpha.0.72 114 3/21/2022
0.0.0-alpha.0.71 111 3/21/2022
0.0.0-alpha.0.70 112 3/20/2022
0.0.0-alpha.0.69 116 3/19/2022
0.0.0-alpha.0.67 117 3/19/2022
0.0.0-alpha.0.66 116 3/19/2022
0.0.0-alpha.0.65 114 3/19/2022
0.0.0-alpha.0.62 114 3/19/2022
0.0.0-alpha.0.61 113 3/13/2022
0.0.0-alpha.0.60 117 3/13/2022
0.0.0-alpha.0.59 112 3/11/2022
0.0.0-alpha.0.58 119 3/7/2022
0.0.0-alpha.0.57 115 3/7/2022
0.0.0-alpha.0.56 106 3/7/2022
0.0.0-alpha.0.55 109 3/7/2022
0.0.0-alpha.0.54 104 3/7/2022
0.0.0-alpha.0.53 113 3/6/2022
0.0.0-alpha.0.52 115 3/6/2022
0.0.0-alpha.0.51 113 3/6/2022