Categorygithub.com/aidenesco/netroutine
repositorypackage
0.0.0-20210814211830-80171513de35
Repository: https://github.com/aidenesco/netroutine.git
Documentation: pkg.go.dev

# README

netroutine GoDoc Go Report Card

This package facilitates the creation and execution of network request routines. This is useful for automating web scraping jobs.

Installation

go get -u github.com/aidenesco/netroutine

Usage

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
  }