Crawl web endpoints to identify structure and retrieve contents.
2.1K
CrawlSharp is a library and integrated webserver for crawling basic web content.
Microsoft.Playwright)Please feel free to start an issue or a discussion!
Embedding CrawlSharp into your application is simple and requires minimal configuration. Refer to the Test project for a full example.
using CrawlSharp;
Settings settings = new Settings();
settings.Crawl.StartUrl = "http://www.mywebpage.com";
settings.Crawl.UseHeadlessBrowser = true; // slow but useful for sites that block bots or where content must be rendered
using (WebCrawler crawler = new WebCrawler(settings))
{
await foreach (WebResource resource in crawler.CrawlAsync())
Console.WriteLine(resource.Status + ": " + resource.Url);
}
WebCrawler.CrawlAsync can be awaited, returning an IAsyncEnumerable<WebResource> whereas WebCrawler.Crawl cannot be awaited, returning an IEnumerable<WebResource>.
Objects crawled using CrawlSharp have the following properties:
Url - the URL from which the resource was retrievedParentUrl - the URL from which the Url was identifiedFilename - the filename component from the URL, if anyDepth - the depth level at which the Url was identifiedStatus - the HTTP status code returned when retrieving the UrlContentLength - the content length of the body returned when retrieving UrlContentType - the content type returned while retrieving UrlMD5Hash - the MD5 hash of the DataSHA1Hash - the SHA1 hash of the DataSHA256Hash - the SHA256 hash of the DataLastModified - the DateTime from when the headers indicate the object was last modifiedHeaders - a NameValueCollection with the headers returned while retrieving UrlData - a byte[] containing the data returned while retrieving UrlCrawlSharp includes a project called CrawlSharp.Server which allows you to deploy a RESTful front-end for CrawlSharp. Refer to REST_API.md and also the Postman collection in the root of this repository for details.
CrawlSharp.Server will by default listen on host localhost and port 8000, meaning it will not accept requests from outside of the machine.
To change this, specify the hostname as the first argument and the port as the second, i.e. dotnet CrawlSharp.Server myhostname.com 8888.
$ dotnet CrawlSharp.Server
_ _ _
___ _ __ __ ___ _| | _| || |_
/ __| '__/ _` \ \ /\ / / | |_ .. _|
| (__| | | (_| |\ V V /| | |_ _|
\___|_| \__,_| \_/\_/ |_| |_||_|
(c)2025 Joel Christner
Usage:
crawlsharp [hostname] [port]
Where:
[hostname] is the hostname or IP address on which to listen
[port] is the port number, greater than or equal to zero, and less than 65536
NOTICE
------
Configured to listen on local address 'localhost'
Service will not receive requests from outside of localhost
Webserver started on http://localhost:8000/
2025-03-01 20:39:17 joel-laptop Info [CrawlSharpServer] server started
Refer to REST_API.md for more information about using the RESTful API.
A Docker image is available in Docker Hub under jchristn/crawlsharp. Use the Docker Compose start (compose-up.sh and compose-up.bat) and stop (compose-down.sh and compose-down.bat) scripts in the Docker directory if you wish to run within Docker Compose.
CrawlSharp can use Microsoft.Playwright to crawl content to overcome challenging websites that detect and block bots or require content to be rendered from Javascript. If you run this code on an Ubuntu machine, use the following script to install dependencies that will be required. Also note that the $HOME directory must be owned by the user running the code.
#!/bin/bash
# Detect Ubuntu version
VERSION=$(lsb_release -rs)
if [[ "$VERSION" == "24.04" ]]; then
# Ubuntu 24.04 packages
PACKAGES="libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64 libcups2t64 libgtk-3-0t64"
else
# Ubuntu 22.04 and earlier
PACKAGES="libasound2 libatk-bridge2.0-0 libatk1.0-0 libcups2 libgtk-3-0"
fi
# Install common packages plus version-specific ones
sudo apt-get update
sudo apt-get install -y \
$PACKAGES \
libnspr4 \
libnss3 \
libdrm2 \
libxkbcommon0 \
libxcomposite1 \
libxdamage1 \
libxrandr2 \
libgbm1 \
libxss1 \
fonts-liberation \
ca-certificates
CrawlSharp is licensed under MIT and uses the Nager.PublicSuffix library (MIT license) for domain matching coupled with third-party public suffix data (Mozilla Public License v2.0). Please be aware of the license for this information.
Please refer to CHANGELOG.md for version history.
Content type
Image
Digest
sha256:dce51aa11…
Size
506.4 MB
Last updated
5 months ago
docker pull jchristn77/crawlsharp