sunny 0.3.0

Tool to download free music from Bandcamp. Automatically organize files to folder, ID3 tags (including album art).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Sunny is a library for scraping bandcamp.com

/// Errors produced by sunny
pub mod error;

/// Track & Album represented as structs
pub mod models;

/// Spider crawls the web, I crawl bandcamp.com
pub mod spider;

/// Miscellaneous small utilities for mostly internal usage
pub mod utils;