This is a wrapper around the TMDb API.
You can search and fetch Movies from The Movie Databse.
```rust let tmdb: TMDb = TMDb { api_key: "123456789" };
let movie = tmdb.fetch_movie(157336).unwrap(); println!("{:?}", movie);
let searchmovies = tmdb.searchmovie("Interstellar").unwrap(); println!("{:?}", search_movies); ```
https://www.themoviedb.org/