lyrics_ovh 0.1.1

A crate that allows you to fetch lyrics from a webservice lyrics.ovh.
Documentation

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);
}