This package facilitates the creation and execution of network request routines. This is useful for automating web scraping jobs.
go get -u github.com/aidenesco/netroutine
import "github.com/aidenesco/netroutine"
func main() {
routine := netroutine.NewRoutine()
env, _ := netroutine.NewEnvironment(make(map[string]interface{}))
env.Run(routine)
fmt.Println(env.Status) // Success
}