Baselight

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

Loading...
Loading...

About this Dataset

TMDb Top 10,000 Popular Movies Dataset

Introduction

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.

About the Dataset

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 -

  1. title - Title of the Movie in English.
  2. overview - A small summary of the plot.
  3. original_lang - Original language it was shot in.
  4. rel_date - Date of release.
  5. popularity - Popularity.
  6. vote_count - Votes received.
  7. vote_average - Average of all votes received.

B. Dataset 2 : Genres dataset

  1. id
  2. Movie ID
  3. Genre

Tables

Genres 1

@kaggle.balaka18_tmdb_top_10000_popular_movies_dataset.genres_1
  • 3.05 KB
  • 19 rows
  • 3 columns
Loading...

CREATE TABLE genres_1 (
  "unnamed_0" BIGINT,
  "id" BIGINT,
  "genre" VARCHAR
);
@kaggle.balaka18_tmdb_top_10000_popular_movies_dataset.movies_tmdb_popular
  • 2.18 MB
  • 10000 rows
  • 7 columns
Loading...

CREATE TABLE movies_tmdb_popular (
  "title" VARCHAR,
  "overview" VARCHAR,
  "original_lang" VARCHAR,
  "rel_date" TIMESTAMP,
  "popularity" DOUBLE,
  "vote_count" BIGINT,
  "vote_average" DOUBLE
);

Share link

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