Letterboxd API for Rust CircleCI

Letterboxd API for access to data on the Letterboxd.com website in Rust.

Example

```rust let mut core = Core::new().unwrap(); let client = letterboxd::Client::new(&core.handle(), APIKEY, APISECRET);

let mut req = letterboxd::SearchRequest::new(String::from("Fight Club")); let do_search = client.search(&req, None /* no auth token needed */);

let do_print = |resp| { println!("{:?}", resp); Ok(()) };

core.run(dosearch.andthen(do_print)).unwrap(); ```

For more examples cf. tests/integration.rs.

Progress

License

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this document by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.