Gecco is a lightweight web crawler framework written in Java that simplifies the process of building web scraping applications. It is designed to make crawler development straightforward by allowing developers to extract page elements using jQuery-style selectors rather than complex parsing logic. It integrates several well-known Java libraries and frameworks, including tools for HTTP requests, HTML parsing, JSON processing, and application development. Through its annotation-based design, developers can define crawling rules and data extraction logic directly within Java classes, reducing boilerplate code and improving readability. Gecco also provides mechanisms for handling dynamic web content, including support for asynchronous requests and extraction of JavaScript variables from pages. Gecco emphasizes extensibility and follows an open design that allows additional components and integrations to be added without modifying the core codebase.
Features
- Uses jQuery-style CSS selectors to extract elements from web pages
- Annotation-based configuration for defining crawlers and pipelines
- Supports asynchronous Ajax requests during crawling
- Allows extraction of JavaScript variables from web pages
- Extension system for integrating additional modules and tools
- Optional distributed crawling support using Redis