Spidey 6.0.9

dotnet add package Spidey --version 6.0.9
                    
NuGet\Install-Package Spidey -Version 6.0.9
                    
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="Spidey" Version="6.0.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Spidey" Version="6.0.9" />
                    
Directory.Packages.props
<PackageReference Include="Spidey" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Spidey --version 6.0.9
                    
#r "nuget: Spidey, 6.0.9"
                    
#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.
#:package Spidey@6.0.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Spidey&version=6.0.9
                    
Install as a Cake Addin
#tool nuget:?package=Spidey&version=6.0.9
                    
Install as a Cake Tool

<img src="https://jacraig.github.io/Spidey/images/icon.png" style="height:25px" alt="Spidey Icon" /> Spidey

.NET Publish NuGet

Spidey is a flexible and extensible .NET library for crawling web content. It is designed for .NET Core applications and provides a modular architecture, allowing you to customize or extend any part of the crawling pipeline.

Features

  • Simple API for crawling websites
  • Highly configurable via the Options class
  • Dependency injection support (IoC/DI)
  • Easily replaceable subsystems (engine, parser, scheduler, etc.)
  • Callback-based result handling
  • NuGet package available

Quick Start

Install the NuGet package:

dotnet add package Spidey

Setting up the Library

Register Spidey in your app's service collection using the RegisterSpidey extension method:

using Microsoft.Extensions.DependencyInjection;
using Spidey;

var services = new ServiceCollection();
services.RegisterSpidey();

// Optionally, register your Options configuration
services.AddSingleton(new Options
{
    ItemFound = result => Console.WriteLine($"Found: {result.Url}"),
    Allow = new List<string> { "http://mywebsite", "http://mywebsite2" },
    FollowOnly = new List<string> { /* regex patterns */ },
    Ignore = new List<string> { /* regex patterns */ },
    StartLocations = new List<string> { "http://mywebsite", "http://mywebsite2" },
    UrlReplacements = new Dictionary<string, string> { /* { "old", "new" } */ },
    // Other options as needed
});

var provider = services.BuildServiceProvider();
var crawler = provider.GetRequiredService<Crawler>();

Alternatively, you can instantiate Crawler and Options directly without DI:

var options = new Options
{
    ItemFound = result => Console.WriteLine($"Found: {result.Url}"),
    // ...other options
};
var crawler = new Crawler(options);

Options Configuration

The Options class configures the crawler's behavior. Key properties include:

  • ItemFound (Action<ResultFile>): Callback invoked when a new page is discovered.
  • Allow (List<string>): Regex patterns for URLs allowed to be crawled.
  • FollowOnly (List<string>): Regex patterns for pages whose links should be followed.
  • Ignore (List<string>): Regex patterns for URLs to ignore.
  • StartLocations (List<string>): Initial URLs to start crawling from.
  • UrlReplacements (Dictionary<string, string>): URL replacements during crawling.
  • NetworkCredentials (NetworkCredential): Optional credentials for authentication.
  • UseDefaultCredentials (bool): Use default system credentials.
  • Proxy (IWebProxy): Optional proxy settings.

Example callback method:

void OnItemFound(ResultFile result)
{
    Console.WriteLine($"Discovered: {result.Url} (Status: {result.StatusCode})");
    // Additional processing...
}

Basic Usage

Once configured, start the crawl process:

crawler.StartCrawl();

The library will handle link discovery, content downloading, and result parsing. Your callback will be invoked for each discovered item.

Customization

Spidey is built with extensibility in mind. The system is divided into the following subsystems, each replaceable via DI:

  1. Content Parser (IContentParser) – Parses downloaded data into ResultFile objects.
  2. Engine (IEngine) – Handles HTTP requests and content downloading.
  3. Link Discoverer (ILinkDiscoverer) – Extracts links from content.
  4. Processor (IProcessor) – Processes parsed content (default: invokes your callback).
  5. Scheduler (IScheduler) – Manages work distribution.
  6. Pipeline (IPipeline) – Orchestrates the crawling process.

To customize, implement the relevant interface from Spidey.Engines.Interfaces and register your implementation in the service provider. Note that if you call RegisterSpidey(), the registration is handled for you automatically. If you instantiate Crawler directly, you must compose the pipeline manually.

FAQ

Q: Can I run the crawler on multiple nodes?

A: The default scheduler is single-node only. For distributed crawling, implement a custom scheduler (e.g., using a database or message queue) to coordinate work between instances.

Build Process

Requirements:

  • Visual Studio 2022

Clone the project and open the solution (Spidey.sln) in Visual Studio to build.

License

See LICENSE for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
6.0.9 160 10/16/2025
6.0.8 251 10/7/2025
6.0.7 190 9/30/2025
6.0.6 241 8/28/2025
6.0.5 175 8/19/2025
6.0.4 179 7/16/2025
6.0.3 206 6/27/2025
6.0.2 210 6/25/2025
6.0.1 238 12/9/2024
6.0.0 189 11/25/2024
5.0.131 209 11/12/2024
5.0.130 186 11/11/2024
5.0.129 180 11/6/2024
5.0.128 166 11/5/2024
5.0.127 180 11/4/2024
5.0.126 190 10/31/2024
5.0.125 179 10/30/2024
5.0.124 200 10/29/2024
5.0.123 202 10/11/2024
5.0.122 189 10/10/2024
5.0.121 178 10/9/2024
5.0.120 190 10/2/2024
5.0.119 173 10/1/2024
5.0.118 196 9/24/2024
5.0.117 202 9/17/2024
5.0.116 229 9/10/2024
5.0.115 197 9/3/2024
5.0.114 188 8/30/2024
5.0.113 200 8/27/2024
5.0.112 213 8/26/2024
5.0.111 201 8/23/2024
5.0.110 216 8/21/2024
5.0.109 207 8/20/2024
5.0.108 223 8/16/2024
5.0.107 213 8/15/2024
5.0.106 185 8/5/2024
5.0.105 174 8/2/2024
5.0.104 171 8/1/2024
5.0.103 171 7/26/2024
5.0.102 203 7/11/2024
5.0.101 200 7/2/2024
5.0.100 204 6/27/2024
5.0.99 201 6/26/2024
5.0.98 199 6/19/2024
5.0.97 193 6/18/2024
5.0.96 221 6/17/2024
5.0.95 194 6/14/2024
5.0.94 183 6/13/2024
5.0.93 180 6/12/2024
5.0.92 196 5/31/2024
5.0.91 203 5/30/2024
5.0.90 199 5/17/2024
5.0.89 204 5/16/2024
5.0.88 219 5/8/2024
5.0.87 221 5/7/2024
5.0.86 231 5/6/2024
5.0.85 166 5/3/2024
5.0.84 186 5/2/2024
5.0.83 202 5/1/2024
5.0.82 205 4/30/2024
5.0.81 191 4/16/2024
5.0.80 215 4/12/2024
5.0.79 193 4/11/2024
5.0.78 219 4/1/2024
5.0.77 205 3/29/2024
5.0.76 207 3/18/2024
5.0.75 207 3/15/2024
5.0.74 215 3/14/2024
5.0.73 200 3/11/2024
5.0.72 196 3/8/2024
5.0.71 195 3/7/2024
5.0.70 228 3/6/2024
5.0.69 223 3/5/2024
5.0.68 193 3/4/2024
5.0.67 210 2/29/2024
5.0.66 212 2/28/2024
5.0.65 205 2/26/2024
5.0.64 198 2/23/2024
5.0.63 212 2/22/2024
5.0.62 216 2/21/2024
5.0.61 217 2/16/2024
5.0.60 221 2/15/2024
5.0.59 218 2/12/2024
5.0.58 209 2/8/2024
5.0.57 199 2/7/2024
5.0.56 195 2/6/2024
5.0.55 188 2/1/2024
5.0.54 204 1/31/2024
5.0.53 201 1/30/2024
5.0.52 184 1/24/2024
5.0.51 208 1/23/2024
5.0.50 210 1/12/2024
5.0.49 213 1/11/2024
5.0.48 220 12/26/2023
5.0.47 192 12/22/2023
5.0.46 203 12/18/2023
5.0.45 192 12/15/2023
5.0.44 193 12/14/2023
5.0.43 199 12/13/2023
5.0.42 188 12/12/2023
5.0.41 201 11/24/2023
5.0.40 209 11/21/2023
5.0.39 182 11/20/2023
5.0.38 174 11/17/2023
5.0.37 188 11/16/2023
5.0.36 182 11/14/2023
5.0.35 166 11/8/2023
5.0.34 173 11/7/2023
5.0.33 174 11/6/2023
5.0.32 173 11/1/2023
5.0.31 185 10/31/2023
5.0.30 203 10/30/2023
5.0.29 173 10/26/2023
5.0.28 231 10/12/2023
5.0.27 230 10/5/2023
5.0.26 213 9/26/2023
5.0.25 191 9/20/2023
5.0.24 178 9/19/2023
5.0.23 226 9/18/2023
5.0.22 204 9/14/2023
5.0.21 174 9/13/2023
5.0.20 212 9/11/2023
5.0.19 205 9/7/2023
5.0.18 214 9/6/2023
5.0.17 211 9/5/2023
5.0.16 214 9/4/2023
5.0.15 201 9/1/2023
5.0.14 206 8/31/2023
5.0.13 233 8/30/2023
5.0.12 242 8/29/2023
5.0.11 226 8/25/2023
5.0.10 235 8/23/2023
5.0.9 224 8/18/2023
5.0.8 247 8/10/2023
5.0.7 247 8/8/2023
5.0.6 238 8/8/2023
5.0.5 273 8/7/2023
5.0.4 253 8/3/2023
5.0.3 263 7/26/2023
5.0.2 233 7/20/2023
5.0.1 261 7/14/2023
5.0.0 433 12/12/2022
4.0.5 658 6/10/2022
4.0.2 622 1/11/2022
4.0.1 601 7/19/2021
3.0.9 675 1/7/2021
3.0.7 741 9/13/2020
3.0.6 720 6/26/2020
3.0.5 704 6/26/2020
3.0.3 709 3/25/2020
3.0.2 770 3/1/2020
3.0.1 803 1/1/2020
3.0.0 760 12/23/2019
2.0.15 780 11/22/2019
2.0.14 757 11/22/2019
2.0.13 731 11/22/2019
2.0.12 724 11/21/2019
2.0.11 726 11/21/2019
2.0.10 747 11/21/2019
2.0.9 746 11/21/2019
2.0.8 898 3/3/2019
2.0.7 832 3/3/2019
2.0.6 854 3/3/2019
2.0.5 832 3/3/2019
2.0.4 907 2/7/2019
2.0.3 1,420 6/1/2018
2.0.2 1,437 5/22/2018
2.0.1 1,562 1/2/2018
1.0.12 1,305 11/2/2017
1.0.11 1,316 10/30/2017
1.0.10 1,320 10/26/2017
1.0.9 1,304 10/26/2017
1.0.8 1,341 10/26/2017
1.0.7 1,299 10/25/2017
1.0.6 1,280 10/25/2017
1.0.5 1,322 10/24/2017
1.0.4 1,247 10/24/2017
1.0.3 1,241 10/19/2017
1.0.2 1,388 10/18/2017
1.0.1 1,303 9/29/2017