Skip to content

a cargo crate for downloading and decrypting music from deezer.com

License

Notifications You must be signed in to change notification settings

Stockpesce/deezer_downloader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

a cargo crate for downloading and decrypting music from deezer.com

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%