Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

movies-dataset

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

movies-dataset

Movies, directors, actresses and actors dataset!

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

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

Keywords

dataset

FAQs

Package last updated on 05 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts