Chalchitra Talks Book Recommendations
Amazing Book recommendations by famous personalities on Chalchitra Talks.
@kaggle.mananjhaveri_chalchitra_talks_book_recommendations
Amazing Book recommendations by famous personalities on Chalchitra Talks.
@kaggle.mananjhaveri_chalchitra_talks_book_recommendations
Chalchitra Talks aims to be the one-stop destination for all our recommendations - movies, books, podcasts, TV shows, poetry, sports and so on!
They have a great collection of book recommendations from their guests which include comedians like Rohan Joshi and Ashish Shakya, actors like Gulshan Deviah, Ratna Pathak Shah, filmmakers like Peter Gould, Anand Gadhi, etc.
I have scraped these book recommendations along with info about the guests and info about the books from google books.
File Structure
guests.csv - contains info about the guests
books.csv - contains info about the books
recommendation.csv - maps guest_id with book_id to show which guest recommended which books
Thanks a lot to Chalchitra Talks for the fun and entertaining videos and making the recommendations available on the website. Shout-out to their youtube channel.
CREATE TABLE books (
"book_id" BIGINT,
"book_name" VARCHAR,
"book_description_from_chalchitra" VARCHAR,
"authors" VARCHAR,
"publisher" VARCHAR,
"publisheddate" VARCHAR,
"pagecount" DOUBLE,
"categories" VARCHAR,
"averagerating" DOUBLE,
"ratingscount" DOUBLE,
"language" VARCHAR,
"description" VARCHAR,
"synopsis" VARCHAR
);CREATE TABLE guests (
"guest_id" BIGINT,
"guest_name" VARCHAR,
"guest_profession_or_org" VARCHAR,
"guest_info" VARCHAR,
"guest_page_url" VARCHAR
);CREATE TABLE recommendations (
"book_id" BIGINT,
"guest_id" BIGINT
);Anyone who has the link will be able to view this.