Categorygithub.com/go-zoox/download
repositorypackage
1.0.5
Repository: https://github.com/go-zoox/download.git
Documentation: pkg.go.dev

# README

Download - File Download, support parallel

PkgGoDev Build Status Go Report Card Coverage Status GitHub issues Release

Installation

To install the package, run:

go get github.com/go-zoox/download

Getting Started

func TestDownload(t *testing.T) {
	url := "YOUR_FILE_URL"
	fileName := "test.mp4"
	err := Download(url, &Config{
		FilePath: fileName,
	})
	if err != nil {
		t.Error(err)
	}
}

Functions

  • Parallel
  • Progress

License

GoZoox is released under the MIT License.