Crates.io | imdb |
lib.rs | imdb |
version | 0.0.1 |
source | src |
created_at | 2017-11-06 17:37:39.807599 |
updated_at | 2017-11-06 17:37:39.807599 |
description | imdb is a library to retrieve information from IMDb |
homepage | https://github.com/yoursvivek/imdb |
repository | https://github.com/yoursvivek/imdb |
max_upload_size | |
id | 38371 |
size | 19,948 |
imdb is a Rust library to retrieve information from IMDb.
This is a work in progress and far from complete. For the time being you can check out the excellent python implementation IMDbPY, which is complete and very well maintained.
Add following lines to your Cargo.toml
:
[dependencies]
imdb = "0.0.1"
extern crate imdb;
use imdb::IMDb;
imdb = IMDb::new();
top250movies = imdb.top250_movies().unwrap()
This library is released under MIT License.