1.0.0 • Published 7 years ago

movies-dataset v1.0.0

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
7 years ago

Build Status

Movies Dataset

This dataset includes a set of movies, directors, actresses and actors. The information has been extracted from the following IMDB lists:

Installation

This project is distributed through NPM. You can install it running the next command:

npm install --save movies-dataset

This project exports an object with three datasets:

const dataset = require('movies-dataset');
/*
 * {
 *   movies: [...],
 *   directors: [...],
 *   actressesAndActors: [...],
 * }
 */

dataset.movies
/*
 * [
 *   {
 *     title: "(500) Days of Summer",
 *     directors: ["Marc Webb"],
 *     runtime: "95",
 *     year: "2009",
 *     genres: ["comedy"," drama"," romance"],
 *   },
 *   ...
 * ]
 */

dataset.directors
/*
 * [
 *   "Aamir Khan",
 *   "Abdellatif Kechiche",
 *   "Abel Gance",
 *   ...
 * ]
 */

dataset.actressesAndActors
/*
 * [
 *   "Aaron Eckhart",
 *   "Aaron Taylor-Johnson",
 *   "Abbie Cornish",
 *   ...
 * ]
 */

License

This project is released under the Apache-2.0 license. By Angel