# Mdown
**Repository Path**: bryant_1988/Mdown
## Basic Information
- **Project Name**: Mdown
- **Description**: A simple multi-routine downloader use golang
- **Primary Language**: Go
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2019-08-13
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
## Introduce
Golang multi routine downloader
1、Support multi-goroutine download
2、Break point and continuous download
3、Download error retry(unexpected EOF,etc)
## Install
```
go get -u https://github.com/bryant24/Mdown
```
## How to use
```
package main
import (
"strings"
"github.com/bryant24/Mdown"
)
func main() {
origin := "https://abc.com/abc.zip"
target := "a.zip"
timeout:= 30
downloader := NewMDownloader(origin, target, timeout)
downloader.Start()
}
```