OMDb library for Rust
This is a library of tools for searching/interacting with the Online Movie Database. This is achieved through the use of a Film
object that can hold certain common features of a film. For example...
```rust use omdbrs::Film;
let NAME = String::from("Shrek"); let APIKEY = String::from("[YOURAPI_KEY]");
let film: Film = Film::fromtitle(NAME, APIKEY);
asserteq!(film.getyear(), "2001"); ```
Note: This library uses an outdated version of Reqwest.