{"id":37112592,"url":"https://github.com/aimuz/colly","last_synced_at":"2026-01-14T13:18:49.405Z","repository":{"id":57578174,"uuid":"133350429","full_name":"aimuz/colly","owner":"aimuz","description":"Elegant Scraper and Crawler Framework for Golang","archived":false,"fork":true,"pushed_at":"2018-05-14T10:15:37.000Z","size":4229,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-24T17:56:16.588Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://go-colly.org/","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"gocolly/colly","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aimuz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-14T11:27:19.000Z","updated_at":"2018-05-14T11:27:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/aimuz/colly","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/aimuz/colly","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aimuz%2Fcolly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aimuz%2Fcolly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aimuz%2Fcolly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aimuz%2Fcolly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aimuz","download_url":"https://codeload.github.com/aimuz/colly/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aimuz%2Fcolly/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28421002,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2026-01-14T13:18:48.706Z","updated_at":"2026-01-14T13:18:49.390Z","avatar_url":"https://github.com/aimuz.png","language":"Go","funding_links":["https://opencollective.com/colly"],"categories":[],"sub_categories":[],"readme":"# Colly\n\nLightning Fast and Elegant Scraping Framework for Gophers\n\nColly provides a clean interface to write any kind of crawler/scraper/spider.\n\nWith Colly you can easily extract structured data from websites, which can be used for a wide range of applications, like data mining, data processing or archiving.\n\n[![GoDoc](https://godoc.org/github.com/gocolly/colly?status.svg)](https://godoc.org/github.com/gocolly/colly)\n[![Backers on Open Collective](https://opencollective.com/colly/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/colly/sponsors/badge.svg)](#sponsors) [![build status](https://img.shields.io/travis/gocolly/colly/master.svg?style=flat-square)](https://travis-ci.org/gocolly/colly)\n[![report card](https://img.shields.io/badge/report%20card-a%2B-ff3333.svg?style=flat-square)](http://goreportcard.com/report/gocolly/colly)\n[![view examples](https://img.shields.io/badge/learn%20by-examples-0077b3.svg?style=flat-square)](https://github.com/gocolly/colly/tree/master/_examples)\n[![Code Coverage](https://img.shields.io/codecov/c/github/gocolly/colly/master.svg)](https://codecov.io/github/gocolly/colly?branch=master)\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fgocolly%2Fcolly.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fgocolly%2Fcolly?ref=badge_shield)\n[![Twitter URL](https://img.shields.io/badge/twitter-follow-green.svg)](https://twitter.com/gocolly)\n\n\n## Features\n\n * Clean API\n * Fast (\u003e1k request/sec on a single core)\n * Manages request delays and maximum concurrency per domain\n * Automatic cookie and session handling\n * Sync/async/parallel scraping\n * Caching\n * Automatic encoding of non-unicode responses\n * Robots.txt support\n * Distributed scraping\n * Configuration via environment variables\n * Extensions\n\n\n## Example\n\n```go\nfunc main() {\n\tc := colly.NewCollector()\n\n\t// Find and visit all links\n\tc.OnHTML(\"a[href]\", func(e *colly.HTMLElement) {\n\t\te.Request.Visit(e.Attr(\"href\"))\n\t})\n\n\tc.OnRequest(func(r *colly.Request) {\n\t\tfmt.Println(\"Visiting\", r.URL)\n\t})\n\n\tc.Visit(\"http://go-colly.org/\")\n}\n```\n\nSee [examples folder](https://github.com/gocolly/colly/tree/master/_examples) for more detailed examples.\n\n\n## Installation\n\n```\ngo get -u github.com/gocolly/colly/...\n```\n\n\n## Bugs\n\nBugs or suggestions? Visit the [issue tracker](https://github.com/gocolly/colly/issues) or join `#colly` on freenode\n\n\n## Other Projects Using Colly\n\nBelow is a list of public, open source projects that use Colly:\n\n * [greenpeace/check-my-pages](https://github.com/greenpeace/check-my-pages) Scraping script to test the Spanish Greenpeace web archive\n * [altsab/gowap](https://github.com/altsab/gowap) Wappalyzer implementation in Go\n\n\nIf you are using Colly in a project please send a pull request to add it to the list.\n\n## Contributors\n\nThis project exists thanks to all the people who contribute. [[Contribute]](CONTRIBUTING.md).\n\u003ca href=\"https://github.com/gocolly/colly/graphs/contributors\"\u003e\u003cimg src=\"https://opencollective.com/colly/contributors.svg?width=890\" /\u003e\u003c/a\u003e\n\n\n## Backers\n\nThank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/colly#backer)]\n\n\u003ca href=\"https://opencollective.com/colly#backers\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/backers.svg?width=890\"\u003e\u003c/a\u003e\n\n\n## Sponsors\n\nSupport this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/colly#sponsor)]\n\n\u003ca href=\"https://opencollective.com/colly/sponsor/0/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/0/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/1/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/1/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/2/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/2/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/3/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/3/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/4/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/4/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/5/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/5/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/6/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/6/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/7/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/7/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/8/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/8/avatar.svg\"\u003e\u003c/a\u003e\n\u003ca href=\"https://opencollective.com/colly/sponsor/9/website\" target=\"_blank\"\u003e\u003cimg src=\"https://opencollective.com/colly/sponsor/9/avatar.svg\"\u003e\u003c/a\u003e\n\n\n\n\n## License\n[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fgocolly%2Fcolly.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fgocolly%2Fcolly?ref=badge_large)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faimuz%2Fcolly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faimuz%2Fcolly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faimuz%2Fcolly/lists"}