Baselight

Netflix Movies And TV Shows

Movies and TV Shows listings on Netflix (March, 2023)

@kaggle.dgoenrique_netflix_movies_and_tv_shows

Loading...
Loading...

About this Dataset

Netflix Movies And TV Shows

Netflix - TV Shows and Movies

This dataset was created to list all shows and movies available on Netflix. It was collected from JustWatch in March 2023, containing data available in the United States.

Content

This dataset contains two files, one for the titles (titles.csv) and the other for the cast (credits.csv) of each movie and show on the platform.

The titles.csv contains more than 6k titles, witch 15 columns containing:

  • id: The title ID on JustWatch.
  • title: The name of the title.
  • show_type: TV show or movie.
  • description: A brief description.
  • release_year: The release year.
  • age_certification: The age certification.
  • runtime: The length of the episode (SHOW) or movie.
  • genres: A list of genres.
  • production_countries: A list of countries that - produced the title.
  • seasons: Number of seasons if it's a SHOW.
  • imdb_id: The title ID on IMDB.
  • imdb_score: Score on IMDB.
  • imdb_votes: Votes on IMDB.
  • tmdb_popularity: Popularity on TMDB.
  • tmdb_score: Score on TMDB.

The credits.csv contains over 81k credits of actors and directors, with 5 columns containing:

  • person_ID: The person ID on JustWatch.
  • id: The title ID on JustWatch.
  • name: The actor or director's name.
  • character_name: The character name.
  • role: ACTOR or DIRECTOR.

Other streaming platforms datasets::

Tables

Credits

@kaggle.dgoenrique_netflix_movies_and_tv_shows.credits
  • 2.08 MB
  • 81355 rows
  • 5 columns
Loading...

CREATE TABLE credits (
  "person_id" BIGINT,
  "id" VARCHAR,
  "name" VARCHAR,
  "character" VARCHAR,
  "role" VARCHAR
);

Titles

@kaggle.dgoenrique_netflix_movies_and_tv_shows.titles
  • 1.24 MB
  • 6137 rows
  • 15 columns
Loading...

CREATE TABLE titles (
  "id" VARCHAR,
  "title" VARCHAR,
  "type" VARCHAR,
  "description" VARCHAR,
  "release_year" BIGINT,
  "age_certification" VARCHAR,
  "runtime" BIGINT,
  "genres" VARCHAR,
  "production_countries" VARCHAR,
  "seasons" DOUBLE,
  "imdb_id" VARCHAR,
  "imdb_score" DOUBLE,
  "imdb_votes" DOUBLE,
  "tmdb_popularity" DOUBLE,
  "tmdb_score" DOUBLE
);

Share link

Anyone who has the link will be able to view this.