Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 356 Bytes

File metadata and controls

19 lines (14 loc) · 356 Bytes

go-archive

Go package for interacting with archive.org

Usage

package main

import "github.com/tyzbit/go-archive"

func main() {
    requestUrls := []string{"https://example.com", "https://archive.org"}
    urls := archiveorg.GetLatestArchiveURLs(requestUrls, true)

    for url := range urls {
        fmt.Println("url: ", url)
    }
}