IMDB India
CSV file of 67750 Movies,short-films, series which are somehow related to India
@kaggle.sanjabon_imdb_india
CSV file of 67750 Movies,short-films, series which are somehow related to India
@kaggle.sanjabon_imdb_india
Hello Kagglers, my friend recently introduced me to web-scraping. So I read some articles and scrape this Dataset. Kindly suggest some more attributes to add. Give a thumbs up if you like my effort.
What's inside is more than just rows and columns. Make it easy for others to get started by describing how you acquired the data and what time period it represents, too.
Data is scraped today using advance search option of IMDB where I check "India" in-country section.
Data is scraped using BeautifulSoup
I would like to thank IMDB for their Awesome site.
Name: Name of the movie,short-film, series,etc
Rating(imdb): IMDB rating .
MetaScore: MetaScore
Vote_Count: Total Votes
Genre: Set of Genre of that movie.
Gross: Gross income of that movie in $
Year: Year of release.
CREATE TABLE imdb_india (
"unnamed_0" BIGINT -- Unnamed: 0,
"name" VARCHAR,
"rating" DOUBLE,
"metascore" DOUBLE,
"vote_count" DOUBLE,
"genre" VARCHAR,
"gross" DOUBLE,
"year" DOUBLE
);Anyone who has the link will be able to view this.