1个不稳定版本

使用旧的Rust 2015

0.1.0 2016年12月25日

9 in #artist

MIT 许可证

45KB
1K SLoC

SongKick Rust

SongKick API库是用Rust编写的

Build Status Coverage

##使用

在您的Cargo.toml中添加以下内容

[dependencies]
songkick = "0.1.0"

...然后在您的crate中添加以下内容

extern crate songkick;

##示例

使用SongKick ID获取艺术家信息

use songkick::{SongKick};
use songkick::resources::Artist;
use songkick::endpoints::{SkEndpoint};
let sk = SongKick::new("API_KEY");
//RadioHead ID
let artists : Vec<Artist> = sk.artist.get(253846)
.and_then(|res| Ok(res.collect()))
.expect("Failed to fetch artist with id");
assert_eq!(1,artists.len());

查看更多示例这里

依赖项

~6MB
~142K SLoC