lyrics_ovh

Crates.iolyrics_ovh
lib.rslyrics_ovh
version0.1.1
sourcesrc
created_at2021-02-27 23:58:37.080793
updated_at2021-02-28 00:13:37.258626
descriptionA crate that allows you to fetch lyrics from a webservice lyrics.ovh.
homepage
repositoryhttps://github.com/MGlolenstine/lyrics_ovh
max_upload_size
id361622
size3,362
(MGlolenstine)

documentation

README

Lyrics_ovh

This is a library that allows you to fetch lyrics to a song of your choosing.

This crate uses a lyrics.ovh API to fetch lyrics.

The library only contains one async method.

Example

use lyrics_ovh::get_lyrics;

#[tokio::main]
pub async fn main(){
    let lyrics = get_lyrics("Popular Monster", "Falling in reverse").await;
    println!("Lyrics to the song Popular monster by Falling in reverse: \n {}", lyrics);
}
Commit count: 5

cargo fmt