This is a command line tool that uses a config file to download images from a list of subreddits.
The idea for this project is from a friend, icmpzero and was used to help us better understand writing in Go.
To build, run
$ go build
Usage of ./reddit_image_downloader:
-c string
Location of configuration file to use (default "config.toml")
- subreddits: List of Subreddits to look for images in
- fileExt: What file type to download
- downloadPath: Path to download files into
# Reddit Image Downloader configuration
# List of subreddits to download images from
subreddits = [
"Wallpapers",
"battlestations",
"Aww",
"Beerwithaview",
"OldSchoolCool",
"TheWayWeWere",
"itookapicture"
]
# Path where images will be downloaded
downloadPath = "download"
# File extensions to download (true = download, false = ignore)
[fileExt]
".jpg" = true
".png" = true
".gif" = true