ytmdl 0.3.4

Downloads albums from YouTube and automatically fills them with metadata from Discogs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]

pub mod gui;
pub mod parsing;
pub mod playlist;
pub mod scraping;
pub mod utils;

mod download;
pub use download::*;

mod threading;
use threading::POOL;