Netflix Movies And TV Shows
Movies and TV Shows listings on Netflix (March, 2023)
@kaggle.dgoenrique_netflix_movies_and_tv_shows
Movies and TV Shows listings on Netflix (March, 2023)
@kaggle.dgoenrique_netflix_movies_and_tv_shows
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.
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:
The credits.csv contains over 81k credits of actors and directors, with 5 columns containing:
CREATE TABLE credits (
"person_id" BIGINT,
"id" VARCHAR,
"name" VARCHAR,
"character" VARCHAR,
"role" VARCHAR
);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
);Anyone who has the link will be able to view this.