1
2
3
4
5
6
7
8
9
10
11
12
13
//! Sunny is a library for scraping bandcamp.com

/// 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;

/// Client to download single or multiple items
pub mod client;