Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bcdl
config.yaml
config.json
19 changes: 4 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,16 @@ I was tired of scripts claiming to download "FLACs" from Bandcamp while in reali

This also works with previously purchased releases by filling out the `config.yaml`.

You can use the flag `-b` to batch download from `download_links.txt`
You can use the flag `-b <FILE>` to batch download from a file with links

**Syntax:** `bcdl.exe [<flags>] [<url>]`
**Syntax:** `bcdl.exe [<flags>] [<url>...]`

**Quick Setup:**

1. Download `bcdl.exe` from [the releases tab](https://github.com/daot/bcdl/releases/latest)
2. Put the executable in the folder of your choice. The default download directory is a subfolder named `downloads`
3. _OPTIONAL:_ Fill out `config.yaml` with the information needed (instructions are provided in the file). This allows bcdl to download albums in your library.
3. _OPTIONAL:_ Fill out `config.json` with the information needed (instructions are provided in the file). This allows bcdl to download albums in your library.

**Compiling Yourself:**

1. Install go dependencies

```
"github.com/alecthomas/kingpin/v2"
"github.com/anaskhan96/soup"
"github.com/cheggaaa/pb"
"github.com/fatih/color"
"github.com/jinzhu/configor"
"github.com/tidwall/gjson"
```

2. `go build bcdl.go`
1. `go build bcdl.go`. Go will download dependencies automatically
Loading
Loading