Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 518 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 518 Bytes

Deezer Loader

provides basic functionality needed to download a song from deezer

use deezer_downloader::Downloader;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let downloader = Downloader::new().await?;
    let song = downloader.download_song(92719900).await?;
    song.write_to_file("song.mp3")?;

    Ok(())
}

License

Licensed under either of

at your option.