{"id":26847598,"url":"https://github.com/arshamroshannejad/scrapify","last_synced_at":"2026-04-18T10:37:13.744Z","repository":{"id":255382805,"uuid":"849330631","full_name":"arshamroshannejad/scrapify","owner":"arshamroshannejad","description":"Scrapify is a golang library that automates the process of bypassing CAPTCHAs, enabling efficient web scraping and data acquisition.","archived":false,"fork":false,"pushed_at":"2024-09-02T19:05:00.000Z","size":25,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-14T20:36:13.864Z","etag":null,"topics":["403-bypass","arkose","cloudflare","crawler","golang","http-client","scraper"],"latest_commit_sha":null,"homepage":"","language":"Go","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/arshamroshannejad.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}},"created_at":"2024-08-29T12:07:38.000Z","updated_at":"2026-01-09T14:26:02.000Z","dependencies_parsed_at":"2024-10-24T12:57:48.739Z","dependency_job_id":"f037de67-9d23-455c-9665-4a299d694b0b","html_url":"https://github.com/arshamroshannejad/scrapify","commit_stats":null,"previous_names":["iarsham/scrapify","arshamroshannejad/scrapify"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/arshamroshannejad/scrapify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshamroshannejad%2Fscrapify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshamroshannejad%2Fscrapify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshamroshannejad%2Fscrapify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshamroshannejad%2Fscrapify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arshamroshannejad","download_url":"https://codeload.github.com/arshamroshannejad/scrapify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arshamroshannejad%2Fscrapify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31966206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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":["403-bypass","arkose","cloudflare","crawler","golang","http-client","scraper"],"created_at":"2025-03-30T20:18:08.380Z","updated_at":"2026-04-18T10:37:13.703Z","avatar_url":"https://github.com/arshamroshannejad.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Scrapify🚀: A Go Library for Web Scraping\n\nThis library provides tools for building web scrapers in Go. It allows you to create custom HTTP requests with advanced features for bypassing basic anti-scraping measures.\n\n## Features\n\n- **Customizable Headers**: Set various headers like User-Agent and sec-ch-ua to mimic a real browser.\n- **TLS Configuration**: Customize the Transport Layer Security (TLS) configuration for secure connections.\n- **Browser Emulation**: Specify different browsers (Chrome, Firefox, Edge) to influence the cipher suites offered.\n- **Default Headers**: Includes a set of common headers to improve compatibility.\n\n## Installation\n```bash\n  go get -u github.com/iarsham/scrapify@latest\n```\n\n## Usage\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/iarsham/scrapify\"\n\t\"net/http\"\n)\n\nfunc main() {\n\tclient := \u0026http.Client{\n\t\tTransport: scrapify.NewTransport(scrapify.Chrome),\n\t}\n\treq, err := http.NewRequest(http.MethodGet, \"https://cloudflare.com\", nil)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tscrapify.SetHeaders(req, nil)\n\tresp, err := client.Do(req)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer resp.Body.Close()\n\tfmt.Println(resp.StatusCode)\n}\n```\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/iarsham/scrapify\"\n)\n\nfunc main() {\n\tc := colly.NewCollector()\n\tc.WithTransport(scrapify.NewTransport(scrapify.Chrome))\n\n\tc.OnRequest(func(r *colly.Request) {\n\t\tscrapify.SetCollyHeaders(r, nil)\n\t})\n\n\tc.OnHTML(\"body\", func(e *colly.HTMLElement) {\n\t\tfmt.Println(e.Text)\n\t})\n\n\tc.OnResponse(func(r *colly.Response) {\n\t\tfmt.Println(r.StatusCode)\n\t})\n\n\tif err := c.Visit(\"https://chatgpt.com\"); err != nil {\n\t\tpanic(err)\n\t}\n}\n\n```\n## Contributing\n\nWe welcome contributions to this library. Please feel free to submit pull requests with improvements and bug fixes.\n\n## License\n\nThis library is licensed under the MIT License. See the LICENSE file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farshamroshannejad%2Fscrapify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farshamroshannejad%2Fscrapify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farshamroshannejad%2Fscrapify/lists"}