Popular 10,000 Movies Listed On TMDb (latest)
Popular 10000 English movies (latest)
@kaggle.manashjyotiborah_top_10000_movies_hosted_on_tmdb
Popular 10000 English movies (latest)
@kaggle.manashjyotiborah_top_10000_movies_hosted_on_tmdb
Context:
These files contain TMDb datasets of popular 10000 English movies. Key data points of the datasets are: cast, crew, keywords, genre, overview, popularity, vote_average, vote_count, title etc.
Acknowledegements:
The cast, crew, keywords, and movie informations have been collected from the TMDb using the public API through web-scraping. Additional information regarding movies can be accessed through the public API on the TMDb website. However, these datasets contain only the relevant columns that are required for building recommendation systems.
If you need an extra feature/column, feel free to post it on the discussion tab.
Useful for:
Please consider an UPVOTE if you found it useful.
CREATE TABLE cast_dataset (
"id" BIGINT,
"cast" VARCHAR
);CREATE TABLE crew_dataset (
"id" BIGINT,
"crew" VARCHAR
);CREATE TABLE keywords_dataframe (
"unnamed_0" BIGINT -- Unnamed: 0,
"id" BIGINT,
"keywords" VARCHAR
);CREATE TABLE movies_dataset (
"genre_ids" VARCHAR,
"id" BIGINT,
"original_language" VARCHAR,
"overview" VARCHAR,
"popularity" DOUBLE,
"release_date" TIMESTAMP,
"title" VARCHAR,
"vote_average" DOUBLE,
"vote_count" BIGINT,
"genres" VARCHAR
);Anyone who has the link will be able to view this.