1 unstable release

Uses old Rust 2015

0.1.0 May 9, 2016

#534 in #documentation

MIT license

15KB
411 lines

jamendo-rs

A Jamendo API client for Rust.

Travis

Documentation


lib.rs:

jamendo-rs is a client for v3 of the Jamendo API. It exposes a client, whose methods return an action that can be used to specify query parameters.

let client = jamendo::Client::new(jamendo::TEST_ID);
let albums = client.get_albums().limit(15).featured(true).unwrap();

for album in albums {
println!("{}", album.name);
}

To create a new client, you need a client ID. The test ID changes regularly, for productive usage you should get your own at https://developer.jamendo.com/v3.0/authentication.

Dependencies

~7MB
~165K SLoC