GithubHelp home page GithubHelp logo

akku123california / site-crawler Goto Github PK

View Code? Open in Web Editor NEW

This project forked from vishal-34535/site-crawler

0.0 0.0 0.0 19 KB

A simple Java library for crawling websites

License: MIT License

Java 100.00%

site-crawler's Introduction

Build Status

About

A simple crawler library for scraping the contents of websites. Written in Java using JDK 1.8. Not intended for any serious production use.

Usage

First the project has to be built locally with Maven. At the project root, use mvn clean install. Then add the following to your pom.xml

<dependency>
      <groupId>me.adeshina</groupId>
      <artifactId>site-crawler</artifactId>
      <version>1.0.0-SNAPSHOT</version>
</dependency>

To crawl a website, you'll need to first configure the crawling process, obtain a crawler for the site and start it. E.g

public class CrawlMySite {
    
    public void useCrawler() {
        
        CrawlConfig config = new CrawlConfig();
        config.maxPages(2);
        config.respectRobotsFile(false);
        config.crawlDelaySeconds(1);
                        
        // Only URLs in this domain will be visited
        String site = "https://twitter.com";
                
        SiteCrawler twitterCrawler = SiteCrawler.get(site, config);
                        
        // Blocking call
        Set<WebPage> pages = twitterCrawler.start();
    }
            
}

Dependecies

  • Jsoup
  • JUnit 5
  • Mockito

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.