forvo-cli 0.1.2

Play Forvo pronunciations directly from the terminal
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() -> Result<(), std::io::Error> {
    
    let word = "rijksmuseum";
    
    for i in forvolib::retrieve_audios(&word.to_string())? {
        println!("https://forvo.com/player-mp3Handler.php?path={}", i);
    }

    Ok(())
}