{"id":31760422,"url":"https://github.com/managedkaos/site-crawler","last_synced_at":"2025-10-09T21:29:23.193Z","repository":{"id":311637917,"uuid":"1044373436","full_name":"managedkaos/site-crawler","owner":"managedkaos","description":"A tool for crawling websites.","archived":false,"fork":false,"pushed_at":"2025-08-25T17:01:57.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-11T08:45:54.930Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/managedkaos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-25T15:29:13.000Z","updated_at":"2025-08-25T17:02:01.000Z","dependencies_parsed_at":"2025-08-25T18:23:19.309Z","dependency_job_id":"0407a753-43c4-4614-91c0-dcfcef23e762","html_url":"https://github.com/managedkaos/site-crawler","commit_stats":null,"previous_names":["managedkaos/site-crawler"],"tags_count":0,"template":false,"template_full_name":"managedkaos/python-container-template","purl":"pkg:github/managedkaos/site-crawler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/managedkaos%2Fsite-crawler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/managedkaos%2Fsite-crawler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/managedkaos%2Fsite-crawler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/managedkaos%2Fsite-crawler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/managedkaos","download_url":"https://codeload.github.com/managedkaos/site-crawler/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/managedkaos%2Fsite-crawler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002047,"owners_count":26083285,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-09T21:29:21.633Z","updated_at":"2025-10-09T21:29:23.186Z","avatar_url":"https://github.com/managedkaos.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Site Crawler\n\nA Python-based web crawler that recursively visits pages on a website and generates comprehensive reports.\n\n## Features\n\n- Recursive crawling with configurable depth limits\n- HTTP status code tracking and error reporting\n- Domain-restricted crawling (stays within the same domain)\n- Configurable delays between requests\n- Comprehensive reporting with detailed statistics\n- Command-line interface with various options\n\n## Usage\n\n```bash\ndocker run ghcr.io/managedkaos/site-crawler:main example.com\n```\n\n## Command Line Options\n\n- `url`: The base URL to start crawling from (required)\n- `--max-depth`: Maximum depth to crawl (default: 3)\n- `--delay`: Delay between requests in seconds (default: 1.0)\n- `--output`: Output file for the report (default: print to console)\n\n```bash\n# Crawl with command line options\ndocker run ghcr.io/managedkaos/site-crawler:main example.com --max-depth 2 --delay 0.5\n```\n\n## Capturing Reports with Volume Mounts\n\nTo save reports to your local filesystem, use Docker volume mounts:\n\n```bash\n# Save report to file using volume mount\ndocker run -v $(pwd):/work ghcr.io/managedkaos/site-crawler:main example.com --output=report.md\n```\n\n```bash\n# Save report to specific directory\ndocker run -v /path/to/reports:/work ghcr.io/managedkaos/site-crawler:main example.com --output=site-report.md\n```\n\n```bash\n# Windows PowerShell\ndocker run -v ${PWD}:/work ghcr.io/managedkaos/site-crawler:main example.com --output=report.md\n```\n\n```bash\n# Windows Command Prompt\ndocker run -v %cd%:/work ghcr.io/managedkaos/site-crawler:main example.com --output=report.md\n```\n\n## Example Output\n\nThe crawler generates a markdown report including:\n\n- Crawl statistics (total pages, duration, etc.)\n- HTTP status code summary\n- Detailed error report\n- All visited pages organized by depth\n\n## Examples\n\nFor detailed explanations of the following examples and the commands used to generate them, see [EXAMPLES.md](examples/EXAMPLES.md).\n\n- **[Simple Site Report](examples/example_com-report.md)** - Basic crawling of a single-page site\n- **[Error Reporting Example](examples/google_com-report.md)** - Multi-depth crawling with error detection\n- **[Interrupted Crawl Example](examples/github_com-report.md)** - Large site handling with partial results\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanagedkaos%2Fsite-crawler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanagedkaos%2Fsite-crawler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanagedkaos%2Fsite-crawler/lists"}