Letterboxd API for access to data on the Letterboxd.com website in Rust.
```rust let client = letterboxd::Client::new(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(()) };
let mut core = tokio::Core::new().unwrap(); core.run(dosearch.andthen(do_print)).unwrap(); ```
For more examples cf. tests/integration.rs
.
film/report
)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.