CNN YouTube: Titles, Views & Posting Dates Dataset
Exposing CNN by exploring their YouTube channel.
@kaggle.ibrahimonmars_cnn_youtube_titles_views_and_posting_dates
Exposing CNN by exploring their YouTube channel.
@kaggle.ibrahimonmars_cnn_youtube_titles_views_and_posting_dates
This dataset was scrapped using one of the python modules called "SiteScraper".
The "SiteScraper" module is build on top of selenium.
Here is the link to the module : https://github.com/ibrahim-string/SiteScraper
Text summarisation can be done on titles and correlation between views and titles can be explored using this dataset.
This dataset will be very usefull To find out what kind of content democrats watch.
This dataset will be updated every week.
CREATE TABLE cleaned_cnn (
"title" VARCHAR,
"views_on_vd" DOUBLE,
"time_in_minutes" BIGINT
);CREATE TABLE cleaned_cnn_week1 (
"title" VARCHAR,
"views_on_vd" VARCHAR,
"time_in_minutes" BIGINT
);CREATE TABLE uncleaned_cnn (
"title" VARCHAR,
"views" VARCHAR,
"when" VARCHAR
);CREATE TABLE uncleaned_cnn1 (
"title" VARCHAR,
"views" VARCHAR,
"when" VARCHAR
);CREATE TABLE uncleaned_cnn_week1 (
"title" VARCHAR,
"views" VARCHAR,
"when" VARCHAR
);Anyone who has the link will be able to view this.