TMDb Top 10,000 Popular Movies Dataset
TMDb(The Movies Database) Top 10,000 most Popular Movies dataset.
@kaggle.balaka18_tmdb_top_10000_popular_movies_dataset
TMDb(The Movies Database) Top 10,000 most Popular Movies dataset.
@kaggle.balaka18_tmdb_top_10000_popular_movies_dataset
This is dataset of the 10,000 most popular movies across the world, irrespective of language and recency. These have been extracted using TMDb API.
What is TMDB's API?
The closed-source API service is for those people interested in using their movies, TV shows or actor images and/or data in their application. TMDb's API is a system that they provide for developers and their team to programmatically fetch and use TMDb's data and/or images.
Their API is free to use as long as you attribute TMDb as the source of the data and/or images. Also, they update their API from time to time.
This dataset lists 10,000 most popular movies across the globe.
Information held inside the dataset -
A. Dataset 1 : Movies dataset -
B. Dataset 2 : Genres dataset
CREATE TABLE genres_1 (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" BIGINT,
"genre" VARCHAR
);
CREATE TABLE movies_tmdb_popular (
"title" VARCHAR,
"overview" VARCHAR,
"original_lang" VARCHAR,
"rel_date" TIMESTAMP,
"popularity" DOUBLE,
"vote_count" BIGINT,
"vote_average" DOUBLE
);
Anyone who has the link will be able to view this.