A configurable, concurrent, and resumable web crawler written in Go. Specifically designed to scrape technical documentation websites, extract core content, convert it cleanly to Markdown format suitable for ingestion by Large Language Models (LLMs), and save the results locally.
This project provides a powerful command-line tool to crawl documentation sites based on settings defined in a config.yaml
file. It navigates the site structure, extracts content from specified HTML sections using CSS selectors, and converts it into clean Markdown files.
- Built for LLM Training & RAG Systems - Creates clean, consistent Markdown optimized for ingestion
- Preserves Documentation Structure - Maintains the original site hierarchy for context preservation
- Production-Ready Features - Offers resumable crawls, rate limiting, and graceful error handling
- High Performance - Uses Go's concurrency model for efficient parallel processing
The main objective of this tool is to automate the often tedious process of gathering and cleaning web-based documentation for use with Large Language Models. By converting structured web content into clean Markdown, it aims to provide a dataset that is:
- Text-Focused: Prioritizes the textual content extracted via CSS selectors
- Structured: Maintains the directory hierarchy of the original documentation site, preserving context
- Cleaned: Converts HTML to Markdown, removing web-specific markup and clutter
- Locally Accessible: Provides the content as local files for easier processing and pipeline integration
Feature | Description |
---|---|
Configurable Crawling | Uses YAML for global and site-specific settings |
Scope Control | Limits crawling by domain, path prefix, and disallowed path patterns (regex) |
Content Extraction | Extracts main content using CSS selectors |
HTML-to-Markdown | Converts extracted HTML to clean Markdown |
Image Handling | Optional downloading and local rewriting of image links with domain and size filtering |
Link Rewriting | Rewrites internal links to relative paths for local structure |
URL-to-File Mapping | Optional TSV file logging saved file paths and their corresponding original URLs |
YAML Metadata Output | Optional detailed YAML file per site with crawl stats and per-page metadata (including content hashes) |
Concurrency | Configurable worker pools and semaphore-based request limits (global and per-host) |
Rate Limiting | Configurable per-host delays with jitter |
Robots.txt & Sitemaps | Respects robots.txt and processes discovered sitemaps |
State Persistence | Uses BadgerDB for state; supports resuming crawls via -resume flag |
Graceful Shutdown | Handles SIGINT /SIGTERM with proper cleanup |
HTTP Retries | Exponential backoff with jitter for transient errors |
Observability | Structured logging (logrus ) and optional pprof endpoint |
Modular Code | Organized into packages for clarity and maintainability |
- Go: Version 1.21 or later
- Git: For cloning the repository
- Disk Space: Sufficient for storing crawled content and state database
-
Clone the repository:
git clone https://github.com/Sriram-PR/doc-scraper.git cd doc-scraper
-
Install Dependencies:
go mod tidy
-
Build the Binary:
go build -o crawler.exe ./cmd/crawler/...
This creates an executable file named
crawler
in the project root directory.
- Create a basic
config.yaml
file (see Configuration section) - Run the crawler:
./crawler.exe -site your_site_key -loglevel info
- Find your crawled documentation in the
./crawled_docs/
directory
A config.yaml
file is required to run the crawler. Create this file in the project root or specify its path using the -config
flag.
When configuring for LLM documentation processing, pay special attention to these settings:
sites.<your_site_key>.content_selector
: Define precisely to capture only relevant textsites.<your_site_key>.allowed_domain
/allowed_path_prefix
: Define scope accuratelyskip_images
: Set totrue
globally or per-site if images aren't needed for the LLM- Adjust concurrency/delay settings based on the target site and your resources
# Global settings (applied if not overridden by site)
default_delay_per_host: 500ms
num_workers: 8
num_image_workers: 8
max_requests: 48
max_requests_per_host: 4
output_base_dir: "./crawled_docs"
state_dir: "./crawler_state"
max_retries: 4
initial_retry_delay: 1s
max_retry_delay: 30s
semaphore_acquire_timeout: 30s
global_crawl_timeout: 0s
skip_images: false # Set to true to skip images globally
max_image_size_bytes: 10485760 # 10 MiB
enable_output_mapping: true
output_mapping_filename: "global_url_map.tsv"
enable_metadata_yaml: true
metadata_yaml_filename: "crawl_meta.yaml"
# HTTP Client Settings
http_client_settings:
timeout: 45s
max_idle_conns_per_host: 6
# Site-specific configurations
sites:
# Key used with -site flag
pytorch_docs:
start_urls:
- "https://pytorch.org/docs/stable/"
allowed_domain: "pytorch.org"
allowed_path_prefix: "/docs/stable/"
content_selector: "article.pytorch-article .body"
max_depth: 0 # 0 for unlimited depth
skip_images: false
# Override global mapping filename for this site
output_mapping_filename: "pytorch_docs_map.txt"
metadata_yaml_filename: "pytorch_metadata_output.yaml"
disallowed_path_patterns:
- "/docs/stable/.*/_modules/.*"
- "/docs/stable/.*\.html#.*"
tensorflow_docs:
start_urls:
- "https://www.tensorflow.org/guide"
- "https://www.tensorflow.org/tutorials"
allowed_domain: "www.tensorflow.org"
allowed_path_prefix: "/"
content_selector: ".devsite-article-body"
max_depth: 0
delay_per_host: 1s # Site-specific override
# Disable mapping for this site, overriding global
enable_output_mapping: false
enable_metadata_yaml: false
disallowed_path_patterns:
- "/install/.*"
- "/js/.*"
Option | Type | Description | Default |
---|---|---|---|
default_delay_per_host |
Duration | Time to wait between requests to the same host | 500ms |
num_workers |
Integer | Number of concurrent crawl workers | 8 |
num_image_workers |
Integer | Number of concurrent image download workers | 8 |
max_requests |
Integer | Maximum concurrent requests (global) | 48 |
max_requests_per_host |
Integer | Maximum concurrent requests per host | 4 |
output_base_dir |
String | Base directory for crawled content | "./crawled_docs" |
state_dir |
String | Directory for BadgerDB state data | "./crawler_state" |
max_retries |
Integer | Maximum retry attempts for HTTP requests | 4 |
initial_retry_delay |
Duration | Initial delay for retry backoff | 1s |
max_retry_delay |
Duration | Maximum delay for retry backoff | 30s |
skip_images |
Boolean | Whether to skip downloading images | false |
max_image_size_bytes |
Integer | Maximum allowed image size | 10485760 (10 MiB) |
enable_output_mapping |
Boolean | Enable URL-to-file mapping log | false |
output_mapping_filename |
String | Filename for the URL-to-file mapping log | "url_to_file_map.tsv" (if enabled and not set) |
enable_metadata_yaml |
Boolean | Enable detailed YAML metadata output file | false |
metadata_yaml_filename |
String | Filename for the YAML metadata output file | "metadata.yaml" (if enabled & not set) |
http_client_settings |
Object | HTTP client configuration | (see below) |
sites |
Map | Site-specific configurations | (required) |
HTTP Client Settings: (These are global and cannot be overridden per site in the current structure)
timeout
: Overall request timeout (Default in code:45s
)max_idle_conns
: Total idle connections (Default in code:100
)max_idle_conns_per_host
: Idle connections per host (Default in code:6
)idle_conn_timeout
: Timeout for idle connections (Default in code:90s
)tls_handshake_timeout
: TLS handshake timeout (Default in code:10s
)expect_continue_timeout
: "100 Continue" timeout (Default in code:1s
)force_attempt_http2
:null
(use Go default),true
, orfalse
. (Default in code:null
)dialer_timeout
: TCP connection timeout (Default in code:15s
)dialer_keep_alive
: TCP keep-alive interval (Default in code:30s
)
Site-Specific Configuration Options:
start_urls
: Array of starting URLs for crawling (Required)allowed_domain
: Restrict crawling to this domain (Required)allowed_path_prefix
: Further restrict crawling to URLs with this prefix (Required)content_selector
: CSS selector for main content extraction (Required)max_depth
: Maximum crawl depth from start URLs (0 = unlimited)delay_per_host
: Override global delay setting for this sitedisallowed_path_patterns
: Array of regex patterns for URLs to skipskip_images
: Override global image setting for this siteallowed_image_domains
: Array of domains from which to download imagesenable_output_mapping
:true
orfalse
. Override global URL-to-file mapping enablement for this site.output_mapping_filename
: String. Override global URL-to-file mapping filename for this site.enable_metadata_yaml
:true
orfalse
. Override global YAML metadata output enablement for this site.metadata_yaml_filename
: String. Override global YAML metadata filename for this site.
Execute the compiled binary from the project root directory:
./crawler -config <path_to_config.yaml> -site <site_key> [flags...]
Flag | Description | Default |
---|---|---|
-config <path> |
Path to config file | config.yaml |
-site <key> |
Required. Key identifying the site config entry | - |
-loglevel <level> |
Logging level (trace , debug , info , warn , error , fatal ) |
info |
-resume |
Attempt to resume using the existing state database | false |
-write-visited-log |
Output a list of visited URLs after the crawl | false |
-pprof <addr> |
Enable pprof endpoint | localhost:6060 |
Basic Crawl:
./crawler -site tensorflow_docs -loglevel info
Resume a Large Crawl:
./crawler -site pytorch_docs -resume -loglevel info
High Performance Crawl with Profiling:
./crawler -site small_docs -loglevel warn -pprof localhost:6060
Debug Mode for Troubleshooting:
./crawler -site test_site -loglevel debug
Crawled content is saved under the output_base_dir
defined in the config, organized by domain and preserving the site structure:
<output_base_dir>/
βββ <sanitized_allowed_domain>/ # e.g., docs.example.com
βββ images/ # Only present if skip_images: false
β βββ image1.png
β βββ image2.jpg
βββ index.md # Markdown for the root path
βββ <metadata_yaml_filename.yaml>
βββ <output_mapping_filename.tsv>
βββ topic_one/
β βββ index.md
β βββ subtopic_a.md
βββ topic_two.md
βββ ... (files/dirs mirroring site structure)
Each generated Markdown file contains:
- Original page title as level-1 heading
- Clean content converted from HTML to Markdown
- Relative links to other pages (when within the allowed domain)
- Local image references (if images are enabled)
- A footer with metadata including source URL and crawl timestamp
After a successful crawl for a specific site, the crawler automatically generates a text file named <sanitized_domain>_structure.txt
within the global output_base_dir
(alongside the site's content folder). This file contains a visual tree representation of the generated directory structure for the crawled site, which can be helpful for verification and analysis.
Example Location:
If output_base_dir
is ./crawled_docs
and you crawled docs.example.com
, the structure file will be:
./crawled_docs/docs.example.com_structure.txt
When enabled via configuration, the crawler generates a mapping file (typically a .tsv
or .txt
file) for each crawled site. This file logs each successfully processed page's final absolute URL and the corresponding local filesystem path where its content was saved.
Format:
Each line in the file typically follows a tab-separated format:
<FINAL_ABSOLUTE_URL><TAB><LOCAL_FILESYSTEM_PATH>
This feature is controlled by the enable_output_mapping
and output_mapping_filename
settings in config.yaml
.
In addition to (or instead of) the simple TSV mapping, the crawler can generate a comprehensive YAML file for each crawled site. This file (metadata.yaml
by default, configurable) contains overall crawl statistics and detailed metadata for every successfully processed page.
The filename can be configured globally and overridden per site using enable_metadata_yaml
and metadata_yaml_filename
in config.yaml
.
Contributions are welcome! Please feel free to open an issue to discuss bugs, suggest features, or propose changes.
Pull Request Process:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
Please ensure code adheres to Go best practices and includes appropriate documentation.
This project is licensed under the Apache-2.0 License.
- GoQuery for HTML parsing
- html-to-markdown for conversion
- BadgerDB for state persistence
- Logrus for structured logging
Made with β€οΈ for the LLM and Machine Learning community