Skip to content
This repository has been archived by the owner on Jun 10, 2021. It is now read-only.

Latest commit

 

History

History
13 lines (10 loc) · 511 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 511 Bytes

Example of usage:

    FlexibleOneShotCrawler crawler = new FlexibleOneShotCrawler();
    SentencesCollector c = new SentencesCollector();
    c.setTarget("Learn"); // tells crawler which words he should looking for.
    ImagesCollector i = new ImagesCollector();

    crawler.configure()
            .initUrl("https://www.w3schools.com/") // tells crawler where he should start his work.
            .addCollector(c) 
            .addCollector(i);
			
    crawler.start();