Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.24 KB

README.md

File metadata and controls

47 lines (34 loc) · 1.24 KB

colly-neo4j-storage

GitHub Action - Test Go Package GitHub tag (latest by date) Go Report Card

A Neo4j storage back end for the Colly web crawling/scraping framework https://go-colly.org

Example Usage:

package main

import (
	"fmt"

	"github.com/gocolly/colly"
	"github.com/konsalex/colly-neo4j-storage/colly"
)

func main() {

	c := colly.NewCollector()

	storage := &neo4j.Storage{
        URI:      "bolt://localhost:7687",
        Username: "neo4j",
        Password: "password",
        Database: "colly" , // Override default database "neo4j" (optional)
	}

	if err := c.SetStorage(storage); err != nil {
		panic(err)
	}

	// Find and visit all links
	c.OnHTML("a[href]", func(e *colly.HTMLElement) {
		e.Request.Visit(e.Attr("href"))
	})

	c.OnRequest(func(r *colly.Request) {
		fmt.Println("Visiting", r.URL)
	})

	c.Visit("http://go-colly.org/")
}