trakt 0.0.2

An api wrapper in Rust for trakt.tv
Documentation

trakt-rust

discord_badge docs_badge cratesio_badge

A api wrapper in Rust for trakt.tv

Installation

Add

trakt = "0.0.2"

to your dependencies

Example

use trakt::TraktApi;

fn main() {
    let api = TraktApi::new(
        "YOUR APP ID".to_owned(),
        None,
    );

    dbg!(api.show("fairy-tail").unwrap());
}

License

MIT