• Stars
    star
    196
  • Rank 197,767 (Top 4 %)
  • Language
    Go
  • Created about 11 years ago
  • Updated about 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Web template crawler written by golang. golang开发的网站模板爬虫.

leacrawler

Use leacrawler you can download web template(include html, css, js, image) as you want. (such as the http://themeforest.net/ web template)

Leacrawler is written by golang. Just for fun and hope you like it.

usage:

  1. go get github.com/lealife/leacrawler
  2. create a new file and put the code as follows:
package main

import (
	"github.com/lealife/leacrawler"
)

func main() {
	// url and the target path
	leacrawler.Fetch("http://lealife.com", "/Users/life/Desktop/lealife")
}