All Projects → randfun → movies-dataset

randfun / movies-dataset

Licence: Apache-2.0 license
A dataset of films, directors, actresses and actors

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to movies-dataset

Mediaunlock test
流媒体解锁检测
Stars: ✭ 121 (+611.76%)
Mutual labels:  movies
Awesome Piracy
A curated list of awesome warez and piracy links
Stars: ✭ 13,911 (+81729.41%)
Mutual labels:  movies
Major Scrapy Spiders
Scrapy spiders of major websites. Google Play Store, Facebook, Instagram, Ebay, YTS Movies, Amazon
Stars: ✭ 223 (+1211.76%)
Mutual labels:  movies
Emojiscreen
EmojiScreen is a listing of movies, TV shows and musicals depicted through emojis.
Stars: ✭ 140 (+723.53%)
Mutual labels:  movies
Moviemon
🎥 Everything about your movies within the command line.
Stars: ✭ 166 (+876.47%)
Mutual labels:  movies
Mellow
Mellow can communicate with several APIs like Ombi, Sonarr, Radarr and Tautulli which are related to home streaming to use those services directly in your Discord client.
Stars: ✭ 193 (+1035.29%)
Mutual labels:  movies
Moviecontentfilter
Watch movies with the freedom (not) to filter
Stars: ✭ 126 (+641.18%)
Mutual labels:  movies
Ruby Scripts
A collection of ruby scripts for those who live in the command line
Stars: ✭ 234 (+1276.47%)
Mutual labels:  movies
Bandersnatch
💻 Interactive Black Mirror: Bandersnatch Paths Website 🎥
Stars: ✭ 169 (+894.12%)
Mutual labels:  movies
Movies2anki
Convert movies with subtitles to watch them with Anki. Inspired by subs2srs
Stars: ✭ 211 (+1141.18%)
Mutual labels:  movies
Streaming
r/freemediaheckyeah
Stars: ✭ 147 (+764.71%)
Mutual labels:  movies
Rapidbay
Self-hosted torrent video streaming service compatible with Chromecast and AppleTV deployable in the cloud
Stars: ✭ 163 (+858.82%)
Mutual labels:  movies
Storyboarder
✏️ Storyboarder makes it easy to visualize a story as fast you can draw stick figures.
Stars: ✭ 2,467 (+14411.76%)
Mutual labels:  movies
Watcher
Stars: ✭ 137 (+705.88%)
Mutual labels:  movies
Movie Swiper
React Native client for TMDb 🎬 https://www.themoviedb.org
Stars: ✭ 223 (+1211.76%)
Mutual labels:  movies
Scraper
A scraper that switches between normal mode and gentleman mode, built on Eletron, React
Stars: ✭ 127 (+647.06%)
Mutual labels:  movies
Gmdb
GMDB is the ultra-simple, cross-platform Movie Library with Features (Search, Take Note, Watch Later, Like, Import, Learn, Instantly Torrent Magnet Watch)
Stars: ✭ 189 (+1011.76%)
Mutual labels:  movies
rainbow-bash-prompt
Make your bash prompt dynamically and randomly rainbow
Stars: ✭ 49 (+188.24%)
Mutual labels:  random
Popular Movies
Tries to create a list of popular movies based on a series of heuristics
Stars: ✭ 223 (+1211.76%)
Mutual labels:  movies
Exiftool Vendored.js
Fast, cross-platform Node.js access to ExifTool
Stars: ✭ 200 (+1076.47%)
Mutual labels:  movies

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].