Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 649 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 649 Bytes

gluaspider

GoDoc GitHub release

simple spider module for gopher-lua

Docs

See godoc

Installation

go get github.com/kfrico/gluaspider

Usage

import (
    "github.com/kfrico/gluaspider"
)

L := lua.NewState()
defer L.Close()

L.PreloadModule("spider", gluaspider.NewSpider().Loader)

Tests