{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# YouTube Search Sheet Maker\n",
    "\n",
    "\n",
    "Creates gsheets from one or more searches on YouTube.  \n",
    "\n",
    "Includes the video and channel statistics, and does a simple extract of email and instagram handle from the text of the video and channel."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "import sys\n",
    "sys.path.insert(0, '/Users/joel/src/thundr/tracker/')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "No buildsha.py defined. sha will be 'NOT_SET'\n",
      "Not using secrets manager\n",
      "use_my_whitelist_cache False\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "/Users/joel/src/thundr/tracker/venv/lib/python3.7/site-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.26.3) or chardet (3.0.4) doesn't match a supported version!\n",
      "  RequestsDependencyWarning)\n"
     ]
    }
   ],
   "source": [
    "from tracker import config\n",
    "\n",
    "# config.google_api_key = 'AIzaSyBF9IkHkhlBQ4QINkPZYNerNQ43FD1JKGI'\n",
    "\n",
    "from tracker.youtube import youtube\n",
    "from importlib import reload\n",
    "from pandas.io.json import json_normalize\n",
    "import pandas as pd\n",
    "import numpy as np\n",
    "from tracker import sheet\n",
    "from tracker.bangers import query_to_sheet\n",
    "import re\n",
    "import os\n",
    "\n",
    "from tracker.utils import chunks"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [],
   "source": [
    "import gspread"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "<module 'tracker.youtube.youtube' from '/Users/joel/src/thundr/tracker/tracker/youtube/youtube.py'>"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "reload(youtube)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [],
   "source": [
    "from pathlib import Path\n",
    "\n",
    "DATA_FOLDER = '/Users/joel/Desktop/DataDumps/YouTube'\n",
    "\n",
    "Path(DATA_FOLDER).mkdir(parents=True, exist_ok=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [],
   "source": [
    "TOPIC_ID_MUSIC = '/m/04rlf'"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Example: 50,50,50,50,23\n"
     ]
    }
   ],
   "source": [
    "def _get_list_of_request_sizes(videos_per_request, total_desired_videos):\n",
    "    # eg, [50, 50, 15] if total desired is 115, and videos_per is 50\n",
    "    request_result_sizes = (   \n",
    "        ([videos_per_request] * (total_desired_videos // videos_per_request))\n",
    "        + ([total_desired_videos % videos_per_request] if total_desired_videos % videos_per_request != 0 else [])\n",
    "    )\n",
    "    return request_result_sizes\n",
    "\n",
    "\n",
    "example = _get_list_of_request_sizes(videos_per_request=50, total_desired_videos=223)\n",
    "print(\"Example: \" + \",\".join([str(i) for i in example]))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "metadata": {},
   "outputs": [
    {
     "ename": "SyntaxError",
     "evalue": "invalid syntax (<ipython-input-26-9bdf86baf9fa>, line 49)",
     "output_type": "error",
     "traceback": [
      "\u001b[0;36m  File \u001b[0;32m\"<ipython-input-26-9bdf86baf9fa>\"\u001b[0;36m, line \u001b[0;32m49\u001b[0m\n\u001b[0;31m    pageToken=pageToken\u001b[0m\n\u001b[0m            ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n"
     ]
    }
   ],
   "source": [
    "class SearcherWithDedupeHistory:\n",
    "    def __init__(self):\n",
    "        self.searched_video_ids = set()\n",
    "        self.all_items = []\n",
    "    \n",
    "    def search_and_get_video_details(\n",
    "        self,\n",
    "        search_query, \n",
    "        num_results, \n",
    "        topicId=None, \n",
    "        order=None, \n",
    "        publishedAfter=None, \n",
    "        request_size=50,\n",
    "    ):\n",
    "        yt = youtube.setup_youtube()\n",
    "\n",
    "        request_result_sizes = _get_list_of_request_sizes(request_size, num_results)\n",
    "\n",
    "        all_ids = []\n",
    "        all_items = []\n",
    "        pageToken = None\n",
    "        vid_parts = [\n",
    "            \"contentDetails\",\n",
    "            # 'fileDetails',  only for owners\n",
    "            \"id\",\n",
    "            # 'liveStreamingDetails',\n",
    "            # 'localizations',\n",
    "            # 'player',\n",
    "            # 'processingDetails',\n",
    "            # 'recordingDetails',\n",
    "            \"snippet\",\n",
    "            \"statistics\",\n",
    "            # 'status',\n",
    "            # 'suggestions',\n",
    "            \"topicDetails\",\n",
    "        ]\n",
    "        for i, maxResults in enumerate(request_result_sizes):\n",
    "            print(f\"Search {i} {maxResults} {search_query}\")\n",
    "\n",
    "            search_kwargs = dict(\n",
    "                type=\"video\", \n",
    "                q=search_query, \n",
    "                part=\"snippet\", \n",
    "                maxResults=maxResults,\n",
    "                topicId=topicId, \n",
    "                order=order, \n",
    "                publishedAfter=publishedAfter,\n",
    "                relevanceLanguage='en'\n",
    "                pageToken=pageToken\n",
    "            )\n",
    "            search_results = (\n",
    "                yt.search()\n",
    "                .list(**search_kwargs)\n",
    "                .execute()\n",
    "            )\n",
    "            these_ids = [v[\"id\"][\"videoId\"] for v in search_results[\"items\"]]\n",
    "            new_ids = [i for i in these_ids if i not in self.searched_video_ids]\n",
    "            \n",
    "            self.searched_video_ids.update(new_ids)\n",
    "            \n",
    "            video_results = yt.videos().list(id=\",\".join(new_ids), part=\",\".join(vid_parts)).execute()\n",
    "            all_items.extend(video_results['items'])\n",
    "\n",
    "            pageToken = search_results.get('nextPageToken')\n",
    "\n",
    "            if pageToken is None and i < len(request_result_sizes) + 1:\n",
    "                print(f\"No more results found, total len{all_items}\")\n",
    "                break\n",
    "        \n",
    "        return all_items\n",
    "\n",
    "final_column_settings = [\n",
    "    ('Search Term', 'Search Term'),\n",
    "    ('ch.title', 'Channel Title'),\n",
    "    ('Channel Link', 'Channel Link'),\n",
    "    ('Channel Email', 'Channel Email'),\n",
    "    ('Channel Insta', 'Channel Insta'),\n",
    "    ('Video Email', 'Video Email'),\n",
    "    ('Video Insta', 'Video Insta'),\n",
    "    ('ch.description', 'Channel Description'),\n",
    "    ('ch.subscriberCount', 'Subscribers'),\n",
    "    ('ch.viewCount', 'Channel Views'),\n",
    "    ('ch.videoCount', 'Total Videos'),\n",
    "    ('ch.country', 'Channel Country'),\n",
    "    ('Video Link', 'Video Link'),\n",
    "    ('snippet.title', 'Video Title'),\n",
    "    ('snippet.description', 'Video Description'),\n",
    "    ('snippet.publishedAt', 'Video Published'),\n",
    "    ('statistics.viewCount', 'Video Views'),\n",
    "    ('statistics.likeCount', 'Video Likes'),\n",
    "    ('statistics.commentCount', 'Video Comments'),\n",
    "]\n",
    "\n",
    "def get_email(s):\n",
    "    m = next(re.finditer(r\"[a-z0-9\\.\\-+_]+@[a-z0-9\\.\\-+_]+\\.[a-z]+\", s.lower()), None)\n",
    "    return m.group(0) if m else None\n",
    "\n",
    "def get_insta(s):\n",
    "    m = next(re.finditer(r\"instagram.com\\/([a-z0-9\\.\\-_]+)/\", s.lower()), None)\n",
    "    return ('@' + m.group(1)) if m else None"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "metadata": {},
   "outputs": [],
   "source": [
    "def visit_channel_stats(\n",
    "    channel_ids: list,\n",
    "    each_stat_visitor: callable,\n",
    "    not_found_visitor: callable,\n",
    "    part=\"statistics\"\n",
    "):\n",
    "    for channel_ids_chunk in chunks(channel_ids, 50):\n",
    "        print(\"Requesting {} channel stats\".format(len(channel_ids_chunk)))\n",
    "        ids_arg = \",\".join(channel_ids_chunk)\n",
    "        max_results = len(channel_ids_chunk)\n",
    "        yt = youtube.setup_youtube()\n",
    "        found_ids = set()\n",
    "        results = (\n",
    "            yt.channels().list(id=ids_arg, part=part, maxResults=max_results).execute()\n",
    "        )\n",
    "        items = results.get(\"items\") or []\n",
    "        print(\"Found {} channel stat results\".format(len(results.get(\"items\"))))\n",
    "        for item in items:\n",
    "            id = item[\"id\"]\n",
    "            found_ids.add(id)\n",
    "            each_stat_visitor(item)\n",
    "\n",
    "        for id in channel_ids_chunk:\n",
    "            if id not in found_ids:\n",
    "                not_found_visitor(id)\n",
    "\n",
    "def get_video_search_data_frame(\n",
    "    search_query, num_videos, topicId, order, publishedAfter,\n",
    "):\n",
    "    \n",
    "    videos = SearcherWithDedupeHistory().search_and_get_video_details(\n",
    "        search_query, num_results=num_videos, topicId=topicId, \n",
    "        order=order, publishedAfter=publishedAfter\n",
    "    )\n",
    "    \n",
    "    vid_columns = [\n",
    "     'id',\n",
    "     'snippet.publishedAt',\n",
    "     'snippet.channelId',\n",
    "     'snippet.title',\n",
    "     'snippet.description',\n",
    "#      'snippet.channelTitle',\n",
    "#      'snippet.tags',\n",
    "#      'contentDetails.duration',\n",
    "     'statistics.viewCount',\n",
    "     'statistics.likeCount',\n",
    "     'statistics.dislikeCount',\n",
    "     'statistics.favoriteCount',\n",
    "     'statistics.commentCount',\n",
    "    #  'topicDetails.topicCategories',\n",
    "    #  'snippet.defaultLanguage'\n",
    "    ]\n",
    "    viddf = pd.json_normalize(videos)[vid_columns]\n",
    "    return viddf\n",
    "\n",
    "def get_channel_dataframe(uniq_channel_ids):\n",
    "    \n",
    "    collected_channels = []\n",
    "    def add_channel(d):\n",
    "        collected_channels.append(d)\n",
    "\n",
    "    def not_found(d):\n",
    "        print(\"Not found\", d)\n",
    "        \n",
    "    visit_channel_stats(uniq_channel_ids, add_channel, not_found, part='statistics,snippet')\n",
    "    channel_cols = [\n",
    "        'id',\n",
    "        'snippet.title',\n",
    "        'snippet.description',\n",
    "#         'snippet.customUrl',\n",
    "#         'snippet.publishedAt',\n",
    "        'snippet.country',\n",
    "        'statistics.viewCount',\n",
    "        'statistics.subscriberCount',\n",
    "#         'statistics.hiddenSubscriberCount',\n",
    "        'statistics.videoCount'\n",
    "    ]\n",
    "    channelinfo = pd.json_normalize(collected_channels)[channel_cols].set_index('id')\n",
    "    channelinfo = channelinfo.rename(columns={\n",
    "        c: 'ch.' + c.split('.')[-1] for c in channelinfo.columns\n",
    "    })\n",
    "    return channelinfo\n",
    "\n",
    "\n",
    "\n",
    "def get_merged_dataframe(search_query, num_videos, topicId, order, publishedAfter):\n",
    "    dfcols = get_video_search_data_frame(search_query, num_videos=num_videos, topicId=topicId, \n",
    "                                          order=order, publishedAfter=publishedAfter)\n",
    "    uniq_channel_ids = list(set(dfcols['snippet.channelId']))\n",
    "    chandf = get_channel_dataframe(uniq_channel_ids)\n",
    "    dfMerge = pd.merge(dfcols, chandf, left_on='snippet.channelId', right_index=True).replace({np.nan: None})\n",
    "    return dfMerge\n",
    "\n",
    "def augment_merged_dataframe(search_query, dfMerge):\n",
    "    dfMerge['Search Term'] = search_query\n",
    "    dfMerge['Channel Link'] = dfMerge['snippet.channelId'].apply(lambda x: f'https://www.youtube.com/channel/{x}')\n",
    "    dfMerge['Video Link'] = dfMerge.id.apply(lambda x: f'https://www.youtube.com/watch?v={x}')\n",
    "    dfMerge['Channel Email'] = dfMerge['ch.description'].apply(get_email)\n",
    "    dfMerge['Video Email'] = dfMerge['snippet.description'].apply(get_email)\n",
    "    dfMerge['Channel Insta'] = dfMerge['ch.description'].apply(get_insta)\n",
    "    dfMerge['Video Insta'] = dfMerge['snippet.description'].apply(get_insta)\n",
    "    dfMerge = dfMerge.rename(columns={k:v for k,v in final_column_settings})[[c[1] for c in final_column_settings]]\n",
    "    return dfMerge\n",
    "\n",
    "def make_safe_filename(s):\n",
    "    def safe_char(c):\n",
    "        if c.isalnum():\n",
    "            return c\n",
    "        else:\n",
    "            return \"_\"\n",
    "    return \"\".join(safe_char(c) for c in s).rstrip(\"_\")\n",
    "\n",
    "\n",
    "def create_csv_from_search(\n",
    "    search_query, \n",
    "    topicId=None, \n",
    "    order='viewCount',  \n",
    "    publishedAfter='2020-01-01T00:00:00Z', \n",
    "    num_videos=100,\n",
    "    folder=DATA_FOLDER\n",
    "):\n",
    "    dfMerge = get_merged_dataframe(search_query, num_videos=num_videos, topicId=topicId, \n",
    "                                   order=order, publishedAfter=publishedAfter)\n",
    "    dfMerge = augment_merged_dataframe(search_query, dfMerge)\n",
    "    \n",
    "    ts = int(datetime.today().timestamp())\n",
    "    from pathlib import Path\n",
    "    Path(folder).mkdir(parents=True, exist_ok=True)\n",
    "    filename = 'vid_' + make_safe_filename(search_query) + str(ts) + '.csv'\n",
    "    dfMerge.to_csv(os.path.join(folder, filename))\n",
    "    \n",
    "    return dfMerge\n",
    "\n",
    "def create_sheet_from_search(\n",
    "    spreadsheet: gspread.models.Spreadsheet,\n",
    "    search_query, topicId=None, order='viewCount', \n",
    "    publishedAfter='2020-11-01T00:00:00Z', num_videos=100,\n",
    "    \n",
    "):\n",
    "    dfMerge = get_merged_dataframe(search_query, num_videos=num_videos, topicId=topicId, \n",
    "                                   order=order, publishedAfter=publishedAfter)\n",
    "    dfMerge = augment_merged_dataframe(search_query, dfMerge)\n",
    "    return _create_sheet_from_dataframe(dfMerge, sheet_name=search_query, spreadsheet=spreadsheet)\n",
    "\n",
    "def _create_sheet_from_dataframe(dfMerge, sheet_name, spreadsheet):\n",
    "    fullcsv = [[c.split('.')[-1] for c in dfMerge.columns]] + dfMerge.to_numpy().tolist()\n",
    "    query_to_sheet.csv_to_sheet(csv=fullcsv, spreadsheet=spreadsheet, sheet_name=sheet_name)\n",
    "    return dfMerge"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {},
   "outputs": [],
   "source": [
    "def rand_str(k=5):\n",
    "    import random\n",
    "\n",
    "    return \"\".join(random.choices(\"abcdefghijklmnopqrstuvwxyz\", k=k))\n",
    "\n",
    "from tracker.sheet import Sheet\n",
    "sheet = Sheet()\n",
    "\n",
    "from datetime import datetime\n",
    "\n",
    "def get_or_create_sheet(existing_id=None):\n",
    "    if existing_id:\n",
    "        return sheet.client.open_by_url('https://docs.google.com/spreadsheets/d/' + existing_id)\n",
    "    \n",
    "    ss_name = 'YouTube Search {} / {}'.format(datetime.today().strftime('%Y-%m-%d'), rand_str(k=4))\n",
    "    print(\"Spreadsheet name: {}\".format(ss_name))\n",
    "    ss =  sheet.client.create(ss_name)\n",
    "    ss.share('joel@whtlst.in', perm_type=\"user\", role=\"writer\", notify=True)\n",
    "    return ss;"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {},
   "outputs": [],
   "source": [
    "yt = youtube.setup_youtube()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [],
   "source": [
    "def get_yt_video_details(*video_ids):\n",
    "     return yt.videos().list(id=','.join(video_ids), part='snippet,contentDetails,statistics,topicDetails').execute()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {},
   "outputs": [],
   "source": [
    "ss = get_or_create_sheet('1nbWlVqEWVYAg7jKQhaaLMT7rxKrZMJP-ll1e1yl8WNU')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'1nbWlVqEWVYAg7jKQhaaLMT7rxKrZMJP-ll1e1yl8WNU'"
      ]
     },
     "execution_count": 20,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "ss.id"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Search 0 50 cooking recipes -tasty -ramsay\n",
      "Search 1 50 cooking recipes -tasty -ramsay\n",
      "Requesting 50 channel stats\n",
      "Found 50 channel stat results\n",
      "Requesting 9 channel stats\n",
      "Found 9 channel stat results\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>Search Term</th>\n",
       "      <th>Channel Title</th>\n",
       "      <th>Channel Link</th>\n",
       "      <th>Channel Email</th>\n",
       "      <th>Channel Insta</th>\n",
       "      <th>Video Email</th>\n",
       "      <th>Video Insta</th>\n",
       "      <th>Channel Description</th>\n",
       "      <th>Subscribers</th>\n",
       "      <th>Channel Views</th>\n",
       "      <th>Total Videos</th>\n",
       "      <th>Channel Country</th>\n",
       "      <th>Video Link</th>\n",
       "      <th>Video Title</th>\n",
       "      <th>Video Description</th>\n",
       "      <th>Video Published</th>\n",
       "      <th>Video Views</th>\n",
       "      <th>Video Likes</th>\n",
       "      <th>Video Comments</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>the real village cooking</td>\n",
       "      <td>https://www.youtube.com/channel/UC-wDREHgwnNPk...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>This is a real rural village cooking channel.h...</td>\n",
       "      <td>193000</td>\n",
       "      <td>50953736</td>\n",
       "      <td>50</td>\n",
       "      <td>IN</td>\n",
       "      <td>https://www.youtube.com/watch?v=gcrhPP74ims</td>\n",
       "      <td>santali tribe grandmother's cooking SMALL SNAI...</td>\n",
       "      <td>santali tribe grandmother's cooking small snai...</td>\n",
       "      <td>2021-01-02T08:33:41Z</td>\n",
       "      <td>3077484</td>\n",
       "      <td>14634</td>\n",
       "      <td>670</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>the real village cooking</td>\n",
       "      <td>https://www.youtube.com/channel/UC-wDREHgwnNPk...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>This is a real rural village cooking channel.h...</td>\n",
       "      <td>193000</td>\n",
       "      <td>50953736</td>\n",
       "      <td>50</td>\n",
       "      <td>IN</td>\n",
       "      <td>https://www.youtube.com/watch?v=TXb4pCDe6yA</td>\n",
       "      <td>village tribe people's daily routine!they cook...</td>\n",
       "      <td>village tribe people's daily routine!they cook...</td>\n",
       "      <td>2021-01-12T06:03:16Z</td>\n",
       "      <td>2647896</td>\n",
       "      <td>19071</td>\n",
       "      <td>434</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>19</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>the real village cooking</td>\n",
       "      <td>https://www.youtube.com/channel/UC-wDREHgwnNPk...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>This is a real rural village cooking channel.h...</td>\n",
       "      <td>193000</td>\n",
       "      <td>50953736</td>\n",
       "      <td>50</td>\n",
       "      <td>IN</td>\n",
       "      <td>https://www.youtube.com/watch?v=DDC7wS0VOO0</td>\n",
       "      <td>santali cooking indian BERRY PICKLE recipe by ...</td>\n",
       "      <td>santali cooking indian BERRY PICKLE recipe by ...</td>\n",
       "      <td>2021-02-20T08:33:14Z</td>\n",
       "      <td>810361</td>\n",
       "      <td>4520</td>\n",
       "      <td>152</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>22</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>the real village cooking</td>\n",
       "      <td>https://www.youtube.com/channel/UC-wDREHgwnNPk...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>This is a real rural village cooking channel.h...</td>\n",
       "      <td>193000</td>\n",
       "      <td>50953736</td>\n",
       "      <td>50</td>\n",
       "      <td>IN</td>\n",
       "      <td>https://www.youtube.com/watch?v=kBo7Rnqm7sY</td>\n",
       "      <td>how she cook small fish curry recipe for her f...</td>\n",
       "      <td>how she cook small fish curry recipe for her f...</td>\n",
       "      <td>2020-12-26T06:43:03Z</td>\n",
       "      <td>681747</td>\n",
       "      <td>4487</td>\n",
       "      <td>84</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>26</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>the real village cooking</td>\n",
       "      <td>https://www.youtube.com/channel/UC-wDREHgwnNPk...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>This is a real rural village cooking channel.h...</td>\n",
       "      <td>193000</td>\n",
       "      <td>50953736</td>\n",
       "      <td>50</td>\n",
       "      <td>IN</td>\n",
       "      <td>https://www.youtube.com/watch?v=51u9S8QdG_0</td>\n",
       "      <td>village tribe women cooking SILVERCARF FISH wi...</td>\n",
       "      <td>village tribe women cooking SILVERCARF FISH wi...</td>\n",
       "      <td>2021-01-17T07:33:46Z</td>\n",
       "      <td>657663</td>\n",
       "      <td>5116</td>\n",
       "      <td>170</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>...</th>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>88</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>Village food factory</td>\n",
       "      <td>https://www.youtube.com/channel/UC-j7LP4at37y3...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Village food factory is only entertainment cha...</td>\n",
       "      <td>4330000</td>\n",
       "      <td>835642517</td>\n",
       "      <td>357</td>\n",
       "      <td>IN</td>\n",
       "      <td>https://www.youtube.com/watch?v=5e-q_fQsx7c</td>\n",
       "      <td>Underground BANANA Leaf FISH Recipe by Daddy A...</td>\n",
       "      <td>Village food factory</td>\n",
       "      <td>2021-02-06T04:21:19Z</td>\n",
       "      <td>228935</td>\n",
       "      <td>9487</td>\n",
       "      <td>357</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>87</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>Village Cooking Vlog</td>\n",
       "      <td>https://www.youtube.com/channel/UCeqbJQ6gde7wu...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Village Cooking Vlog channel is a cooking chan...</td>\n",
       "      <td>77200</td>\n",
       "      <td>9018849</td>\n",
       "      <td>16</td>\n",
       "      <td>IN</td>\n",
       "      <td>https://www.youtube.com/watch?v=e_1Mhhv0G94</td>\n",
       "      <td>JOGAKHICHURI recipe😀 Village Cooking Vlog | Wi...</td>\n",
       "      <td>Village Style cooking JOGAKHICHURI recipe with...</td>\n",
       "      <td>2020-12-10T16:22:40Z</td>\n",
       "      <td>230143</td>\n",
       "      <td>10423</td>\n",
       "      <td>646</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>89</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>Pet Home TV</td>\n",
       "      <td>https://www.youtube.com/channel/UCWy0dATWqmBNa...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Rescue Abandoned Dogs Will build houses for th...</td>\n",
       "      <td>85400</td>\n",
       "      <td>28237034</td>\n",
       "      <td>295</td>\n",
       "      <td>US</td>\n",
       "      <td>https://www.youtube.com/watch?v=TyuHf2k8OWw</td>\n",
       "      <td>primitive Survive- Women find food met 2 Chick...</td>\n",
       "      <td>Hi, this video I want to show you about:\\nprim...</td>\n",
       "      <td>2020-12-19T16:44:56Z</td>\n",
       "      <td>225970</td>\n",
       "      <td>1584</td>\n",
       "      <td>37</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>91</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>My Village Food Secrets</td>\n",
       "      <td>https://www.youtube.com/channel/UC-exx5JkLPpVf...</td>\n",
       "      <td>mukkramsaleem52@gmail.com</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@myvillagefoodsecrets</td>\n",
       "      <td>My Village food Secrets is all about Village f...</td>\n",
       "      <td>322000</td>\n",
       "      <td>48218475</td>\n",
       "      <td>493</td>\n",
       "      <td>PK</td>\n",
       "      <td>https://www.youtube.com/watch?v=VKaYmkU3gfY</td>\n",
       "      <td>Nisar Charsi Chicken karahi Recipe in Peshawar...</td>\n",
       "      <td>Peshawari Charsi Chicken karahi Recipe | Stree...</td>\n",
       "      <td>2021-02-11T14:11:54Z</td>\n",
       "      <td>229523</td>\n",
       "      <td>5294</td>\n",
       "      <td>306</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>96</th>\n",
       "      <td>cooking recipes -tasty -ramsay</td>\n",
       "      <td>Kitchen with Amna</td>\n",
       "      <td>https://www.youtube.com/channel/UCQ2P7C8UGoVM6...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@kitchenwithamna</td>\n",
       "      <td>Hi my name is Amna and I am here to help peopl...</td>\n",
       "      <td>3850000</td>\n",
       "      <td>503001593</td>\n",
       "      <td>1044</td>\n",
       "      <td>PK</td>\n",
       "      <td>https://www.youtube.com/watch?v=ki0-vvE2x5o</td>\n",
       "      <td>Almond Honey Cake Recipe | Dry Almond Cake Tea...</td>\n",
       "      <td>How to make Almond Honey Cake Recipe at Home W...</td>\n",
       "      <td>2020-12-02T11:57:26Z</td>\n",
       "      <td>216801</td>\n",
       "      <td>5578</td>\n",
       "      <td>628</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "<p>100 rows × 19 columns</p>\n",
       "</div>"
      ],
      "text/plain": [
       "                       Search Term             Channel Title  \\\n",
       "0   cooking recipes -tasty -ramsay  the real village cooking   \n",
       "1   cooking recipes -tasty -ramsay  the real village cooking   \n",
       "19  cooking recipes -tasty -ramsay  the real village cooking   \n",
       "22  cooking recipes -tasty -ramsay  the real village cooking   \n",
       "26  cooking recipes -tasty -ramsay  the real village cooking   \n",
       "..                             ...                       ...   \n",
       "88  cooking recipes -tasty -ramsay      Village food factory   \n",
       "87  cooking recipes -tasty -ramsay      Village Cooking Vlog   \n",
       "89  cooking recipes -tasty -ramsay               Pet Home TV   \n",
       "91  cooking recipes -tasty -ramsay   My Village Food Secrets   \n",
       "96  cooking recipes -tasty -ramsay         Kitchen with Amna   \n",
       "\n",
       "                                         Channel Link  \\\n",
       "0   https://www.youtube.com/channel/UC-wDREHgwnNPk...   \n",
       "1   https://www.youtube.com/channel/UC-wDREHgwnNPk...   \n",
       "19  https://www.youtube.com/channel/UC-wDREHgwnNPk...   \n",
       "22  https://www.youtube.com/channel/UC-wDREHgwnNPk...   \n",
       "26  https://www.youtube.com/channel/UC-wDREHgwnNPk...   \n",
       "..                                                ...   \n",
       "88  https://www.youtube.com/channel/UC-j7LP4at37y3...   \n",
       "87  https://www.youtube.com/channel/UCeqbJQ6gde7wu...   \n",
       "89  https://www.youtube.com/channel/UCWy0dATWqmBNa...   \n",
       "91  https://www.youtube.com/channel/UC-exx5JkLPpVf...   \n",
       "96  https://www.youtube.com/channel/UCQ2P7C8UGoVM6...   \n",
       "\n",
       "                Channel Email Channel Insta Video Email  \\\n",
       "0                        None          None        None   \n",
       "1                        None          None        None   \n",
       "19                       None          None        None   \n",
       "22                       None          None        None   \n",
       "26                       None          None        None   \n",
       "..                        ...           ...         ...   \n",
       "88                       None          None        None   \n",
       "87                       None          None        None   \n",
       "89                       None          None        None   \n",
       "91  mukkramsaleem52@gmail.com          None        None   \n",
       "96                       None          None        None   \n",
       "\n",
       "              Video Insta                                Channel Description  \\\n",
       "0                    None  This is a real rural village cooking channel.h...   \n",
       "1                    None  This is a real rural village cooking channel.h...   \n",
       "19                   None  This is a real rural village cooking channel.h...   \n",
       "22                   None  This is a real rural village cooking channel.h...   \n",
       "26                   None  This is a real rural village cooking channel.h...   \n",
       "..                    ...                                                ...   \n",
       "88                   None  Village food factory is only entertainment cha...   \n",
       "87                   None  Village Cooking Vlog channel is a cooking chan...   \n",
       "89                   None  Rescue Abandoned Dogs Will build houses for th...   \n",
       "91  @myvillagefoodsecrets  My Village food Secrets is all about Village f...   \n",
       "96       @kitchenwithamna  Hi my name is Amna and I am here to help peopl...   \n",
       "\n",
       "   Subscribers Channel Views Total Videos Channel Country  \\\n",
       "0       193000      50953736           50              IN   \n",
       "1       193000      50953736           50              IN   \n",
       "19      193000      50953736           50              IN   \n",
       "22      193000      50953736           50              IN   \n",
       "26      193000      50953736           50              IN   \n",
       "..         ...           ...          ...             ...   \n",
       "88     4330000     835642517          357              IN   \n",
       "87       77200       9018849           16              IN   \n",
       "89       85400      28237034          295              US   \n",
       "91      322000      48218475          493              PK   \n",
       "96     3850000     503001593         1044              PK   \n",
       "\n",
       "                                     Video Link  \\\n",
       "0   https://www.youtube.com/watch?v=gcrhPP74ims   \n",
       "1   https://www.youtube.com/watch?v=TXb4pCDe6yA   \n",
       "19  https://www.youtube.com/watch?v=DDC7wS0VOO0   \n",
       "22  https://www.youtube.com/watch?v=kBo7Rnqm7sY   \n",
       "26  https://www.youtube.com/watch?v=51u9S8QdG_0   \n",
       "..                                          ...   \n",
       "88  https://www.youtube.com/watch?v=5e-q_fQsx7c   \n",
       "87  https://www.youtube.com/watch?v=e_1Mhhv0G94   \n",
       "89  https://www.youtube.com/watch?v=TyuHf2k8OWw   \n",
       "91  https://www.youtube.com/watch?v=VKaYmkU3gfY   \n",
       "96  https://www.youtube.com/watch?v=ki0-vvE2x5o   \n",
       "\n",
       "                                          Video Title  \\\n",
       "0   santali tribe grandmother's cooking SMALL SNAI...   \n",
       "1   village tribe people's daily routine!they cook...   \n",
       "19  santali cooking indian BERRY PICKLE recipe by ...   \n",
       "22  how she cook small fish curry recipe for her f...   \n",
       "26  village tribe women cooking SILVERCARF FISH wi...   \n",
       "..                                                ...   \n",
       "88  Underground BANANA Leaf FISH Recipe by Daddy A...   \n",
       "87  JOGAKHICHURI recipe😀 Village Cooking Vlog | Wi...   \n",
       "89  primitive Survive- Women find food met 2 Chick...   \n",
       "91  Nisar Charsi Chicken karahi Recipe in Peshawar...   \n",
       "96  Almond Honey Cake Recipe | Dry Almond Cake Tea...   \n",
       "\n",
       "                                    Video Description       Video Published  \\\n",
       "0   santali tribe grandmother's cooking small snai...  2021-01-02T08:33:41Z   \n",
       "1   village tribe people's daily routine!they cook...  2021-01-12T06:03:16Z   \n",
       "19  santali cooking indian BERRY PICKLE recipe by ...  2021-02-20T08:33:14Z   \n",
       "22  how she cook small fish curry recipe for her f...  2020-12-26T06:43:03Z   \n",
       "26  village tribe women cooking SILVERCARF FISH wi...  2021-01-17T07:33:46Z   \n",
       "..                                                ...                   ...   \n",
       "88                               Village food factory  2021-02-06T04:21:19Z   \n",
       "87  Village Style cooking JOGAKHICHURI recipe with...  2020-12-10T16:22:40Z   \n",
       "89  Hi, this video I want to show you about:\\nprim...  2020-12-19T16:44:56Z   \n",
       "91  Peshawari Charsi Chicken karahi Recipe | Stree...  2021-02-11T14:11:54Z   \n",
       "96  How to make Almond Honey Cake Recipe at Home W...  2020-12-02T11:57:26Z   \n",
       "\n",
       "   Video Views Video Likes Video Comments  \n",
       "0      3077484       14634            670  \n",
       "1      2647896       19071            434  \n",
       "19      810361        4520            152  \n",
       "22      681747        4487             84  \n",
       "26      657663        5116            170  \n",
       "..         ...         ...            ...  \n",
       "88      228935        9487            357  \n",
       "87      230143       10423            646  \n",
       "89      225970        1584             37  \n",
       "91      229523        5294            306  \n",
       "96      216801        5578            628  \n",
       "\n",
       "[100 rows x 19 columns]"
      ]
     },
     "execution_count": 27,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "create_sheet_from_search(\n",
    "    spreadsheet=ss,\n",
    "    search_query=\"cooking recipes -tasty -ramsay\",\n",
    "    topicId=None, \n",
    "    order='viewCount', \n",
    "    publishedAfter='2020-11-01T00:00:00Z', \n",
    "    num_videos=100\n",
    ")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "----------------------\n",
    "----------------------\n",
    "\n",
    "## Debugging etc:\n",
    "\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Search 0 10 drivers license cover\n"
     ]
    }
   ],
   "source": [
    "test1 = search_and_get_video_details(\n",
    "    publishedAfter='2020-01-01T00:00:00Z',\n",
    "    order='viewCount',\n",
    "    num_results=10,\n",
    "    search_query='drivers license cover', \n",
    "    topicId=musicTopicId,\n",
    ")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[{'kind': 'youtube#video',\n",
       "  'etag': 'l9ScI8ZfvVsgDUvCUGfVa1p9trk',\n",
       "  'id': '_Bjf-iExroI',\n",
       "  'snippet': {'publishedAt': '2021-01-11T18:48:02Z',\n",
       "   'channelId': 'UChO8h2G8UjOVc081rgYU8XQ',\n",
       "   'title': 'Olivia Rodrigo – drivers license (Lyrics)',\n",
       "   'description': '♫ Olivia Rodrigo – drivers license\\nStream/Download - https://smarturl.it/driverslicense\\n\\n •Olivia Rodrigo •\\n •https://instagram.com/olivia.rodrigo\\n •https://twitter.com/Olivia_Rodrigo\\n •https://www.facebook.com/OliviaRodrig\\n\\n(Lyrics):\\n[Verse 1]\\nI got my driver’s license last week\\nJust like we always talked about\\n‘Cause you were so excited for me\\nTo finally drive up to your house\\nBut today I drove through the suburbs\\nCrying ’cause you weren’t around\\n\\n[Verse 2]\\nAnd you’re probably with that blonde girl\\nWho always made me doubt\\nShe’s so much older than me\\nShe’s everything I’m insecure about\\nYeah, today I drove through the suburbs\\n‘Cause how could I ever love someone else?\\n\\n[Chorus]\\nAnd I know we weren’t perfect but I’ve never felt this way for no one\\nAnd I just can’t imagine how you could be so okay now that I’m gone\\nGuess you didn’t mean what you wrote in that song about me\\n‘Cause you said forever, now I drive alone past your street\\n\\n[Verse 3]\\nAnd all my friends are tired\\nOf hearing how much I miss you, but\\nI kinda feel sorry for them\\n‘Cause they’ll never know you the way that I do, yeah\\nToday I drove through the suburbs\\nAnd pictured I was driving home to you\\n\\n[Chorus]\\nAnd I know we weren’t perfect but I’ve never felt this way for no one, oh-oh\\nAnd I just can’t imagine how you could be so okay, now that I’m gone\\nI guess you didn’t mean what you wrote in that song about me\\n‘Cause you said forever, now I drive alone past your street\\n\\n[Bridge]\\nRed lights, stop signs\\nI still see your face in the white cars, front yards\\nCan’t drive past the places we used to go to\\n‘Cause I still fuckin’ love you, babe (Ooh, ooh-ooh, ooh-ooh, ooh-ooh)\\nSidewalks we crossed\\nI still hear your voice in the traffic, we’re laughing\\nOver all the noise\\nGod I’m so blue, know we’re through\\nBut I still fuckin’ love you, babe (Ooh, ooh-ooh, ooh-ooh, ooh-ooh)\\n\\n[Chorus]\\nI know we weren’t perfect but I’ve never felt this way for no one\\nAnd I just can’t imagine how you could be so okay, now that I’m gone\\n‘Cause you didn’t mean what you wrote in that song about me\\n‘Cause you said forever, now I drive alone past your street\\nYeah, you said forever, now I drive alone past your street\\n\\nTags •\\nOlivia Rodrigo\\nDrivers License\\nOlivia Rodrigo Drivers License\\nDrivers License Lyrics\\nDrivers License Olivia Rodrigo\\nOlivia Rodrigo Lyrics\\nOlivia Rodrigo Drivers License Lyrics\\nDrivers License Olivia Rodrigo Lyrics\\n\\n\\n#Oliviarodrigo #DriversLicense #Lyrics\\n\\nContact - droppinglyricsvibe@gmail.com',\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/_Bjf-iExroI/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/_Bjf-iExroI/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/_Bjf-iExroI/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/_Bjf-iExroI/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/_Bjf-iExroI/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'Vibe Music',\n",
       "   'tags': ['olivia rodrigo',\n",
       "    'drivers license',\n",
       "    'drivers license lyrics',\n",
       "    'olivia rodrigo lyrics',\n",
       "    'drivers license olivia rodrigo',\n",
       "    'olivia rodrigo drivers license',\n",
       "    'drivers license olivia rodrigo lyrics',\n",
       "    'olivia rodrigo drivers license lyrics',\n",
       "    'lyrics',\n",
       "    'vibe music',\n",
       "    'Vibe Music',\n",
       "    'Lyrics',\n",
       "    'Olivia Rodrigo',\n",
       "    'Drivers License',\n",
       "    'Olivia Rodrigo Lyrics',\n",
       "    'Drivers License Lyrics',\n",
       "    'Olivia Rodrigo Drivers License',\n",
       "    'Drivers License Olivia Rodrigo',\n",
       "    'Olivia Rodrigo Drivers License Lyrics',\n",
       "    'Drivers License Olivia Rodrigo Lyrics'],\n",
       "   'categoryId': '10',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'localized': {'title': 'Olivia Rodrigo – drivers license (Lyrics)',\n",
       "    'description': '♫ Olivia Rodrigo – drivers license\\nStream/Download - https://smarturl.it/driverslicense\\n\\n •Olivia Rodrigo •\\n •https://instagram.com/olivia.rodrigo\\n •https://twitter.com/Olivia_Rodrigo\\n •https://www.facebook.com/OliviaRodrig\\n\\n(Lyrics):\\n[Verse 1]\\nI got my driver’s license last week\\nJust like we always talked about\\n‘Cause you were so excited for me\\nTo finally drive up to your house\\nBut today I drove through the suburbs\\nCrying ’cause you weren’t around\\n\\n[Verse 2]\\nAnd you’re probably with that blonde girl\\nWho always made me doubt\\nShe’s so much older than me\\nShe’s everything I’m insecure about\\nYeah, today I drove through the suburbs\\n‘Cause how could I ever love someone else?\\n\\n[Chorus]\\nAnd I know we weren’t perfect but I’ve never felt this way for no one\\nAnd I just can’t imagine how you could be so okay now that I’m gone\\nGuess you didn’t mean what you wrote in that song about me\\n‘Cause you said forever, now I drive alone past your street\\n\\n[Verse 3]\\nAnd all my friends are tired\\nOf hearing how much I miss you, but\\nI kinda feel sorry for them\\n‘Cause they’ll never know you the way that I do, yeah\\nToday I drove through the suburbs\\nAnd pictured I was driving home to you\\n\\n[Chorus]\\nAnd I know we weren’t perfect but I’ve never felt this way for no one, oh-oh\\nAnd I just can’t imagine how you could be so okay, now that I’m gone\\nI guess you didn’t mean what you wrote in that song about me\\n‘Cause you said forever, now I drive alone past your street\\n\\n[Bridge]\\nRed lights, stop signs\\nI still see your face in the white cars, front yards\\nCan’t drive past the places we used to go to\\n‘Cause I still fuckin’ love you, babe (Ooh, ooh-ooh, ooh-ooh, ooh-ooh)\\nSidewalks we crossed\\nI still hear your voice in the traffic, we’re laughing\\nOver all the noise\\nGod I’m so blue, know we’re through\\nBut I still fuckin’ love you, babe (Ooh, ooh-ooh, ooh-ooh, ooh-ooh)\\n\\n[Chorus]\\nI know we weren’t perfect but I’ve never felt this way for no one\\nAnd I just can’t imagine how you could be so okay, now that I’m gone\\n‘Cause you didn’t mean what you wrote in that song about me\\n‘Cause you said forever, now I drive alone past your street\\nYeah, you said forever, now I drive alone past your street\\n\\nTags •\\nOlivia Rodrigo\\nDrivers License\\nOlivia Rodrigo Drivers License\\nDrivers License Lyrics\\nDrivers License Olivia Rodrigo\\nOlivia Rodrigo Lyrics\\nOlivia Rodrigo Drivers License Lyrics\\nDrivers License Olivia Rodrigo Lyrics\\n\\n\\n#Oliviarodrigo #DriversLicense #Lyrics\\n\\nContact - droppinglyricsvibe@gmail.com'}},\n",
       "  'contentDetails': {'duration': 'PT4M8S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': False,\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '24619803',\n",
       "   'likeCount': '358838',\n",
       "   'dislikeCount': '6108',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '13515'},\n",
       "  'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Independent_music',\n",
       "    'https://en.wikipedia.org/wiki/Music',\n",
       "    'https://en.wikipedia.org/wiki/Pop_music']}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': '5AkdQDIkIz_Z9pYKCYl-w85MzYg',\n",
       "  'id': 'AfrtzN5fQ_4',\n",
       "  'snippet': {'publishedAt': '2021-01-07T10:02:10Z',\n",
       "   'channelId': 'UCE5XNpliPM-SmyFEp61tL_g',\n",
       "   'title': 'drivers license',\n",
       "   'description': 'Provided to YouTube by Universal Music Group\\n\\ndrivers license · Olivia Rodrigo\\n\\ndrivers license\\n\\n℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records\\n\\nReleased on: 2021-01-08\\n\\nProducer, Studio  Personnel, Recording  Engineer: Daniel Nigro\\nStudio  Personnel, Mixer: Mitch McCarthy\\nStudio  Personnel, Mastering  Engineer: Randy Merrill\\nStudio  Personnel, Asst.  Recording  Engineer: Dan Viafore\\nAssociated  Performer, Piano, Bass, Percussion, Drums, Synthesizer  Programming, Background  Vocalist: Daniel Nigro\\nComposer  Lyricist: Olivia Rodrigo\\nComposer  Lyricist: Daniel Nigro\\n\\nAuto-generated by YouTube.',\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/AfrtzN5fQ_4/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/AfrtzN5fQ_4/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/AfrtzN5fQ_4/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/AfrtzN5fQ_4/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/AfrtzN5fQ_4/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'Olivia Rodrigo - Topic',\n",
       "   'tags': ['Olivia Rodrigo', 'オリビアロドリゴ', 'オリヴィア・ロドリゴ', 'drivers license'],\n",
       "   'categoryId': '10',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'localized': {'title': 'drivers license',\n",
       "    'description': 'Provided to YouTube by Universal Music Group\\n\\ndrivers license · Olivia Rodrigo\\n\\ndrivers license\\n\\n℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records\\n\\nReleased on: 2021-01-08\\n\\nProducer, Studio  Personnel, Recording  Engineer: Daniel Nigro\\nStudio  Personnel, Mixer: Mitch McCarthy\\nStudio  Personnel, Mastering  Engineer: Randy Merrill\\nStudio  Personnel, Asst.  Recording  Engineer: Dan Viafore\\nAssociated  Performer, Piano, Bass, Percussion, Drums, Synthesizer  Programming, Background  Vocalist: Daniel Nigro\\nComposer  Lyricist: Olivia Rodrigo\\nComposer  Lyricist: Daniel Nigro\\n\\nAuto-generated by YouTube.'}},\n",
       "  'contentDetails': {'duration': 'PT4M3S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': True,\n",
       "   'regionRestriction': {'allowed': ['AE',\n",
       "     'AR',\n",
       "     'AS',\n",
       "     'AT',\n",
       "     'AU',\n",
       "     'AW',\n",
       "     'BA',\n",
       "     'BE',\n",
       "     'BG',\n",
       "     'BH',\n",
       "     'BM',\n",
       "     'BO',\n",
       "     'BR',\n",
       "     'BY',\n",
       "     'CA',\n",
       "     'CH',\n",
       "     'CL',\n",
       "     'CO',\n",
       "     'CR',\n",
       "     'CY',\n",
       "     'CZ',\n",
       "     'DE',\n",
       "     'DK',\n",
       "     'DO',\n",
       "     'DZ',\n",
       "     'EC',\n",
       "     'EE',\n",
       "     'EG',\n",
       "     'ES',\n",
       "     'FI',\n",
       "     'FR',\n",
       "     'GB',\n",
       "     'GF',\n",
       "     'GP',\n",
       "     'GR',\n",
       "     'GT',\n",
       "     'GU',\n",
       "     'HK',\n",
       "     'HN',\n",
       "     'HR',\n",
       "     'HU',\n",
       "     'ID',\n",
       "     'IE',\n",
       "     'IL',\n",
       "     'IN',\n",
       "     'IS',\n",
       "     'IT',\n",
       "     'JO',\n",
       "     'JP',\n",
       "     'KE',\n",
       "     'KR',\n",
       "     'KW',\n",
       "     'KY',\n",
       "     'LB',\n",
       "     'LI',\n",
       "     'LT',\n",
       "     'LU',\n",
       "     'LV',\n",
       "     'MA',\n",
       "     'MK',\n",
       "     'MP',\n",
       "     'MQ',\n",
       "     'MT',\n",
       "     'MX',\n",
       "     'MY',\n",
       "     'NC',\n",
       "     'NG',\n",
       "     'NI',\n",
       "     'NL',\n",
       "     'NO',\n",
       "     'NZ',\n",
       "     'OM',\n",
       "     'PA',\n",
       "     'PE',\n",
       "     'PF',\n",
       "     'PG',\n",
       "     'PH',\n",
       "     'PL',\n",
       "     'PR',\n",
       "     'PT',\n",
       "     'PY',\n",
       "     'QA',\n",
       "     'RO',\n",
       "     'RS',\n",
       "     'RU',\n",
       "     'SA',\n",
       "     'SE',\n",
       "     'SG',\n",
       "     'SI',\n",
       "     'SK',\n",
       "     'SV',\n",
       "     'TC',\n",
       "     'TH',\n",
       "     'TR',\n",
       "     'TW',\n",
       "     'UA',\n",
       "     'US',\n",
       "     'UY',\n",
       "     'VE',\n",
       "     'VI',\n",
       "     'VN',\n",
       "     'YT',\n",
       "     'ZA']},\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '21759527',\n",
       "   'likeCount': '387391',\n",
       "   'dislikeCount': '13939',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '50'},\n",
       "  'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Independent_music',\n",
       "    'https://en.wikipedia.org/wiki/Music',\n",
       "    'https://en.wikipedia.org/wiki/Pop_music']}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': 'Or46LlhGK91w2seWk04623YloC4',\n",
       "  'id': 'yWzx3R81KWg',\n",
       "  'snippet': {'publishedAt': '2021-01-10T13:09:54Z',\n",
       "   'channelId': 'UCTFFPzHv1VZiVww1siqJi9Q',\n",
       "   'title': \"drivers license - olivia rodrigo (Lyrics) I got my driver's license last week\",\n",
       "   'description': \"drivers license - Olivia Rodrigo (Lyrics)\\n\\nStream Olivia Rodrigo drivers license : https://open.spotify.com/album/66FPnVL9G4CMKy3wvaGTcr\\n\\nListen Olivia Rodrigo drivers license lyrics : https://music.apple.com/us/album/drivers-license-single/1545051447\\n\\nDownload drivers license :  http://smarturl.it/driverslicensepre\\n\\nOlivia Rodrigo:\\nInstagram: https://instagram.com/olivia.rodrigo\\nTwitter: https://twitter.com/Olivia_Rodrigo\\n\\npicture : unsplash \\n\\ndrivers license lyrics :\\n\\n[Verse 1]\\nI got my driver's license last week\\nJust like we always talked about\\n'Cause you were so\\u2005excited\\u2005for me\\nTo finally\\u2005drive up to your house\\nBut today\\u2005I drove through the suburbs\\nCrying 'cause you weren't around\\n\\n[Verse 2]\\nAnd you're\\u205fprobably\\u205fwith\\u205fthat blonde girl\\nWho\\u205falways made me\\u205fdoubt\\nShe's so much older than me\\nShe's everything I'm insecure about\\nYeah, today I drove through the suburbs\\n'Cause how could I ever love someone else?\\ndrivers license\\ndrivers license\\ndrivers license\\n\\n[Chorus]\\nAnd I know we weren't perfect\\nBut I've never felt this way for no one\\nAnd I just can't imagine\\nHow you could be so okay now that I'm gone?\\nGuess you didn't mean what you wrote in that song about me\\n'Cause you said forever, now I drive alone past your street\\n\\n[Verse 3]\\nAnd all my friends are tired\\nOf hearing how much I miss you, but\\nI kinda feel sorry for them\\n'Cause they'll never know you the way that I do, yeah\\nToday I drove through the suburbs\\nAnd pictured I was driving home to you\\n\\n[Chorus]\\nAnd I know we weren't perfect\\nBut I've never felt this way for no one, oh\\nAnd I just can't imagine\\nHow you could be so okay now that I'm gone?\\nI guess you didn't mean what you wrote in that song about me\\n'Cause you said forever, now I drive alone past your street\\ndrivers license\\ndrivers license\\ndrivers license\\n\\n[Bridge]\\nRed lights, stop signs\\nI still see your face in the white cars, front yards\\nCan't drive past the places we used to go to\\n'Cause I still fucking love you, babe (Ooh, ooh-ooh, ooh, ooh-ooh)\\nSidewalks we crossed\\nI still hear your voice in the traffic, we're laughing\\nOver all the noise\\nGod, I'm so blue, know we're through\\nBut I still fucking love you, babe (Ooh, ooh-ooh, ooh, ooh-ooh)\\n\\n[Chorus]\\nI know we weren't perfect\\nBut I've never felt this way for no one\\nAnd I just can't imagine\\nHow you could be so okay now that I'm gone?\\nGuess you didn't mean what you wrote in that song about me\\n'Cause you said forever, now I drive alone past your street\\n\\n[Outro]\\nYeah, you said forever, now I drive alone past your street\\n\\n drivers license Olivia Rodrigo\\n drivers license Olivia Rodrigo\",\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/yWzx3R81KWg/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/yWzx3R81KWg/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/yWzx3R81KWg/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/yWzx3R81KWg/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/yWzx3R81KWg/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'Popular Music',\n",
       "   'tags': ['olivia rodrigo',\n",
       "    'drivers license',\n",
       "    'olivia rodrigo drivers license',\n",
       "    'olivia rodrigo drivers license lyrics',\n",
       "    'drivers license olivia rodrigo',\n",
       "    'drivers license olivia rodrigo lyrics',\n",
       "    'drivers license lyrics',\n",
       "    'drivers license lyrics olivia rodrigo',\n",
       "    'olivia rodrigo lyrics',\n",
       "    'olivia rodrigo lyrics drivers license',\n",
       "    \"olivia rodrigo driver's license\",\n",
       "    \"olivia rodrigo driver's license lyrics\"],\n",
       "   'categoryId': '10',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'localized': {'title': \"drivers license - olivia rodrigo (Lyrics) I got my driver's license last week\",\n",
       "    'description': \"drivers license - Olivia Rodrigo (Lyrics)\\n\\nStream Olivia Rodrigo drivers license : https://open.spotify.com/album/66FPnVL9G4CMKy3wvaGTcr\\n\\nListen Olivia Rodrigo drivers license lyrics : https://music.apple.com/us/album/drivers-license-single/1545051447\\n\\nDownload drivers license :  http://smarturl.it/driverslicensepre\\n\\nOlivia Rodrigo:\\nInstagram: https://instagram.com/olivia.rodrigo\\nTwitter: https://twitter.com/Olivia_Rodrigo\\n\\npicture : unsplash \\n\\ndrivers license lyrics :\\n\\n[Verse 1]\\nI got my driver's license last week\\nJust like we always talked about\\n'Cause you were so\\u2005excited\\u2005for me\\nTo finally\\u2005drive up to your house\\nBut today\\u2005I drove through the suburbs\\nCrying 'cause you weren't around\\n\\n[Verse 2]\\nAnd you're\\u205fprobably\\u205fwith\\u205fthat blonde girl\\nWho\\u205falways made me\\u205fdoubt\\nShe's so much older than me\\nShe's everything I'm insecure about\\nYeah, today I drove through the suburbs\\n'Cause how could I ever love someone else?\\ndrivers license\\ndrivers license\\ndrivers license\\n\\n[Chorus]\\nAnd I know we weren't perfect\\nBut I've never felt this way for no one\\nAnd I just can't imagine\\nHow you could be so okay now that I'm gone?\\nGuess you didn't mean what you wrote in that song about me\\n'Cause you said forever, now I drive alone past your street\\n\\n[Verse 3]\\nAnd all my friends are tired\\nOf hearing how much I miss you, but\\nI kinda feel sorry for them\\n'Cause they'll never know you the way that I do, yeah\\nToday I drove through the suburbs\\nAnd pictured I was driving home to you\\n\\n[Chorus]\\nAnd I know we weren't perfect\\nBut I've never felt this way for no one, oh\\nAnd I just can't imagine\\nHow you could be so okay now that I'm gone?\\nI guess you didn't mean what you wrote in that song about me\\n'Cause you said forever, now I drive alone past your street\\ndrivers license\\ndrivers license\\ndrivers license\\n\\n[Bridge]\\nRed lights, stop signs\\nI still see your face in the white cars, front yards\\nCan't drive past the places we used to go to\\n'Cause I still fucking love you, babe (Ooh, ooh-ooh, ooh, ooh-ooh)\\nSidewalks we crossed\\nI still hear your voice in the traffic, we're laughing\\nOver all the noise\\nGod, I'm so blue, know we're through\\nBut I still fucking love you, babe (Ooh, ooh-ooh, ooh, ooh-ooh)\\n\\n[Chorus]\\nI know we weren't perfect\\nBut I've never felt this way for no one\\nAnd I just can't imagine\\nHow you could be so okay now that I'm gone?\\nGuess you didn't mean what you wrote in that song about me\\n'Cause you said forever, now I drive alone past your street\\n\\n[Outro]\\nYeah, you said forever, now I drive alone past your street\\n\\n drivers license Olivia Rodrigo\\n drivers license Olivia Rodrigo\"},\n",
       "   'defaultAudioLanguage': 'en'},\n",
       "  'contentDetails': {'duration': 'PT4M3S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': False,\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '12139492',\n",
       "   'likeCount': '146002',\n",
       "   'dislikeCount': '2107',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '3998'},\n",
       "  'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Independent_music',\n",
       "    'https://en.wikipedia.org/wiki/Music',\n",
       "    'https://en.wikipedia.org/wiki/Pop_music']}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': 'XYj4-AoFfYj2oE5Miv0S1pQLxBU',\n",
       "  'id': '79qGYKARxAQ',\n",
       "  'snippet': {'publishedAt': '2021-01-19T20:00:03Z',\n",
       "   'channelId': 'UCucot-Zp428OwkyRm2I7v2Q',\n",
       "   'title': \"Driver's License - Olivia Rodrigo (Cover by James Charles)\",\n",
       "   'description': \"HI SISTERS! Today's video is a cover of Driver's License by the insanely talented Olivia Rodrigo. I've been obsessed with singing this song & was really nervous to upload this so I really hope you like my take on it. :)\\n\\n🎶 MUSIC CREDITS\\nOriginal Song by Olivia Rodrigo » https://smarturl.it/driverslicense\\nVocals Produced & Arranged by Anthony Gargiula » http://instagram.com/anthonygargiula\\nMixed & Mastered by Justin Crichfield » https://www.instagram.com/justincrichy\\nPiano Track » https://youtu.be/HvWl7R_oSZ0\\n \\n🎥 PREVIOUS VIDEO » \\n👕 SISTER'S APPAREL » http://sisters-apparel.com\\n🛎 Subscribe to my channel to join the sisterhood & hit the notification bell so you never miss an upload! » http://bit.ly/JamesCharles for new videos!\\n\\n💞 LET'S BE BFFS\\nTEXT ME! » 310-905-8746\\nINSTAGRAM » http://instagram.com/jamescharles\\nFACEBOOK » http://facebook.com/jcharlesbeauty\\nTWITTER » http://twitter.com/jamescharles\\nSNAPCHAT » jamescharless\\nTIKTOK » jamescharles\\n\\n💌 Business Inquiries » business@spinandco.com\\n\\n💸 COUPON CODES 💸\\nUSE CODE JAMES FOR MONEY OFF YOUR ORDER!\\nMORPHE » http://morphebrushes.com\\nLILLY LASHES » https://lillylashes.com/\\nLAURAS BOUTIQUE » http://lauras-boutique.com\\n\\n🔥 MY AMAZING TEAM\\nDIRECTOR OF CONTENT: Louis Gargiula\\nhttp://instagram.com/louisgargiula\\nEDITOR: Ryan Allen\\nhttp://www.youtube.com/user/helloxryan \\nGRAPHICS: Michael Rusakov\\nhttp://instagram.com/michael.ny\",\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/79qGYKARxAQ/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/79qGYKARxAQ/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/79qGYKARxAQ/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/79qGYKARxAQ/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/79qGYKARxAQ/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'James Charles',\n",
       "   'tags': ['james',\n",
       "    'james charles',\n",
       "    'makeup artist',\n",
       "    'mua',\n",
       "    'covergirl',\n",
       "    'coverboy',\n",
       "    'cute',\n",
       "    'easy makeup',\n",
       "    'how-to',\n",
       "    'reviews',\n",
       "    'tutorials',\n",
       "    'funny videos',\n",
       "    'beauty tips',\n",
       "    'hacks',\n",
       "    'beauty',\n",
       "    'sister',\n",
       "    'sisters apparel',\n",
       "    'morphe',\n",
       "    'james charles x morphe',\n",
       "    'makeup routines',\n",
       "    'makeup 2020',\n",
       "    'prom makeup',\n",
       "    'how to apply makeup for beginners',\n",
       "    'tik tok makeup',\n",
       "    'tik tok hacks',\n",
       "    'tik tok beauty hacks',\n",
       "    'james charles singing',\n",
       "    'james charles cimorelli',\n",
       "    'never enough',\n",
       "    \"driver's license\",\n",
       "    'olivia rodrigo',\n",
       "    'cover',\n",
       "    'singing',\n",
       "    'tiktok'],\n",
       "   'categoryId': '24',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'defaultLanguage': 'en',\n",
       "   'localized': {'title': \"Driver's License - Olivia Rodrigo (Cover by James Charles)\",\n",
       "    'description': \"HI SISTERS! Today's video is a cover of Driver's License by the insanely talented Olivia Rodrigo. I've been obsessed with singing this song & was really nervous to upload this so I really hope you like my take on it. :)\\n\\n🎶 MUSIC CREDITS\\nOriginal Song by Olivia Rodrigo » https://smarturl.it/driverslicense\\nVocals Produced & Arranged by Anthony Gargiula » http://instagram.com/anthonygargiula\\nMixed & Mastered by Justin Crichfield » https://www.instagram.com/justincrichy\\nPiano Track » https://youtu.be/HvWl7R_oSZ0\\n \\n🎥 PREVIOUS VIDEO » \\n👕 SISTER'S APPAREL » http://sisters-apparel.com\\n🛎 Subscribe to my channel to join the sisterhood & hit the notification bell so you never miss an upload! » http://bit.ly/JamesCharles for new videos!\\n\\n💞 LET'S BE BFFS\\nTEXT ME! » 310-905-8746\\nINSTAGRAM » http://instagram.com/jamescharles\\nFACEBOOK » http://facebook.com/jcharlesbeauty\\nTWITTER » http://twitter.com/jamescharles\\nSNAPCHAT » jamescharless\\nTIKTOK » jamescharles\\n\\n💌 Business Inquiries » business@spinandco.com\\n\\n💸 COUPON CODES 💸\\nUSE CODE JAMES FOR MONEY OFF YOUR ORDER!\\nMORPHE » http://morphebrushes.com\\nLILLY LASHES » https://lillylashes.com/\\nLAURAS BOUTIQUE » http://lauras-boutique.com\\n\\n🔥 MY AMAZING TEAM\\nDIRECTOR OF CONTENT: Louis Gargiula\\nhttp://instagram.com/louisgargiula\\nEDITOR: Ryan Allen\\nhttp://www.youtube.com/user/helloxryan \\nGRAPHICS: Michael Rusakov\\nhttp://instagram.com/michael.ny\"},\n",
       "   'defaultAudioLanguage': 'en'},\n",
       "  'contentDetails': {'duration': 'PT3M59S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': True,\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '9861740',\n",
       "   'likeCount': '1092141',\n",
       "   'dislikeCount': '32107',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '126336'},\n",
       "  'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Independent_music',\n",
       "    'https://en.wikipedia.org/wiki/Music',\n",
       "    'https://en.wikipedia.org/wiki/Pop_music']}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': 'fEencWFS4rEFMjPD98s7iOVKGKs',\n",
       "  'id': 'b9wbionpQ7E',\n",
       "  'snippet': {'publishedAt': '2021-01-10T13:07:46Z',\n",
       "   'channelId': 'UCvR2R7j218tzejtTsb_X6Rw',\n",
       "   'title': 'drivers license - Olivia Rodrigo (Lyrics) 🎵',\n",
       "   'description': 'Olivia Rodrigo - drivers license (Lyrics) 🎵\\nLyrics video for \"drivers license\" by Olivia Rodrigo.\\n\\nOlivia Rodrigo - drivers license\\n\"And I know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'cause you said forever now I drive alone past your street\"\\n\\nListen to ‘drivers license’ out now: https://smarturl.it/driverslicense\\n\\nFollow Olivia Rodrigo:\\nInstagram: https://instagram.com/olivia.rodrigo\\nTwitter: https://twitter.com/Olivia_Rodrigo\\nFacebook: https://www.facebook.com/OliviaRodrigoOfficial\\n\\n🎤 Lyrics: Drivers License - Olivia Rodrigo\\n\\nI got my driver\\'s license last week\\nJust like we always talked about\\n\\'cause you were so excited for me\\nTo finally drive up to your house\\nBut today I drove through the suburbs\\nCrying \\'cause you weren\\'t around\\n\\nAnd you\\'re probably with that blonde girl\\nWho always made me doubt\\nShe\\'s so much older than me\\nShe\\'s everything I\\'m insecure about\\nYeah, today I drove through the suburbs\\n\\'cause how could I ever love someone else?\\n\\nAnd I know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'cause you said forever now I drive alone past your street\\n\\nAnd all my friends are tired\\nOf hearing how much I miss you but\\nI kinda feel sorry for them\\n\\'cause they\\'ll never know you the way that I do\\nYeah, today I drove through the suburbs\\nAnd pictured I was driving home to you\\n\\nAnd I know we weren\\'t perfect but I\\'ve never felt this way for no one\\nOh, and I just can\\'t imagine how you could be so okay now that I\\'m gone\\nI guess you didn\\'t mean what you wrote in that song about me\\n\\'cause you said forever now I drive alone past your street\\n\\nRed lights\\nStop signs\\nI still see your face\\nIn the white cars\\nFront yards\\nCan\\'t drive past the places\\nWe used to\\nGo to\\n\\'cause I still fucking love you, babe\\n\\nSidewalks\\nWe crossed\\nI still hear your voice\\nIn the traffic\\nWe\\'re laughing\\nOver all the noise\\nGod, I\\'m so blue\\nKnow we\\'re through\\nBut I still fucking love you, babe\\n\\nI know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'cause you said forever now I drive alone past your street\\nYeah, you said forever now I drive alone past your street\\n\\n- - - - - - - - - - -\\nBecome a better singer only in 30 days!\\nhttps://www.30daysinger.com/?a_aid=5d237ec9014c4\\n- - - - - - - - - - -\\n\"If you\\'d like to submit a video to the channel, please visit: https://www.unitedframes.tv/pricing\\nOr contact samuel@unitedframes.tv\"\\n- - - - - - - - - - - -\\n📷 Wallpaper: https://unsplash.com\\n- - - - - - - - - - - -\\n#DriversLicence #OliviaRodrigo #DopeLyrics #7Clouds #UniqueVibes #SyrebralVibes #TazNetwork #MrShades #LeaderOfLyrics #SuperbLyrics #Cassiopeia #ShadowMusic #TikTok #SpotifyViral \\n.........',\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/b9wbionpQ7E/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/b9wbionpQ7E/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/b9wbionpQ7E/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/b9wbionpQ7E/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/b9wbionpQ7E/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'DopeLyrics',\n",
       "   'tags': ['dope lyrics',\n",
       "    'dopelyrics',\n",
       "    'drivers license',\n",
       "    'drivers license lyrics',\n",
       "    'lyrics drivers license',\n",
       "    'olivia rodrigo',\n",
       "    'olivia rodrigo drivers license',\n",
       "    'drivers license olivia rodrigo',\n",
       "    'olivia rodrigo drivers license lyrics',\n",
       "    'olivia rodrigo lyrics',\n",
       "    'lyrics olivia rodrigo',\n",
       "    'drivers license lyrics olivia rodrigo',\n",
       "    'lyrics drivers license olivia rodrigo',\n",
       "    'drivers license olivia rodrigo lyrics',\n",
       "    'lyrics',\n",
       "    'video',\n",
       "    'lyrics video',\n",
       "    'pop',\n",
       "    'pop music',\n",
       "    'pop lyrics',\n",
       "    'tik tok',\n",
       "    'drivers license tiktok',\n",
       "    'song',\n",
       "    'with lyrics'],\n",
       "   'categoryId': '10',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'localized': {'title': 'drivers license - Olivia Rodrigo (Lyrics) 🎵',\n",
       "    'description': 'Olivia Rodrigo - drivers license (Lyrics) 🎵\\nLyrics video for \"drivers license\" by Olivia Rodrigo.\\n\\nOlivia Rodrigo - drivers license\\n\"And I know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'cause you said forever now I drive alone past your street\"\\n\\nListen to ‘drivers license’ out now: https://smarturl.it/driverslicense\\n\\nFollow Olivia Rodrigo:\\nInstagram: https://instagram.com/olivia.rodrigo\\nTwitter: https://twitter.com/Olivia_Rodrigo\\nFacebook: https://www.facebook.com/OliviaRodrigoOfficial\\n\\n🎤 Lyrics: Drivers License - Olivia Rodrigo\\n\\nI got my driver\\'s license last week\\nJust like we always talked about\\n\\'cause you were so excited for me\\nTo finally drive up to your house\\nBut today I drove through the suburbs\\nCrying \\'cause you weren\\'t around\\n\\nAnd you\\'re probably with that blonde girl\\nWho always made me doubt\\nShe\\'s so much older than me\\nShe\\'s everything I\\'m insecure about\\nYeah, today I drove through the suburbs\\n\\'cause how could I ever love someone else?\\n\\nAnd I know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'cause you said forever now I drive alone past your street\\n\\nAnd all my friends are tired\\nOf hearing how much I miss you but\\nI kinda feel sorry for them\\n\\'cause they\\'ll never know you the way that I do\\nYeah, today I drove through the suburbs\\nAnd pictured I was driving home to you\\n\\nAnd I know we weren\\'t perfect but I\\'ve never felt this way for no one\\nOh, and I just can\\'t imagine how you could be so okay now that I\\'m gone\\nI guess you didn\\'t mean what you wrote in that song about me\\n\\'cause you said forever now I drive alone past your street\\n\\nRed lights\\nStop signs\\nI still see your face\\nIn the white cars\\nFront yards\\nCan\\'t drive past the places\\nWe used to\\nGo to\\n\\'cause I still fucking love you, babe\\n\\nSidewalks\\nWe crossed\\nI still hear your voice\\nIn the traffic\\nWe\\'re laughing\\nOver all the noise\\nGod, I\\'m so blue\\nKnow we\\'re through\\nBut I still fucking love you, babe\\n\\nI know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'cause you said forever now I drive alone past your street\\nYeah, you said forever now I drive alone past your street\\n\\n- - - - - - - - - - -\\nBecome a better singer only in 30 days!\\nhttps://www.30daysinger.com/?a_aid=5d237ec9014c4\\n- - - - - - - - - - -\\n\"If you\\'d like to submit a video to the channel, please visit: https://www.unitedframes.tv/pricing\\nOr contact samuel@unitedframes.tv\"\\n- - - - - - - - - - - -\\n📷 Wallpaper: https://unsplash.com\\n- - - - - - - - - - - -\\n#DriversLicence #OliviaRodrigo #DopeLyrics #7Clouds #UniqueVibes #SyrebralVibes #TazNetwork #MrShades #LeaderOfLyrics #SuperbLyrics #Cassiopeia #ShadowMusic #TikTok #SpotifyViral \\n.........'},\n",
       "   'defaultAudioLanguage': 'en'},\n",
       "  'contentDetails': {'duration': 'PT4M38S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': False,\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '8127166',\n",
       "   'likeCount': '95070',\n",
       "   'dislikeCount': '1167',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '2382'}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': 'IBXgU28uTf2Gyy-Olyz_pSDPsx4',\n",
       "  'id': 'DoU8wq-nwFY',\n",
       "  'snippet': {'publishedAt': '2021-01-09T19:29:27Z',\n",
       "   'channelId': 'UCFwS8sLuE4Du7VA_DDnhmeg',\n",
       "   'title': 'Olivia Rodrigo - drivers license // Español',\n",
       "   'description': 'Olivia Rodrigo - drivers license (Traducida/Subtitulada al Español)\\ndrivers license - Olivia Rodrigo (Subtitulada/Traducida al Español)\\nOlivia Rodrigo - drivers license (Subtitulada/Traducida al Español\\n\\n\\nAsfkjdsngfdkjfgkdfd 💛🍐\\nAyer Olivia estrenó su single debut, y dejando de lado toda la polemica que hay detrás, es un completo temazo y merece más apreciación, disfruten el vídeo ♥\\n#OliviaRodrigo #driverslicense\\n\\nEn \"drivers licence\", Olivia habla acerca de tener un corazón roto, y tratar de superar a una persona por la que tuviste fuertes sentimientos en el pasado, pero por más que lo intentas no puedes evitar recordarla.\\n\\n// Lyrics [Olivia Rodrigo - drivers license] //\\n[Verse 1]\\nI got my driver\\'s license last week\\nJust like we always talked about\\n\\'Cause you were so\\u2005excited\\u2005for me\\nTo finally\\u2005drive up to your house\\nBut today\\u2005I drove through the suburbs\\nCrying \\'cause you weren\\'t around\\n\\n[Verse 2]\\nAnd you\\'re\\u205fprobably\\u205fwith\\u205fthat blonde girl\\nWho\\u205falways made me\\u205fdoubt\\nShe\\'s so much older than me\\nShe\\'s everything I\\'m insecure about\\nYeah, today I drove through the suburbs\\n\\'Cause how could I ever love someone else?\\n\\n[Chorus]\\nAnd I know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'Cause you said forever, now I drive alone past your street\\n\\n[Verse 3]\\nAnd all my friends are tired\\nOf hearing how much I miss you, but\\nI kinda feel sorry for them\\n\\'Cause they\\'ll never know you the way that I do, yeah\\nToday I drove through the suburbs\\nAnd pictured I was driving home to you\\n\\n[Chorus]\\nAnd I know we weren\\'t perfect but I\\'ve never felt this way for no one, oh-oh\\nAnd I just can\\'t imagine how you could be so okay, now that I\\'m gone\\nI guess you didn\\'t mean what you wrote in that song about me\\n\\'Cause you said forever, now I drive alone past your street\\n\\n[Bridge]\\nRed lights, stop signs\\nI still see your face in the white cars, front yards\\nCan\\'t drive past the places we used to go to\\n\\'Cause I still fuckin\\' love you, babe (Ooh, ooh-ooh, ooh-ooh, ooh, ooh-ooh)\\nSidewalks we crossed\\nI still hear your voice in the traffic, we\\'re laughing\\nOver all the noise\\nGod, I\\'m so blue, know we\\'re through\\nBut I still fuckin\\' love you, babe (Ooh, ooh-ooh, ooh-ooh, ooh, ooh-ooh)\\n\\n[Chorus]\\nI know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay, now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'Cause you said forever, now I drive alone past your street\\nYeah, you said forever, now I drive alone past your street\\n\\nEspero les haya encantado el vídeo, gracias a todos por ver, recuerden tomar awa y no aferrarse a amores imposibles, los quiero ♥\\n\\n▬ Escucha \"drivers license\":\\nhttps://smarturl.it/driverslicense\\n\\n▬ Sigue a Olivia Rodrigo:\\nInstagram: https://instagram.com/olivia.rodrigo\\nTwitter: https://twitter.com/Olivia_Rodrigo\\nFacebook: https://www.facebook.com/OliviaRodrig...\\n\\n// aquí puedes seguirme en todas mis redes //\\n♡ instagram: https://instagram.com/mr_iperol\\n♡ canal secundario: https://youtube.com/iPerolII\\n♡ playlist de spotify: https://open.spotify.com/playlist/1z7cFiBgBPcedni6i4ITv8?si=pCJRjeEATOaoRol5mP-MQg\\n♡ facebook: https://www.facebook.com/iPerol/\\n♡ twitter: https://twitter.com/mr_iperol\\n♡ donaciones: https://www.paypal.me/iPerol\\n[BUSINESS/PROMOS: iperol20@hotmail.com]\\n\\n► Este vídeo es con fines meramente de diversión y entretenimiento, los beneficios van hacia la disquera del artista.\\n→ All the copyright goes to Olivia Rodrigo.\\n\\n\\n[tags]\\nolivia rodrigo, drivers license, olivia rodrigo drivers license, español, sub español, sub, traducida, subtitulada, traducción, subtitulos, letra, lyrics, al español, iperol, olivia rodrigo español, drivers license español, traducciones, translations, video, all i want, sabrina carpenter, joshua, olivia rodrigo debut album, olivia rodrigo album, olivia rodrigo drivers license lyrics sub español, drivers license sub español',\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/DoU8wq-nwFY/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/DoU8wq-nwFY/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/DoU8wq-nwFY/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/DoU8wq-nwFY/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/DoU8wq-nwFY/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'iPerol',\n",
       "   'tags': ['olivia rodrigo',\n",
       "    'drivers license',\n",
       "    'olivia rodrigo drivers license',\n",
       "    'español',\n",
       "    'sub español',\n",
       "    'sub',\n",
       "    'traducida',\n",
       "    'subtitulada',\n",
       "    'traducción',\n",
       "    'subtitulos',\n",
       "    'letra',\n",
       "    'lyrics',\n",
       "    'al español',\n",
       "    'iperol',\n",
       "    'olivia rodrigo español',\n",
       "    'drivers license español',\n",
       "    'traducciones',\n",
       "    'translations',\n",
       "    'video',\n",
       "    'all i want',\n",
       "    'sabrina carpenter',\n",
       "    'joshua',\n",
       "    'olivia rodrigo debut album',\n",
       "    'olivia rodrigo album',\n",
       "    'olivia rodrigo drivers license lyrics sub español',\n",
       "    'drivers license sub español',\n",
       "    'drivers license olivia rodrigo'],\n",
       "   'categoryId': '10',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'localized': {'title': 'Olivia Rodrigo - drivers license // Español',\n",
       "    'description': 'Olivia Rodrigo - drivers license (Traducida/Subtitulada al Español)\\ndrivers license - Olivia Rodrigo (Subtitulada/Traducida al Español)\\nOlivia Rodrigo - drivers license (Subtitulada/Traducida al Español\\n\\n\\nAsfkjdsngfdkjfgkdfd 💛🍐\\nAyer Olivia estrenó su single debut, y dejando de lado toda la polemica que hay detrás, es un completo temazo y merece más apreciación, disfruten el vídeo ♥\\n#OliviaRodrigo #driverslicense\\n\\nEn \"drivers licence\", Olivia habla acerca de tener un corazón roto, y tratar de superar a una persona por la que tuviste fuertes sentimientos en el pasado, pero por más que lo intentas no puedes evitar recordarla.\\n\\n// Lyrics [Olivia Rodrigo - drivers license] //\\n[Verse 1]\\nI got my driver\\'s license last week\\nJust like we always talked about\\n\\'Cause you were so\\u2005excited\\u2005for me\\nTo finally\\u2005drive up to your house\\nBut today\\u2005I drove through the suburbs\\nCrying \\'cause you weren\\'t around\\n\\n[Verse 2]\\nAnd you\\'re\\u205fprobably\\u205fwith\\u205fthat blonde girl\\nWho\\u205falways made me\\u205fdoubt\\nShe\\'s so much older than me\\nShe\\'s everything I\\'m insecure about\\nYeah, today I drove through the suburbs\\n\\'Cause how could I ever love someone else?\\n\\n[Chorus]\\nAnd I know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'Cause you said forever, now I drive alone past your street\\n\\n[Verse 3]\\nAnd all my friends are tired\\nOf hearing how much I miss you, but\\nI kinda feel sorry for them\\n\\'Cause they\\'ll never know you the way that I do, yeah\\nToday I drove through the suburbs\\nAnd pictured I was driving home to you\\n\\n[Chorus]\\nAnd I know we weren\\'t perfect but I\\'ve never felt this way for no one, oh-oh\\nAnd I just can\\'t imagine how you could be so okay, now that I\\'m gone\\nI guess you didn\\'t mean what you wrote in that song about me\\n\\'Cause you said forever, now I drive alone past your street\\n\\n[Bridge]\\nRed lights, stop signs\\nI still see your face in the white cars, front yards\\nCan\\'t drive past the places we used to go to\\n\\'Cause I still fuckin\\' love you, babe (Ooh, ooh-ooh, ooh-ooh, ooh, ooh-ooh)\\nSidewalks we crossed\\nI still hear your voice in the traffic, we\\'re laughing\\nOver all the noise\\nGod, I\\'m so blue, know we\\'re through\\nBut I still fuckin\\' love you, babe (Ooh, ooh-ooh, ooh-ooh, ooh, ooh-ooh)\\n\\n[Chorus]\\nI know we weren\\'t perfect but I\\'ve never felt this way for no one\\nAnd I just can\\'t imagine how you could be so okay, now that I\\'m gone\\nGuess you didn\\'t mean what you wrote in that song about me\\n\\'Cause you said forever, now I drive alone past your street\\nYeah, you said forever, now I drive alone past your street\\n\\nEspero les haya encantado el vídeo, gracias a todos por ver, recuerden tomar awa y no aferrarse a amores imposibles, los quiero ♥\\n\\n▬ Escucha \"drivers license\":\\nhttps://smarturl.it/driverslicense\\n\\n▬ Sigue a Olivia Rodrigo:\\nInstagram: https://instagram.com/olivia.rodrigo\\nTwitter: https://twitter.com/Olivia_Rodrigo\\nFacebook: https://www.facebook.com/OliviaRodrig...\\n\\n// aquí puedes seguirme en todas mis redes //\\n♡ instagram: https://instagram.com/mr_iperol\\n♡ canal secundario: https://youtube.com/iPerolII\\n♡ playlist de spotify: https://open.spotify.com/playlist/1z7cFiBgBPcedni6i4ITv8?si=pCJRjeEATOaoRol5mP-MQg\\n♡ facebook: https://www.facebook.com/iPerol/\\n♡ twitter: https://twitter.com/mr_iperol\\n♡ donaciones: https://www.paypal.me/iPerol\\n[BUSINESS/PROMOS: iperol20@hotmail.com]\\n\\n► Este vídeo es con fines meramente de diversión y entretenimiento, los beneficios van hacia la disquera del artista.\\n→ All the copyright goes to Olivia Rodrigo.\\n\\n\\n[tags]\\nolivia rodrigo, drivers license, olivia rodrigo drivers license, español, sub español, sub, traducida, subtitulada, traducción, subtitulos, letra, lyrics, al español, iperol, olivia rodrigo español, drivers license español, traducciones, translations, video, all i want, sabrina carpenter, joshua, olivia rodrigo debut album, olivia rodrigo album, olivia rodrigo drivers license lyrics sub español, drivers license sub español'}},\n",
       "  'contentDetails': {'duration': 'PT4M34S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': False,\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '7472890',\n",
       "   'likeCount': '280310',\n",
       "   'dislikeCount': '1599',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '5392'},\n",
       "  'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Independent_music',\n",
       "    'https://en.wikipedia.org/wiki/Music',\n",
       "    'https://en.wikipedia.org/wiki/Pop_music']}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': 'c-TL_mx7u97a18gixy6U8USZcG0',\n",
       "  'id': 'aEoqpl9t94g',\n",
       "  'snippet': {'publishedAt': '2021-01-07T10:03:25Z',\n",
       "   'channelId': 'UCE5XNpliPM-SmyFEp61tL_g',\n",
       "   'title': 'drivers license',\n",
       "   'description': 'Provided to YouTube by Universal Music Group\\n\\ndrivers license · Olivia Rodrigo\\n\\ndrivers license\\n\\n℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records\\n\\nReleased on: 2021-01-08\\n\\nProducer, Studio  Personnel, Recording  Engineer: Daniel Nigro\\nStudio  Personnel, Mixer: Mitch McCarthy\\nStudio  Personnel, Mastering  Engineer: Randy Merrill\\nComposer  Lyricist: Olivia Rodrigo\\nComposer  Lyricist: Daniel Nigro\\n\\nAuto-generated by YouTube.',\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/aEoqpl9t94g/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/aEoqpl9t94g/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/aEoqpl9t94g/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/aEoqpl9t94g/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/aEoqpl9t94g/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'Olivia Rodrigo - Topic',\n",
       "   'tags': ['Olivia Rodrigo', 'オリビアロドリゴ', 'オリヴィア・ロドリゴ', 'drivers license'],\n",
       "   'categoryId': '10',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'localized': {'title': 'drivers license',\n",
       "    'description': 'Provided to YouTube by Universal Music Group\\n\\ndrivers license · Olivia Rodrigo\\n\\ndrivers license\\n\\n℗ 2021 Olivia Rodrigo, under exclusive license to Geffen Records\\n\\nReleased on: 2021-01-08\\n\\nProducer, Studio  Personnel, Recording  Engineer: Daniel Nigro\\nStudio  Personnel, Mixer: Mitch McCarthy\\nStudio  Personnel, Mastering  Engineer: Randy Merrill\\nComposer  Lyricist: Olivia Rodrigo\\nComposer  Lyricist: Daniel Nigro\\n\\nAuto-generated by YouTube.'}},\n",
       "  'contentDetails': {'duration': 'PT4M3S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': True,\n",
       "   'regionRestriction': {'allowed': ['AE',\n",
       "     'AR',\n",
       "     'AS',\n",
       "     'AT',\n",
       "     'AU',\n",
       "     'AW',\n",
       "     'BA',\n",
       "     'BE',\n",
       "     'BG',\n",
       "     'BH',\n",
       "     'BM',\n",
       "     'BO',\n",
       "     'BR',\n",
       "     'BY',\n",
       "     'CA',\n",
       "     'CH',\n",
       "     'CL',\n",
       "     'CO',\n",
       "     'CR',\n",
       "     'CY',\n",
       "     'CZ',\n",
       "     'DE',\n",
       "     'DK',\n",
       "     'DO',\n",
       "     'DZ',\n",
       "     'EC',\n",
       "     'EE',\n",
       "     'EG',\n",
       "     'ES',\n",
       "     'FI',\n",
       "     'FR',\n",
       "     'GB',\n",
       "     'GF',\n",
       "     'GP',\n",
       "     'GR',\n",
       "     'GT',\n",
       "     'GU',\n",
       "     'HK',\n",
       "     'HN',\n",
       "     'HR',\n",
       "     'HU',\n",
       "     'ID',\n",
       "     'IE',\n",
       "     'IL',\n",
       "     'IN',\n",
       "     'IS',\n",
       "     'IT',\n",
       "     'JO',\n",
       "     'JP',\n",
       "     'KE',\n",
       "     'KR',\n",
       "     'KW',\n",
       "     'KY',\n",
       "     'LB',\n",
       "     'LI',\n",
       "     'LT',\n",
       "     'LU',\n",
       "     'LV',\n",
       "     'MA',\n",
       "     'MK',\n",
       "     'MP',\n",
       "     'MQ',\n",
       "     'MT',\n",
       "     'MX',\n",
       "     'MY',\n",
       "     'NC',\n",
       "     'NG',\n",
       "     'NI',\n",
       "     'NL',\n",
       "     'NO',\n",
       "     'NZ',\n",
       "     'OM',\n",
       "     'PA',\n",
       "     'PE',\n",
       "     'PF',\n",
       "     'PG',\n",
       "     'PH',\n",
       "     'PL',\n",
       "     'PR',\n",
       "     'PT',\n",
       "     'PY',\n",
       "     'QA',\n",
       "     'RO',\n",
       "     'RS',\n",
       "     'RU',\n",
       "     'SA',\n",
       "     'SE',\n",
       "     'SG',\n",
       "     'SI',\n",
       "     'SK',\n",
       "     'SV',\n",
       "     'TC',\n",
       "     'TH',\n",
       "     'TR',\n",
       "     'TW',\n",
       "     'UA',\n",
       "     'US',\n",
       "     'UY',\n",
       "     'VE',\n",
       "     'VI',\n",
       "     'VN',\n",
       "     'YT',\n",
       "     'ZA']},\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '6616807',\n",
       "   'likeCount': '107465',\n",
       "   'dislikeCount': '2018',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '28'}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': 'h5iBfOsOsy4ZdjYa6JiOZUNOLtw',\n",
       "  'id': 'CPBet46Ero8',\n",
       "  'snippet': {'publishedAt': '2021-01-08T11:06:45Z',\n",
       "   'channelId': 'UCy9zjfGD_LGnfaz27K5pvnw',\n",
       "   'title': 'Olivia Rodrigo - drivers license (Lyrics)',\n",
       "   'description': 'Olivia Rodrigo - drivers license (Lyrics)\\nLyrics video for \"drivers license\" by Olivia Rodrigo\\n\\nNew single ‘drivers license’ out January 8th. Presave now: http://smarturl.it/driverslicensepre\\n\\nFollow Olivia Rodrigo:\\nInstagram: https://instagram.com/olivia.rodrigo\\nTwitter: https://twitter.com/Olivia_Rodrigo\\nFacebook: https://www.facebook.com/OliviaRodrig...\\n\\nLyrics:\\n\\nI got my driver’s license last week\\nJust like we always talked about\\n‘Cause you were so excited for me \\nTo finally drive up to your house\\n\\nBut today I drove through the suburbs\\nCrying ‘cause you weren’t around \\n\\nAnd you’re probably with that blonde girl\\nWho always made me doubt \\nShe’s so much older than me \\nShe’s everything I’m insecure about \\n\\nYeah, today I drove through the suburbs, ‘cause how could I ever love someone else\\n\\nAnd I know we weren’t perfect but I’ve never felt this way for no one \\nAnd I just can’t imagine how you could be so okay now that I’m gone \\nGuess you didn’t mean what you wrote in that song about me \\n‘Cause you said forever now I drove alone past your street\\n\\nAnd all my friends are tired\\nOf hearing how much I miss you but\\nI kinda feel sorry for them\\n‘Cause they’ll never know you the way that I do \\n\\nYeah, today I drove through the suburbs, \\nAnd pictured I was driving home to you \\n\\nAnd I know we weren’t perfect but I’ve never felt this way for no one \\nAnd I just can’t imagine how you could be so okay now that I’m gone \\nI guess you didn’t mean what you wrote in that song about me \\n‘Cause you said forever now I drive alone past your street\\n\\nRed lights, stop signs \\nI still see your face \\nIn the white cars, front yards\\nCan’t drive past the places \\nWe used to go to\\n‘Cause I still fucking love you, babe \\nSidewalks we crossed\\nI still hear your voice  \\nIn the traffic, we’re laughing over all the noise \\nGod I’m so blue, know we’re through \\nBut I still fucking love you, babe \\n\\nI know we weren’t perfect but I’ve never felt this way for no one \\nAnd I just can’t imagine how you could be so okay now that I’m gone \\nGuess you didn’t mean what you wrote in that song about me \\n‘Cause you said forever now I drive alone past your street\\nYeah, you said forever now I drive alone past your street\\n\\nConnect with us :\\nFacebook: https://bit.ly/2SSyXJt\\nSpotify: https://spoti.fi/2A0BUks\\nTwitter: https://bit.ly/3fk21Ty\\nInstagram: https://bit.ly/2ytd6RF\\nLet\\'s Be Friends on Facebook // https://bit.ly/2YyGFvF\\n\\nMy Spotify Playlist 🎵🎵 https://open.spotify.com/playlist/3RR...\\n\\n\"If you\\'d like to submit a video to the channel, please visit: https://www.unitedframes.tv/superb\\nOr contact samuel@unitedframes.tv\"\\n\\n#driverslicense #oliviarodrigo',\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/CPBet46Ero8/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/CPBet46Ero8/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/CPBet46Ero8/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/CPBet46Ero8/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/CPBet46Ero8/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'SuperbLyrics',\n",
       "   'tags': ['olivia rodrigo', 'drivers license', 'lyrics', 'lyric video'],\n",
       "   'categoryId': '10',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'localized': {'title': 'Olivia Rodrigo - drivers license (Lyrics)',\n",
       "    'description': 'Olivia Rodrigo - drivers license (Lyrics)\\nLyrics video for \"drivers license\" by Olivia Rodrigo\\n\\nNew single ‘drivers license’ out January 8th. Presave now: http://smarturl.it/driverslicensepre\\n\\nFollow Olivia Rodrigo:\\nInstagram: https://instagram.com/olivia.rodrigo\\nTwitter: https://twitter.com/Olivia_Rodrigo\\nFacebook: https://www.facebook.com/OliviaRodrig...\\n\\nLyrics:\\n\\nI got my driver’s license last week\\nJust like we always talked about\\n‘Cause you were so excited for me \\nTo finally drive up to your house\\n\\nBut today I drove through the suburbs\\nCrying ‘cause you weren’t around \\n\\nAnd you’re probably with that blonde girl\\nWho always made me doubt \\nShe’s so much older than me \\nShe’s everything I’m insecure about \\n\\nYeah, today I drove through the suburbs, ‘cause how could I ever love someone else\\n\\nAnd I know we weren’t perfect but I’ve never felt this way for no one \\nAnd I just can’t imagine how you could be so okay now that I’m gone \\nGuess you didn’t mean what you wrote in that song about me \\n‘Cause you said forever now I drove alone past your street\\n\\nAnd all my friends are tired\\nOf hearing how much I miss you but\\nI kinda feel sorry for them\\n‘Cause they’ll never know you the way that I do \\n\\nYeah, today I drove through the suburbs, \\nAnd pictured I was driving home to you \\n\\nAnd I know we weren’t perfect but I’ve never felt this way for no one \\nAnd I just can’t imagine how you could be so okay now that I’m gone \\nI guess you didn’t mean what you wrote in that song about me \\n‘Cause you said forever now I drive alone past your street\\n\\nRed lights, stop signs \\nI still see your face \\nIn the white cars, front yards\\nCan’t drive past the places \\nWe used to go to\\n‘Cause I still fucking love you, babe \\nSidewalks we crossed\\nI still hear your voice  \\nIn the traffic, we’re laughing over all the noise \\nGod I’m so blue, know we’re through \\nBut I still fucking love you, babe \\n\\nI know we weren’t perfect but I’ve never felt this way for no one \\nAnd I just can’t imagine how you could be so okay now that I’m gone \\nGuess you didn’t mean what you wrote in that song about me \\n‘Cause you said forever now I drive alone past your street\\nYeah, you said forever now I drive alone past your street\\n\\nConnect with us :\\nFacebook: https://bit.ly/2SSyXJt\\nSpotify: https://spoti.fi/2A0BUks\\nTwitter: https://bit.ly/3fk21Ty\\nInstagram: https://bit.ly/2ytd6RF\\nLet\\'s Be Friends on Facebook // https://bit.ly/2YyGFvF\\n\\nMy Spotify Playlist 🎵🎵 https://open.spotify.com/playlist/3RR...\\n\\n\"If you\\'d like to submit a video to the channel, please visit: https://www.unitedframes.tv/superb\\nOr contact samuel@unitedframes.tv\"\\n\\n#driverslicense #oliviarodrigo'},\n",
       "   'defaultAudioLanguage': 'en'},\n",
       "  'contentDetails': {'duration': 'PT4M36S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': False,\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '5061994',\n",
       "   'likeCount': '78358',\n",
       "   'dislikeCount': '757',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '1662'},\n",
       "  'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Independent_music',\n",
       "    'https://en.wikipedia.org/wiki/Music',\n",
       "    'https://en.wikipedia.org/wiki/Pop_music']}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': 'yJgSlFTunPAIosji727iwg6DMDI',\n",
       "  'id': 'jvLy1xNeqjU',\n",
       "  'snippet': {'publishedAt': '2021-02-05T05:30:09Z',\n",
       "   'channelId': 'UC8-Th83bH_thdKZDJCrn88g',\n",
       "   'title': 'Olivia Rodrigo: drivers license (TV Debut)',\n",
       "   'description': 'Olivia Rodrigo performs \"drivers license\" for The Tonight Show.\\n\\nThe Tonight Show Starring Jimmy Fallon.  Stream now on Peacock: https://bit.ly/3gZJaNy\\n\\nSubscribe NOW to The Tonight Show Starring Jimmy Fallon: http://bit.ly/1nwT1aN\\n \\nWatch The Tonight Show Starring Jimmy Fallon Weeknights 11:35/10:35c\\n \\nGet more The Tonight Show Starring Jimmy Fallon: https://www.nbc.com/the-tonight-show\\n \\nJIMMY FALLON ON SOCIAL\\nFollow Jimmy: http://Twitter.com/JimmyFallon\\nLike Jimmy: https://Facebook.com/JimmyFallon\\nFollow Jimmy: https://www.instagram.com/jimmyfallon/\\n \\nTHE TONIGHT SHOW ON SOCIAL\\nFollow The Tonight Show: http://Twitter.com/FallonTonight\\nLike The Tonight Show: https://Facebook.com/FallonTonight\\nFollow The Tonight Show: https://www.instagram.com/fallontonight/\\nTonight Show Tumblr: http://fallontonight.tumblr.com\\n \\nThe Tonight Show Starring Jimmy Fallon features hilarious highlights from the show, including comedy sketches, music parodies, celebrity interviews, ridiculous games, and, of course, Jimmy\\'s Thank You Notes and hashtags! You\\'ll also find behind the scenes videos and other great web exclusives.\\n \\nGET MORE NBC\\nNBC YouTube: http://bit.ly/1dM1qBH\\nLike NBC: http://Facebook.com/NBC\\nFollow NBC: http://Twitter.com/NBC\\nNBC Instagram: http://instagram.com/nbc\\nNBC Tumblr: http://nbctv.tumblr.com/\\n \\nOlivia Rodrigo: drivers license (TV Debut)\\nhttp://www.youtube.com/fallontonight\\n\\n#FallonTonight\\n#OliviaRodrigo\\n#JimmyFallon',\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/jvLy1xNeqjU/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/jvLy1xNeqjU/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/jvLy1xNeqjU/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/jvLy1xNeqjU/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/jvLy1xNeqjU/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'The Tonight Show Starring Jimmy Fallon',\n",
       "   'tags': ['Tonight Show',\n",
       "    'Jimmy Fallon',\n",
       "    'olivia rodrigo',\n",
       "    'music performance',\n",
       "    'drivers license',\n",
       "    'NBC',\n",
       "    'Television',\n",
       "    'Funny',\n",
       "    'Talk Show',\n",
       "    'comedic',\n",
       "    'humor',\n",
       "    'snl',\n",
       "    'tonight',\n",
       "    'show',\n",
       "    'jokes',\n",
       "    'funny video',\n",
       "    'interview',\n",
       "    'variety',\n",
       "    'comedy sketches',\n",
       "    'talent',\n",
       "    'celebrities',\n",
       "    'video',\n",
       "    'clip',\n",
       "    'highlight',\n",
       "    'All I Want',\n",
       "    'High School Musical',\n",
       "    'High School Musical The Series',\n",
       "    'High School Musical The Musical The Series',\n",
       "    'Wondering',\n",
       "    'Just For A Moment',\n",
       "    'Start of Something New',\n",
       "    'drivers license live',\n",
       "    'Olivia Rodrigo live',\n",
       "    'tiktok',\n",
       "    'tik tok',\n",
       "    'tiktoks',\n",
       "    'tik toks'],\n",
       "   'categoryId': '23',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'localized': {'title': 'Olivia Rodrigo: drivers license (TV Debut)',\n",
       "    'description': 'Olivia Rodrigo performs \"drivers license\" for The Tonight Show.\\n\\nThe Tonight Show Starring Jimmy Fallon.  Stream now on Peacock: https://bit.ly/3gZJaNy\\n\\nSubscribe NOW to The Tonight Show Starring Jimmy Fallon: http://bit.ly/1nwT1aN\\n \\nWatch The Tonight Show Starring Jimmy Fallon Weeknights 11:35/10:35c\\n \\nGet more The Tonight Show Starring Jimmy Fallon: https://www.nbc.com/the-tonight-show\\n \\nJIMMY FALLON ON SOCIAL\\nFollow Jimmy: http://Twitter.com/JimmyFallon\\nLike Jimmy: https://Facebook.com/JimmyFallon\\nFollow Jimmy: https://www.instagram.com/jimmyfallon/\\n \\nTHE TONIGHT SHOW ON SOCIAL\\nFollow The Tonight Show: http://Twitter.com/FallonTonight\\nLike The Tonight Show: https://Facebook.com/FallonTonight\\nFollow The Tonight Show: https://www.instagram.com/fallontonight/\\nTonight Show Tumblr: http://fallontonight.tumblr.com\\n \\nThe Tonight Show Starring Jimmy Fallon features hilarious highlights from the show, including comedy sketches, music parodies, celebrity interviews, ridiculous games, and, of course, Jimmy\\'s Thank You Notes and hashtags! You\\'ll also find behind the scenes videos and other great web exclusives.\\n \\nGET MORE NBC\\nNBC YouTube: http://bit.ly/1dM1qBH\\nLike NBC: http://Facebook.com/NBC\\nFollow NBC: http://Twitter.com/NBC\\nNBC Instagram: http://instagram.com/nbc\\nNBC Tumblr: http://nbctv.tumblr.com/\\n \\nOlivia Rodrigo: drivers license (TV Debut)\\nhttp://www.youtube.com/fallontonight\\n\\n#FallonTonight\\n#OliviaRodrigo\\n#JimmyFallon'},\n",
       "   'defaultAudioLanguage': 'en'},\n",
       "  'contentDetails': {'duration': 'PT4M24S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'true',\n",
       "   'licensedContent': True,\n",
       "   'regionRestriction': {'blocked': ['AO',\n",
       "     'BF',\n",
       "     'BI',\n",
       "     'BJ',\n",
       "     'BW',\n",
       "     'CD',\n",
       "     'CF',\n",
       "     'CG',\n",
       "     'CI',\n",
       "     'CM',\n",
       "     'CV',\n",
       "     'DJ',\n",
       "     'DZ',\n",
       "     'EG',\n",
       "     'ER',\n",
       "     'ET',\n",
       "     'GA',\n",
       "     'GH',\n",
       "     'GM',\n",
       "     'GN',\n",
       "     'GQ',\n",
       "     'GW',\n",
       "     'KE',\n",
       "     'KM',\n",
       "     'LR',\n",
       "     'LS',\n",
       "     'MA',\n",
       "     'MG',\n",
       "     'ML',\n",
       "     'MR',\n",
       "     'MU',\n",
       "     'MW',\n",
       "     'MZ',\n",
       "     'NA',\n",
       "     'NE',\n",
       "     'NG',\n",
       "     'RW',\n",
       "     'SC',\n",
       "     'SD',\n",
       "     'SL',\n",
       "     'SN',\n",
       "     'SO',\n",
       "     'SS',\n",
       "     'ST',\n",
       "     'SZ',\n",
       "     'TD',\n",
       "     'TG',\n",
       "     'TN',\n",
       "     'TZ',\n",
       "     'UG',\n",
       "     'ZA',\n",
       "     'ZM',\n",
       "     'ZW']},\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '4993583',\n",
       "   'likeCount': '398534',\n",
       "   'dislikeCount': '3609',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '12373'},\n",
       "  'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Independent_music',\n",
       "    'https://en.wikipedia.org/wiki/Music',\n",
       "    'https://en.wikipedia.org/wiki/Pop_music']}},\n",
       " {'kind': 'youtube#video',\n",
       "  'etag': 'r2jppN5lFDvKg7ct5sed446ZmfA',\n",
       "  'id': 'C3y6jGCXiUA',\n",
       "  'snippet': {'publishedAt': '2021-01-18T19:08:33Z',\n",
       "   'channelId': 'UCwTRjvjVge51X-ILJ4i22ew',\n",
       "   'title': 'Olivia Rodrigo - drivers license (Karaoke Version)',\n",
       "   'description': '🎤 Love Karaoke? Our brand new app is here! Download now for FREE https://singking.link/yt-desc\\n\\nKaraoke sing along of “drivers license” by Olivia Rodrigo from Sing King Karaoke\\nStay tuned for brand new karaoke videos by subscribing here: https://link.singking.com/YouTube\\n🔔 Don’t forget to hit that notification bell! 🔔\\n\\nYou can also find us on:\\n▪️ Facebook - https://link.singking.com/Facebook\\n▪️ Instagram -  https://link.singking.com/Instagram\\n▪️ Twitter - https://link.singking.com/Twitter\\n\\nJoin our mailing list to stay in the loop for all things Sing King: https://link.singking.com/Signup\\n\\nWatch more Sing King Karaoke:\\n▪️ Sing King Weekly Top 50: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm9y57_K3vBvkZiaGjIXD_x5&playnext=1 \\n▪️ Disney: https://youtube.com/playlist?list=PL8D4Iby0Bmm9DM_LC_2MEwqidYODgXsNw&playnext=1\\n▪️ Karaoke Classics: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm-g8xzHZUzNmj25Jf_N-Nnc&playnext=1\\n▪️ At The Movies: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm_u6dldszFSlpOSnCWwp8Sj&playnext=1\\n▪️ Piano Karaoke: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm_GyTJaxbex3peZVeDJgQFr&playnext=1\\n▪️ The Greatest Showman: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm8VqHbgQv1KTAB_en5D9Aih&playnext=1\\n▪️ Party Starters: https://youtube.com/playlist?list=PL8D4Iby0Bmm-uQIcbRfHeUMd_YDSZDA39&playnext=1\\n▪️ Ballads & Love Songs: https://youtube.com/playlist?list=PL8D4Iby0Bmm-nKJtBcg_1BHmukPlaniFk&playnext=1\\n▪️ Latest Videos: https://youtube.com/playlist?list=PL8D4Iby0Bmm8rohzdA2kgl9z_nOIzIwfd&playnext=1\\n▪️ Popular Videos: https://youtube.com/playlist?list=PL8D4Iby0Bmm94U_rwuJuocyC1xFoPTd5R&playnext=1\\n▪️ Hip-Hop: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm8wob_KNgW8crCdQ5pxA2Pv&playnext=1 \\n▪️ Karaoke Queens: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm-3CTbWPPyRDc6tV-ilRMXp&playnext=1\\n▪️ Descendants: https://www.youtube.com/watch?v=-XRt9aEwAy0&list=PL8D4Iby0Bmm8BjYeIWUwyM4AEgdXLHxSi&playnext=1\\n\\nAbout Sing King Karaoke: Welcome to the official Sing King Karaoke YouTube channel! On this channel, you’ll find a variety of karaoke and sing along videos with lyrics, including pop rock, R&B, hip hop, piano, acoustic, and electropop genres from Taylor Swift, Katy Perry, ABBA, and more. If you like music, singing along, learning song lyrics, or karaoke, sing along to them in style with Sing King Karaoke, your number one source for YouTube karaoke and lyrics.',\n",
       "   'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/C3y6jGCXiUA/default.jpg',\n",
       "     'width': 120,\n",
       "     'height': 90},\n",
       "    'medium': {'url': 'https://i.ytimg.com/vi/C3y6jGCXiUA/mqdefault.jpg',\n",
       "     'width': 320,\n",
       "     'height': 180},\n",
       "    'high': {'url': 'https://i.ytimg.com/vi/C3y6jGCXiUA/hqdefault.jpg',\n",
       "     'width': 480,\n",
       "     'height': 360},\n",
       "    'standard': {'url': 'https://i.ytimg.com/vi/C3y6jGCXiUA/sddefault.jpg',\n",
       "     'width': 640,\n",
       "     'height': 480},\n",
       "    'maxres': {'url': 'https://i.ytimg.com/vi/C3y6jGCXiUA/maxresdefault.jpg',\n",
       "     'width': 1280,\n",
       "     'height': 720}},\n",
       "   'channelTitle': 'Sing King',\n",
       "   'tags': ['sing king karaoke',\n",
       "    'sing king',\n",
       "    'olivia rodrigo',\n",
       "    'olivia rodrigo drivers license',\n",
       "    'drivers license olivia rodrigo',\n",
       "    'drivers license',\n",
       "    'drivers license karaoke',\n",
       "    'karaoke drivers license',\n",
       "    'drivers license instrumental',\n",
       "    'drivers license lyrics',\n",
       "    'olivia rodrigo karaoke',\n",
       "    'karaoke olivia rodrigo',\n",
       "    'olivia rodrigo songs',\n",
       "    'olivia rodrigo songs karaoke',\n",
       "    'olivia rodrigo songs lyrics',\n",
       "    'olivia rodrigo drivers license karaoke',\n",
       "    'drivers license olivia rodrigo karaoke',\n",
       "    'drivers licence',\n",
       "    'drivers licence karaoke'],\n",
       "   'categoryId': '10',\n",
       "   'liveBroadcastContent': 'none',\n",
       "   'defaultLanguage': 'en-GB',\n",
       "   'localized': {'title': 'Olivia Rodrigo - drivers license (Karaoke Version)',\n",
       "    'description': '🎤 Love Karaoke? Our brand new app is here! Download now for FREE https://singking.link/yt-desc\\n\\nKaraoke sing along of “drivers license” by Olivia Rodrigo from Sing King Karaoke\\nStay tuned for brand new karaoke videos by subscribing here: https://link.singking.com/YouTube\\n🔔 Don’t forget to hit that notification bell! 🔔\\n\\nYou can also find us on:\\n▪️ Facebook - https://link.singking.com/Facebook\\n▪️ Instagram -  https://link.singking.com/Instagram\\n▪️ Twitter - https://link.singking.com/Twitter\\n\\nJoin our mailing list to stay in the loop for all things Sing King: https://link.singking.com/Signup\\n\\nWatch more Sing King Karaoke:\\n▪️ Sing King Weekly Top 50: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm9y57_K3vBvkZiaGjIXD_x5&playnext=1 \\n▪️ Disney: https://youtube.com/playlist?list=PL8D4Iby0Bmm9DM_LC_2MEwqidYODgXsNw&playnext=1\\n▪️ Karaoke Classics: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm-g8xzHZUzNmj25Jf_N-Nnc&playnext=1\\n▪️ At The Movies: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm_u6dldszFSlpOSnCWwp8Sj&playnext=1\\n▪️ Piano Karaoke: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm_GyTJaxbex3peZVeDJgQFr&playnext=1\\n▪️ The Greatest Showman: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm8VqHbgQv1KTAB_en5D9Aih&playnext=1\\n▪️ Party Starters: https://youtube.com/playlist?list=PL8D4Iby0Bmm-uQIcbRfHeUMd_YDSZDA39&playnext=1\\n▪️ Ballads & Love Songs: https://youtube.com/playlist?list=PL8D4Iby0Bmm-nKJtBcg_1BHmukPlaniFk&playnext=1\\n▪️ Latest Videos: https://youtube.com/playlist?list=PL8D4Iby0Bmm8rohzdA2kgl9z_nOIzIwfd&playnext=1\\n▪️ Popular Videos: https://youtube.com/playlist?list=PL8D4Iby0Bmm94U_rwuJuocyC1xFoPTd5R&playnext=1\\n▪️ Hip-Hop: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm8wob_KNgW8crCdQ5pxA2Pv&playnext=1 \\n▪️ Karaoke Queens: https://www.youtube.com/playlist?list=PL8D4Iby0Bmm-3CTbWPPyRDc6tV-ilRMXp&playnext=1\\n▪️ Descendants: https://www.youtube.com/watch?v=-XRt9aEwAy0&list=PL8D4Iby0Bmm8BjYeIWUwyM4AEgdXLHxSi&playnext=1\\n\\nAbout Sing King Karaoke: Welcome to the official Sing King Karaoke YouTube channel! On this channel, you’ll find a variety of karaoke and sing along videos with lyrics, including pop rock, R&B, hip hop, piano, acoustic, and electropop genres from Taylor Swift, Katy Perry, ABBA, and more. If you like music, singing along, learning song lyrics, or karaoke, sing along to them in style with Sing King Karaoke, your number one source for YouTube karaoke and lyrics.'},\n",
       "   'defaultAudioLanguage': 'en'},\n",
       "  'contentDetails': {'duration': 'PT4M17S',\n",
       "   'dimension': '2d',\n",
       "   'definition': 'hd',\n",
       "   'caption': 'false',\n",
       "   'licensedContent': True,\n",
       "   'contentRating': {},\n",
       "   'projection': 'rectangular'},\n",
       "  'statistics': {'viewCount': '4909958',\n",
       "   'likeCount': '62580',\n",
       "   'dislikeCount': '1101',\n",
       "   'favoriteCount': '0',\n",
       "   'commentCount': '1854'},\n",
       "  'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Independent_music',\n",
       "    'https://en.wikipedia.org/wiki/Music',\n",
       "    'https://en.wikipedia.org/wiki/Pop_music']}}]"
      ]
     },
     "execution_count": 27,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "test1"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {},
   "outputs": [],
   "source": [
    "vids = get_yt_video_details('mhDJNfV7hjk', 'APwwGy4GzK8', 'qEDScQeUK18')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'kind': 'youtube#videoListResponse',\n",
       " 'etag': 'uverbqFqfIyeLi4nUzg8zqKc_S4',\n",
       " 'items': [{'kind': 'youtube#video',\n",
       "   'etag': '3nTQKOO6ADhAuL9zUbEMqIFwfTg',\n",
       "   'id': 'mhDJNfV7hjk',\n",
       "   'snippet': {'publishedAt': '2020-03-29T17:00:15Z',\n",
       "    'channelId': 'UCIEv3lZ_tNXHzL3ox-_uUGQ',\n",
       "    'title': \"Gordon's Quick & Simple Recipes | Gordon Ramsay\",\n",
       "    'description': \"While a lot of us are remaining indoors, here are a few quick, simple and cheap recipes to follow to learn.\\n\\n#GordonRamsay #Cooking \\r\\n\\r\\nGordon Ramsay's Ultimate Fit Food/Healthy, Lean and Fit – http://po.st/REpVfP\\r\\n\\r\\nIf you liked this clip check out the rest of Gordon's channels:\\r\\n\\r\\nhttp://www.youtube.com/gordonramsay\\r\\nhttp://www.youtube.com/kitchennightmares\\r\\nhttp://www.youtube.com/thefword\",\n",
       "    'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/mhDJNfV7hjk/default.jpg',\n",
       "      'width': 120,\n",
       "      'height': 90},\n",
       "     'medium': {'url': 'https://i.ytimg.com/vi/mhDJNfV7hjk/mqdefault.jpg',\n",
       "      'width': 320,\n",
       "      'height': 180},\n",
       "     'high': {'url': 'https://i.ytimg.com/vi/mhDJNfV7hjk/hqdefault.jpg',\n",
       "      'width': 480,\n",
       "      'height': 360},\n",
       "     'standard': {'url': 'https://i.ytimg.com/vi/mhDJNfV7hjk/sddefault.jpg',\n",
       "      'width': 640,\n",
       "      'height': 480},\n",
       "     'maxres': {'url': 'https://i.ytimg.com/vi/mhDJNfV7hjk/maxresdefault.jpg',\n",
       "      'width': 1280,\n",
       "      'height': 720}},\n",
       "    'channelTitle': 'Gordon Ramsay',\n",
       "    'tags': ['Gordon',\n",
       "     'Gordon Ramsay',\n",
       "     'Ramsay',\n",
       "     'Ramsey',\n",
       "     'Chef Ramsay',\n",
       "     'Recipe',\n",
       "     'Recipes',\n",
       "     'Food',\n",
       "     'Cooking',\n",
       "     'Cookery',\n",
       "     'gordon ramsay cooking',\n",
       "     'gordon ramsay cooking quick recipes',\n",
       "     'gordon ramsay recipes',\n",
       "     'gordon ramsay easy',\n",
       "     'gordon ramsay tutorial',\n",
       "     'gordon ramsay tips',\n",
       "     'gordon ramsay cooking tips',\n",
       "     'gordon ramsay how to',\n",
       "     'gordon ramsay ultimate home cooking'],\n",
       "    'categoryId': '24',\n",
       "    'liveBroadcastContent': 'none',\n",
       "    'localized': {'title': \"Gordon's Quick & Simple Recipes | Gordon Ramsay\",\n",
       "     'description': \"While a lot of us are remaining indoors, here are a few quick, simple and cheap recipes to follow to learn.\\n\\n#GordonRamsay #Cooking \\r\\n\\r\\nGordon Ramsay's Ultimate Fit Food/Healthy, Lean and Fit – http://po.st/REpVfP\\r\\n\\r\\nIf you liked this clip check out the rest of Gordon's channels:\\r\\n\\r\\nhttp://www.youtube.com/gordonramsay\\r\\nhttp://www.youtube.com/kitchennightmares\\r\\nhttp://www.youtube.com/thefword\"},\n",
       "    'defaultAudioLanguage': 'en-GB'},\n",
       "   'contentDetails': {'duration': 'PT13M8S',\n",
       "    'dimension': '2d',\n",
       "    'definition': 'hd',\n",
       "    'caption': 'false',\n",
       "    'licensedContent': True,\n",
       "    'contentRating': {},\n",
       "    'projection': 'rectangular'},\n",
       "   'statistics': {'viewCount': '10496618',\n",
       "    'likeCount': '270690',\n",
       "    'dislikeCount': '4145',\n",
       "    'favoriteCount': '0',\n",
       "    'commentCount': '10824'},\n",
       "   'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Food',\n",
       "     'https://en.wikipedia.org/wiki/Lifestyle_(sociology)']}},\n",
       "  {'kind': 'youtube#video',\n",
       "   'etag': '57QQiFd26eLZs5TTIZFwF-fJBV8',\n",
       "   'id': 'APwwGy4GzK8',\n",
       "   'snippet': {'publishedAt': '2019-06-13T17:15:02Z',\n",
       "    'channelId': 'UCJHA_jMfCvEnv-3kRjTCQXw',\n",
       "    'title': 'Healthy Meals | Basics with Babish',\n",
       "    'description': 'Introducing my first episode of healthy meals on Basics! My advice is stick to lean proteins, green vegetables, and cut out as much sugar as you can. If you want to see more about health and fitness journey, watch the latest episode of Being with Babish here:\\nhttps://www.youtube.com/watch?v=n_aq5TVb0HA\\n\\nRecipe: https://basicswithbabish.co/basicsepisodes/healthymeals\\n\\nIngredients & Shopping List\\n+ For the cashew cream:\\nCashews (raw and unsalted)\\nWater\\n\\n+ For the Overnight Oats (366 calories, 17g fat, 9g protein, 40g carbs per serving)\\n\\n1/2 cup old fashioned oats \\n1/4 cup chia seeds\\n1/4 cup cashew cream, diluted with 3/4 cup water to make cashew milk\\nVanilla Extract\\nArtificial sweetener of your choice\\nPinch of kosher salt\\nBerries and mint for topping\\n\\n+ For the Turkey Bacon BLT (357 calories, 9g fat, 36g protein, 37g carbs per serving)\\n\\n4 slices low-fat turkey bacon\\n3 Tbsp cashew cream with sprinkles of mustard powder, cayenne pepper, garlic powder, onion powder, salt and pepper (to make \"mayo\")\\n1 heirloom tomato, thinly sliced\\nSprouted whole wheat bread, lightly toasted\\nSpinach or butter lettuce  \\n\\n+ For the Cashew Chicken Salad (439 calories, 18g fat, 52g protein, 17g carbs per serving)\\n\\n3 chicken breasts, butterflied and pounded to a uniform thin-ness\\n2-3 Tbsp cashew cream\\n1 apple, diced\\n4 green onions, minced\\n2-3 Tbsp minced parsley\\nSprinkle of curry powder\\nKosher salt and black pepper\\n\\n+ For the Shrimp Pasta with Garlic and Basil (472 calories, 14g fat, 30g protein, 42g carbs per serving)\\n\\n4 ounces red lentil pasta\\n2 Tablespoons olive oil, divided\\n1/2 pound shrimp, shelled and deveined (shells optionally reserved)\\n1 shallot, finely minced\\n3 cloves garlic, crushed\\n1 tsp dried oregano\\n8 ounces cherry tomatoes, halved\\n1/4 cup packed basil leaves, minced\\n1/4 cup dry white wine (optional)\\n1/4 cup cashew cream\\n1/4 cup packed parsley, minced\\n\\nSpecial Equipment:\\nHigh powered blender (for cashew cream)\\n\\nMusic:\\n\"\\'90s Kid\" by Blue Wednesday\\nhttps://soundcloud.com/bluewednesday\\n\\nhttps://www.bingingwithbabish.com/podcast/\\n\\nMy first cookbook, Eat What You Watch, is available now in stores and online!\\nAmazon: http://a.co/bv3rGzr\\nBarnes & Noble: http://bit.ly/2uf65LX\\n\\nTheme song: \"Stay Tuned\" by Wuh Oh\\nhttps://open.spotify.com/track/5lbQ6nKPgzkfFigheb467z\\n\\nBinging With Babish Website: http://bit.ly/BingingBabishWebsite\\nBasics With Babish Website: http://bit.ly/BasicsWithBabishWebsite\\nPatreon: http://bit.ly/BingingPatreon\\nInstagram: http://bit.ly/BabishInstagram\\nFacebook: http://bit.ly/BabishFacebook\\nTwitter: http://bit.ly/BabishTwitter',\n",
       "    'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/APwwGy4GzK8/default.jpg',\n",
       "      'width': 120,\n",
       "      'height': 90},\n",
       "     'medium': {'url': 'https://i.ytimg.com/vi/APwwGy4GzK8/mqdefault.jpg',\n",
       "      'width': 320,\n",
       "      'height': 180},\n",
       "     'high': {'url': 'https://i.ytimg.com/vi/APwwGy4GzK8/hqdefault.jpg',\n",
       "      'width': 480,\n",
       "      'height': 360},\n",
       "     'standard': {'url': 'https://i.ytimg.com/vi/APwwGy4GzK8/sddefault.jpg',\n",
       "      'width': 640,\n",
       "      'height': 480},\n",
       "     'maxres': {'url': 'https://i.ytimg.com/vi/APwwGy4GzK8/maxresdefault.jpg',\n",
       "      'width': 1280,\n",
       "      'height': 720}},\n",
       "    'channelTitle': 'Babish Culinary Universe',\n",
       "    'tags': ['basics with babish',\n",
       "     'binging with babish',\n",
       "     'bwb',\n",
       "     'cooking with babish',\n",
       "     'babbish',\n",
       "     'pear qwerty horse',\n",
       "     'healthy meals',\n",
       "     'cashew cream',\n",
       "     'cashew cream recipe',\n",
       "     'chicken salad recipe',\n",
       "     'healthy chicken salad recipe',\n",
       "     'cashew cream chicken salad',\n",
       "     'turkey blt',\n",
       "     'turkey bacon blt',\n",
       "     'burkey bacon blt recipe',\n",
       "     'overnight oats recipe',\n",
       "     'over night oats recipe',\n",
       "     'red lentil pasta',\n",
       "     'lentil pasta',\n",
       "     'shrimp pasta recipe',\n",
       "     'healthy recipe',\n",
       "     'healthy recipes'],\n",
       "    'categoryId': '24',\n",
       "    'liveBroadcastContent': 'none',\n",
       "    'localized': {'title': 'Healthy Meals | Basics with Babish',\n",
       "     'description': 'Introducing my first episode of healthy meals on Basics! My advice is stick to lean proteins, green vegetables, and cut out as much sugar as you can. If you want to see more about health and fitness journey, watch the latest episode of Being with Babish here:\\nhttps://www.youtube.com/watch?v=n_aq5TVb0HA\\n\\nRecipe: https://basicswithbabish.co/basicsepisodes/healthymeals\\n\\nIngredients & Shopping List\\n+ For the cashew cream:\\nCashews (raw and unsalted)\\nWater\\n\\n+ For the Overnight Oats (366 calories, 17g fat, 9g protein, 40g carbs per serving)\\n\\n1/2 cup old fashioned oats \\n1/4 cup chia seeds\\n1/4 cup cashew cream, diluted with 3/4 cup water to make cashew milk\\nVanilla Extract\\nArtificial sweetener of your choice\\nPinch of kosher salt\\nBerries and mint for topping\\n\\n+ For the Turkey Bacon BLT (357 calories, 9g fat, 36g protein, 37g carbs per serving)\\n\\n4 slices low-fat turkey bacon\\n3 Tbsp cashew cream with sprinkles of mustard powder, cayenne pepper, garlic powder, onion powder, salt and pepper (to make \"mayo\")\\n1 heirloom tomato, thinly sliced\\nSprouted whole wheat bread, lightly toasted\\nSpinach or butter lettuce  \\n\\n+ For the Cashew Chicken Salad (439 calories, 18g fat, 52g protein, 17g carbs per serving)\\n\\n3 chicken breasts, butterflied and pounded to a uniform thin-ness\\n2-3 Tbsp cashew cream\\n1 apple, diced\\n4 green onions, minced\\n2-3 Tbsp minced parsley\\nSprinkle of curry powder\\nKosher salt and black pepper\\n\\n+ For the Shrimp Pasta with Garlic and Basil (472 calories, 14g fat, 30g protein, 42g carbs per serving)\\n\\n4 ounces red lentil pasta\\n2 Tablespoons olive oil, divided\\n1/2 pound shrimp, shelled and deveined (shells optionally reserved)\\n1 shallot, finely minced\\n3 cloves garlic, crushed\\n1 tsp dried oregano\\n8 ounces cherry tomatoes, halved\\n1/4 cup packed basil leaves, minced\\n1/4 cup dry white wine (optional)\\n1/4 cup cashew cream\\n1/4 cup packed parsley, minced\\n\\nSpecial Equipment:\\nHigh powered blender (for cashew cream)\\n\\nMusic:\\n\"\\'90s Kid\" by Blue Wednesday\\nhttps://soundcloud.com/bluewednesday\\n\\nhttps://www.bingingwithbabish.com/podcast/\\n\\nMy first cookbook, Eat What You Watch, is available now in stores and online!\\nAmazon: http://a.co/bv3rGzr\\nBarnes & Noble: http://bit.ly/2uf65LX\\n\\nTheme song: \"Stay Tuned\" by Wuh Oh\\nhttps://open.spotify.com/track/5lbQ6nKPgzkfFigheb467z\\n\\nBinging With Babish Website: http://bit.ly/BingingBabishWebsite\\nBasics With Babish Website: http://bit.ly/BasicsWithBabishWebsite\\nPatreon: http://bit.ly/BingingPatreon\\nInstagram: http://bit.ly/BabishInstagram\\nFacebook: http://bit.ly/BabishFacebook\\nTwitter: http://bit.ly/BabishTwitter'},\n",
       "    'defaultAudioLanguage': 'en'},\n",
       "   'contentDetails': {'duration': 'PT7M1S',\n",
       "    'dimension': '2d',\n",
       "    'definition': 'hd',\n",
       "    'caption': 'true',\n",
       "    'licensedContent': True,\n",
       "    'contentRating': {},\n",
       "    'projection': 'rectangular'},\n",
       "   'statistics': {'viewCount': '4419537',\n",
       "    'likeCount': '171124',\n",
       "    'dislikeCount': '1803',\n",
       "    'favoriteCount': '0',\n",
       "    'commentCount': '6301'},\n",
       "   'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Food',\n",
       "     'https://en.wikipedia.org/wiki/Lifestyle_(sociology)']}},\n",
       "  {'kind': 'youtube#video',\n",
       "   'etag': '_yCdm5txCm0Rf_EUJ_N-SwSAzdA',\n",
       "   'id': 'qEDScQeUK18',\n",
       "   'snippet': {'publishedAt': '2021-02-27T12:27:56Z',\n",
       "    'channelId': 'UCULY4RSr2LsWQJaI0GCB92g',\n",
       "    'title': 'LOBSTER ROLL',\n",
       "    'description': 'Lobster cook-off with @nick.digiovanni & @hwoo.lee\\n\\nFOLLOW ME:\\nInstagram: https://www.instagram.com/_samseats_/...\\u200b\\nTikTok: https://www.tiktok.com/@samseats\\u200b\\u200b\\u200b\\u200b\\u200b\\n\\n#lobster\\u200b #seafood\\u200b #food\\u200b\\u200b\\u200b\\u200b\\u200b #foodie\\u200b\\u200b\\u200b\\u200b\\u200b #foodporn\\u200b\\u200b\\u200b\\u200b\\u200b #cooking\\u200b\\u200b\\u200b\\u200b\\u200b #asmr\\u200b\\u200b\\u200b\\u200b\\u200b #foodasmr\\u200b\\u200b\\u200b\\u200b\\u200b #shorts\\u200b\\u200b\\u200b\\u200b\\u200b',\n",
       "    'thumbnails': {'default': {'url': 'https://i.ytimg.com/vi/qEDScQeUK18/default.jpg',\n",
       "      'width': 120,\n",
       "      'height': 90},\n",
       "     'medium': {'url': 'https://i.ytimg.com/vi/qEDScQeUK18/mqdefault.jpg',\n",
       "      'width': 320,\n",
       "      'height': 180},\n",
       "     'high': {'url': 'https://i.ytimg.com/vi/qEDScQeUK18/hqdefault.jpg',\n",
       "      'width': 480,\n",
       "      'height': 360},\n",
       "     'standard': {'url': 'https://i.ytimg.com/vi/qEDScQeUK18/sddefault.jpg',\n",
       "      'width': 640,\n",
       "      'height': 480},\n",
       "     'maxres': {'url': 'https://i.ytimg.com/vi/qEDScQeUK18/maxresdefault.jpg',\n",
       "      'width': 1280,\n",
       "      'height': 720}},\n",
       "    'channelTitle': 'samseats',\n",
       "    'categoryId': '22',\n",
       "    'liveBroadcastContent': 'none',\n",
       "    'localized': {'title': 'LOBSTER ROLL',\n",
       "     'description': 'Lobster cook-off with @nick.digiovanni & @hwoo.lee\\n\\nFOLLOW ME:\\nInstagram: https://www.instagram.com/_samseats_/...\\u200b\\nTikTok: https://www.tiktok.com/@samseats\\u200b\\u200b\\u200b\\u200b\\u200b\\n\\n#lobster\\u200b #seafood\\u200b #food\\u200b\\u200b\\u200b\\u200b\\u200b #foodie\\u200b\\u200b\\u200b\\u200b\\u200b #foodporn\\u200b\\u200b\\u200b\\u200b\\u200b #cooking\\u200b\\u200b\\u200b\\u200b\\u200b #asmr\\u200b\\u200b\\u200b\\u200b\\u200b #foodasmr\\u200b\\u200b\\u200b\\u200b\\u200b #shorts\\u200b\\u200b\\u200b\\u200b\\u200b'}},\n",
       "   'contentDetails': {'duration': 'PT1M',\n",
       "    'dimension': '2d',\n",
       "    'definition': 'hd',\n",
       "    'caption': 'false',\n",
       "    'licensedContent': False,\n",
       "    'contentRating': {},\n",
       "    'projection': 'rectangular'},\n",
       "   'statistics': {'viewCount': '528',\n",
       "    'likeCount': '32',\n",
       "    'dislikeCount': '0',\n",
       "    'favoriteCount': '0',\n",
       "    'commentCount': '6'},\n",
       "   'topicDetails': {'topicCategories': ['https://en.wikipedia.org/wiki/Food',\n",
       "     'https://en.wikipedia.org/wiki/Lifestyle_(sociology)']}}],\n",
       " 'pageInfo': {'totalResults': 3, 'resultsPerPage': 3}}"
      ]
     },
     "execution_count": 21,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "vids"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {
    "scrolled": true
   },
   "outputs": [],
   "source": [
    "vc = yt.videoCategories().list(id='24', part='snippet').execute()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'kind': 'youtube#videoCategoryListResponse',\n",
       " 'etag': 'iWEhchzwpkFmLNEXfuF5VQCBJ2c',\n",
       " 'items': [{'kind': 'youtube#videoCategory',\n",
       "   'etag': '0srcLUqQzO7-NGLF7QnhdVzJQmY',\n",
       "   'id': '24',\n",
       "   'snippet': {'title': 'Entertainment',\n",
       "    'assignable': True,\n",
       "    'channelId': 'UCBR8-60-B28hp2BmDPdntcQ'}}]}"
      ]
     },
     "execution_count": 19,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "vc"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 79,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Search 0 50 drivers license cover\n"
     ]
    }
   ],
   "source": [
    "# df = create_csv_from_search('drivers license cover', topicId=TOPIC_ID_MUSIC, num_videos=20)\n",
    "dfcols = get_video_search_data_frame('drivers license cover', num_videos=50, topicId=TOPIC_ID_MUSIC, \n",
    "                                      order='rating', publishedAfter='2020-01-01T00:00:00Z')\n",
    "uniq_channel_ids = list(set(dfcols['snippet.channelId']))\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": 80,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Requesting 50 channel stats\n",
      "Found 50 channel stat results\n"
     ]
    }
   ],
   "source": [
    "chandf = get_channel_dataframe(uniq_channel_ids)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 81,
   "metadata": {},
   "outputs": [],
   "source": [
    "dfMerge = pd.merge(dfcols, chandf, left_on='snippet.channelId', right_index=True).replace({np.nan: None})"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 57,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Index(['id', 'snippet.publishedAt', 'snippet.channelId', 'snippet.title',\n",
       "       'snippet.description', 'statistics.viewCount', 'statistics.likeCount',\n",
       "       'statistics.dislikeCount', 'statistics.favoriteCount',\n",
       "       'statistics.commentCount', 'ch.title', 'ch.description', 'ch.country',\n",
       "       'ch.viewCount', 'ch.subscriberCount', 'ch.videoCount'],\n",
       "      dtype='object')"
      ]
     },
     "execution_count": 57,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dfMerge.columns"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 82,
   "metadata": {},
   "outputs": [],
   "source": [
    "augDf = augment_merged_dataframe('drivers license cover', dfMerge)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 62,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "['Search Term',\n",
       " 'Channel Title',\n",
       " 'Channel Link',\n",
       " 'Channel Email',\n",
       " 'Channel Insta',\n",
       " 'Video Email',\n",
       " 'Video Insta',\n",
       " 'Channel Description',\n",
       " 'Subscribers',\n",
       " 'Channel Views',\n",
       " 'Total Videos',\n",
       " 'Channel Country',\n",
       " 'Video Link',\n",
       " 'Video Title',\n",
       " 'Video Description',\n",
       " 'Video Published',\n",
       " 'Video Views',\n",
       " 'Video Likes',\n",
       " 'Video Comments']"
      ]
     },
     "execution_count": 62,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "[c.split('.')[-1] for c in augDf.columns]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 86,
   "metadata": {
    "scrolled": true
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>Search Term</th>\n",
       "      <th>Channel Title</th>\n",
       "      <th>Channel Link</th>\n",
       "      <th>Channel Email</th>\n",
       "      <th>Channel Insta</th>\n",
       "      <th>Video Email</th>\n",
       "      <th>Video Insta</th>\n",
       "      <th>Channel Description</th>\n",
       "      <th>Subscribers</th>\n",
       "      <th>Channel Views</th>\n",
       "      <th>Total Videos</th>\n",
       "      <th>Channel Country</th>\n",
       "      <th>Video Link</th>\n",
       "      <th>Video Title</th>\n",
       "      <th>Video Description</th>\n",
       "      <th>Video Published</th>\n",
       "      <th>Video Views</th>\n",
       "      <th>Video Likes</th>\n",
       "      <th>Video Comments</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Bianca Shervonne Reacts</td>\n",
       "      <td>https://www.youtube.com/channel/UCrFMBZqG3rZMh...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>info.biancashervonne@gmail.com</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>25800</td>\n",
       "      <td>3664290</td>\n",
       "      <td>114</td>\n",
       "      <td>US</td>\n",
       "      <td>https://www.youtube.com/watch?v=60rXUskUywM</td>\n",
       "      <td>Drivers License - Olivia Rodrigo (bare COVER) ...</td>\n",
       "      <td>This was so good!! I hope you enjoy this Drive...</td>\n",
       "      <td>2021-02-17T00:43:28Z</td>\n",
       "      <td>478</td>\n",
       "      <td>95</td>\n",
       "      <td>7</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Tik Tok Cover Compilation</td>\n",
       "      <td>https://www.youtube.com/channel/UCl4BDEJ1PLBDI...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>2520</td>\n",
       "      <td>1496380</td>\n",
       "      <td>3</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=d7QGuS06qiU</td>\n",
       "      <td>Olivia Rodrigo - drivers license || TikTok Cov...</td>\n",
       "      <td>Hellooooow~\\n\\nDon’t forget to subscribe!\\n\\nC...</td>\n",
       "      <td>2021-01-15T14:42:15Z</td>\n",
       "      <td>3031</td>\n",
       "      <td>127</td>\n",
       "      <td>10</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Mira Sacaguing</td>\n",
       "      <td>https://www.youtube.com/channel/UCYfS2GCR2OyGH...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Hi! This Mira! I love singing that is why I cr...</td>\n",
       "      <td>164</td>\n",
       "      <td>2234</td>\n",
       "      <td>12</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=ir6W_Q8W4Ts</td>\n",
       "      <td>drivers license cover by Mira</td>\n",
       "      <td>I hope you like it.\\nPls. do subscribe to my y...</td>\n",
       "      <td>2021-02-08T11:07:16Z</td>\n",
       "      <td>301</td>\n",
       "      <td>44</td>\n",
       "      <td>None</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Camila Colominas</td>\n",
       "      <td>https://www.youtube.com/channel/UCHaV8hihNb7dj...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>camcolominas@gmail.com</td>\n",
       "      <td>None</td>\n",
       "      <td>Hello everyone! Welcome back to my channel. I ...</td>\n",
       "      <td>718</td>\n",
       "      <td>24413</td>\n",
       "      <td>45</td>\n",
       "      <td>US</td>\n",
       "      <td>https://www.youtube.com/watch?v=qMM7pQWuC8w</td>\n",
       "      <td>Olivia Rodrigo - Drivers License (Cover by Cam...</td>\n",
       "      <td>vocals by prodbergotti\\nvisuals by Jonathon Wi...</td>\n",
       "      <td>2021-01-19T14:47:49Z</td>\n",
       "      <td>2128</td>\n",
       "      <td>137</td>\n",
       "      <td>25</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Erez Ron</td>\n",
       "      <td>https://www.youtube.com/channel/UCPaRu3U-xKN7L...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Hey World!\\nMy name is Erez Ron and I am a Sin...</td>\n",
       "      <td>66</td>\n",
       "      <td>17042</td>\n",
       "      <td>33</td>\n",
       "      <td>US</td>\n",
       "      <td>https://www.youtube.com/watch?v=8vsfSlVencc</td>\n",
       "      <td>Olivia Rodrigo - drivers license - Male cover</td>\n",
       "      <td>I HAVE NO RIGHTS TO THE SONG.\\n\\nSong: drivers...</td>\n",
       "      <td>2021-01-30T14:47:51Z</td>\n",
       "      <td>8100</td>\n",
       "      <td>7</td>\n",
       "      <td>6</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>5</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Boyang Cortez</td>\n",
       "      <td>https://www.youtube.com/channel/UCtAhVpJQNFwUL...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Dialysis Nurse by profession. Frustrated singe...</td>\n",
       "      <td>68</td>\n",
       "      <td>778</td>\n",
       "      <td>8</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=jUrB5Bftj68</td>\n",
       "      <td>Driver’s License Cover</td>\n",
       "      <td></td>\n",
       "      <td>2021-02-17T10:18:07Z</td>\n",
       "      <td>89</td>\n",
       "      <td>4</td>\n",
       "      <td>14</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>6</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Eli Sismoan YtC</td>\n",
       "      <td>https://www.youtube.com/channel/UCa8kJBj4jI82F...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>45</td>\n",
       "      <td>340</td>\n",
       "      <td>4</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=TixHmEUzpPQ</td>\n",
       "      <td>Olivia Rodrigo - driver's license Cover by Eli...</td>\n",
       "      <td>Hi, I'm Eli. Please check out my cover of Oliv...</td>\n",
       "      <td>2021-02-17T00:44:54Z</td>\n",
       "      <td>47</td>\n",
       "      <td>11</td>\n",
       "      <td>3</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>7</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>KORA</td>\n",
       "      <td>https://www.youtube.com/channel/UCSmLXPNb-LSvA...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>info.katiejames@gmail.com</td>\n",
       "      <td>None</td>\n",
       "      <td>hi :D i've always had a passion for music, and...</td>\n",
       "      <td>1410</td>\n",
       "      <td>18932</td>\n",
       "      <td>18</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=YQql0hA1-o4</td>\n",
       "      <td>'drivers license' cover - olivia rodrigo</td>\n",
       "      <td>hey lol :D thx for watching! i'm obsessed w th...</td>\n",
       "      <td>2021-01-17T23:00:07Z</td>\n",
       "      <td>1006</td>\n",
       "      <td>99</td>\n",
       "      <td>20</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>8</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Pratishtha Sharma</td>\n",
       "      <td>https://www.youtube.com/channel/UCC6O6Omt_EDoj...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@invites</td>\n",
       "      <td></td>\n",
       "      <td>334</td>\n",
       "      <td>3941</td>\n",
       "      <td>6</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=fHgFRlUonWI</td>\n",
       "      <td>Drivers license- Olivia Rodrigo (Cover)|| By P...</td>\n",
       "      <td>Original Credits~\\nSong- Drivers License\\nSing...</td>\n",
       "      <td>2021-02-17T11:02:06Z</td>\n",
       "      <td>392</td>\n",
       "      <td>107</td>\n",
       "      <td>70</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>9</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Love Dani</td>\n",
       "      <td>https://www.youtube.com/channel/UCRWkjY0HnVZ1H...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>danimadeline@outlook.com</td>\n",
       "      <td>None</td>\n",
       "      <td>Hi, I'm Danielle but you can call me Dani ☺\\n\\...</td>\n",
       "      <td>1010</td>\n",
       "      <td>33896</td>\n",
       "      <td>67</td>\n",
       "      <td>AU</td>\n",
       "      <td>https://www.youtube.com/watch?v=P-D998RxczY</td>\n",
       "      <td>drivers license - Olivia Rodrigo Cover | Love ...</td>\n",
       "      <td>drivers license - Olivia Rodrigo Cover | Love ...</td>\n",
       "      <td>2021-01-11T12:48:29Z</td>\n",
       "      <td>135</td>\n",
       "      <td>26</td>\n",
       "      <td>38</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>10</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Marcus Trevino</td>\n",
       "      <td>https://www.youtube.com/channel/UCUw_JHDFgrWDr...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Hello, I'm Marcus Trevino, a 15-year-old singe...</td>\n",
       "      <td>62</td>\n",
       "      <td>2697</td>\n",
       "      <td>33</td>\n",
       "      <td>US</td>\n",
       "      <td>https://www.youtube.com/watch?v=0KX-kmtdHOI</td>\n",
       "      <td>Olivia Rodrigo - Drivers license cover (SHORT)</td>\n",
       "      <td>I really love this song and the chorus is abso...</td>\n",
       "      <td>2021-01-14T16:05:00Z</td>\n",
       "      <td>261</td>\n",
       "      <td>20</td>\n",
       "      <td>2</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>11</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Natalie Mattson</td>\n",
       "      <td>https://www.youtube.com/channel/UCQJtc8Etvt5OP...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@natalie.mattson</td>\n",
       "      <td></td>\n",
       "      <td>331</td>\n",
       "      <td>30138</td>\n",
       "      <td>64</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=B_KTEOmx6Ck</td>\n",
       "      <td>drivers license - olivia rodrigo (cover)</td>\n",
       "      <td>#driverslicense #oliviarodrigo\\n\\nSo I figured...</td>\n",
       "      <td>2021-01-18T16:00:05Z</td>\n",
       "      <td>218</td>\n",
       "      <td>34</td>\n",
       "      <td>3</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>12</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>khvylia</td>\n",
       "      <td>https://www.youtube.com/channel/UCA9cGgknk8IeX...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>21</td>\n",
       "      <td>638</td>\n",
       "      <td>7</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=ZD9wQoow4lk</td>\n",
       "      <td>olivia rodrigo — driver's license (cover)</td>\n",
       "      <td></td>\n",
       "      <td>2021-01-17T17:30:39Z</td>\n",
       "      <td>45</td>\n",
       "      <td>18</td>\n",
       "      <td>0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>13</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Notebodies</td>\n",
       "      <td>https://www.youtube.com/channel/UCsQJQqVs2IC-1...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Hi, we are the Notebodies! Our channel has eve...</td>\n",
       "      <td>67</td>\n",
       "      <td>10111</td>\n",
       "      <td>44</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=D1BcQ3BE_1A</td>\n",
       "      <td>drivers license - Olivia Rodrigo Piano Cover |...</td>\n",
       "      <td>HI! If you haven't heard of this song before, ...</td>\n",
       "      <td>2021-01-17T21:09:46Z</td>\n",
       "      <td>67</td>\n",
       "      <td>10</td>\n",
       "      <td>3</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>14</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Lilacla</td>\n",
       "      <td>https://www.youtube.com/channel/UCtt7BR5TWIV0g...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@lilaclaa</td>\n",
       "      <td>hi, i'm angela !! i've been singing and playin...</td>\n",
       "      <td>47</td>\n",
       "      <td>1030</td>\n",
       "      <td>11</td>\n",
       "      <td>AU</td>\n",
       "      <td>https://www.youtube.com/watch?v=DRMjOPJH4pA</td>\n",
       "      <td>drivers license - Olivia Rodrigo (acoustic cover)</td>\n",
       "      <td>such a good song kinda obsessed ngl.\\n\\nI've p...</td>\n",
       "      <td>2021-01-12T08:52:40Z</td>\n",
       "      <td>66</td>\n",
       "      <td>9</td>\n",
       "      <td>4</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>15</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>i chand</td>\n",
       "      <td>https://www.youtube.com/channel/UCrLlx4T_elo-g...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>i sing covers of my favourite songs, big effin...</td>\n",
       "      <td>139</td>\n",
       "      <td>1480</td>\n",
       "      <td>8</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=h_Dy5y2ww10</td>\n",
       "      <td>Drivers license (cover)</td>\n",
       "      <td>Sorry for the bad audio quality.\\n.\\n.\\n.\\nLik...</td>\n",
       "      <td>2021-02-16T12:54:58Z</td>\n",
       "      <td>49</td>\n",
       "      <td>12</td>\n",
       "      <td>17</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>16</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Mikaella Anne</td>\n",
       "      <td>https://www.youtube.com/channel/UCBmU5Hl0YnQQQ...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Aspiring singer/vlogger</td>\n",
       "      <td>8280</td>\n",
       "      <td>317657</td>\n",
       "      <td>104</td>\n",
       "      <td>MY</td>\n",
       "      <td>https://www.youtube.com/watch?v=TNQl3I6TPMU</td>\n",
       "      <td>Drivers License - Olivia Rodrigo - Cover</td>\n",
       "      <td>Drivers License - Olivia Rodrigo - Cover - tik...</td>\n",
       "      <td>2021-02-17T16:14:38Z</td>\n",
       "      <td>238</td>\n",
       "      <td>35</td>\n",
       "      <td>0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>17</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>김소희는 Kim SoHee is</td>\n",
       "      <td>https://www.youtube.com/channel/UCZcYD8z6kx9rS...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>None</td>\n",
       "      <td>172146</td>\n",
       "      <td>24</td>\n",
       "      <td>KR</td>\n",
       "      <td>https://www.youtube.com/watch?v=IEAhWNmagW8</td>\n",
       "      <td>김소희= COVER│Olivia Rodrigo - drivers license</td>\n",
       "      <td>안녕하세용 여러분 오랜만에 노래 커버를 들고 왔습니당 ~~~ 헤헿💜 이 곡은 빌보드...</td>\n",
       "      <td>2021-02-10T09:00:05Z</td>\n",
       "      <td>1924</td>\n",
       "      <td>420</td>\n",
       "      <td>139</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>18</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Thomas Englmann</td>\n",
       "      <td>https://www.youtube.com/channel/UCS0wuZAhr05l7...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>englmann.thomas@gmail.com</td>\n",
       "      <td>None</td>\n",
       "      <td>Thank you for stopping by my channel. On this ...</td>\n",
       "      <td>5580</td>\n",
       "      <td>953885</td>\n",
       "      <td>127</td>\n",
       "      <td>DE</td>\n",
       "      <td>https://www.youtube.com/watch?v=tV0QdMsoEoM</td>\n",
       "      <td>DRIVERS LICENCE - OLIVIA RODRIGO - SAXOPHONE C...</td>\n",
       "      <td>SAXOPHONE COVER OF OLIVIA RODRIGO'S \"DRIVERS L...</td>\n",
       "      <td>2021-01-17T16:32:22Z</td>\n",
       "      <td>1562</td>\n",
       "      <td>99</td>\n",
       "      <td>12</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>19</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Xongi. za</td>\n",
       "      <td>https://www.youtube.com/channel/UCZPvDeLdt4rgI...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@xongi.za</td>\n",
       "      <td></td>\n",
       "      <td>158</td>\n",
       "      <td>1576</td>\n",
       "      <td>6</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=C3tRMXfE390</td>\n",
       "      <td>Driver’s license-cover by Xongi.za</td>\n",
       "      <td>Original song by Olivia Rodrigo\\n\\nhttps://m.y...</td>\n",
       "      <td>2021-02-15T20:30:00Z</td>\n",
       "      <td>88</td>\n",
       "      <td>15</td>\n",
       "      <td>7</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>20</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>bella rosli</td>\n",
       "      <td>https://www.youtube.com/channel/UC43_z8rv6HxXJ...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@bellvrosli</td>\n",
       "      <td>Vocalist Bawal &amp; Jeans Band💜\\nSinging is my pa...</td>\n",
       "      <td>30</td>\n",
       "      <td>695</td>\n",
       "      <td>16</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=fNLkPqdb_VI</td>\n",
       "      <td>Olivia Rodrigo - Drivers License ( Cover by Be...</td>\n",
       "      <td>Hello I'm back! Just a short cover! 😜\\nEnjoy a...</td>\n",
       "      <td>2021-02-15T10:38:57Z</td>\n",
       "      <td>41</td>\n",
       "      <td>6</td>\n",
       "      <td>14</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>21</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>SeSANG</td>\n",
       "      <td>https://www.youtube.com/channel/UClkxspSUToT7A...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>24</td>\n",
       "      <td>571</td>\n",
       "      <td>4</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=ilT5rNfb0iE</td>\n",
       "      <td>Driver's License (cover) by Olivia Rodrigo</td>\n",
       "      <td></td>\n",
       "      <td>2021-02-16T07:09:29Z</td>\n",
       "      <td>21</td>\n",
       "      <td>4</td>\n",
       "      <td>5</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>22</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Dave Carlos</td>\n",
       "      <td>https://www.youtube.com/channel/UC68fOYxcEbp1_...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Musician | Vlogger</td>\n",
       "      <td>4130</td>\n",
       "      <td>159723</td>\n",
       "      <td>62</td>\n",
       "      <td>PH</td>\n",
       "      <td>https://www.youtube.com/watch?v=8X_UoaaSoRs</td>\n",
       "      <td>Dave Carlos - Drivers License by Olivia Rodrig...</td>\n",
       "      <td>\"Guess you didn't mean what you wrote in that ...</td>\n",
       "      <td>2021-02-15T09:40:33Z</td>\n",
       "      <td>440</td>\n",
       "      <td>80</td>\n",
       "      <td>53</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>23</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Chantal</td>\n",
       "      <td>https://www.youtube.com/channel/UCsKK4hHadolT3...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Welcome to Chantal's channel! You will find lo...</td>\n",
       "      <td>1210</td>\n",
       "      <td>166515</td>\n",
       "      <td>62</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=2N53HJwqZyk</td>\n",
       "      <td>Drivers License - Olivia Rodrigo (Cover by Cha...</td>\n",
       "      <td>drivers license Cover - For Entertainment Purp...</td>\n",
       "      <td>2021-02-14T10:12:35Z</td>\n",
       "      <td>2120</td>\n",
       "      <td>8</td>\n",
       "      <td>10</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>24</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Ligia Official</td>\n",
       "      <td>https://www.youtube.com/channel/UCktPBeqzg7t07...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Bine ati venit pe canalul oficial Ligia&amp;band\\n...</td>\n",
       "      <td>2040</td>\n",
       "      <td>284743</td>\n",
       "      <td>60</td>\n",
       "      <td>RO</td>\n",
       "      <td>https://www.youtube.com/watch?v=6KLnqzHq_Yc</td>\n",
       "      <td>Olivia Rodrigo - “Drivers License” COVER by LIGIA</td>\n",
       "      <td></td>\n",
       "      <td>2021-02-16T16:17:13Z</td>\n",
       "      <td>50</td>\n",
       "      <td>7</td>\n",
       "      <td>6</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>25</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Beth Fitton Music</td>\n",
       "      <td>https://www.youtube.com/channel/UCax_f7zfko7y-...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Hi I’m Beth, I love to sing and share music wi...</td>\n",
       "      <td>106</td>\n",
       "      <td>3400</td>\n",
       "      <td>28</td>\n",
       "      <td>GB</td>\n",
       "      <td>https://www.youtube.com/watch?v=KDozFxOJSzY</td>\n",
       "      <td>Drivers license - cover Olivia Rodrigo</td>\n",
       "      <td>Happy Wednesday everyone! \\n\\nHere is this wee...</td>\n",
       "      <td>2021-02-17T12:18:58Z</td>\n",
       "      <td>14</td>\n",
       "      <td>7</td>\n",
       "      <td>14</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>26</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>All about Joochan</td>\n",
       "      <td>https://www.youtube.com/channel/UCrqfJ37FhuLj_...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>~Golden Child Hong Joochan enthusiast~</td>\n",
       "      <td>2130</td>\n",
       "      <td>316300</td>\n",
       "      <td>83</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=ANnFgyxeT4o</td>\n",
       "      <td>210201 Olivia Rodrigo – drivers license Cover ...</td>\n",
       "      <td>Follow Hi_Goldenness on Twitter for more video...</td>\n",
       "      <td>2021-02-01T15:16:23Z</td>\n",
       "      <td>277</td>\n",
       "      <td>48</td>\n",
       "      <td>4</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>27</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Matt Johnson Music</td>\n",
       "      <td>https://www.youtube.com/channel/UCJPKHQmN4T14Y...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>My name is Matt Johnson. I am an independent m...</td>\n",
       "      <td>27800</td>\n",
       "      <td>6780221</td>\n",
       "      <td>147</td>\n",
       "      <td>GB</td>\n",
       "      <td>https://www.youtube.com/watch?v=iMpXfBTOO-o</td>\n",
       "      <td>drivers license - lyric video Matt Johnson aco...</td>\n",
       "      <td>This is my lyric video to my acoustic cover of...</td>\n",
       "      <td>2021-01-25T15:39:19Z</td>\n",
       "      <td>630</td>\n",
       "      <td>36</td>\n",
       "      <td>9</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>28</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Gacabe &amp; Jecabe Music</td>\n",
       "      <td>https://www.youtube.com/channel/UCESnF14tV3Zli...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@gacabe_jecabe</td>\n",
       "      <td>Este es el canal oficial de música hecha por G...</td>\n",
       "      <td>54</td>\n",
       "      <td>1483</td>\n",
       "      <td>10</td>\n",
       "      <td>ES</td>\n",
       "      <td>https://www.youtube.com/watch?v=hjo62606jnQ</td>\n",
       "      <td>Drivers license (cover piano)</td>\n",
       "      <td>Cover piano de esta famosa canción, espero que...</td>\n",
       "      <td>2021-02-14T15:45:17Z</td>\n",
       "      <td>23</td>\n",
       "      <td>6</td>\n",
       "      <td>0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>29</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Pedro Veloso</td>\n",
       "      <td>https://www.youtube.com/channel/UCUOa1LG7hyMV9...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>117</td>\n",
       "      <td>619</td>\n",
       "      <td>2</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=cBbVGWcCgtI</td>\n",
       "      <td>Drivers License - cover by Pedro Veloso, Bárba...</td>\n",
       "      <td>Oficial video and cover of Drivers License \\n🎶...</td>\n",
       "      <td>2021-02-16T00:03:51Z</td>\n",
       "      <td>458</td>\n",
       "      <td>148</td>\n",
       "      <td>46</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>30</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Maureen Antonette</td>\n",
       "      <td>https://www.youtube.com/channel/UCsQVehWvVb08O...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>182</td>\n",
       "      <td>4486</td>\n",
       "      <td>15</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=qmGveVhg2k4</td>\n",
       "      <td>Driver's License Cover | Olivia Rodrigo | Cove...</td>\n",
       "      <td>Tried to make a cover of the most requested so...</td>\n",
       "      <td>2021-02-14T15:32:24Z</td>\n",
       "      <td>94</td>\n",
       "      <td>12</td>\n",
       "      <td>11</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>31</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>CFO Julia Medina</td>\n",
       "      <td>https://www.youtube.com/channel/UCUVcqVnNYV3t5...</td>\n",
       "      <td>contacto@cfojuliamedina.com</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>🎸 Club de Fans Oficial de Julia Medina. Si qui...</td>\n",
       "      <td>2830</td>\n",
       "      <td>960556</td>\n",
       "      <td>124</td>\n",
       "      <td>ES</td>\n",
       "      <td>https://www.youtube.com/watch?v=YCrsqu8evrk</td>\n",
       "      <td>Julia Medina - drivers license (Cover Olivia R...</td>\n",
       "      <td>VERSIÓN COMPLETA: https://youtu.be/80_00GjpVt0...</td>\n",
       "      <td>2021-01-18T21:18:33Z</td>\n",
       "      <td>360</td>\n",
       "      <td>41</td>\n",
       "      <td>5</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>32</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>小森mori</td>\n",
       "      <td>https://www.youtube.com/channel/UCnur0yioGmBX2...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>小森mori / moriSTAR 💖\\n\\n廢．懶．宅</td>\n",
       "      <td>None</td>\n",
       "      <td>239936</td>\n",
       "      <td>83</td>\n",
       "      <td>TW</td>\n",
       "      <td>https://www.youtube.com/watch?v=Fod7_L6ZgfA</td>\n",
       "      <td>Olivia Rodrigo - Drivers License cover by mori...</td>\n",
       "      <td>#DriversLicense #OliviaRodrigo #Cover #shorts ...</td>\n",
       "      <td>2021-02-14T21:48:06Z</td>\n",
       "      <td>36</td>\n",
       "      <td>5</td>\n",
       "      <td>7</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>33</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>lucas paschoal</td>\n",
       "      <td>https://www.youtube.com/channel/UCIPX7c0lICYIo...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>hey there, i’m lucas. im 14, and i like to sin...</td>\n",
       "      <td>1460</td>\n",
       "      <td>68593</td>\n",
       "      <td>87</td>\n",
       "      <td>GB</td>\n",
       "      <td>https://www.youtube.com/watch?v=foXdD8hKfwo</td>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>finally did a cover on this beautiful song :)\\...</td>\n",
       "      <td>2021-01-14T10:16:39Z</td>\n",
       "      <td>319</td>\n",
       "      <td>60</td>\n",
       "      <td>63</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>34</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Edjop Medado</td>\n",
       "      <td>https://www.youtube.com/channel/UCRTFNWgip1xok...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>12</td>\n",
       "      <td>94</td>\n",
       "      <td>2</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=wl4srEPpQyk</td>\n",
       "      <td>drivers license - cover</td>\n",
       "      <td></td>\n",
       "      <td>2021-02-16T15:00:11Z</td>\n",
       "      <td>44</td>\n",
       "      <td>7</td>\n",
       "      <td>0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>35</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>AOXID</td>\n",
       "      <td>https://www.youtube.com/channel/UCT4Gi-r8feaTH...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@whoisrvnd</td>\n",
       "      <td>Hello...Welcome to music video, music cover, m...</td>\n",
       "      <td>20000</td>\n",
       "      <td>1432314</td>\n",
       "      <td>28</td>\n",
       "      <td>ID</td>\n",
       "      <td>https://www.youtube.com/watch?v=IXJQQXXnJqw</td>\n",
       "      <td>Olivia Rodrigo - Driver's License Cover by Raka</td>\n",
       "      <td>Cover by AOXID \\n\\nSinger : Raka\\nhttps://www....</td>\n",
       "      <td>2021-01-27T17:38:12Z</td>\n",
       "      <td>1127</td>\n",
       "      <td>164</td>\n",
       "      <td>30</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>36</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Sanota, Kyla Gwen M.</td>\n",
       "      <td>https://www.youtube.com/channel/UCTOWw2H2swMxD...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>98</td>\n",
       "      <td>1343</td>\n",
       "      <td>6</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=OukbXSVzNRM</td>\n",
       "      <td>Driver's License by Olivia Rodrigo (Short Cover)</td>\n",
       "      <td></td>\n",
       "      <td>2021-02-17T12:28:42Z</td>\n",
       "      <td>5</td>\n",
       "      <td>1</td>\n",
       "      <td>0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>37</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Christanto Bryan</td>\n",
       "      <td>https://www.youtube.com/channel/UC_5qo-NHCYvQe...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>201</td>\n",
       "      <td>7904</td>\n",
       "      <td>14</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=1RjhsMefDwg</td>\n",
       "      <td>Drivers License by Olivia Rodrigo | Cover</td>\n",
       "      <td>Hey everyone! If you enjoy my cover please don...</td>\n",
       "      <td>2021-02-15T16:44:34Z</td>\n",
       "      <td>131</td>\n",
       "      <td>25</td>\n",
       "      <td>11</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>38</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>mich cute life</td>\n",
       "      <td>https://www.youtube.com/channel/UC3lbMylPNO7Os...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>151</td>\n",
       "      <td>21908</td>\n",
       "      <td>99</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=fi6UJ8pnGpo</td>\n",
       "      <td>🥀🥀🥀DRIVERS LICENSE cover KAT RIVERA SY TALENT ...</td>\n",
       "      <td></td>\n",
       "      <td>2021-02-17T14:42:35Z</td>\n",
       "      <td>14</td>\n",
       "      <td>1</td>\n",
       "      <td>1</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>39</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Grace Bello</td>\n",
       "      <td>https://www.youtube.com/channel/UCgkNGgHohpK5k...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>@g.raz.i.a</td>\n",
       "      <td>I love to sing!!!!!!!</td>\n",
       "      <td>115</td>\n",
       "      <td>4992</td>\n",
       "      <td>28</td>\n",
       "      <td>US</td>\n",
       "      <td>https://www.youtube.com/watch?v=YjNm4Y-Ar9s</td>\n",
       "      <td>Olivia Rodrigo- Driver’s license (cover)</td>\n",
       "      <td>I. Love. This. Song. That’s it, that’s the twe...</td>\n",
       "      <td>2021-01-12T03:22:01Z</td>\n",
       "      <td>135</td>\n",
       "      <td>17</td>\n",
       "      <td>13</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>40</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Alto Key Music</td>\n",
       "      <td>https://www.youtube.com/channel/UCBLBgwJQ3UY3_...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Alto Key is a London-based indie artist with a...</td>\n",
       "      <td>3930</td>\n",
       "      <td>73395</td>\n",
       "      <td>82</td>\n",
       "      <td>GB</td>\n",
       "      <td>https://www.youtube.com/watch?v=MFPqRZQmsrU</td>\n",
       "      <td>HEARTBREAKING PIANO BALLAD 🥺 | drivers license...</td>\n",
       "      <td>This song is blowing up like crazy right now s...</td>\n",
       "      <td>2021-01-19T17:36:44Z</td>\n",
       "      <td>168</td>\n",
       "      <td>26</td>\n",
       "      <td>23</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>41</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Cami Londono</td>\n",
       "      <td>https://www.youtube.com/channel/UCIo3Rmi_8f03Y...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>193</td>\n",
       "      <td>9539</td>\n",
       "      <td>17</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=ijr_Z55nAb8</td>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Hiii, everyone!!! \\nIdk about y’all but this s...</td>\n",
       "      <td>2021-01-12T23:54:28Z</td>\n",
       "      <td>164</td>\n",
       "      <td>27</td>\n",
       "      <td>17</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>42</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Kylie and Katelyn Richardson</td>\n",
       "      <td>https://www.youtube.com/channel/UC5NkV9E_SLjnJ...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Hey everybody! This is a new channel where we ...</td>\n",
       "      <td>335</td>\n",
       "      <td>27470</td>\n",
       "      <td>37</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=eI2_RWQOzUg</td>\n",
       "      <td>DRIVER’S LICENSE COVER</td>\n",
       "      <td>Cover of drivers license by olivia rodrigo bec...</td>\n",
       "      <td>2021-01-10T23:50:11Z</td>\n",
       "      <td>143</td>\n",
       "      <td>10</td>\n",
       "      <td>0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>43</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Marlyan</td>\n",
       "      <td>https://www.youtube.com/channel/UCDUTtCXKrmsYx...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>What nobody ask but you’re gonna get.</td>\n",
       "      <td>21</td>\n",
       "      <td>140</td>\n",
       "      <td>2</td>\n",
       "      <td>US</td>\n",
       "      <td>https://www.youtube.com/watch?v=u43rUr6-D_A</td>\n",
       "      <td>Drivers License Cover- Marlyan</td>\n",
       "      <td>17 Year Old genius Olivia sings this masterpie...</td>\n",
       "      <td>2021-01-18T18:57:15Z</td>\n",
       "      <td>45</td>\n",
       "      <td>9</td>\n",
       "      <td>6</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>44</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Diana Matache</td>\n",
       "      <td>https://www.youtube.com/channel/UCeN4E3Z3NceNU...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Be true to yourself, and the rest will happen ...</td>\n",
       "      <td>62</td>\n",
       "      <td>2279</td>\n",
       "      <td>9</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=UIVD0dOWtsc</td>\n",
       "      <td>Driver’s License cover - Olivia Rodrigo</td>\n",
       "      <td>Hey Hi Hello! Thanks for joining me! I heard t...</td>\n",
       "      <td>2021-01-13T19:54:10Z</td>\n",
       "      <td>86</td>\n",
       "      <td>4</td>\n",
       "      <td>2</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>45</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Eve Saez</td>\n",
       "      <td>https://www.youtube.com/channel/UC55TQkaiNJI9f...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>116</td>\n",
       "      <td>8068</td>\n",
       "      <td>13</td>\n",
       "      <td>ES</td>\n",
       "      <td>https://www.youtube.com/watch?v=LoT13nSMdC8</td>\n",
       "      <td>drivers license cover Olivia Rodrigo</td>\n",
       "      <td></td>\n",
       "      <td>2021-01-14T17:00:39Z</td>\n",
       "      <td>396</td>\n",
       "      <td>6</td>\n",
       "      <td>0</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>46</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>shy tv</td>\n",
       "      <td>https://www.youtube.com/channel/UCzlWp9JYLXhD8...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>10</td>\n",
       "      <td>107</td>\n",
       "      <td>2</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=BumxcNmqjbo</td>\n",
       "      <td>olivia rodrigo - drivers license (cover)</td>\n",
       "      <td></td>\n",
       "      <td>2021-01-17T07:41:19Z</td>\n",
       "      <td>65</td>\n",
       "      <td>10</td>\n",
       "      <td>1</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>47</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Reni Angraini</td>\n",
       "      <td>https://www.youtube.com/channel/UC8_kPPPchDIbG...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td></td>\n",
       "      <td>4660</td>\n",
       "      <td>2095654</td>\n",
       "      <td>18</td>\n",
       "      <td>ID</td>\n",
       "      <td>https://www.youtube.com/watch?v=AXTIhSNopdo</td>\n",
       "      <td>(Lirik dan terjemahan) Drivers License – Olivi...</td>\n",
       "      <td>Hai thanks for watching this video, if you lik...</td>\n",
       "      <td>2021-01-15T05:34:51Z</td>\n",
       "      <td>3172</td>\n",
       "      <td>124</td>\n",
       "      <td>3</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>48</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Mr. Sax C</td>\n",
       "      <td>https://www.youtube.com/channel/UCc0IUJZpT4QiA...</td>\n",
       "      <td>mr.sax.c@live.com.pt</td>\n",
       "      <td>None</td>\n",
       "      <td>mr.sax.c@live.com.pt</td>\n",
       "      <td>None</td>\n",
       "      <td>MR. SAX C - Saxophone Live Performer\\n- The be...</td>\n",
       "      <td>676</td>\n",
       "      <td>184722</td>\n",
       "      <td>38</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=MGgeJHZrMhQ</td>\n",
       "      <td>DRIVERS LICENSE - Olivia Rodrigo | Sax Cover B...</td>\n",
       "      <td>FOR BOOKINGS: \\n\\nMy email:          mr.sax.c@...</td>\n",
       "      <td>2021-01-31T00:01:35Z</td>\n",
       "      <td>5662</td>\n",
       "      <td>27</td>\n",
       "      <td>11</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>49</th>\n",
       "      <td>drivers license cover</td>\n",
       "      <td>Martina _</td>\n",
       "      <td>https://www.youtube.com/channel/UC-JhURCxuElaV...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Welcome 🎶🎥</td>\n",
       "      <td>713</td>\n",
       "      <td>985469</td>\n",
       "      <td>150</td>\n",
       "      <td>None</td>\n",
       "      <td>https://www.youtube.com/watch?v=pbNOmmTfKvM</td>\n",
       "      <td>Davina Michelle - Drivers License (Lyrics) - C...</td>\n",
       "      <td>Cover of Olivia Rodrigo.\\n\\nThank you for watc...</td>\n",
       "      <td>2021-01-19T15:52:38Z</td>\n",
       "      <td>1130</td>\n",
       "      <td>17</td>\n",
       "      <td>0</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "              Search Term                 Channel Title  \\\n",
       "0   drivers license cover       Bianca Shervonne Reacts   \n",
       "1   drivers license cover     Tik Tok Cover Compilation   \n",
       "2   drivers license cover                Mira Sacaguing   \n",
       "3   drivers license cover              Camila Colominas   \n",
       "4   drivers license cover                      Erez Ron   \n",
       "5   drivers license cover                 Boyang Cortez   \n",
       "6   drivers license cover               Eli Sismoan YtC   \n",
       "7   drivers license cover                          KORA   \n",
       "8   drivers license cover             Pratishtha Sharma   \n",
       "9   drivers license cover                     Love Dani   \n",
       "10  drivers license cover                Marcus Trevino   \n",
       "11  drivers license cover               Natalie Mattson   \n",
       "12  drivers license cover                       khvylia   \n",
       "13  drivers license cover                    Notebodies   \n",
       "14  drivers license cover                       Lilacla   \n",
       "15  drivers license cover                       i chand   \n",
       "16  drivers license cover                 Mikaella Anne   \n",
       "17  drivers license cover             김소희는 Kim SoHee is   \n",
       "18  drivers license cover               Thomas Englmann   \n",
       "19  drivers license cover                     Xongi. za   \n",
       "20  drivers license cover                   bella rosli   \n",
       "21  drivers license cover                        SeSANG   \n",
       "22  drivers license cover                   Dave Carlos   \n",
       "23  drivers license cover                       Chantal   \n",
       "24  drivers license cover                Ligia Official   \n",
       "25  drivers license cover             Beth Fitton Music   \n",
       "26  drivers license cover             All about Joochan   \n",
       "27  drivers license cover            Matt Johnson Music   \n",
       "28  drivers license cover         Gacabe & Jecabe Music   \n",
       "29  drivers license cover                  Pedro Veloso   \n",
       "30  drivers license cover             Maureen Antonette   \n",
       "31  drivers license cover              CFO Julia Medina   \n",
       "32  drivers license cover                        小森mori   \n",
       "33  drivers license cover                lucas paschoal   \n",
       "34  drivers license cover                  Edjop Medado   \n",
       "35  drivers license cover                         AOXID   \n",
       "36  drivers license cover          Sanota, Kyla Gwen M.   \n",
       "37  drivers license cover              Christanto Bryan   \n",
       "38  drivers license cover                mich cute life   \n",
       "39  drivers license cover                   Grace Bello   \n",
       "40  drivers license cover                Alto Key Music   \n",
       "41  drivers license cover                  Cami Londono   \n",
       "42  drivers license cover  Kylie and Katelyn Richardson   \n",
       "43  drivers license cover                       Marlyan   \n",
       "44  drivers license cover                 Diana Matache   \n",
       "45  drivers license cover                      Eve Saez   \n",
       "46  drivers license cover                        shy tv   \n",
       "47  drivers license cover                 Reni Angraini   \n",
       "48  drivers license cover                     Mr. Sax C   \n",
       "49  drivers license cover                     Martina _   \n",
       "\n",
       "                                         Channel Link  \\\n",
       "0   https://www.youtube.com/channel/UCrFMBZqG3rZMh...   \n",
       "1   https://www.youtube.com/channel/UCl4BDEJ1PLBDI...   \n",
       "2   https://www.youtube.com/channel/UCYfS2GCR2OyGH...   \n",
       "3   https://www.youtube.com/channel/UCHaV8hihNb7dj...   \n",
       "4   https://www.youtube.com/channel/UCPaRu3U-xKN7L...   \n",
       "5   https://www.youtube.com/channel/UCtAhVpJQNFwUL...   \n",
       "6   https://www.youtube.com/channel/UCa8kJBj4jI82F...   \n",
       "7   https://www.youtube.com/channel/UCSmLXPNb-LSvA...   \n",
       "8   https://www.youtube.com/channel/UCC6O6Omt_EDoj...   \n",
       "9   https://www.youtube.com/channel/UCRWkjY0HnVZ1H...   \n",
       "10  https://www.youtube.com/channel/UCUw_JHDFgrWDr...   \n",
       "11  https://www.youtube.com/channel/UCQJtc8Etvt5OP...   \n",
       "12  https://www.youtube.com/channel/UCA9cGgknk8IeX...   \n",
       "13  https://www.youtube.com/channel/UCsQJQqVs2IC-1...   \n",
       "14  https://www.youtube.com/channel/UCtt7BR5TWIV0g...   \n",
       "15  https://www.youtube.com/channel/UCrLlx4T_elo-g...   \n",
       "16  https://www.youtube.com/channel/UCBmU5Hl0YnQQQ...   \n",
       "17  https://www.youtube.com/channel/UCZcYD8z6kx9rS...   \n",
       "18  https://www.youtube.com/channel/UCS0wuZAhr05l7...   \n",
       "19  https://www.youtube.com/channel/UCZPvDeLdt4rgI...   \n",
       "20  https://www.youtube.com/channel/UC43_z8rv6HxXJ...   \n",
       "21  https://www.youtube.com/channel/UClkxspSUToT7A...   \n",
       "22  https://www.youtube.com/channel/UC68fOYxcEbp1_...   \n",
       "23  https://www.youtube.com/channel/UCsKK4hHadolT3...   \n",
       "24  https://www.youtube.com/channel/UCktPBeqzg7t07...   \n",
       "25  https://www.youtube.com/channel/UCax_f7zfko7y-...   \n",
       "26  https://www.youtube.com/channel/UCrqfJ37FhuLj_...   \n",
       "27  https://www.youtube.com/channel/UCJPKHQmN4T14Y...   \n",
       "28  https://www.youtube.com/channel/UCESnF14tV3Zli...   \n",
       "29  https://www.youtube.com/channel/UCUOa1LG7hyMV9...   \n",
       "30  https://www.youtube.com/channel/UCsQVehWvVb08O...   \n",
       "31  https://www.youtube.com/channel/UCUVcqVnNYV3t5...   \n",
       "32  https://www.youtube.com/channel/UCnur0yioGmBX2...   \n",
       "33  https://www.youtube.com/channel/UCIPX7c0lICYIo...   \n",
       "34  https://www.youtube.com/channel/UCRTFNWgip1xok...   \n",
       "35  https://www.youtube.com/channel/UCT4Gi-r8feaTH...   \n",
       "36  https://www.youtube.com/channel/UCTOWw2H2swMxD...   \n",
       "37  https://www.youtube.com/channel/UC_5qo-NHCYvQe...   \n",
       "38  https://www.youtube.com/channel/UC3lbMylPNO7Os...   \n",
       "39  https://www.youtube.com/channel/UCgkNGgHohpK5k...   \n",
       "40  https://www.youtube.com/channel/UCBLBgwJQ3UY3_...   \n",
       "41  https://www.youtube.com/channel/UCIo3Rmi_8f03Y...   \n",
       "42  https://www.youtube.com/channel/UC5NkV9E_SLjnJ...   \n",
       "43  https://www.youtube.com/channel/UCDUTtCXKrmsYx...   \n",
       "44  https://www.youtube.com/channel/UCeN4E3Z3NceNU...   \n",
       "45  https://www.youtube.com/channel/UC55TQkaiNJI9f...   \n",
       "46  https://www.youtube.com/channel/UCzlWp9JYLXhD8...   \n",
       "47  https://www.youtube.com/channel/UC8_kPPPchDIbG...   \n",
       "48  https://www.youtube.com/channel/UCc0IUJZpT4QiA...   \n",
       "49  https://www.youtube.com/channel/UC-JhURCxuElaV...   \n",
       "\n",
       "                  Channel Email Channel Insta                     Video Email  \\\n",
       "0                          None          None  info.biancashervonne@gmail.com   \n",
       "1                          None          None                            None   \n",
       "2                          None          None                            None   \n",
       "3                          None          None          camcolominas@gmail.com   \n",
       "4                          None          None                            None   \n",
       "5                          None          None                            None   \n",
       "6                          None          None                            None   \n",
       "7                          None          None       info.katiejames@gmail.com   \n",
       "8                          None          None                            None   \n",
       "9                          None          None        danimadeline@outlook.com   \n",
       "10                         None          None                            None   \n",
       "11                         None          None                            None   \n",
       "12                         None          None                            None   \n",
       "13                         None          None                            None   \n",
       "14                         None          None                            None   \n",
       "15                         None          None                            None   \n",
       "16                         None          None                            None   \n",
       "17                         None          None                            None   \n",
       "18                         None          None       englmann.thomas@gmail.com   \n",
       "19                         None          None                            None   \n",
       "20                         None          None                            None   \n",
       "21                         None          None                            None   \n",
       "22                         None          None                            None   \n",
       "23                         None          None                            None   \n",
       "24                         None          None                            None   \n",
       "25                         None          None                            None   \n",
       "26                         None          None                            None   \n",
       "27                         None          None                            None   \n",
       "28                         None          None                            None   \n",
       "29                         None          None                            None   \n",
       "30                         None          None                            None   \n",
       "31  contacto@cfojuliamedina.com          None                            None   \n",
       "32                         None          None                            None   \n",
       "33                         None          None                            None   \n",
       "34                         None          None                            None   \n",
       "35                         None          None                            None   \n",
       "36                         None          None                            None   \n",
       "37                         None          None                            None   \n",
       "38                         None          None                            None   \n",
       "39                         None          None                            None   \n",
       "40                         None          None                            None   \n",
       "41                         None          None                            None   \n",
       "42                         None          None                            None   \n",
       "43                         None          None                            None   \n",
       "44                         None          None                            None   \n",
       "45                         None          None                            None   \n",
       "46                         None          None                            None   \n",
       "47                         None          None                            None   \n",
       "48         mr.sax.c@live.com.pt          None            mr.sax.c@live.com.pt   \n",
       "49                         None          None                            None   \n",
       "\n",
       "         Video Insta                                Channel Description  \\\n",
       "0               None                                                      \n",
       "1               None                                                      \n",
       "2               None  Hi! This Mira! I love singing that is why I cr...   \n",
       "3               None  Hello everyone! Welcome back to my channel. I ...   \n",
       "4               None  Hey World!\\nMy name is Erez Ron and I am a Sin...   \n",
       "5               None  Dialysis Nurse by profession. Frustrated singe...   \n",
       "6               None                                                      \n",
       "7               None  hi :D i've always had a passion for music, and...   \n",
       "8           @invites                                                      \n",
       "9               None  Hi, I'm Danielle but you can call me Dani ☺\\n\\...   \n",
       "10              None  Hello, I'm Marcus Trevino, a 15-year-old singe...   \n",
       "11  @natalie.mattson                                                      \n",
       "12              None                                                      \n",
       "13              None  Hi, we are the Notebodies! Our channel has eve...   \n",
       "14         @lilaclaa  hi, i'm angela !! i've been singing and playin...   \n",
       "15              None  i sing covers of my favourite songs, big effin...   \n",
       "16              None                            Aspiring singer/vlogger   \n",
       "17              None                                                      \n",
       "18              None  Thank you for stopping by my channel. On this ...   \n",
       "19         @xongi.za                                                      \n",
       "20       @bellvrosli  Vocalist Bawal & Jeans Band💜\\nSinging is my pa...   \n",
       "21              None                                                      \n",
       "22              None                                 Musician | Vlogger   \n",
       "23              None  Welcome to Chantal's channel! You will find lo...   \n",
       "24              None  Bine ati venit pe canalul oficial Ligia&band\\n...   \n",
       "25              None  Hi I’m Beth, I love to sing and share music wi...   \n",
       "26              None             ~Golden Child Hong Joochan enthusiast~   \n",
       "27              None  My name is Matt Johnson. I am an independent m...   \n",
       "28    @gacabe_jecabe  Este es el canal oficial de música hecha por G...   \n",
       "29              None                                                      \n",
       "30              None                                                      \n",
       "31              None  🎸 Club de Fans Oficial de Julia Medina. Si qui...   \n",
       "32              None                       小森mori / moriSTAR 💖\\n\\n廢．懶．宅   \n",
       "33              None  hey there, i’m lucas. im 14, and i like to sin...   \n",
       "34              None                                                      \n",
       "35        @whoisrvnd  Hello...Welcome to music video, music cover, m...   \n",
       "36              None                                                      \n",
       "37              None                                                      \n",
       "38              None                                                      \n",
       "39        @g.raz.i.a                              I love to sing!!!!!!!   \n",
       "40              None  Alto Key is a London-based indie artist with a...   \n",
       "41              None                                                      \n",
       "42              None  Hey everybody! This is a new channel where we ...   \n",
       "43              None              What nobody ask but you’re gonna get.   \n",
       "44              None  Be true to yourself, and the rest will happen ...   \n",
       "45              None                                                      \n",
       "46              None                                                      \n",
       "47              None                                                      \n",
       "48              None  MR. SAX C - Saxophone Live Performer\\n- The be...   \n",
       "49              None                                         Welcome 🎶🎥   \n",
       "\n",
       "   Subscribers Channel Views Total Videos Channel Country  \\\n",
       "0        25800       3664290          114              US   \n",
       "1         2520       1496380            3            None   \n",
       "2          164          2234           12            None   \n",
       "3          718         24413           45              US   \n",
       "4           66         17042           33              US   \n",
       "5           68           778            8            None   \n",
       "6           45           340            4            None   \n",
       "7         1410         18932           18            None   \n",
       "8          334          3941            6            None   \n",
       "9         1010         33896           67              AU   \n",
       "10          62          2697           33              US   \n",
       "11         331         30138           64            None   \n",
       "12          21           638            7            None   \n",
       "13          67         10111           44            None   \n",
       "14          47          1030           11              AU   \n",
       "15         139          1480            8            None   \n",
       "16        8280        317657          104              MY   \n",
       "17        None        172146           24              KR   \n",
       "18        5580        953885          127              DE   \n",
       "19         158          1576            6            None   \n",
       "20          30           695           16            None   \n",
       "21          24           571            4            None   \n",
       "22        4130        159723           62              PH   \n",
       "23        1210        166515           62            None   \n",
       "24        2040        284743           60              RO   \n",
       "25         106          3400           28              GB   \n",
       "26        2130        316300           83            None   \n",
       "27       27800       6780221          147              GB   \n",
       "28          54          1483           10              ES   \n",
       "29         117           619            2            None   \n",
       "30         182          4486           15            None   \n",
       "31        2830        960556          124              ES   \n",
       "32        None        239936           83              TW   \n",
       "33        1460         68593           87              GB   \n",
       "34          12            94            2            None   \n",
       "35       20000       1432314           28              ID   \n",
       "36          98          1343            6            None   \n",
       "37         201          7904           14            None   \n",
       "38         151         21908           99            None   \n",
       "39         115          4992           28              US   \n",
       "40        3930         73395           82              GB   \n",
       "41         193          9539           17            None   \n",
       "42         335         27470           37            None   \n",
       "43          21           140            2              US   \n",
       "44          62          2279            9            None   \n",
       "45         116          8068           13              ES   \n",
       "46          10           107            2            None   \n",
       "47        4660       2095654           18              ID   \n",
       "48         676        184722           38            None   \n",
       "49         713        985469          150            None   \n",
       "\n",
       "                                     Video Link  \\\n",
       "0   https://www.youtube.com/watch?v=60rXUskUywM   \n",
       "1   https://www.youtube.com/watch?v=d7QGuS06qiU   \n",
       "2   https://www.youtube.com/watch?v=ir6W_Q8W4Ts   \n",
       "3   https://www.youtube.com/watch?v=qMM7pQWuC8w   \n",
       "4   https://www.youtube.com/watch?v=8vsfSlVencc   \n",
       "5   https://www.youtube.com/watch?v=jUrB5Bftj68   \n",
       "6   https://www.youtube.com/watch?v=TixHmEUzpPQ   \n",
       "7   https://www.youtube.com/watch?v=YQql0hA1-o4   \n",
       "8   https://www.youtube.com/watch?v=fHgFRlUonWI   \n",
       "9   https://www.youtube.com/watch?v=P-D998RxczY   \n",
       "10  https://www.youtube.com/watch?v=0KX-kmtdHOI   \n",
       "11  https://www.youtube.com/watch?v=B_KTEOmx6Ck   \n",
       "12  https://www.youtube.com/watch?v=ZD9wQoow4lk   \n",
       "13  https://www.youtube.com/watch?v=D1BcQ3BE_1A   \n",
       "14  https://www.youtube.com/watch?v=DRMjOPJH4pA   \n",
       "15  https://www.youtube.com/watch?v=h_Dy5y2ww10   \n",
       "16  https://www.youtube.com/watch?v=TNQl3I6TPMU   \n",
       "17  https://www.youtube.com/watch?v=IEAhWNmagW8   \n",
       "18  https://www.youtube.com/watch?v=tV0QdMsoEoM   \n",
       "19  https://www.youtube.com/watch?v=C3tRMXfE390   \n",
       "20  https://www.youtube.com/watch?v=fNLkPqdb_VI   \n",
       "21  https://www.youtube.com/watch?v=ilT5rNfb0iE   \n",
       "22  https://www.youtube.com/watch?v=8X_UoaaSoRs   \n",
       "23  https://www.youtube.com/watch?v=2N53HJwqZyk   \n",
       "24  https://www.youtube.com/watch?v=6KLnqzHq_Yc   \n",
       "25  https://www.youtube.com/watch?v=KDozFxOJSzY   \n",
       "26  https://www.youtube.com/watch?v=ANnFgyxeT4o   \n",
       "27  https://www.youtube.com/watch?v=iMpXfBTOO-o   \n",
       "28  https://www.youtube.com/watch?v=hjo62606jnQ   \n",
       "29  https://www.youtube.com/watch?v=cBbVGWcCgtI   \n",
       "30  https://www.youtube.com/watch?v=qmGveVhg2k4   \n",
       "31  https://www.youtube.com/watch?v=YCrsqu8evrk   \n",
       "32  https://www.youtube.com/watch?v=Fod7_L6ZgfA   \n",
       "33  https://www.youtube.com/watch?v=foXdD8hKfwo   \n",
       "34  https://www.youtube.com/watch?v=wl4srEPpQyk   \n",
       "35  https://www.youtube.com/watch?v=IXJQQXXnJqw   \n",
       "36  https://www.youtube.com/watch?v=OukbXSVzNRM   \n",
       "37  https://www.youtube.com/watch?v=1RjhsMefDwg   \n",
       "38  https://www.youtube.com/watch?v=fi6UJ8pnGpo   \n",
       "39  https://www.youtube.com/watch?v=YjNm4Y-Ar9s   \n",
       "40  https://www.youtube.com/watch?v=MFPqRZQmsrU   \n",
       "41  https://www.youtube.com/watch?v=ijr_Z55nAb8   \n",
       "42  https://www.youtube.com/watch?v=eI2_RWQOzUg   \n",
       "43  https://www.youtube.com/watch?v=u43rUr6-D_A   \n",
       "44  https://www.youtube.com/watch?v=UIVD0dOWtsc   \n",
       "45  https://www.youtube.com/watch?v=LoT13nSMdC8   \n",
       "46  https://www.youtube.com/watch?v=BumxcNmqjbo   \n",
       "47  https://www.youtube.com/watch?v=AXTIhSNopdo   \n",
       "48  https://www.youtube.com/watch?v=MGgeJHZrMhQ   \n",
       "49  https://www.youtube.com/watch?v=pbNOmmTfKvM   \n",
       "\n",
       "                                          Video Title  \\\n",
       "0   Drivers License - Olivia Rodrigo (bare COVER) ...   \n",
       "1   Olivia Rodrigo - drivers license || TikTok Cov...   \n",
       "2                       drivers license cover by Mira   \n",
       "3   Olivia Rodrigo - Drivers License (Cover by Cam...   \n",
       "4       Olivia Rodrigo - drivers license - Male cover   \n",
       "5                              Driver’s License Cover   \n",
       "6   Olivia Rodrigo - driver's license Cover by Eli...   \n",
       "7            'drivers license' cover - olivia rodrigo   \n",
       "8   Drivers license- Olivia Rodrigo (Cover)|| By P...   \n",
       "9   drivers license - Olivia Rodrigo Cover | Love ...   \n",
       "10     Olivia Rodrigo - Drivers license cover (SHORT)   \n",
       "11           drivers license - olivia rodrigo (cover)   \n",
       "12          olivia rodrigo — driver's license (cover)   \n",
       "13  drivers license - Olivia Rodrigo Piano Cover |...   \n",
       "14  drivers license - Olivia Rodrigo (acoustic cover)   \n",
       "15                            Drivers license (cover)   \n",
       "16           Drivers License - Olivia Rodrigo - Cover   \n",
       "17        김소희= COVER│Olivia Rodrigo - drivers license   \n",
       "18  DRIVERS LICENCE - OLIVIA RODRIGO - SAXOPHONE C...   \n",
       "19                 Driver’s license-cover by Xongi.za   \n",
       "20  Olivia Rodrigo - Drivers License ( Cover by Be...   \n",
       "21         Driver's License (cover) by Olivia Rodrigo   \n",
       "22  Dave Carlos - Drivers License by Olivia Rodrig...   \n",
       "23  Drivers License - Olivia Rodrigo (Cover by Cha...   \n",
       "24  Olivia Rodrigo - “Drivers License” COVER by LIGIA   \n",
       "25             Drivers license - cover Olivia Rodrigo   \n",
       "26  210201 Olivia Rodrigo – drivers license Cover ...   \n",
       "27  drivers license - lyric video Matt Johnson aco...   \n",
       "28                      Drivers license (cover piano)   \n",
       "29  Drivers License - cover by Pedro Veloso, Bárba...   \n",
       "30  Driver's License Cover | Olivia Rodrigo | Cove...   \n",
       "31  Julia Medina - drivers license (Cover Olivia R...   \n",
       "32  Olivia Rodrigo - Drivers License cover by mori...   \n",
       "33                              drivers license cover   \n",
       "34                            drivers license - cover   \n",
       "35    Olivia Rodrigo - Driver's License Cover by Raka   \n",
       "36   Driver's License by Olivia Rodrigo (Short Cover)   \n",
       "37          Drivers License by Olivia Rodrigo | Cover   \n",
       "38  🥀🥀🥀DRIVERS LICENSE cover KAT RIVERA SY TALENT ...   \n",
       "39           Olivia Rodrigo- Driver’s license (cover)   \n",
       "40  HEARTBREAKING PIANO BALLAD 🥺 | drivers license...   \n",
       "41                              drivers license cover   \n",
       "42                             DRIVER’S LICENSE COVER   \n",
       "43                     Drivers License Cover- Marlyan   \n",
       "44            Driver’s License cover - Olivia Rodrigo   \n",
       "45               drivers license cover Olivia Rodrigo   \n",
       "46           olivia rodrigo - drivers license (cover)   \n",
       "47  (Lirik dan terjemahan) Drivers License – Olivi...   \n",
       "48  DRIVERS LICENSE - Olivia Rodrigo | Sax Cover B...   \n",
       "49  Davina Michelle - Drivers License (Lyrics) - C...   \n",
       "\n",
       "                                    Video Description       Video Published  \\\n",
       "0   This was so good!! I hope you enjoy this Drive...  2021-02-17T00:43:28Z   \n",
       "1   Hellooooow~\\n\\nDon’t forget to subscribe!\\n\\nC...  2021-01-15T14:42:15Z   \n",
       "2   I hope you like it.\\nPls. do subscribe to my y...  2021-02-08T11:07:16Z   \n",
       "3   vocals by prodbergotti\\nvisuals by Jonathon Wi...  2021-01-19T14:47:49Z   \n",
       "4   I HAVE NO RIGHTS TO THE SONG.\\n\\nSong: drivers...  2021-01-30T14:47:51Z   \n",
       "5                                                      2021-02-17T10:18:07Z   \n",
       "6   Hi, I'm Eli. Please check out my cover of Oliv...  2021-02-17T00:44:54Z   \n",
       "7   hey lol :D thx for watching! i'm obsessed w th...  2021-01-17T23:00:07Z   \n",
       "8   Original Credits~\\nSong- Drivers License\\nSing...  2021-02-17T11:02:06Z   \n",
       "9   drivers license - Olivia Rodrigo Cover | Love ...  2021-01-11T12:48:29Z   \n",
       "10  I really love this song and the chorus is abso...  2021-01-14T16:05:00Z   \n",
       "11  #driverslicense #oliviarodrigo\\n\\nSo I figured...  2021-01-18T16:00:05Z   \n",
       "12                                                     2021-01-17T17:30:39Z   \n",
       "13  HI! If you haven't heard of this song before, ...  2021-01-17T21:09:46Z   \n",
       "14  such a good song kinda obsessed ngl.\\n\\nI've p...  2021-01-12T08:52:40Z   \n",
       "15  Sorry for the bad audio quality.\\n.\\n.\\n.\\nLik...  2021-02-16T12:54:58Z   \n",
       "16  Drivers License - Olivia Rodrigo - Cover - tik...  2021-02-17T16:14:38Z   \n",
       "17  안녕하세용 여러분 오랜만에 노래 커버를 들고 왔습니당 ~~~ 헤헿💜 이 곡은 빌보드...  2021-02-10T09:00:05Z   \n",
       "18  SAXOPHONE COVER OF OLIVIA RODRIGO'S \"DRIVERS L...  2021-01-17T16:32:22Z   \n",
       "19  Original song by Olivia Rodrigo\\n\\nhttps://m.y...  2021-02-15T20:30:00Z   \n",
       "20  Hello I'm back! Just a short cover! 😜\\nEnjoy a...  2021-02-15T10:38:57Z   \n",
       "21                                                     2021-02-16T07:09:29Z   \n",
       "22  \"Guess you didn't mean what you wrote in that ...  2021-02-15T09:40:33Z   \n",
       "23  drivers license Cover - For Entertainment Purp...  2021-02-14T10:12:35Z   \n",
       "24                                                     2021-02-16T16:17:13Z   \n",
       "25  Happy Wednesday everyone! \\n\\nHere is this wee...  2021-02-17T12:18:58Z   \n",
       "26  Follow Hi_Goldenness on Twitter for more video...  2021-02-01T15:16:23Z   \n",
       "27  This is my lyric video to my acoustic cover of...  2021-01-25T15:39:19Z   \n",
       "28  Cover piano de esta famosa canción, espero que...  2021-02-14T15:45:17Z   \n",
       "29  Oficial video and cover of Drivers License \\n🎶...  2021-02-16T00:03:51Z   \n",
       "30  Tried to make a cover of the most requested so...  2021-02-14T15:32:24Z   \n",
       "31  VERSIÓN COMPLETA: https://youtu.be/80_00GjpVt0...  2021-01-18T21:18:33Z   \n",
       "32  #DriversLicense #OliviaRodrigo #Cover #shorts ...  2021-02-14T21:48:06Z   \n",
       "33  finally did a cover on this beautiful song :)\\...  2021-01-14T10:16:39Z   \n",
       "34                                                     2021-02-16T15:00:11Z   \n",
       "35  Cover by AOXID \\n\\nSinger : Raka\\nhttps://www....  2021-01-27T17:38:12Z   \n",
       "36                                                     2021-02-17T12:28:42Z   \n",
       "37  Hey everyone! If you enjoy my cover please don...  2021-02-15T16:44:34Z   \n",
       "38                                                     2021-02-17T14:42:35Z   \n",
       "39  I. Love. This. Song. That’s it, that’s the twe...  2021-01-12T03:22:01Z   \n",
       "40  This song is blowing up like crazy right now s...  2021-01-19T17:36:44Z   \n",
       "41  Hiii, everyone!!! \\nIdk about y’all but this s...  2021-01-12T23:54:28Z   \n",
       "42  Cover of drivers license by olivia rodrigo bec...  2021-01-10T23:50:11Z   \n",
       "43  17 Year Old genius Olivia sings this masterpie...  2021-01-18T18:57:15Z   \n",
       "44  Hey Hi Hello! Thanks for joining me! I heard t...  2021-01-13T19:54:10Z   \n",
       "45                                                     2021-01-14T17:00:39Z   \n",
       "46                                                     2021-01-17T07:41:19Z   \n",
       "47  Hai thanks for watching this video, if you lik...  2021-01-15T05:34:51Z   \n",
       "48  FOR BOOKINGS: \\n\\nMy email:          mr.sax.c@...  2021-01-31T00:01:35Z   \n",
       "49  Cover of Olivia Rodrigo.\\n\\nThank you for watc...  2021-01-19T15:52:38Z   \n",
       "\n",
       "   Video Views Video Likes Video Comments  \n",
       "0          478          95              7  \n",
       "1         3031         127             10  \n",
       "2          301          44           None  \n",
       "3         2128         137             25  \n",
       "4         8100           7              6  \n",
       "5           89           4             14  \n",
       "6           47          11              3  \n",
       "7         1006          99             20  \n",
       "8          392         107             70  \n",
       "9          135          26             38  \n",
       "10         261          20              2  \n",
       "11         218          34              3  \n",
       "12          45          18              0  \n",
       "13          67          10              3  \n",
       "14          66           9              4  \n",
       "15          49          12             17  \n",
       "16         238          35              0  \n",
       "17        1924         420            139  \n",
       "18        1562          99             12  \n",
       "19          88          15              7  \n",
       "20          41           6             14  \n",
       "21          21           4              5  \n",
       "22         440          80             53  \n",
       "23        2120           8             10  \n",
       "24          50           7              6  \n",
       "25          14           7             14  \n",
       "26         277          48              4  \n",
       "27         630          36              9  \n",
       "28          23           6              0  \n",
       "29         458         148             46  \n",
       "30          94          12             11  \n",
       "31         360          41              5  \n",
       "32          36           5              7  \n",
       "33         319          60             63  \n",
       "34          44           7              0  \n",
       "35        1127         164             30  \n",
       "36           5           1              0  \n",
       "37         131          25             11  \n",
       "38          14           1              1  \n",
       "39         135          17             13  \n",
       "40         168          26             23  \n",
       "41         164          27             17  \n",
       "42         143          10              0  \n",
       "43          45           9              6  \n",
       "44          86           4              2  \n",
       "45         396           6              0  \n",
       "46          65          10              1  \n",
       "47        3172         124              3  \n",
       "48        5662          27             11  \n",
       "49        1130          17              0  "
      ]
     },
     "execution_count": 86,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "_create_sheet_from_dataframe(augDf, 'by rating', ss)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 77,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": 78,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'11Z5r6ilKrv95EMzHItCKp73F-BqR7qWa7gftTm3gIAg'"
      ]
     },
     "execution_count": 78,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "ss.id"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 116,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Reaction videos:\n",
    "reaction_searches = [\n",
    "    dict(search_query='new song reviews', topicId=musicTopicId, num_videos=50),\n",
    "    dict(search_query='song reaction', topicId=musicTopicId),\n",
    "    dict(search_query='music reaction', topicId=musicTopicId),\n",
    "    dict(search_query='reaction videos', topicId=musicTopicId),\n",
    "    dict(search_query='new pop reactions', topicId=musicTopicId),\n",
    "    dict(search_query='new release reaction', topicId=musicTopicId),\n",
    "]\n",
    "reaction_folder = os.path.join(DATA_FOLDER, 'reactions')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 117,
   "metadata": {},
   "outputs": [],
   "source": [
    "def run_searches(searches, folder):\n",
    "    for search in searches:\n",
    "        kwargs = dict(\n",
    "            publishedAfter='2020-01-01T00:00:00Z',\n",
    "            order='viewCount',\n",
    "            num_videos=300,\n",
    "            topicId=None,\n",
    "            folder=folder\n",
    "        )\n",
    "        kwargs.update(search)\n",
    "        print(kwargs)\n",
    "        create_csv_from_search(**kwargs)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 124,
   "metadata": {},
   "outputs": [],
   "source": [
    "fulldf = pd.concat(\n",
    "    [pd.read_csv(os.path.join(reaction_folder, f)) for f in os.listdir(reaction_folder)],\n",
    "    ignore_index=True,\n",
    ")\n",
    "    \n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 150,
   "metadata": {
    "scrolled": false
   },
   "outputs": [],
   "source": [
    "uniqchans = fulldf.sort_values('Video Views').groupby('Channel Title').last().sort_values('Subscribers', ascending=False)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 151,
   "metadata": {},
   "outputs": [],
   "source": [
    "uniqchans.drop('Unnamed: 0', axis='columns', inplace=True)\n",
    "uniqchans.replace({np.nan: None}, inplace=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 152,
   "metadata": {},
   "outputs": [],
   "source": [
    "fullcsv = [[c.split('.')[-1] for c in uniqchans.columns]] + uniqchans.to_numpy().tolist()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 140,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[['Search Term',\n",
       "  'Channel Link',\n",
       "  'Channel Email',\n",
       "  'Channel Insta',\n",
       "  'Video Email',\n",
       "  'Video Insta',\n",
       "  'Channel Description',\n",
       "  'Subscribers',\n",
       "  'Channel Views',\n",
       "  'Total Videos',\n",
       "  'Channel Country',\n",
       "  'Video Link',\n",
       "  'Video Title',\n",
       "  'Video Description',\n",
       "  'Video Published',\n",
       "  'Video Views',\n",
       "  'Video Likes',\n",
       "  'Video Comments'],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCJrOtniJ0-NWz37R30urifQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'When I was a kid, I had a fascination for programming and graphic design. Music kind of just happened spontaneously a few years back. I found a track on Youtube I liked a lot – it inspired me and it made me start exploring producing myself. Everything started online with people, or rather nicknames, from around the world helping each other out. Now music is a big part of my life.',\n",
       "  33800000,\n",
       "  7977946655,\n",
       "  221,\n",
       "  'NO',\n",
       "  'https://www.youtube.com/watch?v=TwygBg0yck0',\n",
       "  'Alan Walker & Ruben - Heading Home (Fan Reaction & Lyric Video)',\n",
       "  \"Thanks to each and every one of the 132k people that joined my live stream to hear Heading Home for the first time - these are some of your reactions. Even though we’re apart, we’re still connected 💙\\n\\n- Alan\\n\\n#HeadingHome #WalkersJoin #CreateADifferentWorld\\n\\n_____________________\\n\\nCheck out the song here: https://lnk.to/AWHeadingHome\\n\\nAlso, here's chapter 1 and 2 of the World of Walker trilogy so you can follow from the beginning:\\n// On My Way ft. @Sabrina Carpenter  & @Farruko : https://youtu.be/dhYOPzcsbGM //\\n\\n// Alone pt. II ft. @Ava Max: https://youtu.be/HhjHYkPQ8F0 //\\n\\n#AlanWalker #DJWalkzz #Lyrics\\n_____________________\\n\\n// LYRICS // Alan Walker & Ruben - Heading Home // LYRICS //\\n\\n[Verse 1]\\nI was so insatiable\\nTill the lights came on and the stories got old\\nNow there’s no one here I know\\nAnd the city outside`s not the same anymore\\n\\n[Pre-Chorus]\\nAnd I\\nI remember when we were young\\nWe`d write our names in the sand\\nSo carelessly\\nThen the rain came and yours was gone\\nAnd now mine it stands alone\\n\\n[Chorus]\\nNobody sees me now I’m a one man show\\nI`ll do this on my own\\nWe knew it all then now this is all I know\\nGuess I’m heading home now\\n\\n[Verse 2]\\nWhen the music always played\\nWith the sound of our lives and the sweetest escape\\nAnd the neighbours would complain\\nWe would turn it up louder who cares anyway\\nCoz we\\n\\n[Pre-Chorus]\\nWe remembered that we were young\\nOur lives were grains in the sand\\nThat we\\nMade our castles and kingdoms of\\nNow the waves have torn them down\\n\\n[Chorus]\\nNobody sees me now I’m a one man show\\nI`ll do this on my own\\nWe knew it all then now this is all I know\\nGuess I’m heading home now\\n\\n[Bridge]\\nYou’ll find me\\nI’ll be here\\nI can see\\nI can breathe, anymore\\n\\n[Pre-Chorus]\\nhow could we have stayed\\nyou were high on love I was drunk on the pain\\n\\n[Chorus]\\nGuess I am heading Home\\nI am heading Home\\nYeah yeah ..\\nGuess I am heading home now\\n\\n/////////////////////////////////////////\\n\\nCheck out all of the World of Walker videos here, from Faded to Heading Home: https://www.youtube.com/playlist?list...\\n\\nAlso, check out my BTS videos on the Unmasked Vlog here: https://www.youtube.com/playlist?list...\\n\\n/////////////////////////////////////////\\n\\nThank you Walkers!\",\n",
       "  '2020-04-06T10:55:12.000Z',\n",
       "  420311,\n",
       "  32073.0,\n",
       "  3346.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCOsyDsO5tIt-VZ1iwjdQmew',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Speed Records, the biggest Punjabi Music Record label in the world combining feet tapping tunes accompanied with vibrant voices as the identifier of Punjabi culture. With best of artistes in Punjabi Music and a huge repertoire of hits, this is your one stop destination for Punjabi Music!\\n\\nEnjoy & stay connected with us!\\n► Subscribe to Speed Records : http://bit.ly/SpeedRecords\\n► Like us on Facebook: https://www.facebook.com/SpeedRecords\\n► Follow us on Twitter: https://twitter.com/Speed_Records\\n► Follow us on Instagram: https://instagram.com/speedrecords\\n► Follow on Snapchat : https://www.snapchat.com/add/speedrecords\\nWebsite - http://www.speedrecordsworld.com/',\n",
       "  29600000,\n",
       "  15244616321,\n",
       "  8085,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=RjYTpM3uOHE',\n",
       "  'Sufna (Public Review) | Ammy Virk | Tania | Jaani | B Praak | Latest Punjabi Movie 2020',\n",
       "  'Title - Sufna (Public Review)\\nStarring - Ammy Virk, Tania, Jagjeet Sandhu, Seema Kaushal, Jasmin Bajwa, Kaka Kautki, Mohini Toor, Lakha Lehri, Balwinder Bullet, Rabab Kaur & Mintu Kapa \\nProduced by - Gurpreet Singh, Navneet Virk               \\nWritten and Directed by - Jagdeep Sidhu\\nSound Designer - Pranam Pansare\\nBackground Music - Sandeep Saxena\\nDI & VFX  - Pixel D Studios\\nColorist - Prakash Joseph\\nWorldwide Distribution - White Hill Studios\\nIndia Distribution - Narshima Enterprises\\nCostume Designer - Roma Sharma\\nArt Director - Vijay Giri \\nLine Producer - Karan Gill\\nDirector of Photography - Vineet Malhotra \\nEditor - Manish More\\nNews Editor - D Pee Gill \\nLabel - Junglee Music\\n\\nLike || Share || Spread || Love \\n  \\nEnjoy & stay connected with us!\\n► Subscribe to Speed Records : http://bit.ly/SpeedRecords\\n► Like us on Facebook: https://www.facebook.com/SpeedRecords\\n► Follow us on Twitter: https://twitter.com/Speed_Records\\n► Follow us on Instagram: https://instagram.com/speedrecords\\n► Follow on Snapchat : https://www.snapchat.com/add/speedrecords\\n  \\nSpeed Records Haryanvi\\nYoutube: https://bit.ly/2kSrhZK\\nInstagram: https://www.instagram.com/speedharyanviofficial \\n\\nAll hit punjabi songs, New punjabi songs 2020, Latest punjabi songs 2020, All new punjabi songs 2020, All new latest punjabi songs 2020, Hit punjabi song,\\n\\nSpeed Records Bhojpuri - \\nYoutube: https://bit.ly/2y8HSez\\nInstagram: https://bit.ly/2xM2WYL\\nSnapchat: https://www.snapchat.com/add/speedbhojpuri\\n\\nOops TV -\\nOops TV Facebook Link - https://m.facebook.com/oopstvfun/\\n\\nPoon Poon - \\nSnapchat - https://www.snapchat.com/add/poonpoon0001\\nYoutube - http://bitly.com/2hwYOnx\\nFacebook - https://www.facebook.com/officialpoonpoon\\nInstagram - https://instagram.com/poonpoonofficial',\n",
       "  '2020-02-23T08:30:02.000Z',\n",
       "  98197,\n",
       "  2512.0,\n",
       "  118.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCLkAepWjdylmXSltofFvsYQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'BTS Official YouTube Channel',\n",
       "  28500000,\n",
       "  3896685169,\n",
       "  1181,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=Q2metvIQavo',\n",
       "  '[BANGTAN BOMB] BTS ‘ON’ MV reaction - BTS (방탄소년단)',\n",
       "  'Connect with BTS:\\nhttp://www.ibighit.com\\nhttp://twitter.com/BTS_bighit\\nhttp://twitter.com/BTS_twt\\nhttp://www.facebook.com/bangtan.official\\nhttp://instagram.com/BTS.bighitofficial\\nhttps://channels.vlive.tv/FE619\\nhttps://www.tiktok.com/@bts_official_bighit\\nhttps://app.weverse.io/gpt4o \\nhttp://weibo.com/BTSbighit\\nhttps://www.weibo.com/BTSmember\\nhttp://i.youku.com/btsofficial\\nhttp://btsblog.ibighit.com',\n",
       "  '2020-03-06T10:01:15.000Z',\n",
       "  7147178,\n",
       "  946699.0,\n",
       "  25790.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCwD4x63A9KC7Si2RuSfg-SA',\n",
       "  'dobrebrothersmgmt@gmail.com',\n",
       "  nan,\n",
       "  'dobrebrothersmgmt@gmail.com',\n",
       "  '@lucas_dobre',\n",
       "  'Twins that Dance & Entertain\\n\\nWE POST EVERY TUESDAY, THURSDAY, & SUNDAY!\\n\\nBIZ - dobrebrothersmgmt@gmail.com',\n",
       "  20400000,\n",
       "  5069778685,\n",
       "  585,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=ctBXR7GIGw0',\n",
       "  'PARENTS REACT TO OUR NEW SONG! \"You Know You Lit ft. Lil Pump\"',\n",
       "  'This was SO FUNNY! \\n\\nNEW SONG 🔥‘YOU KNOW YOU LIT FT. LIL PUMP’ \\nhttps://bit.ly/399ghKt \\n\\nTEXT OUR PHONE NUMBER! (301) 245-2201\\n\\nDOWNLOAD ‘YOU KNOW YOU LIT FT. LIL PUMP’ ON SPOTIFY & APPLE MUSIC\\nhttps://spoti.fi/2QENzea    \\nhttps://apple.co/2wlr4Eh\\nDOWNLOAD DOBRE DUNK! 🏀http://bit.ly/DownloadDOBREDUNK\\n\\nWE POST TUESDAY,THURSDAY, & SUNDAY!\\nTURN OUR POST NOTIFICATIONS ON FOR A SHOUTOUT!\\n\\nSUBSCRIBE TO THE DOBRE VLOG CHANNEL! https://www.youtube.com/channel/UCC3O...\\n\\nSUBSCRIBE TO THE LUCAS AND MARCUS CHANNEL!\\nhttps://www.youtube.com/user/TwiNboTz... \\n\\nLucas\\'s Social Media \\n \\nInstagram: https://www.instagram.com/lucas_dobre/\\nTwitter: https://twitter.com/dobrelucas\\nFacebook: https://www.facebook.com/dobrelucas/\\nSnapchat: lucas_dobre\\nTik Tok: DobreTwins\\n \\nMarcus\\'s Social Media \\n \\nInstagram: https://www.instagram.com/marcusdobre\\nTwitter: https://twitter.com/dobremarcus\\nFacebook: https://www.facebook.com/marcusdobre/\\nSnapchat: marcusdobre1\\nTik Tok: Dobretwins\\n\\nFollow the Dobre Brothers: \\nInstagram: https://www.instagram.com/dobrebrothers/\\n\\nBIZ - dobrebrothersmgmt@gmail.com\\n \\nTHANKS FOR WATCHING!\\n\\nPARENTS REACT TO OUR NEW SONG! \"You Know You Lit ft. Lil Pump\"\\nhttps://www.youtube.com/user/TwiNboTzVids😂',\n",
       "  '2020-03-24T22:13:34.000Z',\n",
       "  1709739,\n",
       "  77907.0,\n",
       "  17565.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC0v-tlzsn0QZwJnkiaUSJVQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'credits@fbeteam.com',\n",
       "  '@annalisefujii',\n",
       "  'FBE has been here for over a decade, fostering bigger conversations and building stronger communities! From our award-winning REACT series, to shows across scripted, unscripted, animation, interactive, TV series, feature films and more. \\n\\nNEW VIDEOS AT 2PM PST\\n\\nWant to support FBE and have a bigger say in the content we make? Join the SuperFam: http://www.youtube.com/REACT/join\\n\\nSubscribe to our other channels for the Award-winning REACT series, scripted, unscripted, animation, interactive, sketch comedy, Gaming, Laugh Challenges, Food Shows, Daily Vlogs, BTS, and more!\\n\\nREACT: http://www.youtube.com/REACT\\nFBE2: https://www.youtube.com/FBE2\\nSign Up for Our Newsletter: http://fbereact.com/info\\n\\nSupport the shows! Visit ShopFBE.com for official merch!',\n",
       "  20100000,\n",
       "  8856406153,\n",
       "  2233,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=2du4d-UZ5go',\n",
       "  'College Kids React To When Our Generation Gets Old And Hears A Throwback Song',\n",
       "  'Subscribe to Kyle Exum! https://www.youtube.com/user/KyleExumTV\\nWatch More Episodes Of College Kids React: https://www.youtube.com/watch?v=VeGjfDu73a0&list=PL23C220A2C5EC0FDE&index=23\\nFollow @FBE on Twitter to get updates on new shows, behind-the-scenes and many more! https://twitter.com/fbe\\n\\nCollege Kids React to when our generations gets older and hears a throwback videos. Watch to see their reactions!\\n\\nContent Featured:\\nPart 1\\nhttps://www.youtube.com/watch?v=ZZK0LFX78Ec\\n\\nPart 2\\nhttps://www.youtube.com/watch?v=teb91xvtCzc\\n\\nPart 3\\nhttps://www.youtube.com/watch?v=nduUGUwt_-M\\n\\nFBE’s goal is to credit the original links to the content featured in its shows. If you see incorrect or missing attribution please reach out to credits@fbeteam.com\\n\\nReactors Featured:\\nAnna\\nhttps://www.instagram.com/annalisefujii/\\nAustin\\nhttps://www.instagram.com/itsaustinpowell/\\nChristopher\\nhttps://www.instagram.com/chrisorzame/\\nEric\\nhttps://www.youtube.com/4n1\\nJeannie\\nhttps://www.instagram.com/jeannieelisemai/\\nKennedy\\nhttps://www.instagram.com/kennedyzimet/\\nLene\\nhttps://www.instagram.com/lenemurad/\\nLovely\\nhttps://www.instagram.com/lovelychavez/\\nTori\\nhttps://www.instagram.com/justxtori/\\n\\nMERCH 👕 https://www.shopfbe.com\\n\\nFollow FBE:\\nFBE WEBSITE: https://fbeteam.com/\\nFBE: http://www.youtube.com/FBE\\nREACT: http://www.youtube.com/REACT\\nFBE2: https://www.youtube.com/FBE2\\nFBELive: https://www.youtube.com/fbelive\\nFACEBOOK: http://www.facebook.com/FBE\\nFACEBOOK: http://www.facebook.com/FBEShows\\nTWITTER: http://www.twitter.com/fbe\\nINSTAGRAM: http://www.instagram.com/f/fbe\\nSNAPCHAT: https://fbereact.com/snapchat\\nDISCORD: https://fbereact.com/FBEdiscord\\nTWITCH: https://www.twitch.tv/fbelive\\nAMAZON: https://www.amazon.com/v/FBE\\nXUMO: https://fbereact.com/xumo\\n\\nSEND US STUFF:\\nFBE\\nP.O. BOX 4324\\nValley Village, CA 91617-4324\\n\\nCredits:\\nProduced by Sierra Middlebrooks\\nExecutive Producers - Benny Fine & Rafi Fine\\nVice President of Production - Kate Grady\\nVice President of Creative - Harris Sherman\\nSenior Producer - Sierra Middlebrooks\\nProducers - Lauren Hutchinson\\nAssociate Producer - Jesse Tugas\\nLine Producer - Hillary Freedman\\nProduction Manager - Seung-Wan Choi\\nCasting & Talent Relations - Steven Causey\\nProduction Coordinator - Laura Espinoza\\nAsst. Production Coordinator - Laura Lareau\\nCoordinator Assistant - Ashley Paz\\nEditor - Lucas Griffith & Jordan Smith\\nAssistant Editor - Jamal Amer\\nTechnical Director - Lucas Lee Graham\\nProduction Tech - Edgar Plascencia, Ryan Johnson, Lake Peterson, & Asuka Lin\\nProduction Assistant - Michael Jerrett\\nGraphics - Kat Nieto\\nSet design - Melissa Judson\\nMusic - Cyrus Ghahremani\\n\\n© FBE, Inc\\n\\n#FBE #ThrowbackSong #KyleExum\\n\\nCollege Kids React To When Our Generation Gets Old And Hears A Throwback Song',\n",
       "  '2020-03-07T22:00:00.000Z',\n",
       "  1767121,\n",
       "  62221.0,\n",
       "  4831.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC2pmfLm7iq6Ov1UwYrWYkZA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Vevo on YouTube - Official Music Videos, Live Performances, Interviews and more...',\n",
       "  19300000,\n",
       "  565544555,\n",
       "  1554,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=nR1JkXyJPkA',\n",
       "  'Watch This: People React to This Week’s Biggest Music Videos | Ep. 1',\n",
       "  \"Watch This - Video Review Series (Vevo Originals)\\n\\nGet ready. Our new show puts a camera in the COMMENTS section. 'Watch This' invites a group of music fans to share their opinions on the week’s biggest videos. Hit the COMMENTS below to tell us what you think of them, too.   \\n\\nThis Week’s Music Videos\\nROSALÍA - Juro Que       https://youtu.be/mtym36PG6R8\\nBillie Eilish - everything i wanted    https://youtu.be/EgBJmlPo8Xw\\nThe Weeknd - Blinding Lights        https://youtu.be/4NRXx6U8ABQ\\nLouis Tomlinson - Walls           https://youtu.be/ASt2TJ48r6k\\n\\nCast\\nDustin Ross @LookAtDustin\\nPedro Pinky @ThePedroski\\nKarina Alvarez @realworldreeny\\nMaddie Bone @maddtothebone\\nLindsay Sanchez @lsancheezy\\nAnna B. @annabtheg\\nCJ South @creativejenius\\n\\nExecutive Producer: Micah Bickham\\nSenior Producer: Priya Minhas\\nProducer: Sacha Noelle\\nEditor: Kevin Rose\\n\\nVevo\\nhttp://facebook.com/vevo\\nhttp://twitter.com/vevo\\nhttp://instagram.com/vevo\\n\\nWatch videos from our New Releases playlist: http://bit.ly/37MksvE\\n\\nWatch videos in our Brand New Pop playlist: https://bit.ly/2TfBXNZ\\n \\nCheck the new rap vids in our Hottest New Hip-Hop playlist: https://bit.ly/2Ggkpyn  \\n\\nHear the latest tracks on Vevo in Fresh Music Friday: http://bit.ly/2FYPzrV\\n\\nWatch the freshest Latin videos in Nuevo Pop Latino playlist:  http://bit.ly/36G0kuU\\n\\nCheck the new country music tracks in our Kickin' Country playlist: http://bit.ly/36It8TI\\n\\n#Vevo #VideoReview  #Rosalía #BillieEilish #TheWeeknd\\n\\nhttp://vevo.ly/lgNuiY\",\n",
       "  '2020-01-30T11:44:06.000Z',\n",
       "  54114,\n",
       "  881.0,\n",
       "  170.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCj2GTFekdV3EUsTVN8oaEqA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Kevin Gates Official YouTube Channel\\nNew album, I'M HIM out now.\",\n",
       "  5880000,\n",
       "  4301883091,\n",
       "  306,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=i7Qy9ubFVfo',\n",
       "  'Kevin Gates - 90s Music Video Reactions',\n",
       "  'Kevin Gates - 90s Music Video Reactions with OG Boobie Black\\nSubscribe for more official content from Kevin Gates:\\nhttps://kevingates.lnk.to/Subscribe\\n\\nFollow Kevin Gates\\nTwitter: http://twitter.com/kevin_gates\\nInstagram: http://instagram.com/iamkevingates\\nFacebook: https://facebook.com/kvngates\\nSoundcloud: https://soundcloud.com/kevingates\\nWebsite: http://www.kvngates.com\\n\\nThe official YouTube channel of Atlantic Records artist Kevin Gates. Subscribe for the latest music videos, performances, and more.\\n\\n#KevinGates #90sMusicVideos',\n",
       "  '2020-03-20T20:58:31Z',\n",
       "  246383,\n",
       "  6961.0,\n",
       "  863.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCFvXnyAhluG3sa6p3eOs_LA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'The official Jonas Brothers YouTube Chanel 🙍🏻\\u200d♂️🙍🏻\\u200d♂️🙍🏻\\u200d♂️',\n",
       "  4640000,\n",
       "  444918293,\n",
       "  64,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=RwMH07V_bqI',\n",
       "  'Jonas Brothers - What A Man Gotta Do (Fan Reaction Video)',\n",
       "  'The day we announced our new single \"What A Man Gotta Do\", we invited a few fans to the studio in Los Angeles to see the video first! \\n\\nWatch the \"What A Man Gotta Do\" video here: http://JonasBrothers.lnk.to/WAMGDVideo\\n\\nStream \"What A Man Gotta Do\" here: http://JonasBrothers.lnk.to/WAMGD\\n\\nConnect with Jonas Brothers:\\nhttps://instagram.com/jonasbrothers\\nhttps://facebook.com/JonasBrothers\\nhttps://twitter.com/jonasbrothers\\nhttps://jonasbrothers.com',\n",
       "  '2020-01-19T00:03:38.000Z',\n",
       "  1279387,\n",
       "  48288.0,\n",
       "  556.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCPOIFuct7fjWKkiDRTNJqrg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Totally TV with the new Super Pops and Pop Music High. We do adventure videos, exciting challenges, music videos and more. Subscribe and click the bell notification to be the first to find out about our videos.',\n",
       "  4000000,\n",
       "  1378166916,\n",
       "  815,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=nGIqN3UfZf0',\n",
       "  'REACT (MUSIC VIDEO). ELSA VS BELLE PRINCESS RAP BATTLE & DISNEY SONG. Totally TV Parody.',\n",
       "  'Official Music Video React Song and Princess Rap Battle from Frozen 2 Elsa and Belle from Beauty and the Beast Disney Movies. \\n\\nSubscribe: http://goo.gl/F6BqkQ\\n\\nTotally TV Disney Princess Parody Music Video with Jenn Barlow as Elsa from Frozen 2, Laura Elizabeth Hall as Belle from Beauty and the Beast, Scarlet Sheppard as Anna from Frozen, Stephanie Hoston as Jasmine from Aladdin, Zaria Suggs as Tiana from the Princess and the Frog, with Laura Olivia Cordell as Mulan. \\n\\nDisney Princess Rap Battle Song – “React” downloadable on Apple iTunes and Google Play Music by Adam Ilami.\\n\\nOur Playlists: \\n\\nThe SuperPops: Pop Stars with Superpowers: \\nhttps://www.youtube.com/playlist?list=PL8YI13LeOVR9Ss4OIzh4QMDa8u0vzCS9d\\n\\n\\nPop Music High Season 2: \\nhttps://www.youtube.com/playlist?list=PL8YI13LeOVR8thRcQpkfz6bsMRLocLyPh\\n\\n\\nMore Videos We Like: \\n\\n@Whitney Avalon - SNOW WHITE vs ELSA: Princess Rap Battle (Whitney Avalon ft. Katja Glieson) *explicit*\\nhttps://www.youtube.com/watch?v=gcrQvoCzs80\\n\\n@The Pussycat Dolls - The Pussycat Dolls - React\\nhttps://www.youtube.com/watch?v=KM3j_TXeqfc\\n\\n@Alexa Rivera -MOM REACTS TO MY TIK TOKS!!\\nhttps://www.youtube.com/watch?v=Ry0FABEjPgE\\n\\n@FBE - K-pop Stars React To Try Not To Sing Along Challenge (ITZY 있지)\\nhttps://www.youtube.com/watch?v=b7Xgl9L-pnQ\\n\\nTotally TV Channel \\nhttps://www.youtube.com/totallytv',\n",
       "  '2020-02-22T14:00:11.000Z',\n",
       "  167932,\n",
       "  3034.0,\n",
       "  nan],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCxgDfpB3rBRPozm3zzaRXTQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'irelandboysproductions@gmail.com',\n",
       "  nan,\n",
       "  'Welcome to the official Ireland Boys Productions YouTube channel! On this channel, you’ll find a variety of challenges and pranks, including 24 Hour Overnight Challenges, Food Challenges, Hide and Seek, Epic Forts, Dare or Dare, and more. Two brothers, Ricky and Nick of the Ireland Boys want to keep you entertained every single week! Believe in yourself and your dreams! You can do all things through Christ who gives you strength, we give God thanks, and give him the glory in everything we do!\\n\\nSend Fan Mail:\\nIreland Boys Productions\\nPO Box 936\\nOdessa, FL 33556\\n\\nMake sure to subscribe for new videos and enable ALL notifications so you never miss an upload! For instant updates, follow us on our social medias.',\n",
       "  3740000,\n",
       "  571523770,\n",
       "  194,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=2oz89k3Y1WA',\n",
       "  'PARENTS REACT to Ireland Boys SONG (emotional)',\n",
       "  \"PARENTS REACT to Ireland Boys SONG (emotional)\\n\\nWATCH SPOTLIGHT MUSIC VIDEO ▶️https://www.youtube.com/watch?v=IY4-hTgSfWM\\n\\nStream it here: https://lnkfi.re/Spotlight\\n\\n🍀▶️NEW IBP MERCH: https://ibpmerch.com/\\n\\nSUBSCRIBE! https://goo.gl/mFPsKa | 🔔Enable ALL push notifications!🔔\\nWatch our NEWEST videos: https://youtube.com/playlist?&list=PLvBuiLdtEhuwlwPsGZeXh3XyA8Pn887iy&playnext=1&index=2\\n\\nSUBSCRIBE to our 2nd channel: https://goo.gl/fPfVAd\\n\\nThe Ireland Boys Parents react to the new Ireland Boys SONG and MUSIC VIDEO! Spotlight by NCK is the newest song made by the Ireland Boys and their parents reacted to it! 2020 and we're back on the grind! We're so excited and can't wait to make so many epic and fun video this year!!\\n\\nFollow Ireland Boys Productions:\\nInstagram: https://instagram.com/irelandboysproductions\\nTwitter: https://twitter.com/IrelandBoys\\nFacebook: https://facebook.com/IrelandBoysProductions\\n\\nFollow Ricky:\\nInstagram: https://instagram.com/rickyireland88\\nTwitter: https://twitter.com/rickyireland88\\nSnapchat: https://snapchat.com/add/rickyireland88\\n\\nFollow Nick:\\nInstagram: https://instagram.com/nickireland99\\nTwitter: https://twitter.com/nickireland99\\nSnapchat: https://snapchat.com/add/nickireland99\\n\\nWatch more Ireland Boys Productions:\\n24 Hour Challenges: https://youtube.com/playlist?list=PLvBuiLdtEhuwxz0pUYb9BagT3AdR95Z0J&playnext=1\\nPranks: https://youtube.com/playlist?list=PLvBuiLdtEhuyw87YWQcwGJI7jO0SWCqWP&playnext=1\\nHide and Seek: https://youtube.com/playlist?list=PLvBuiLdtEhuyB49lm-qITFx8Cvcuv9JnW&playnext=1\\nLatest Videos: https://youtube.com/playlist?list=PLvBuiLdtEhuwlwPsGZeXh3XyA8Pn887iy&playnext=1\\nPopular Videos: https://youtube.com/playlist?list=PLvBuiLdtEhuxB-u7iJ8rwi7UWLefhj4Vs&playnext=1\\n\\nBusiness Contact: IrelandBoysProductions@gmail.com\\n\\nSend Fan Mail:\\nIreland Boys Productions\\nP.O. Box 936\\nOdessa, FL 33556\\n\\nAbout Ireland Boys Productions:\\nThe Ireland Boys Productions YouTube channel offers a variety of challenges and pranks, including 24 Hour Overnight Challenges, Food Challenges, Hide and Seek, Epic Forts, Dare or Dare, and more. Two brothers, Ricky and Nick of the Ireland Boys want to keep you entertained every single week! Make sure to subscribe for new videos and enable ALL notifications so you never miss a video!\\n\\nPARENTS REACT to Ireland Boys SONG!!\\nhttps://youtu.be/2oz89k3Y1WA\\nIreland Boys Productions\\nhttps://www.youtube.com/Irelandboysproductions\",\n",
       "  '2020-02-08T17:21:32.000Z',\n",
       "  570132,\n",
       "  17135.0,\n",
       "  2036.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCIC-BC__0U0lsdi3F1sjIOg',\n",
       "  nan,\n",
       "  nan,\n",
       "  'comehere.ent@gmail.com',\n",
       "  '@ssuriv',\n",
       "  'Đây là kênh chính của Streamer/Caster ViruSs - Đặng Tiến Hoàng.Channel bao gồm các video về game offline/Steam/League of legends/Vlog trả lời các câu hỏi liên quan đến mình !! Mọi thứ cần liên hệ :\\n\\nYoutube: http://bit.ly/2imzJuZ\\nSkype:Comeherevn\\nFacebook.com/virussvn\\nwww.virusser.com\\n\\n---------------------\\n© Bản quyền thuộc về ViruSs\\n© Copyright by ViruSs Channel ☞ Do not Reup',\n",
       "  3660000,\n",
       "  740957628,\n",
       "  2502,\n",
       "  'VN',\n",
       "  'https://www.youtube.com/watch?v=XyBFO8wGbLU',\n",
       "  'HƠN CẢ YÊU - ĐỨC PHÚC | OFFICIAL MUSIC VIDEO | ViruSs Reaction',\n",
       "  'HƠN CẢ YÊU - ĐỨC PHÚC | OFFICIAL MUSIC VIDEO | ViruSs Reaction\\n\\nXem MV tại đây: https://youtu.be/__kGJZ-kPno\\n\\nChào mừng các bạn đã đến với Đại gia đình VACCINE VR STUDIO!\\n\\nHiện tại mình đang stream tại: http://fb.gg/virussop\\n\\nViruSs : http://bit.ly/2imzJuZ\\nHipZ : https://goo.gl/PdvgZS\\nCowsleep : http://bit.ly/2H7A8gb\\n\\nHãy ấn vào đăng ký kênh để giúp tớ được 5.000.000 subs với nhé ^^ !\\n\\n💸 Link Donate: https://vrdonate.vn/viruss\\n\\n■ Facebook: https://facebook.com/ViruSsOP\\n■ Group: https://facebook.com/groups/virussteam\\n■ Instagram: https://instagram.com/ssuriv/\\n■ Gmail:comehere.ent@gmail.com\\n\\n►Join Group này để tham gia Vaccine Family of Viruss: https://www.facebook.com/groups/virussteam\\n\\nLike và subcribe để theo dõi tiếp kênh nhé ! ^^ Cảm ơn mọi người\\n\\n--------------------------\\n\\nIf any owners has an issue with any of the uploads please get in contact (comehere.ent@gmail.com) and it will be deleted immediately. Thank you for your coopertation.\\n\\nNếu có bất cứ vấn đề liên quan đến bản quyền nội dung, hình ảnh... các bạn vui lòng liên lạc mình theo địa chỉ (comehere.ent@gmail.com) để giải quyết nhé. Mình sẽ cùng nhau làm việc nhanh và trên tinh thần hợp tác nhất có thể ^_^\\n---------------------\\n© Bản quyền thuộc về ViruSs\\n© Copyright by ViruSs Channel ☞ Do not Reup',\n",
       "  '2020-02-15T06:36:42Z',\n",
       "  774751,\n",
       "  27972.0,\n",
       "  922.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCebb7o98FEA73WjNsCja5Xg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Trinity Optima Production is a Recording Company, Publishing and Artist Management in Indonesia. Subscribe http://bit.ly/TOPYTsubs for more!',\n",
       "  3660000,\n",
       "  2117846643,\n",
       "  1074,\n",
       "  'ID',\n",
       "  'https://www.youtube.com/watch?v=nwTlqWLFUC0',\n",
       "  'Mawar De Jongh \"Lebih dari Egoku\" Cover Video Reaction | #TOPReactionVideoCover',\n",
       "  'Mawar De Jongh \"Lebih dari Egoku\" Cover Video Reaction | #TOPReactionVideoCover\\n\\nLebih Dari Egoku sudah mulai banyak di cover beberapa teman-teman di social media dan kali ini Mawar De Jongh akan Reaction video cover dan beberapa video yang sudah dipilih oleh team Trinity Optima Production.\\n\\nYuk.. Cover terus lagu dari artis-artis Trinity Optima Production di social media kalian dan gunakan #TrinityCoverSession\\n\\nTonton juga Music Mawar De Jongh - Lebih Dari Egoku\\nhttps://youtu.be/pNnAUwWnyNg\\n\\nDengarkan \"Lebih Dari Egoku\" di\\nApple          : http://bit.ly/lebihdariegoku_apple\\nSpotify        : http://bit.ly/lebihdariegoku_spotify\\nJOOX          : http://bit.ly/lebihdariegoku_joox\\nDeezer        : http://bit.ly/lebihdariegoku_deezer\\nLangit Musik : http://bit.ly/lebihdariegoku_LM\\nITUNES       : http://bit.ly/lebihdariegoku_itunes\\n\\nAktifkan RBT \"Lebih Dari Egoku\"\\nTELKOMSEL : ketik LEDE sms ke 1212\\nXL : ketik LEDE sms ke 1818\\nTRI : ketik MG(spasi)LEDE sms ke 1212 \\nINDOSAT : ketik MG(spasi)LEDE sms ke 808\\nSMARTFREN : ketik LEDE sms ke 1212\\n\\n#MawarDejongh #ReactionVideoCover #TrinityOptimaProduction\\n\\n© TRINITY OPTIMA PRODUCTION 2019',\n",
       "  '2020-01-18T07:00:14.000Z',\n",
       "  284080,\n",
       "  9055.0,\n",
       "  289.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCwKTAvM2mY5-A4dFY4xCgqw',\n",
       "  'zik-asiegbu@utulsa.edu',\n",
       "  nan,\n",
       "  'zik-asiegbu@utulsa.edu',\n",
       "  nan,\n",
       "  'New reaction videos EVERY DAY!\\n\\nIndie artists Submit your music here - http://bitsubmit.net/zias\\n\\nSubscribe for more entertaining - http://bit.ly/2eLOclg\\n\\nFollow me on Twitter/Snapchat/Instagram\\nTwitter - https://twitter.com/JustZik\\nSnapchat - https://www.snapchat.com/add/JustZik\\nInstagram - https://www.instagram.com/justzik1\\n\\nFollow B.Lou on IG\\nhttps://www.instagram.com/all_1k\\n\\nFor sponsored reaction requests and all other inquiries:\\nBusiness email: zik-asiegbu@utulsa.edu\\n\\nAll good vibes',\n",
       "  3440000,\n",
       "  477942453,\n",
       "  456,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=GuwvR43QfZ4',\n",
       "  'Roddy Ricch - The Box [Official Music Video]- REACTION',\n",
       "  'This is our reaction to Roddy Ricch - The Box Official Music Video\\nSubscribe for more entertaining - http://bit.ly/2eLOclg\\r\\nFollow my Spotify playlist- http://spoti.fi/2xoVAYW\\r\\n#roddyrich #thebox #reaction\\n\\r\\nNew reaction videos EVERY DAY!\\r\\nOriginal link to video- https://www.youtube.com/watch?v=UNZqm3dxd2w\\r\\nFollow me on Twitter/Snapchat/Instagram\\r\\nTwitter - https://twitter.com/JustZik\\r\\nSnapchat - https://www.snapchat.com/add/JustZik\\r\\nInstagram- https://www.instagram.com/justzik1\\r\\n\\r\\nFollow B.Lou on IG\\r\\nhttps://www.instagram.com/all_1k\\r\\n\\r\\nBusiness email: zik-asiegbu@utulsa.edu',\n",
       "  '2020-02-29T20:03:37.000Z',\n",
       "  1608231,\n",
       "  103554.0,\n",
       "  9712.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCToZTtSLYLyRV5xwUcAa9Kg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'DESIFEED Video delivers the biggest moments, the hottest trends, video updates and the best tips in television, movies, pop culture, digital, glamour & music. Its one stop destination for entertainment news updates, millenial trends, latest gossips, celebrity updates, serial updates, film reviews, movie business, fashion, beauty, lifestyle news, celeb babies/couples, interviews, first look, features, scoops, weddings, pregnancies & more!\\n\\n|| Subscribe | Like & Follow | Comment ||',\n",
       "  2850000,\n",
       "  467750128,\n",
       "  6835,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=Xiwjzih93d8',\n",
       "  'Bhula Dunga Full Song Review | Siddharth Shukla & Shehnaz Gill | Bhula Dunga By Darshan Raval',\n",
       "  'Bhula Dunga Full Song Review | Siddharth Shukla & Shehnaz Gill | Bhula Dunga By Darshan Raval\\n\\n\\n#SiddahrthShukla #ShehnazGill #BhulaDunga #Sidnaaz\\n\\n\\n► http://bit.do/DESIFEEDVIDEO - Subscribe DESIFEED Video - Your Trusted & Favourite Entertainment News Channel!\\n► Follow #DESIFEEDVideo on Social Media With #DFV #DESIFEED \\n\\n►► DESIFEED Video Social Media Links\\n► https://www.facebook.com/DESIFEEDVIDEO\\n► https://twitter.com//DESIFEED_VIDEO\\n► https://www.instagram.com/DESIFEEDVIDEO\\n►►ABOUT US : DESIFEED Video delivers the biggest moments, the hottest trends, video updates and the best tips in television, movies, pop culture, digital, glamour & music. Its one stop destination for entertainment news updates, millennial trends, latest gossips, celebrity updates, serial updates, film reviews, movie business, fashion, beauty, lifestyle news, celeb babies/couples, interviews, first look, features, scoops, weddings, pregnancies & more!',\n",
       "  '2020-03-24T07:46:31.000Z',\n",
       "  4106,\n",
       "  281.0,\n",
       "  8.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCTySfohoki7xN4ShoDwSGEg',\n",
       "  'kelreact@gmail.com',\n",
       "  '@kelreact',\n",
       "  'kelreact@gmail.com',\n",
       "  nan,\n",
       "  'Olá! Aqui quem fala é o Kel! Faço vídeos de react de vários canais diferentes durante minhas madrugadas de insônia! \\nEsse canal é inspirado no canal do meu grande amigo Moreno, o canal React Brasil.\\nEspero que goste =D\\n\\nE-mail: kelreact@gmail.com\\n\\nTwitter: https://twitter.com/KelReact\\nSnapchat: kelreact\\n\\nInstagram do Kel: https://www.instagram.com/kelreact/\\nInstagram da Laura: https://www.instagram.com/lalauraoficial/\\n\\nFacebook do Kel: https://www.facebook.com/kelreact\\nFacebook da Laura: https://www.facebook.com/lauraissa1',\n",
       "  2230000,\n",
       "  420178490,\n",
       "  1556,\n",
       "  'BR',\n",
       "  'https://www.youtube.com/watch?v=o2JRNd5jXr8',\n",
       "  'REACT Haikaiss e Kant - Incomunicável (Video Oficial)',\n",
       "  'Canal de Gameplays do Kel: https://www.youtube.com/keltv\\nCanal FAMÍLIA FRANÇA: https://www.youtube.com/KelELaura\\n\\nENTRE NO DISCORD: http://www.discord.gg/kelreact\\n\\n\\nInsta da Laura: @lalauraoficial\\n\\n\\n\\nInsta do Anthony @tonyluizoficial\\nInsta do Kel: @kelreact\\n\\nOlá, aqui é o Kel! Hoje eu assisti o vídeo Haikaiss e Kant - Incomunicável (Video Oficial) do Canal  HAIKAISS!\\n\\nVídeo Original: https://www.youtube.com/watch?v=O7kE1ai7DWY\\n\\nContato comercial: kelreact@gmail.com\\n\\nSe você gostou se inscreve no canal e dá like no vídeo! \\n\\nMúsicas -\\n\\nDefqwop - Into the Ether [Free Songs To Use]\\nhttps://goo.gl/X86XAA\\n\\nAté a próxima!',\n",
       "  '2020-04-17T23:00:19.000Z',\n",
       "  135485,\n",
       "  20556.0,\n",
       "  620.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC1YZ751mYZkTNFXjGXTklsQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'imd.business@outlook.com',\n",
       "  '@im_dontai',\n",
       "  'FNG.',\n",
       "  2210000,\n",
       "  313841716,\n",
       "  1634,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=vF6Q8EAbojQ',\n",
       "  'THIS IS WILD! XXXTENTACION Ft  Lil Wayne School Sh00ter music Video Reaction',\n",
       "  \"This video has been sponsored and approved by Raycon.\\n\\nGo to http://buyraycon.com/dontai for 15% off your order. Brought to you buy Raycon.\\n\\nOriginal Video https://www.youtube.com/watch?v=5BgLoQ1NnJc \\r\\n\\r\\nIntro Song https://www.youtube.com/watch?v=0OWTdvfnNGQ\\r\\n\\r\\nMy Twitch Twitch.tv/Im_Dontai\\r\\n\\r\\nGaming Channel https://www.youtube.com/user/MrDdizzy94\\r\\n\\r\\nBusiness Email imd.business@outlook.com\\r\\n\\r\\nMy IG https://instagram.com/im_dontai/\\r\\n\\r\\nMy Twitter https://twitter.com/ImDontai\\r\\n\\r\\nSpotify https://open.spotify.com/artist/1xhlM2RffAgG7fPvj2cnXW\\r\\n\\r\\nYoYo's Channel! https://www.youtube.com/channel/UC7omgSMKSDz6g-iRTv-smsQ\\r\\n\\r\\nYoYo's Instagram https://www.instagram.com/yoyo808_official/\\r\\n\\r\\nYoYo's Twitter https://twitter.com/itsyoyo808\",\n",
       "  '2020-04-18T02:47:38.000Z',\n",
       "  393739,\n",
       "  25271.0,\n",
       "  2407.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCS09CkK8fjPJ_nHD6fcGMSw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'cdelosreyes@viva.com.ph',\n",
       "  nan,\n",
       "  'Subscribe and watch Pinoy music x videos at its best:\\n\\nOfficial music videos, live performances, exclusive interviews and behind-the-scenes footage not seen anywhere else and more!\\nGet your daily dose of everything popular and Pinoy.\\n\\nLean back. Relax. Click. Enjoy!',\n",
       "  2190000,\n",
       "  729382475,\n",
       "  1912,\n",
       "  'PH',\n",
       "  'https://www.youtube.com/watch?v=x33i3NLHGn8',\n",
       "  'Heart React - ALLMO$T [Official Lyric Video]',\n",
       "  'The official lyric video of \"Heart React\" by ALLMO$T.\\n\\nAfter their breakthrough single “Dalaga” that took over last 2019 and a couple more viral hits, with another bop with their latest single, “Heart React.” The title is a reference to when you give a “heart reaction” in someone’s posts on social media.\\n \\nBut for Allmo$t, they would give their “heart react” for the girls they have set their hearts for. In “Heart React,” the hip hop group take turns in the mic as they talk about the heights they’re willing to go to pursue the girls they admire.\\n\\nCheck out “ALLMO$T” on:\\nFacebook:  /allmostmusicinc/\\nTwitter: @allmostmusicinc\\nInstagram: allmostmusicofficial\\n\\n\\n”Heart React”\\nALLMO$T\\nWritten by Angelo Luigi Timog, Clien Alcazar, Rocel Dela Fuente and Jomuel Casem\\nPublished by Viva Music Publishing, Inc.\\nProduced by FlipTunes\\nArranged by Angelo Luigi Timog\\nRecorded, mixed and mastered at  ALLMO$T Production House\\nMixed and mastered by Jascha Santos & Angelo Luigi Timog\\n\\nNow in all digital music stores.\\n\\n\\nLyrics:\\nPa’no kung ikaw at ako na lang\\nPa’no kung walang mangingialam\\nAko ba\\'y hanggang tingin na lang\\nSana ay hindi, hindi naman\\nSabihin mo na sa \\'kin kung ika\\'y may aaminin para ‘di tayo mabitin \\nAyoko na kasing patagalin pa\\n\\n‘Wag na natin patagalin\\nNanghihinayang lang kasi sa yakap at halik\\nNoon pa lang kita nakita\\nBiglang umapaw ang saya pero nakakabitin\\n\\nHindi ko na kasi alam \\nAng tanging paraan\\nBasta mahal kita \\nPangakong ‘di kita iiwanan\\n\\nSana baby\\n‘Wag ka nang matakot at umamin ka na\\nKaya baby \\nLumapit ka na sa ‘kin at sabihin mo na\\n\\nSabihin mo na\\nNa ako ang gusto mo\\nKasi alam ko naman\\n\\nPa’no kung ikaw at ako na lang\\nPa’no kung walang mangingialam\\nAko ba\\'y hanggang tingin na lang\\nSana ay hindi, hindi naman\\nSabihin mo na sa \\'kin kung ika\\'y may aaminin para ‘di tayo mabitin \\nAyoko na kasing patagalin pa\\n\\nHindi ko na pahahabain gusto kong dumiretso\\nHindi na kita dadaanin sa mga imbento \\nWala na ‘kong mahabang paliwanag o komento \\nMahalaga alam mo na ikaw lang ang kukumpleto\\nMadaming iba dyan kayang ibigay lahat\\nAng kaso lang hindi na magawang maging tapat \\nMasyadong nalibang na magmahal ‘di iningatan \\nKung ano ang kapalit ng panahon na nasasayang \\nBagamat sa panahon ngayon mahirap talagang makuha \\nAt mahagilap kung sino ang ‘di ka mapapaluha \\nHayaan mo nandito lang ako handa ‘kong magkusa\\nIparamdam sa iyo pangakong ‘di ‘to huhupa \\nAyoko ko din namang masayang \\nAng pagkakataon at sa huli ay manghinayang\\nTapatin mo din ako nang ‘di tayo naghihintayan\\nSabay nating tuparin, at gawin din ang wala nang hiwalayan\\n\\nPa’no kung ikaw at ako na lang\\nPa’no kung walang mangingialam\\nAko ba\\'y hanggang tingin na lang\\nSana ay hindi, hindi naman\\nSabihin mo na sa \\'kin kung ika\\'y may aaminin para ‘di tayo mabitin \\nAyoko na kasing patagalin pa\\n\\nKanina ko pa nakikita ang ‘yong mga mata\\nIkaw ay patingin-tingin na para bang ikaw ay nahihiya\\n‘Wag ka nang matakot na sabihin kung ano man ang iyong nararamdaman \\nHindi ka pababayaan \\nKaya ‘wag ka nang mag-alinlangan \\nNa sumama, ako ang bahala\\n‘Di kita ipapahamak\\nAalalayan kita sa bawat pag-apak \\nKaya ‘lika na sa akin humawak\\nSa bawat sandali na nakikita ka\\nAy nahihiya din ako pero gusto ko nang sabihin na\\n\\nPa’no kung ikaw at ako na lang\\nPa’no kung walang mangingialam\\nAko ba\\'y hanggang tingin na lang\\nSana ay hindi, hindi naman\\nSabihin mo na sa \\'kin kung ika\\'y may aaminin para ‘di tayo mabitin \\nAyoko na kasing patagalin pa\\n\\nSabihin mo na sa ‘kin kung anong gusto mo\\nHanda naman ang puso ko na makinig sa ‘yo \\nWala namang problema kung nais mapalapit\\nDahil sa isang katulad mo\\'y wala nang hihigit\\n\\nAng nararamdaman ko ay hindi mapaliwanag\\nSa tuwing katabi ka ang puso ko\\'y napapanatag\\n‘Di ko hahayaan na ikaw ay mawala pa \\nSa piling ko, dahil ikaw ang nagbigay-liwanag\\n\\nPatuloy na nahuhumaling \\nKahit anong gawin ko ay hindi ko maibaling\\nTingin ko sa iba dahil ikaw ang natatanging\\nBabaeng tumupad sa aking mga panalangin\\n\\n‘Wag sana natin ‘to patagalin\\nPalaging nahuhulog sa ‘yo kahit na anong gawin\\nSiguro kung sa akin ka ay parang langit na rin\\nSana nga balang-araw ay mapamahal ka na rin\\n\\nPa’no kung ikaw at ako na lang\\nPa’no kung walang mangingialam\\nAko ba\\'y hanggang tingin na lang\\nSana ay hindi, hindi naman\\nSabihin mo na sa \\'kin kung ika\\'y may aaminin para ‘di tayo mabitin \\nAyoko na kasing patagalin pa\\n\\nPa’no kung ikaw at ako na lang\\nPa’no kung walang mangingialam\\nAko ba\\'y hanggang tingin na lang\\nSana ay hindi, hindi naman\\nSabihin mo na sa \\'kin kung ika\\'y may aaminin para ‘di tayo mabitin \\nAyoko na kasing patagalin pa\\n\\n\\nFor VIVA ARTISTS inquiries and bookings, contact VIVA Artist Agency Booking Officer: Ms. Ciela De Los Reyes at email: cdelosreyes@viva.com.ph / mobile #: +63939-925-4275',\n",
       "  '2020-01-23T16:00:11.000Z',\n",
       "  53710,\n",
       "  483.0,\n",
       "  30.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCA5wv3lbx6fn54ou6uytSIA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'What would life be without a dose of fun, entertainment and gossip! And wouldn’t it just get better if the gossip came straight from one of the most sought after industries in the country – Bollywood? With all its glam and sometimes the sham, it never seizes to surprise you, does it? Isn’t all this excitement the reason why you want to be amongst the first ones to know all about it? Well friends, we have everything that you need right here, right now. Yes, you heard it right. BollywoodSpy.in is here to give you almost a first-hand peek on who is doing what and where in the B Town? \\n\\nWouldn’t it be just great to keep pace with what your stars are doing, never leaving you in a dull moment? Bollywood Spy.in is here to be your entertainment and B Town partner. Look nowhere, go nowhere, simply catch up with us for fresh feeds.',\n",
       "  2100000,\n",
       "  968225807,\n",
       "  38158,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=JD5YyuscoiA',\n",
       "  'Mahira Sharma Reaction On Sidharth And Shehnaz Song BHULA DUNGA | SidNaz',\n",
       "  'Mahira Sharma Reaction On Sidharth And Shehnaz Song BHULA DUNGA | SidNaz\\n\\n#bhuladunga #mahirasharma - Stay Tuned For More Bollywood News\\n\\n☞ Check All Bollywood Latest Update on our Channel\\n\\n☞ Subscribe to our Channel https://goo.gl/UerBDn\\n\\n☞ Like us on Facebook https://goo.gl/7Q896J\\n\\n☞ Follow us on Twitter https://goo.gl/AjQfa4\\n\\n☞ Circle us on G+ https://goo.gl/57XqjC\\n\\n☞ Follow us on Instagram https://goo.gl/x48yEy',\n",
       "  '2020-03-16T14:37:07.000Z',\n",
       "  548810,\n",
       "  13014.0,\n",
       "  1018.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCpXTlzZAS7lVZ4M46ggMa8w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'What would life be without a dose of fun, entertainment and gossip! And wouldn’t it just get better if the gossip came straight from one of the most sought after industries in the country – Bollywood? With all its glam and sometimes the sham, it never seizes to surprise you, does it? Isn’t all this excitement the reason why you want to be amongst the first ones to know all about it? Well friends, we have everything that you need right here, right now. Yes, you heard it right. BollywoodSpy.in is here to give you almost a first-hand peek on who is doing what and where in the B Town? \\n\\nWouldn’t it be just great to keep pace with what your stars are doing, never leaving you in a dull moment? Bollywood Spy.in is here to be your entertainment and B Town partner. Look nowhere, go nowhere, simply catch up with us for fresh feeds.',\n",
       "  2070000,\n",
       "  569240149,\n",
       "  19732,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=WzMxewbYWBM',\n",
       "  'Muskurayega India Song | Reaction | Akshay Kumar, Kriti, Aayushmann Khurrana',\n",
       "  'Muskurayega India Song | Reaction | Akshay Kumar, Kriti, Aayushmann Khurrana\\n#MuskurayegaIndia - Stay Tuned For More Bollywood News\\n\\n☞ Check All Bollywood Latest Update on our Channel\\n\\n☞ Subscribe to our Channel https://goo.gl/UerBDn\\n\\n☞ Like us on Facebook https://goo.gl/7Q896J\\n\\n☞ Follow us on Twitter https://goo.gl/AjQfa4\\n\\n☞ Circle us on G+ https://goo.gl/57XqjC\\n\\n☞ Follow us on Instagram https://goo.gl/x48yEy',\n",
       "  '2020-04-06T13:53:26.000Z',\n",
       "  67855,\n",
       "  1193.0,\n",
       "  75.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCq-NPoQsxpkdu5n2-BF5TCw',\n",
       "  nan,\n",
       "  '@gotoegram',\n",
       "  nan,\n",
       "  nan,\n",
       "  'Go Toe Kyung / South Korea / Pharmacist / Youtuber\\n\\nFacebook : https://www.facebook.com/xhlrud\\nTwitter : https://twitter.com/xhlrud\\nInstagram : https://www.instagram.com/gotoegram/\\n\\nThank you for everyone who watch my video.\\n\\nP.O BOX\\n경상북도 경산시 대학로 280 , 영남대학교 약학대학 119호 \\n280 Daehak-Ro, Gyeongsan, Gyeongbuk 38541, Republic of Korea (38541 Korea). Yeungnam University. College of Pharmacy. Room 119.',\n",
       "  1960000,\n",
       "  279230764,\n",
       "  604,\n",
       "  'KR',\n",
       "  'https://www.youtube.com/watch?v=WG3W_AcsvzU',\n",
       "  '(ENG SUB)NCT 127 - Kick It MV reaction! You play a song by mistake, you can never stop until the end',\n",
       "  'Thank you for watching :) \\r\\nIf you like it, please subscribe my channel and like it. Thank you!\\r\\n\\n#NCT127 #엔시티127 #NCT \\n\\r\\nFacebook : https://www.facebook.com/xhlrud\\r\\nTwitter : https://twitter.com/xhlrud\\r\\nInstagram : https://www.instagram.com/gotoegram\\r\\nYoutube : http://bit.ly/1IoPiX8',\n",
       "  '2020-03-06T20:25:47.000Z',\n",
       "  181578,\n",
       "  15984.0,\n",
       "  806.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCeoNwdbtX26UmLMTkKQD5QA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@djayghost',\n",
       "  \"Urban / Commentary / Vlog Channel and anything else that's real by Video Creator DJ Ghost.\",\n",
       "  1940000,\n",
       "  251333558,\n",
       "  990,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=K5cGvquTMn8',\n",
       "  'Pop Smoke \"Christopher Walking\" REACTION',\n",
       "  'Pop smoke Christopher walking DJ ghost reaction\\nNew Channel: https://www.youtube.com/channel/UCALCyvOo-44BoLoJBW_OSfw\\nDJ Ghost music video: https://www.youtube.com/watch?v=MgfVYG2Mmis',\n",
       "  '2020-02-13T04:14:06.000Z',\n",
       "  382731,\n",
       "  15765.0,\n",
       "  2431.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCaeO5vkdj5xOQHp4UmIN6dw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'The Daily Wire is a politically conservative news and opinion website featuring daily podcasts by Andrew Klavan, Michael Knowles, Matt Walsh, and Editor-In-Chief Ben Shapiro. The Daily Wire YouTube channel live streams all episodes of each podcast every weekday. Here you will also catch special videos and series from each host!\\n\\nBen Shapiro: Mon-Fri 11:00am Eastern / 8:00am Pacific \\nMatt Walsh: Mon-Fri 1:30pm Eastern / 10:30am Pacific \\nAndrew Klavan: Mon-Thurs 12:30pm Eastern / 9:30am Pacific \\nMichael Knowles: Mon-Thurs 9:00am Eastern / 6:00am Pacific',\n",
       "  1900000,\n",
       "  509529591,\n",
       "  5822,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=MdzANCKv4Ys',\n",
       "  'Ben Shapiro SLAMS Taylor Swift\\'s New Woke Song \"The Man\"',\n",
       "  'LIKE & SUBSCRIBE for new videos everyday. http://bit.ly/2QA8RbN\\n\\nBen slams the newest woke song from Taylor Swift and how she continues to play the victim of society.\\n\\nWatch the full episode here: http://bit.ly/2T8J3Xa\\n\\nWatch full episodes of The Ben Shapiro Show here: http://bit.ly/2K2Wsvq\\n\\nTo watch the full show live, become a Daily Wire premium subscriber; comes with your own Leftist Tears Tumbler: https://www.dailywire.com/subscribe',\n",
       "  '2020-02-28T21:00:04.000Z',\n",
       "  494024,\n",
       "  43020.0,\n",
       "  7461.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCc8o7QS_Gq3x0j40HSj5V3g',\n",
       "  nan,\n",
       "  nan,\n",
       "  'cammycuf@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  1790000,\n",
       "  289748006,\n",
       "  811,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=UziR5s5VJvw',\n",
       "  'RODDY DID THIS?! Roddy Ricch - The Box [Official Music Video] REACTION',\n",
       "  'I react to Roddy Ricch The Box official video!\\nSUB TO MY GAMING CHANNEL: https://www.youtube.com/user/HaIaYT\\n\\nFollow me on Instagram NOW:  http://instagram.com/camhaller\\n                       \\n► Twitter: https://twitter.com/CamHaller \\n► Instagram: http://instagram.com/camhaller\\n► Soundcloud: https://soundcloud.com/gingerea\\n\\n**EMAIL FOR ALL BIZ INQUIRIES**\\n►►► cammycuf@gmail.com\\n \\nUSE CODE “cufboys” 15% OFF\\n► https://sweetskendamas.com/',\n",
       "  '2020-03-02T19:30:00Z',\n",
       "  269940,\n",
       "  15031.0,\n",
       "  384.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCKUCm3FepRrl-VKhq0Wwajg',\n",
       "  'sandjgang@gmail.com',\n",
       "  '@karolina_gifted',\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Just a guy who make videos, and talk trash !\\nFor promotion email me: sandjgang@gmail.com\\n\\nShaq's Instagram: https://www.instagram.com/karolina_gifted/\\n\\nTwitter: SD_Three00\",\n",
       "  1760000,\n",
       "  304590616,\n",
       "  1718,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=rC2IH_fZZ38',\n",
       "  'WHAT IN THE NO LUNGS! | Godzilla - Eminem & Juice WRLD (REACTION!!!)',\n",
       "  '#Eminem #JuiceWrld #Godzilla\\nEms verse was faster than rapgod\\'s verse! RIP JuiceWrld!\\r\\nFollow me on twitch: https://www.twitch.tv/nolifeshaq\\r\\n\\r\\nLink to original video: \\r\\nhttps://www.youtube.com/watch?v=nbqMIBYJlvk\\n\\nIntro Music made by : https://www.youtube.com/user/joeynatomusic\\r\\n\\r\\nThanks for 1.3 Million, lets get to 1.4 Million by February!\\r\\n\\r\\n\\r\\nClick Here To Subscribe! https://www.youtube.com/channel/UCKUCm3FepRrl-VKhq0Wwajg?view_as=subscriber\\r\\n* FOLLOW MY SNAPCHAT: nolifeshaq\\r\\n● FOLLOW YA BOY ON TWITTER https://twitter.com/NoLifeShaq\\r\\n● INSTAGRAM https://instagram.com/nolifeshaq\\r\\nComment more vid ideas below!\\r\\n\\r\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-01-17T20:50:08.000Z',\n",
       "  3205543,\n",
       "  150679.0,\n",
       "  15789.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCOQmJtNxOWUMQ5f8U8NOAyA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@norafatehi',\n",
       "  'Follow my channel for Entertainment, Entertainment and Entertainment 😉\\n\\nOfficial Actor',\n",
       "  1730000,\n",
       "  101731248,\n",
       "  26,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=aH_UvA4KIgo',\n",
       "  'Nora Fatehi - Reaction To Garmi Song | Street Dancer 3D',\n",
       "  'Nora Fatehi reacts to her new hit song, GARMI - from the film Street Dancer 3D, releasing worldwide on January 24th 2020! \\n\\nWatch the full song here: https://www.youtube.com/watch?v=q_0uF...\\n\\nSubscribe To Nora Fatehi Official Channel:\\nhttp://bit.ly/NoraFatehiYT\\n\\nDigital Distribution : QANAWAT\\n\\nFollow Nora Fatehi:\\nFacebook: https://www.facebook.com/norafatehi/\\nInstagram: https://www.instagram.com/norafatehi/\\nTwitter: https://twitter.com/Norafatehi\\n\\nFollow Steven Roy Thomas:\\nYouTube: https://www.youtube.com/stevenroythomas\\nInstagram: https://www.instagram.com/stevenroyth...\\nTwitter: https://twitter.com/stevenroythomas\\n\\nShot by: Anup Surve\\nhttps://www.instagram.com/anups_\\n\\n#Nora_Fatehi #Reaction #Garmi_Song',\n",
       "  '2020-01-02T13:05:12.000Z',\n",
       "  4818455,\n",
       "  121660.0,\n",
       "  3507.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCuwUfM8E79h2sqp34Fut6kw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Welcome to the official international YouTube home of the world's most famous entertainment network, where Geordie Shore shares a bed with Ex On The Beach, and exclusive movie trailers, interviews and entertainment goodness drop over for the odd sleepover.\\n\\nEverything that is great about life and the internet is here so take off your shoes, subscribe now and make yourself cosie, pet. \\n\\nAlso on Sky Channel 126 and Virgin Media 134.\",\n",
       "  1530000,\n",
       "  528721409,\n",
       "  3297,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=Kt1NZsLdxxs',\n",
       "  'Pussycat Dolls ‘React’: Making The Video | MTV Music',\n",
       "  'MTV got exclusive behind the scenes access of the music video shoot for Pussycat Dolls’ brand new single ‘React’! Don’t miss Making The Video Sunday 16th February at 1pm on MTV Music.\\n\\nSubscribe to MTV for more great videos and exclusives! https://www.youtube.com/channel/UCuwUfM8E79h2sqp34Fut6kw\\r\\n\\r\\nGet social with MTV @ \\r\\n💋 Twitter: https://twitter.com/MTVUK \\r\\n🍺 Instagram: http://instagram.com/mtvuk \\r\\n💅 Tumblr: http://mtvuk.tumblr.com\\r\\n🍿 Facebook: https://www.facebook.com/mtvuk \\r\\n🎷 Official: http://www.mtv.co.uk',\n",
       "  '2020-02-07T15:15:00.000Z',\n",
       "  608697,\n",
       "  19113.0,\n",
       "  1452.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCwV_A5L1hhEVfld6Wbxn3jg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Trailer reviews, movie reviews, short films and vlogs.\\nTo submit a request for a reaction/review, please visit http://www.jabykoay.com/vote\\n\\nMail:\\nJABY KOAY\\n5632 Van Nuys Blvd. #1303\\nSherman Oaks CA 91401\\nUnited States',\n",
       "  1380000,\n",
       "  958530488,\n",
       "  2978,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=tgAnYLCT58A',\n",
       "  'ILLEGAL WEAPON 2.0 | Street Dancer 3D | Shraddha Kapoor | Varun Dhawan | Music Video Reaction!',\n",
       "  \"Jamazing Patrons of January: Irfan Kasmani, Avijit Singh, Madhan, Bhavya Singh,  Riju Mahna, and Arush Dayal!\\n\\nBe a patron for Jaby and support more videos like this!\\nhttp://www.patreon.com/jabykoay\\n\\n___________________________________________________\\n\\nTrailer Link:\\nhttps://www.youtube.com/watch?v=zjMtaw2mrrc\\n\\n___________________________________________________\\n\\nSOCIAL MEDIA:\\n~CAMI STORM~\\nInstagram: @CamiStorm.Actress\\n\\n~ACHARA KIRK~\\nTwitter & Instagram: @AcharaKirk\\nhttp://youtube.com/Achara\\n\\n~JABY KOAY~\\nYouTube, Twitter, Instagram: @jabykoay\\nFacebook: http://www.facebook.com/followjaby\\n\\n~VEERENDRA CHOWDARY~\\nVeerendra Chowdary created the opening animation.\\nTwitter: @NameisVeeru\\n\\n~MOOSA RAZA~\\nMoosa Raza created additional background animation.\\nInstagram: @syedraza7\\nTwitter: @MoosaRaza27\\n\\n___________________________________________________\\n\\nJaby WEST:\\nhttps://youtube.com/GETJaby\\n\\nJaby ASIA:\\nhttps://youtube.com/JabyTV\\n\\nJABY KOAY'S SHORT FILMS PLAYLIST:\\nhttps://www.youtube.com/playlist?list=PL34B19BA788E18384\\n\\nClick here to subscribe and know when the next video drops:\\nhttp://www.youtube.com/subscription_center?add_user=jabykoay\\n\\nThanks for watching!!!\\n\\n__________________________________________________\\n\\n#StreetDancer3D #ShraddhaKapoor #VarunDhawan\",\n",
       "  '2020-01-10T05:45:00.000Z',\n",
       "  833699,\n",
       "  18562.0,\n",
       "  1078.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCVJ6jQF0XOaBVTPCT-en2sw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'baroibeokols1989@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  1280000,\n",
       "  500827556,\n",
       "  2255,\n",
       "  'VN',\n",
       "  'https://www.youtube.com/watch?v=vdss3NssHfw',\n",
       "  'TRUNG REACTION | HƠN CẢ YÊU - ĐỨC PHÚC | OFFICIAL MUSIC VIDEO',\n",
       "  'Chúc mấy đứa có 1 buổi stream nhiều kiến thức hữu ích và xả nhiều stress sau 1 ngày mệt mỏi\\nĐăng kí theo dõi Anh Ba nhé : http://metub.net/BaRoiBeo\\n★ Nền tảng stream Nonolive : Nonolive.com\\n- Link tải ios : https://rutgon.in/NgdL7\\n- Link tải android : https://rutgon.in/pqZwE\\n\\n►Gmail : baroibeokols1989@gmail.com để liên hệ quảng cáo , event sự kiện v.v.....',\n",
       "  '2020-02-14T00:00:07Z',\n",
       "  470951,\n",
       "  16089.0,\n",
       "  419.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCi9mzS8H-ez_30w5SCL2dmw',\n",
       "  'cass@isastaff.com',\n",
       "  nan,\n",
       "  'cass@isastaff.com',\n",
       "  nan,\n",
       "  \"Business Email: cass@isastaff.com\\n\\nWelcome to JREKML aka Just Random Everyday Kpop, Music, Love. I'm JRE and KML is my Cousin! We do skits, and Reactions, and any random video our minds can think of.\\n___________________\\n\\nSend Us DOPE Stuff ^_^ :\\n\\nP.O. Box 610116\\nN. Miami, FL 33261\\n_____________________\\n\\nTwitter https://twitter.com/itsjre\\nFacebook https://www.facebook.com/Jre2thekml\\nInstagram: \\nJ.R.E: @Justrandomeveryday \\n\\n___________________\\n\\nSend Us DOPE Stuff ^_^ :\\n\\nP.O. Box 610116\\nN. Miami, FL 33261\\n_____________________\\n\\nTHE OFFICIAL SEXY BEAUTIFUL PEOPLE LIST!\\nKlaas\\nAgnes\\nNuma L.\\nTiffany S.\\nKahu\\nNawal\\nAmal\\nAmy Li\\nTara N.\\nAlejandra C.\\nCristina L.\\nSelena R.\\nPoppy M.\\nJaseena E.\\nCorinne H.\\nSerena H.\\nNadia A.\\nAshley M.\\nAlexzandrya \\nAshli\\nVeronica P.\\nmariella\\nJaymee H.\\nJordan H.\\nErica G.\\nMickey L.\\nSadie B.\\nCarlie C.\\nDesiree S.\\nJessica C.\\nAlyssah D.\\nMadison R.\\nSo K.\\nNatalie M.\",\n",
       "  1250000,\n",
       "  292665032,\n",
       "  1874,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=t3NOETc6WHQ',\n",
       "  'EVERGLOW - DUN DUN MV Reaction [NEW FAVORITE SONG!]',\n",
       "  'KEEP ON DREAMING JREAMERS.\\n\\nWatch me and Follow me on Twitch - https://www.twitch.tv/jregaming\\n\\nCheck out the Official MV - https://www.youtube.com/watch?v=NoYKBAajoyo\\n\\nFOR SM GLOBAL MERCH - http://smglobalshop.ositracker.com/122096/9034 \\n\\nBusiness Email: cass@isastaff.com\\n\\nJrekml Logo and Intro Created by: \\nItsClubAdventure: https://www.youtube.com/user/ItsClubAdventure/featured\\n\\nThanks for all your support\\nKEEP ON DREAMING JREAMERS.\\n\\nHelp us caption & translate this video!\\n\\nhttps://amara.org/v/CZsBG/',\n",
       "  '2020-02-04T16:26:47.000Z',\n",
       "  206810,\n",
       "  13611.0,\n",
       "  478.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC-O5RPLXeKJXUzNXwwqIOgw',\n",
       "  'matsallehtv@hotmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  '@matsallehtv',\n",
       "  \"I'm from Scotland but I now live in Malaysia.\\n\\nEmail me: matsallehtv@hotmail.com\",\n",
       "  1150000,\n",
       "  144261933,\n",
       "  980,\n",
       "  'MY',\n",
       "  'https://www.youtube.com/watch?v=Pb6teyLy6fM',\n",
       "  'Weird Genius - Lathi (ft. Sara Fajira) Official Music Video // INDONESIAN MUSIC REACTION',\n",
       "  'Weird Genius - Lathi (ft. Sara Fajira) Official Music Video // INDONESIAN MUSIC REACTION\\n\\nOriginal Video - https://www.youtube.com/watch?v=8uy7G2JXVSA\\n\\nFOLLOW ME ON INSTAGRAM: https://www.instagram.com/matsallehtv/?hl=en\\n\\nWeird Genius - Lathi (ft. Sara Fajira) Official Music Video // INDONESIAN MUSIC REACTION',\n",
       "  '2020-03-26T10:55:20.000Z',\n",
       "  492376,\n",
       "  25202.0,\n",
       "  1557.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC_CkAPymqAOO_lgULetH8MQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'bishop-louie@utulsa.edu',\n",
       "  '@all_1k',\n",
       "  \"I'm here to crack you up , if you fuck with me subcribe , this channel is nothing but hilarious content and laughs I'm just a turnt as dude who will crack your ass up on here you'll see hella shytttt so just subscribe and watch my crazy azz you'll never be bored and if you read all this I fuck with you let's laugh together  and tell your FRIENDS ...\",\n",
       "  1130000,\n",
       "  74939094,\n",
       "  226,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=htk5cTT4anI',\n",
       "  'NLE Choppa - Walk Em Down feat. Roddy Ricch (Official Music Video) - Reaction',\n",
       "  'Promoted Song: \\nJAY100 - THE BUTCHER (Official Music Video)\\nhttps://www.youtube.com/watch?v=1dzJk_pCcF8&feature=youtu.be\\n\\nMY Instagram: https://www.instagram.com/all_1k/\\r\\n\\r\\nFOLLOW ME !! I FOLLOW BACK GURANTEE\\r\\n\\r\\nTwitter: https://twitter.com/all_1k?lang=en\\r\\n\\r\\nsoundcloud: https://soundcloud.com/bishop-louie\\r\\n\\r\\nDomi instagram: https://www.instagram.com/domivuitton/\\r\\n\\r\\nBusiness inquiry - Bishop-louie@utulsa.edu for more reactions, pranks , vlogs and chllaneges subscribe',\n",
       "  '2020-03-27T19:56:26Z',\n",
       "  319837,\n",
       "  13913.0,\n",
       "  1000.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCM90gMiLPlVnhSLhrdF_MZA',\n",
       "  'toastbusiness@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"I love making videos no matter the content! Its my passion, my hobby and what truly makes me happy! I hope it makes you happy as well as I wouldn't post at all if I didn't make one person happy. That is my goal and my mission statement! Hope you stay or continue on the ride of this crazy road on Youtube! Feel free to share around to other toasters in the world and subscribe for more awesomeness!\\n\\n\\nFor business inquiries or video proposals please e-mail : toastbusiness@gmail.com\",\n",
       "  1090000,\n",
       "  120815093,\n",
       "  1322,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=VFozfoWE_WE',\n",
       "  'My name is Dharni (Official Music Video) BEATBOX REACTION!',\n",
       "  \"This is seriously a bop! What did you think?\\n\\nThank you for tuning into my reaction videos! Be sure to drop a like and a comment of other videos you want me to check out! Thank you for all the support and love!\\n\\n-Subscribe Now-\\xa0 http://bit.ly/1tNNAIf\\xa0\\n► Join as member here on Youtube to support the channel! (Get special perks) http://bit.ly/2YW7v1\\n► Become a Patreon to support me PLEASE :) http://www.patreon.com/soclosetotoast\\n\\n---------------------------------------------------------------------------\\nSocial Network Links Below\\n---------------------------------------------------------------------------\\n\\n►Follow Twitter: http://bit.ly/15RdaAj\\n►Like Facebook Fan Page: http://on.fb.me/1985hfp\\n►Follow Twitch: http://bit.ly/12T6e2D\\n►Follow Instagram: SoCloseToInstagram\\n\\nOriginal Video: https://www.youtube.com/watch?v=yb1jCeQblLc\\n\\nI've created an Amazon shop with equipment and products that I use!\\nUse this link if you use Amazon! (it helps out a lot): https://www.amazon.com/shop/soclosetotoast\\n\\nOutro Song: https://soundcloud.com/thatkidzei\",\n",
       "  '2020-02-28T00:09:38.000Z',\n",
       "  56939,\n",
       "  3722.0,\n",
       "  200.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCIa1gc6HYm6caMuANx3D3tQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Final Cut News is a YouTube news channel which provides news of utmost significance, coupled with latest news updates from the Entertainment, Crime, Music and film Industry, Politics, Serial, Ajab-Gazab.\\nWe particularly keep our viewers and subscribers updated with the latest gossips and affairs connected with celebrities and their lesser-known secrets. Moreover, we focus on covering the hard hitting news as well to keep reforming our viewers.\\nStay Connected....',\n",
       "  1050000,\n",
       "  498509884,\n",
       "  10400,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=s02ugYJ0uNE',\n",
       "  'Bhula Dunga Honest Song Review| Shehnaaz-Sidharth Song Bhula Dinga Review| Final Cut News',\n",
       "  'Bhula Dunga Honest Song Review| Shehnaaz-Sidharth Song Bhula Dinga Review| Final Cut News\\n#BhulaDunga #SongReview #FinalCut\\nThank You For Watching.....\\nFinal Cut News.....(FCN)',\n",
       "  '2020-03-24T07:44:32.000Z',\n",
       "  57822,\n",
       "  4000.0,\n",
       "  641.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCJ0DMUCkJqSlLg2_WsX8dfA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'reallawtwinz@gmail.com',\n",
       "  '@patrickstuckeyy',\n",
       "  'Welcome to the channel, Enjoy the vibes and join the family if you feel at \\n\\nInstagram: @Tre.Stuckey\\n                    @PatrickStuckeyy',\n",
       "  1020000,\n",
       "  128536607,\n",
       "  561,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=1fB4C4W1sYo',\n",
       "  'EMINEM - GODZILLA ft. JUICE WRLD | REACTION',\n",
       "  'Paid Promoted Song: https://youtu.be/x2aYQQBdLCY\\n\\nTRE’s Instagram \\nhttps://www.instagram.com/Tre.Stuckey\\n\\nPAT’s Instagram \\nhttps://www.instagram.com/Patrickstuckeyy/\\n\\n\\nBusiness Email: RealLawTwinz@gmail.com\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-01-18T00:53:03Z',\n",
       "  2934469,\n",
       "  107024.0,\n",
       "  8746.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCSHatw5t9xkBrFsCssXgMNw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'This is my official YouTube Channel. Subscribe for exclusive content, or else your ex will re enter your life :)',\n",
       "  936000,\n",
       "  9712329,\n",
       "  28,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=7175vyNj2NM',\n",
       "  \"'Coffin' ft Eminem Reaction Videos. lol I'm Dead.\",\n",
       "  \"Before Love Came To Kill Us – Out Now: https://jessiereyez.lnk.to/BeforeLoveCameToKillUs\\n Text me: 416-639-1868\\n\\n#JessieReyez #BeforeLoveCameToKillUs #Coffin\\n\\nShoutout to:\\n\\n@nolifeshaq\\n@Iamlemcollins\\n@teammunroe\\n@LayedBakDFR\\n@toosushi2 \\n@larissacambusano\\n@thethirdernest\\n@hollaAtKrazy\\n@loganfamofficial \\n@toosushi2 \\n \\nLet's connect :)\\nVisit the Jessie Reyez Website: https://JessieReyez.lnk.to/Website\\nFollow Jessie Reyez on Instagram: https://JessieReyez.lnk.to/Instagram\\nLike Jessie Reyez on Facebook: https://JessieReyez.lnk.to/Facebook\\nFollow Jessie Reyez on Twitter: https://JessieReyez.lnk.to/Twitter\\nFollow Jessie Reyez on TikTok: https://JessieReyez.lnk.to/TikTok\",\n",
       "  '2020-04-12T19:12:41.000Z',\n",
       "  73012,\n",
       "  8663.0,\n",
       "  1248.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCBj7lf9bAmctuhsnZ3oxqsg',\n",
       "  'layedbakdfr@gmail.com',\n",
       "  nan,\n",
       "  'layedbakdfr@gmail.com',\n",
       "  nan,\n",
       "  'Thank you for stopping by 😎 Welcome to #FireSquad🔥🔥 Lit reactions dope podcast and good series that happen weekly 🤘🏽🤘🏽\\n\\nFor branding/ sponsors or any artist that want me to react to their music email me at layedbakdfr@gmail.com 🤘🏽🤘🏽\\n\\nP.O. Box 550\\nLovejoy Ga 30250\\n\\nFollow me on social media-\\n\\nTwitter - @LayedBakDFR\\n\\nSnapChat - @LayedBakDFR\\n\\nInstagram - @LayedBakDFR\\n\\nFacebook - @LayedBakDFR\\n\\nSoundCloud - @LayedBakDFR\\n\\n\\nSELF LOVE and POSITIVITY ☘️',\n",
       "  917000,\n",
       "  133661602,\n",
       "  1124,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=zo2eVLqHCl8',\n",
       "  'TRASH or PASS! Eminem ft Juice WRLD ( Godzilla ) Music To Be Murdered By [REACTION!!!]',\n",
       "  'Booking- LayedBakDFR@gmail.com\\n\\nSocial Media-\\n\\nInstagram- @LayedBakDFR\\n\\nTwitter- @LayedBakDFR\\n\\nSoundCloud-@LayedBakDFR\\n\\nSnapChat-@LayedBakDFR',\n",
       "  '2020-01-17T08:49:42Z',\n",
       "  3005142,\n",
       "  129429.0,\n",
       "  7249.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCdZDyjZZSulmWo_I8jmlbhg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hey, i'm Charmx and I do reactions and stuff. I make videos that are for a 13+ audience.\\n\\nFollow me on twitter @CharmxOfficial\",\n",
       "  912000,\n",
       "  367116860,\n",
       "  2294,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=l-VcSLCMwh8',\n",
       "  \"5 Scary Ghost Videos You Can't UNSEE Reaction!\",\n",
       "  'This was wild!\\nSUBSCRIBE TO JOIN THE FAMILY!\\r\\nOriginal video: https://www.youtube.com/watch?v=FoPUj6nFTvg \\r\\nSubscribe to Nuke\\'s Top 5: https://www.youtube.com/channel/UCBnbnH7DGXT9yBBVFbZeIwQ\\r\\n\\r\\nCheck out Charmx2: https://www.youtube.com/channel/UCyTJc6leeom_8q83D8BCqeg\\r\\n\\r\\nCheck out Charmx3: https://www.youtube.com/channel/UCjLoV6HS_hxU3Qg7NpJOBhg\\r\\n\\r\\nFollow me on Twitter @CharmxOfficial\\r\\n\\r\\nOutro and intro music are found on youtube audio library.\\r\\n\\r\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. \\r\\n\\r\\nCopyright issue? Send a message to me on Twitter and we\\'ll get it resolved.',\n",
       "  '2020-04-14T16:00:26.000Z',\n",
       "  66449,\n",
       "  3102.0,\n",
       "  667.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC4wSeiGLqCpdk7dYMpfNYwg',\n",
       "  nan,\n",
       "  nan,\n",
       "  'sidvidrocks@gmail.com',\n",
       "  '@sidvidrocks',\n",
       "  'Hey , I am Siddharth Shankar (Sidvidrocks). A Singer, Songwriter and Composer over all crazy about music. A big thank you to all of you for being a part of my YouTube Family and for your love and support, I am dedicated to entertain you with the best possible ways  ❤️ LOVE YOU ALL DIL SE ❤️',\n",
       "  865000,\n",
       "  68022509,\n",
       "  54,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=5sLoE4e7fCM',\n",
       "  'Randomly Singing Awesome Mash Ups | Delhi Girls Reaction Prank - 2 | Siddharth Shankar',\n",
       "  '🔥PLEASE don’t forget to hit the LIKE Button And COMMENT to let me know your thoughts.\\r\\n🔥PLEASE SUBSCRIBE and Do hit the BELL icon to show your Love & Support :)\\r\\n\\r\\n🔥JOIN ME ON :-\\r\\n➡️ INSTAGRAM :- https://www.instagram.com/sidvidrocks/\\r\\n➡️ FACEBOOK   :- http://www.facebook.com/sidvidrocksu\\r\\n➡️ TikTok           :- Sidvidrocks\\r\\n💼 BUSINESS :- sidvidrocks@gmail.com\\r\\n\\nOriginal Song Credits:\\n1- Song: Mera Pyaar Tera Pyaar\\nSinger – Arijit Singh\\nMusic – Jeet Gannguli\\nLyrics – Rashmi Virag\\nFilm directed by – Pushpdeep Bhardwaj\\nFilm Produced by – Vishesh Films\\nMusic Label – Sony Music\\n\\n2- SONG - Kya Mujhe Pyar\\nFilm - Woh Lamhe\\nSinger - KK\\nLyricist - Nilesh Mishra\\nMusic Director - Pritam Chakraborty\\nArtist - Shiny Ahuja, Kangna Ranaut\\nMusic On - T-Series\\n\\n3- SONG - Chehra Hai Ya Chand Khila Hai\\nMovie: Saagar (1985)\\nStarcast: Rishi Kapoor, Dimple Kapadia\\nSinger: Kishore Kumar\\nMusic Director: R.D.Burman\\nLyricist: Javed Akh\\n\\n4- SONG - Ab Mujhe Raat Din\\nAlbum - Deewana\\nSinger - Sonu Nigam\\nLyricist - Faaiz Anwaar\\nMusic Director - Sajid Wajid\\nArtist - Various\\nMusic On - T-Series\\n\\n5- SONG - Pyaar Manga Hai\\nSinger-Kishore Kumar\\nMusic By- Bappi Lahiri\\nLyricist- Shiv Kumar Saroj\\nOriginal Music Composition Rights: Universal Music\\nSong Credits :\\nSong - Pyaar Manga Hai\\nSingers- Armaan Malik, Neeti Mohan\\nMusic – Abhijit Vaghani\\nLyrics By – Manoj Muntashir\\nVocals Dubbed By - Surajit Ghosh (T-Series)\\nGuitars By- Shomu Seal\\nMix And Master By Aftab Khan At Headroom Studio\\nMix Assistant By Benvin Fernandes And Altmash Srivastav\\nMusic Label: T-Series\\r\\n\\n➡️ IMPORTANT NOTICE : Permission has been taken from all the people shown in this video.\\r\\n\\r\\n❤️ THANK YOU FOR BEING A PART OF MY YOUTUBE FAMILY ❤️',\n",
       "  '2020-01-22T08:30:10.000Z',\n",
       "  5472253,\n",
       "  264128.0,\n",
       "  11294.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCFdAdgyV43x3OolPd8RQUig',\n",
       "  nan,\n",
       "  nan,\n",
       "  'brisxlife@gmail.com',\n",
       "  '@brisxlife',\n",
       "  nan,\n",
       "  742000,\n",
       "  178320807,\n",
       "  752,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=N_oCMg2MCSA',\n",
       "  \"BTS (방탄소년단) 'ON' Kinetic Manifesto Film : Come Prima | REACTION!!!\",\n",
       "  \"More Content On Patreon!!!\\r\\nhttps://www.patreon.com/BRISxGANG\\r\\n\\r\\nGET YOUR MERCH HERE!!!\\r\\nhttps://teespring.com/stores/bris-2019-collection\\r\\n\\r\\n2ND CHANNEL: more BRISXLIFE\\r\\nhttps://www.youtube.com/channel/UCY7u8gGMB9S1Xm4tan_WyAQ\\r\\n\\r\\nSUBSCRIBE!!!\\r\\nhttps://www.youtube.com/channel/UCFdAdgyV43x3OolPd8RQUig\\r\\n-------------------------------------------------------------------------------------------------------------\\r\\nCheck out my reaction to BTS (방탄소년단) 'ON' Kinetic Manifesto Film : Come Prima | REACTION!!! \\r\\n\\r\\nORIGINAL VIDEO: https://www.youtube.com/watch?v=gwMa6gpoE9I\\r\\n__________________________________________________________________\\r\\nHIT ME UP!\\r\\n\\r\\nFollow my INSTAGRAM!\\r\\nhttps://www.instagram.com/brisxlife/\\r\\n\\r\\nFollow my TWITTER!\\r\\nhttps://twitter.com/BRISxLIFE\\r\\n----------------------------------------\\xad----------------------------------------\\xad------------------------------\\r\\nBUSINESS ONLY: BRISxLIFE@gmail.com\\r\\n--------------------------------------------------------------------------------------------------------------\\r\\n\\r\\nIF YOU WANT TO MAIL SOMETHING TO ME:\\r\\nP.O BOX 5573\\r\\nBuena Park, CA 90622\",\n",
       "  '2020-02-21T09:57:41.000Z',\n",
       "  986000,\n",
       "  76415.0,\n",
       "  4712.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCWTYf4xModfNsyq2NUYjF5g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'ONEUS Official YouTube Channel',\n",
       "  729000,\n",
       "  43830433,\n",
       "  163,\n",
       "  'KR',\n",
       "  'https://www.youtube.com/watch?v=nUW7SWUe7tI',\n",
       "  \"ONEUS(원어스) '쉽게 쓰여진 노래 (A Song Written Easily)' MV REACTION\",\n",
       "  \"ONEUS(원어스) '쉽게 쓰여진 노래 (A Song Written Easily)' MV REACTION\\n\\nFollow 'ONEUS'\\nhttp://www.youtube.com/c/ONEUS\\nhttp://cafe.daum.net/RBWBOYZ\\nhttps://twitter.com/official_ONEUS\\nhttps://www.facebook.com/officialONEUS\\nhttps://www.instagram.com/official_oneus\\nhttps://channels.vlive.tv/C2D78B/video\\n\\n#원어스 #IN_ITS_TIME #쉽게쓰여진노래\\n#ONEUS #A_Song_Written_Easily #MV\\n#1st_Single_Album\",\n",
       "  '2020-03-27T03:00:17.000Z',\n",
       "  74966,\n",
       "  14036.0,\n",
       "  841.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCeiAKuJGZrIjYvaq0nMwbJg',\n",
       "  'thefilmiindian@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to the family of Filmi Indian ❤️\\n\\n► The Content on our channel will primarily consist of :\\n      ● Movie Review\\n      ● Movie Story Explained\\n      ● Web Series Review\\n      ● Bollywood Movies Explained in Hindi\\n      ● Hollywood Movies Explained In Hindi\\n      ● Movie Trailer Reviews\\n      ● Movie Trailer Reaction\\n\\n  \" DIMAG SE FILMY, DIL SE INDIAN \" 🇮🇳\\n\\n➤ New Movie Review Videos Every FRIDAY/SATURDAY\\n➤ Movie Stories Explained Videos Any Day of the Week\\n\\n\\nFor Sponsorship /Collaboration / Promotion you can drop us a mail at - ( thefilmiindian@gmail.com ) \\n\\nAlso please follow us on other digital platforms by clicking on the buttons below-',\n",
       "  715000,\n",
       "  98905696,\n",
       "  303,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=LOJsYcYtdzI',\n",
       "  'Mere Angne Mein Song REACTION | Deeksha Sharma',\n",
       "  'Mere Angne Mein Song Reaction In Hindi. Mere Angne Mein Song Review By Deeksha Sharma. Mere Angne Mein Song Full Details Discussion In Hindi. In this Video I will be sharing my thoughts about latest T Series Song Mere Angne Mein, Finally a good remake song to look for Or Just another disappointing song from the same artist? Find all your answers in this Video.\\n\\nGulshan Kumar and T-Series presents Bhushan Kumar\\'s “Mere Angne Mein \" song, featuring Jacqueline Fernandez and Asim Riaz in the video. This holi special track is sung by Neha Kakkar & Raja Hasan. The music is recreated by Tanishk Bagchi and the lyrics are penned by Vayu. The video is directed by Radhika Rao & Vinay Sapru.\\n\\n♫ SONG CREDITS ♫\\n♫ Song: Mere Angne Mein\\n♫ Singers: Neha Kakkar & Raja Hasan\\n♫ Music Recreated by - Tanishk Bagchi\\n\\n♫Video Credits \\nDirected By - Radhika Rao & Vinay Sapru\\nCast – Jacqueline Fernandez, Asim Riaz, Anuj Saini, Khushi Joshi\\n\\n\\n● Leave A comment describing how you are liking our videos. You can also post any question/query related to the movie.\\n\\n● Stay Connected With Us by Subscribing to our channel & don\\'t forget to ring the bell icon for regular updates.\\n\\n➤ Follow Us on Instagram-\\n     https://www.instagram.com/thefilmiindian\\n\\n➤ Follow Us on Twitter-\\n     https://twitter.com/thefilmiindian\\n\\n➤ Follow Us on Facebook-\\n     https://www.facebook.com/Filmi-Indian-349977819153851/\\n\\n#MereAngneMein #MereAngneMeinSongReaction',\n",
       "  '2020-03-09T10:26:05.000Z',\n",
       "  423226,\n",
       "  28351.0,\n",
       "  115.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCJo5ab1yfSjkRNJALOSp9eA',\n",
       "  'bookzavinow@gmail.com',\n",
       "  '@aspectzavi_',\n",
       "  nan,\n",
       "  nan,\n",
       "  'Contact - Business/Inquires  : Bookzavinow@gmail.com\\nInstagram Handle :  https://www.instagram.com/aspectzavi_/',\n",
       "  704000,\n",
       "  98329931,\n",
       "  492,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=-xvnih-cEZ4',\n",
       "  'Lil Uzi Vert - Futsal Shuffle 2020 [Official Music Video] REACTION',\n",
       "  \"Lil Uzi Vert - Futsal Shuffle 2020 [Official Music Video] REACTION\\n\\nDon't forget to subscribe for more!\\r\\n\\r\\nFollow Zavi:\\r\\n▶ Stream: https://ONErpm.lnk.to/AspectZaviID\\r\\n▶ Facebook: https://www.facebook.com/Therealapectzavi\\r\\n▶ Instagram: https://www.instagram.com/aspectzavi_\\r\\n—\\r\\nFollow ONErpm:\\r\\n▶ On Socials: https://lnk.to/RSONEID\\r\\n▶ On Spotify: https://ONErpm.lnk.to/ONESpotID\\r\\n▶ On Apple Music: https://ONErpm.lnk.to/ONEappleID\\r\\n\\r\\n#ZAVI #2020 #FUTSALSHUFFLE\",\n",
       "  '2020-01-07T22:56:35.000Z',\n",
       "  83117,\n",
       "  3744.0,\n",
       "  222.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCR4z8ccOWNoUThB4VAMNBTg',\n",
       "  'ostupidp@gmail.com',\n",
       "  nan,\n",
       "  'ostupidp@gmail.com',\n",
       "  nan,\n",
       "  'Korbin Miles & Rick Segall are the  Creators of OUR STUPID REACTIONS!\\n\\nWe offer our stupid and not asked for opinions with a dash of humor \\n\\nTrailer Reactions\\nTV Reviews\\nFilm Reviews\\nMovie Talk (News, Spoiler Reviews, Film Rumors)\\nSketches\\nENJOY THE SHOW!\\n\\nFOR BUSINESS - OstupidP@gmail.com\\n\\nFollow us on Twitter and Instagram\\nKorbin:\\nTwitter-@kor5bin\\nInstagram- @Korbinmiles\\n\\nRick:\\nTwitter- @rickSegall\\nInstagram- Ricksegall\\n\\nBased Out of LA',\n",
       "  688000,\n",
       "  298137753,\n",
       "  1171,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=WsuR1nv9dGg',\n",
       "  'Sandese Aate Hai Song REACTION!! | Patriotic Hindi Songs',\n",
       "  'Here is our reaction!\\n\\n\\n#India\\n\\nTHANKS SO MUCH TO OUR EXTRA JUICY PATREON SUPPORTERS \\nHANOZ NAVDAR & SASI KUMAR\\n\\n\\nBe a patron for us and support more videos like this!\\n\\nhttps://www.patreon.com/OurStupidReactions\\n\\nIf you would like to send us something\\n\\n\\n18960 Ventura Blvd. #76\\nTarzana, CA 91356\\n\\n\\nKorbins Personal Youtube page-\\nhttps://www.youtube.com/user/KorbinMiles\\n\\nRicks personal Youtube Page-\\nhttps://www.youtube.com/channel/UCBH1...\\n\\n\\nKorbin Miles - https://www.imdb.com/name/nm4716836/?...\\n\\nRick Segall - https://www.imdb.com/name/nm0781848/?...\\n\\nFor Business - oStupidp@gmail.com\\n\\nFollow OurStupidReactions On FACEBOOK & TWITTER: \\nFB: https://www.facebook.com/ourstupidpod...\\nTWITTER:  https://twitter.com/STUPIDREACTIONS',\n",
       "  '2020-01-24T06:40:54.000Z',\n",
       "  772392,\n",
       "  37140.0,\n",
       "  4491.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCCgVh36x3hbuRnHMpwl443Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hello,\\n\\nMy mission as a music producer, sound engineer and video game enthusiast is to honestly react and communicate my thoughts/feelings about the content featured on the channel.\\n\\n✔️  Exclusive Patreon content\\n      https://www.patreon.com/musicgamenews/posts\\n\\n✔️  Instagram\\n      https://www.instagram.com/musicgamenews\\n\\n✔️  Facebook\\n      https://www.facebook.com/musicgamenews\\n\\n✔️  Twitter\\n      https://twitter.com/musicgamenews\\n\\n✔️  MGN Merch\\n      https://teespring.com/stores/mgn\\n\\n✔️  Donations are always welcome \\n      https://paypal.me/musicgamenews\\n\\nMGN is based in Montreal, Canada.',\n",
       "  686000,\n",
       "  217898859,\n",
       "  2730,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=AY8s0l8q84M',\n",
       "  'Matthaios - Catriona | Pretty Easy to Sing to | HONEST REACTION',\n",
       "  '✘ Let\\'s talk on Instagram: https://www.instagram.com/musicgamenews\\n\\n~\\n\\n✘ PATREON: https://bit.ly/2GXBKN2\\n✘ SUBSCRIBE: 👉https://bit.ly/2GXo7x8 👈\\n✘ MERCH: https://bit.ly/2H9d9nI\\n\\n~\\n\\n👍🏻 LET\\'S BE FRIENDS:\\n\\n✘ Twitter: https://www.twitter.com/musicgamenews\\n✘ Facebook: https://www.facebook.com/musicgamenews\\n\\n~\\n\\n📌 HASHTAGS: \\n\\n#MGN #Catriona #Matthaios\\n\\n~\\n\\n📼 ORIGINAL VIDEO:\\n\\nhttps://youtu.be/8iO_n8Sc9MY\\n\\n~\\n\\n📷 GEAR I USE 🎙:\\n\\n✘ Panasonic Lumix G85 Camera:\\nAmazon affiliate link: https://amzn.to/2Qj9Trs\\n\\n✘ GoPro Hero 7 Camera:\\nAmazon affiliate link: https://amzn.to/35he0fl\\n\\n✘ Rode NTG3B Microphone:\\nAmazon affiliate link: https://amzn.to/2PcQMBg\\n\\n✘ AKG Pro Audio C214 Microphone:\\nAmazon affiliate link: https://amzn.to/2MWTvep\\n\\n✘ Shure SM58-LC Microphone:\\nAmazon affiliate link: https://amzn.to/2ukCZNF\\n\\n✘ Rode VideoMicro Microphone:\\nAmazon affiliate link: https://amzn.to/2PFHCw5\\n\\n✘ RME Babyface External Sound Card:\\nAmazon affiliate link: https://amzn.to/2J2nGye\\n\\n✘ 1st Mic Stand: \\nAmazon affiliate link: https://amzn.to/2lZfJAL\\n\\n✘ 2nd Mic Stand: \\nAmazon affiliate link: https://amzn.to/2MTPlDQ\\n\\n✘ PS4: \\nAmazon affiliate link: https://amzn.to/2MYkWUZ\\n\\n✘ Elgato Game Capture HD60: \\nAmazon affiliate link: https://amzn.to/2udIhtX\\n\\n✘ Lighting: \\nAmazon affiliate link: https://amzn.to/2KSsP0M\\n\\n~\\n\\n🎶 MUSIC I USE IN MY VIDEOS:\\n\\n✘ \\'Your Home\\' by Dark Light - https://www.youtube.com/watch?v=4R0-O76DbIE\\n✘ Buy \\'Your Home\\' - https://itunes.apple.com/us/album/loin-de-\\ntoi/id998661934\\n✘ DJ Grumble - https://soundcloud.com/gbeats\\n✘ Grimelabinc - https://soundcloud.com/grimelabinc/tracks\\n\\n~\\n\\n📖 REACTION DEFINITION:\\n\\n. re·ac·tion\\n   rēˈakSH(ə)n/\\n   noun\\n   . an action performed or a feeling experienced in response to a      situation or event.\\n\\n~\\n\\n📃 COPYRIGHT DISCLAIMER:\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.',\n",
       "  '2020-01-11T00:28:17.000Z',\n",
       "  149293,\n",
       "  4360.0,\n",
       "  398.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCa9T0y46uK5FzJT-8tLBFeQ',\n",
       "  'roundtabletelevision@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  '@_rttv_',\n",
       "  \"RT TV - TV STATION GIVING Y’ALL EVERY ASPECT OF MEDIA \\nHOMETOWN : RHODE ISLAND \\n\\nSupport the team down below:\\n\\nRT TV Merch: https://bit.ly/2TSd6jU\\nPatreon: http://www.patreon.com/rttv_\\n\\nWhats Good You Are Now Rockin' With RT TV  Your Only Stop For Everything Happening From New Music , Reactions, News, Challenges, Fashion AND Playlists ! \\n\\nWe Appreciate The RT TV Gang / Family Getting Us To 160,000 Subs!! Keep Hitting That Subscribe Button and Become Part Of This Notification Gang So You Can Get Alerts For ALL Our New Content!\\n\\nFor instant updates, check out my social media accounts below!\\n\\nFOLLOW THE TEAM: INSTAGRAM : @_RTTV_ , @DCz_WorldRT , @Wellz_RT, @PatricRT , @RobCityRT, @Wilkins_RT,  \\n \\nTWITTER : @RoundtableRT , @RobCityRT, @PatricRT, @, DC_RT, Wellz_RT , AND @Wilkins_RT\\n \\nBusiness Inquiries : Roundtabletelevision@gmail.com\",\n",
       "  665000,\n",
       "  300563187,\n",
       "  3416,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=qvgTQx5hu78',\n",
       "  'BAD BUNNY - YHLQMDLG Full Album Reaction/Review',\n",
       "  \"BAD BUNNY - YHLQMDLG Full Album Reaction/Review\\n\\n#BadBunny #YHLQNDLG\\n\\nEarly Access & Full Reaction available on Patreon! \\nhttps://patreon.com/rttv_\\n\\nWatch More RT TV:\\n\\nAttack on Titan | RT TV https://youtube.com/playlist?list=PL4...\\nKPOP | RT TV: https://youtube.com/playlist?list=PL4... \\nCardi B | RT TV: https://youtube.com/playlist?list=PL4...\\nPopular Videos | RT TV: https://youtube.com/playlist?list=PL4...\\n\\nFollow RT TV: \\nInstagram: https://www.instagram.com/_rttv_/\\nTwitter: https://twitter.com/RoundTableRT\\n\\nFollow Robcityrt: \\nInstagram: https://www.instagram.com/robcityrt/\\nTwitter: https://twitter.com/Robcityrt\\n\\nFollow Patricrt:\\nInstagram: https://www.instagram.com/patricrt/\\nTwitter: https://twitter.com/Patricrt\\n\\nFollow Wellz_RT: \\nInstagram: https://www.instagram.com/wellz_rt/\\nTwitter: https://twitter.com/Wellz_rt\\n\\nFollow DCRT: \\nInstagram: https://www.instagram.com/dcz_worldrt/\\nTwitter: https://twitter.com/_dc_rt\\n\\nFollow Wilkins_RT: \\nInstagram: https://www.instagram.com/wilkins_rt/\\nTwitter: https://twitter.com/Wilkins_rt\\n\\nRT TV, TV STATION GIVING Y’ALL EVERY ASPECT OF MEDIA \\nHOMETOWN : RHODE ISLAND \\n\\nWhats Good You Are Now Rockin' With RT TV  Your Only Stop For Everything Happening From New Music , Reactions, News, Challenges, Fashion AND Playlists ! \\n\\nWe Appreciate The RT TV Gang / Family Getting Us To 624,000 Subs!! Keep Hitting That Subscribe Button and Become Part Of This Notification Gang So You Can Get Alerts For ALL Our New Content!\",\n",
       "  '2020-03-01T18:17:09.000Z',\n",
       "  195045,\n",
       "  6888.0,\n",
       "  453.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCPnsmwVKhDJoO7jLKfX0Wxw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Welcome to ReacttotheK! \\n\\nThis channel (stationed at the Eastman School of Music in NY) is run by a classical musician Umu (hi!), who is ridiculously obsessed with kpop.\\n\\nIf you're looking for lots of music related fangirling/fanboying ...then you've found the right channel.\\n\\nBehind the scenes people:\\nEditor/camera lady/prompter/creator-of-channel etc, Umu\\nK-artist fact researcher & script writer, Erin Peters\\nAssistant editor, YouTuber Lazy Ace Dia\\nAssistant editor, Ally Lamm\\nAssistant camera-man, YouTuber Jordan Moore\\n\\nSEND US STUFF !\\n\\n60 Grove Street\\nUnit 12\\nRochester, NY\\n14605\\n\\nPLEASE DO NOT RE-UPLOAD MY CONTENT WITHOUT ASKING MY PERMISSION FIRST\",\n",
       "  641000,\n",
       "  225387699,\n",
       "  1108,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=hH6LwhRlIIA',\n",
       "  \"Classical Musicians React: Zico 'Any Song'\",\n",
       "  \"For the 52nd reaction video of Season 4 of this series, classical musicians react to Zico's Any Song MV.\\n\\nWatch Any Song here: https://www.youtube.com/watch?v=UuV2BmJ1p_I\\n\\nIf you'd like to support ReacttotheK and help us grow, support us on Patreon and get access to a bunch of exclusive content: https://www.patreon.com/reacttothek \\n---------------------------------------------------------------------------------------------------------------------------\\n*CMR Reaction Release Schedule: https://docs.google.com/document/d/1uvf-u1EJVB-hmB3IU0P6M-obdMNu11fo_aUIf6dur70/edit?usp=sharing \\n\\n*Will not react to list: https://www.youtube.com/playlist?list=PLFw_XZtkCVMOH_3tUBnmsKnncWbrhpjP1 \\n\\nSend us things! \\n60 Grove Street\\nUnit 12\\nRochester, NY\\n14605\\n---------------------------------------------------------------------------------------------------------------- \\n~Channel IG: @reacttothek_official \\n~Channel Twitter: @reacttothek \\n~Channel Tumblr: https://reacttothek.tumblr.com/ \\n~Channel Facebook: https://www.facebook.com/ReacttotheK/\\n~Join our discord! https://discordapp.com/invite/d7zU26X\\n---------------------------------------------------------------------------------------------------------------- \\nVideo edited, filmed and audio recorded by Umu\\nScript written by Erin Peters (Twitter: @eireaine)\\nIntro design by Alex Chen (website: https://www.acchen.com/) \\nThumbnail by Nozomi Murayama (IG: @nonchanyuzuru)\\n---------------------------------------------------------------------------------------------------------------- \\nFollow the ReacttotheK squad and keep up-to-date with our lives: \\n\\nUmu: \\nIG: @_emcha_ \\nTumblr: attack-on-dango, omg-horns, kpop-favs \\nTwitter: @umucado\\n\\nKevin:\\nTwitter: @nerdymusicks\\nYouTube: nerdymusicks\\nIG: @nerdymusick\\n\\nIsaac:\\nIG:@Isaac.jr.li\\nTwitter: @IsaacJRLi\\n\\nFiona:\\nIG+ twitter: @fifidoghorn\\n\\nDaniel\\nIG: @m.jwlee\\n\\nAaron:\\nIG: @aaronlee753\\n\\nStephen:\\nIG: @stephenmorrisdrums\\n\\nSeiji:\\nIG: @seiyamashita\\nTwitter: @seiyamashita3\\n\\nElizabeth:\\nIG: @ElizabethReacts\\n\\nHenry (trombone):\\nIG: @henry.carpender\\nTwitter: @henry_carpender \\n\\nJames:\\nIG: @jamesfhorn\\n\\nMelissa:\\nIG: @melissa.447\\n\\nEmiel:\\nIG: @trumpetoats\\n\\nHenry (vocalist):\\nIG: @henrythedean\\n\\nNick\\nIG: @nqwbr\\nYT: Nicholas Wilbur\\n\\nBrianna:\\nIG: @brianna239\",\n",
       "  '2020-02-06T14:24:56.000Z',\n",
       "  428475,\n",
       "  11726.0,\n",
       "  700.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCciKycgzURdymx-GRSY2_dA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hello! You've found Eurogamer's YouTube channel. Come on in, make yourself at home. \\n\\nEurogamer has been peddling bad puns about games since 1999, and this is where we make our videos. Join Aoife Wilson, Johnny Chiodini and Ian Higton for features, let's plays, serious discussion, less serious discussion and more. \\n\\nFollow us on twitter and facebook using the links below!\",\n",
       "  621000,\n",
       "  252271527,\n",
       "  4275,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=S3zZWpj74lk',\n",
       "  \"Final Fantasy VII Remake Music Video Trailer Reaction: Let's Watch Final Fantasy 7 Remake Trailer\",\n",
       "  \"The latest #FF7R trailer has a TON of new reveals, including Scarlet, Palmer, JENOVA and everyone's best boi, Red XIII! #FinalFantasy expert Aoife has of course watched it, but Zoe has valiantly kept herself spoiler-free so we could capture her p r e c i o u s trailer reaction. Enjoy!\\n\\nSubscribe to Eurogamer - http://www.youtube.com/subscription_center?add_user=eurogamer\\n\\nFor the latest video game reviews, news and analysis, check out http://www.eurogamer.net and don't forget to follow us on Twitter: http://twitter.com/eurogamer\",\n",
       "  '2020-02-04T21:13:32.000Z',\n",
       "  80155,\n",
       "  1924.0,\n",
       "  297.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCIUA7-MNA9NyrpimQo7Dw8g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Official DragonForce YouTube.\\nLivestreaming every Wednesday!',\n",
       "  619000,\n",
       "  189846065,\n",
       "  83,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=9p-Sw0nAJaw',\n",
       "  'Reaction Video: DragonForce Likes Fire',\n",
       "  \"Herman Li reacting to 'Dragonforce Likes Fire' first time during YouTube livestream.\\nSUBSCRIBE ► https://www.youtube.com/c/dragonforce?sub_confirmation=1\\nPlease 'Like' and post a comment :)\\nEnable ► ALERT\\n\\nTWITCH ► https://twitch.tv/hermanli\\nTOURS + VIP ► https://dragonforce.com/shows\\nMERCH ► https://dragonforce.com/merch\\nDISCORD ► https://discord.gg/hermanli \\n\\nInstagram ► https://instagram.com/dragonforcehq\\nTwitter ► https://twitter.com/dragonforce\\nFacebook ►https://facebook.com/dragonforce \\n\\nYouTube ► https://youtube.com/hermanli\\nInstagram ► https://instagram.com/hermanli\\nTwitter ► https://twitter.com/hermanli\\nFacebook ►https://facebook.com/hermanli.online\",\n",
       "  '2020-03-26T19:23:22.000Z',\n",
       "  184404,\n",
       "  7367.0,\n",
       "  456.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC0Dv1y_n3yeZ5tgB96oJ95w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@cam3r0nph1l1p',\n",
       "  'k-pop n stuff',\n",
       "  585000,\n",
       "  109090641,\n",
       "  1922,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=qCx77Dqxiyc',\n",
       "  \"watching the new BTS 'ON' music video [reaction / review]\",\n",
       "  \"GRAB THE BTS LOVE YOURSELF MERCH HERE (60% OFF) - https://lvbangtan.com/discount/cameron10\\n\\nuse code cameron10 !!!\\n\\nBTS ON MUSIC VIDEO REACTION / REVIEW\\n\\nMY MERCH - https://www.thekshopofficial.com/category/cameron-philip\\r\\n\\r\\nBTS DUBBED MERCH - https://www.thekshopofficial.com/category/bts-dubbed\\r\\n\\r\\nJOIN THE SAD BOYS CLUB (PODCAST) HERE - https://www.patreon.com/sadboysclub\\r\\n\\r\\nLISTEN TO MY NEW ALBUM THE ADVENTURE ON ALL PLATFORMS HERE - https://songwhip.com/album/cameron-philip/the-adventure\\r\\n\\r\\nLISTEN TO MY NEW ALBUM THE ADVENTURE ON SOUNDCLOUD HERE - https://soundcloud.com/cameronphilip/sets/the-adventure\\r\\n\\r\\nhelp subtitle this video in your language! - http://www.youtube.com/timedtext_cs_panel?tab=2&c=UC0Dv1y_n3yeZ5tgB96oJ95w\\r\\n\\r\\nMY FIRST ALBUM ON ALL PLATFORMS: https://goo.gl/8sNKv9 \\r\\n\\r\\nMY FIRST ALBUM ON SOUNDCLOUD: https://goo.gl/L2WmBk \\r\\n\\r\\nOUTRO SONG: RISING - CAMERON PHILIP\\r\\n\\r\\nBECOME A PART OF THE SLAY SQUAD - https://goo.gl/zrgHTf\\r\\n\\r\\nHelp raise money for mental health! - https://goo.gl/wW4UZ3\\r\\n\\r\\nFOLLOW ME ON TWITCH! - https://www.twitch.tv/cameronphilip\\r\\n\\r\\nTwitter - https://twitter.com/CAM3R0NPH1L1P\\r\\n\\r\\nFacebook - https://www.facebook.com/BooCockyMusic/\\r\\n\\r\\nInstagram - https://www.instagram.com/cam3r0nph1l1p/\\r\\n\\r\\nSEND ME STUFF (if you'd like) :\\r\\nAddress: 10 Pine Street N. Unit 4\\r\\nCity: Thorold\\r\\nProvince: Ontario\\r\\nCountry: Canada\\r\\nPostal Code: L2V 2N9\\r\\n\\r\\nMy music on Apple Music! - https://goo.gl/81x6bZ\\r\\n\\r\\nMy music on GooglePlay! - https://goo.gl/2HFBD6\\r\\n\\r\\nMy music on Spotify! - https://goo.gl/ns3byq\\r\\n\\r\\nMy music on Soundcloud! - https://goo.gl/NHiYS9\",\n",
       "  '2020-02-28T17:54:50.000Z',\n",
       "  67179,\n",
       "  9718.0,\n",
       "  794.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCHi0PjvDEqIHNt_5Hytj4tw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'All you can eat sketches, vlogs, and sarcasm. New vids every week!\\nSubscribe, you sexy goose! :)\\n\\n\\n\\nMondays: Vlogs, Tuesdays: Tasty Tuesday, Wednesdays: Collabs, sketches, tags, Thursdays: Vlogs, Fridays: AskLimo (Q&A), Monthly Favorites\\n\\nWRITE TO ME:\\n\\nNikki Limo\\n11271 Ventura Blvd. #159\\nStudio City, CA 91604',\n",
       "  583000,\n",
       "  76672820,\n",
       "  813,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=8ToVr0r0ST4',\n",
       "  'EMINEM - MUSIC TO BE MURDERED BY (FIRST REACTION/ REVIEW)',\n",
       "  \"Yes, it took me over 2 weeks to do this video because as a FAN I need time to process an album when it comes out, and I still feel like there's always something I wish I added. It's PERSONAL lol.\\n\\nThank you to Patreon for making this video possible! http://www.patreon.com/stikki\\nSubscribe: https://bit.ly/NikkiLimoSub | Check out the podcast: http://bit.ly/STDTYPod\\r\\nWatch Next, “Kamikaze album review”: https://www.youtube.com/watch?v=NO3aJ75nBiI \\r\\n\\r\\n**SHOP MY VIDEO**\\r\\n\\r\\nEQUIPMENT USED:\\r\\n-Camera: Canon 70D https://goo.gl/VMKrqa\\r\\n-Vlog Camera: Canon G7X Mark II https://goo.gl/q5z7hR\\r\\n-RODE microphone: https://goo.gl/iVqFfk\\r\\n-Lens: https://goo.gl/xZD8AS\\r\\n-Tripod: https://goo.gl/cb5qWi\\r\\n-Ring Light: https://goo.gl/HLN3DB\\r\\n \\r\\nFIND ME HERE TOO:\\r\\nInstagram: http://instagram.com/nikkilimo\\r\\nFacebook: http://www.facebook.com/officialnikkilimo\\r\\nTwitter: http://twitter.com/nikkilimo\\r\\nSnapchat: https://snapchat.com/add/nikkilimo\\r\\nT-shirts and Merch: http://www.teespring.com/stores/nikki-limo\\r\\n \\r\\nWATCH MORE:\\r\\nThirsty Thursday: https://youtube.com/playlist?list=PLHFVXju6NSniYyNbQibEa0hr39YKpeG2_\\r\\nTasty Tuesday: https://youtube.com/playlist?list=PLHFVXju6NSnji00Jx64sxhZUlaIdw8Mf_\\r\\nRecent Vids: https://youtube.com/playlist?list=PLHFVXju6NSnjIQ0crjJvSnSFjfXFYpKlJ\\r\\nNikki In Real Life: https://youtube.com/playlist?list=PLHFVXju6NSniiXyb-VzB4-IW5Xl9qwvIN\\r\\nSketches: https://youtube.com/playlist?list=PLHFVXju6NSnjSyAxrI-ajSLnmFlz7dRZ5\\r\\n \\r\\nWRITE TO ME:\\r\\nNikki Limo\\r\\n11271 Ventura Blvd. #159\\r\\nStudio City, CA 91604\\r\\n \\r\\nMUSIC from EPIDEMIC SOUND\\r\\n \\r\\nThanks for watching my youtube channel. Come back for new videos on Tasty Tuesdays, Thirsty Thursdays and Nikki In Real Life on Saturdays! Subscribe so you don't miss them!\",\n",
       "  '2020-02-04T18:21:03.000Z',\n",
       "  36982,\n",
       "  3029.0,\n",
       "  497.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCprhwr86ckrMC2q9jX8qMnw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Cuntry Girl',\n",
       "  570000,\n",
       "  78124512,\n",
       "  28,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=0Nf2Y9jfyD8',\n",
       "  \"Ashnikko's Grandparents React To Her Music Videos\",\n",
       "  'We travelled back to North Carolina to see if Mama Nikko and Grandpa Beans are proud of or humiliated by their prodigal grandchild...\\n\\nVideo by Henry Dean\\n\\nAshnikko:\\r\\nhttps://twitter.com/ashnikko\\r\\nhttps://facebook.com/ashnikkomusic\\r\\nhttps://instagram.com/ashnikko\\r\\nhttps://soundcloud.com/ashnikko',\n",
       "  '2020-01-05T17:42:18Z',\n",
       "  980559,\n",
       "  56884.0,\n",
       "  2790.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCLLjj4KdG8fcONR-PGA46Aw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'brandonnrashad@gmail.com',\n",
       "  '@brandonrashad_',\n",
       "  'Fucking Rockstar! 🤟🏾\\nI make 🔥 music.\\nDAILY reactions, my music, LIT challenges and other ish\\n\\nBrand Ambassador \\nUse my FashionNova Link to shop at FashionNova',\n",
       "  558000,\n",
       "  51901507,\n",
       "  1802,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=B0jX9gBlf3g',\n",
       "  'TOP 100 RAP SONGS OF 2019 | Reaction',\n",
       "  'Listen to my RockStar EP\\n\\nSPOTIFY Link: https://open.spotify.com/album/479pnnxErlkeGDlw5Zznof\\nAPPLE MUSIC Link: https://music.apple.com/us/album/rockstar/1496638084?app=music&ign-mpt=uo%3D4\\nYOUTUBE LINK: https://www.youtube.com/playlist?list=PL0YoLONh9uznsW_RB-M39OTl1jByOG6jA\\n\\nThis Video is about TOP 100 RAP SONGS OF 2019\\n\\nUse My Link To Shop FashionNova For Men & Women:\\nhttp://bit.ly/2KYyIsP  \\n\\nCheck out my Fashion Nova Mens Try On Haul : https://www.youtube.com/watch?v=oIrQJDM3Gz8\\n\\nFOLLOW ME!\\n\\nMy Instagram: https://www.instagram.com/brandonrashad_/\\nMy Twitter: https://twitter.com/brandonrashad_\\n\\n\\nOriginal Video: https://www.youtube.com/watch?v=xwoPQwhhMPE\\n\\n\\nFor Business Inquiries: brandonnrashad@gmail.com\\nFor Copyright issues: brandonnrashad@gmail.com\\n\\n\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing',\n",
       "  '2020-01-03T22:51:54.000Z',\n",
       "  58780,\n",
       "  1846.0,\n",
       "  138.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UC-JblcinswY50lrUdSaRNEg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@rollingstone',\n",
       "  \"The official channel for Rolling Stone's exclusive videos on music, politics, and culture.\",\n",
       "  552000,\n",
       "  178747664,\n",
       "  2092,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=HmOG511j8Oo',\n",
       "  'Hear Bob Dylan’s New Song ‘Murder Most Foul’ | RS News 3/27/20',\n",
       "  'Bob Dylan, who hasn’t released an original song since 2012’s Tempest, unexpectedly dropped a previously unheard, nearly 17-minute-long new track, “Murder Most Foul.\"\\n\\nGet the full story at: https://bit.ly/39q5I5S\\n\\r\\nSubscribe to Rolling Stone on YouTube:  http://bit.ly/1uGwgGg\\r\\n\\r\\nCheck out http://www.rollingstone.com for the latest news in music, culture, politics and more. \\r\\nMore videos from Rolling Stone: http://www.rollingstone.com/video \\r\\nLike Rolling Stone Video on Facebook: https://www.facebook.com/RollingStoneVideo/ \\r\\nLike Rolling Stone on Facebook: https://www.facebook.com/RollingStone/ \\r\\nFollow Rolling Stone on Twitter: https://twitter.com/RollingStone\\r\\nFollow Rolling Stone on Instagram: https://www.instagram.com/rollingstone/',\n",
       "  '2020-03-27T18:19:21.000Z',\n",
       "  60106,\n",
       "  326.0,\n",
       "  52.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC_6QN3CBe-0EW5pGCTKzEfQ',\n",
       "  'dantedangelobusinessyt@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'My name is Dante D\\'Angelo and I do reactions to songs, music videos, live performances, etc. Ever since my \"Nicki Minaj - Anaconda \"MUSIC VIDEO REACTION\" I\\'ve been gaining more and more subscribers and views each day. I\\'m so blessed to have the fans that I have who love and support me. Please subscribe and enjoy this incredible journey with me because were going places bishhhh... #Martianz \\n\\n\\n\\n100subs √\\n\\n500subs √\\n\\n1,000 subs √\\n\\n3,000 subs √\\n\\n5,000 subs √\\n\\n10,000 subs √\\n\\n20,000 subs √\\n\\n30,000 subs √\\n\\n40,000 subs √\\n\\n50,000 subs √\\n\\n60,000 subs √\\n\\n70,000 subs √\\n\\n80,000 subs √\\n\\n90,000 subs √\\n\\n100,000 subs √  11/2/15 \\n\\n200,000 subs √ 5/1/16\\n\\n300,000 subs √ 5/19/17\\n\\n400,000 subs √ 5/7/18\\n\\n500,000 subs √ 2/15/19\\n\\n600,000 subs\\n\\n700,000 subs\\n\\n800,000 subs\\n\\n900,000 subs\\n\\n1,000,000 subs\\n\\nFor collaborations and business inquiries, please contact via email: dantedangelobusinessyt@gmail.com',\n",
       "  533000,\n",
       "  65489153,\n",
       "  640,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=_EjHqmFCY8M',\n",
       "  'Taylor Swift - The Man (Official Video) REACTION',\n",
       "  'FamiSafe 3.5 Released: http://bit.ly/38CX3xw\\nDownload Now: http://bit.ly/2HysgpS\\nSign Up Now: http://bit.ly/38ArMv2\\n20% OFF Coupon: MENFS20\\n\\n\\nDante reacts to...... (THE MAN MUSIC VIDEO)\\nLink to video HERE: https://www.youtube.com/watch?v=AqAJLh9wuZ0\\n\\n\\nFollow Me! \\nTwitter: https://twitter.com/itsdantedangelo\\nInstagram: http://instagram.com/itsdantedangelo\\nYouNow: http://www.younow.com/DanteDAngelo \\nSnapchat: https://www.snapchat.com/add/abcds_nutz \\n\\nCheck out my other channels! \\nDante Vlogs: https://www.youtube.com/channel/UC5wlnHGJJmEfGyEGm-D3VhQ/ \\nDante D’Angelo 2: https://www.youtube.com/user/Dantedangelo231 \\n\\nHave you heard my original music!  \\nTitties On Fleek (MP3 Download) - https://soundcloud.com/dante-dangelo/dante-dangelo-titties-on-fleek-ft-long-shower',\n",
       "  '2020-02-28T21:26:11.000Z',\n",
       "  51021,\n",
       "  4258.0,\n",
       "  508.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCSvSF7xbnZ34wvwutMKoEJw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hey everyone! My name is VaporTheGamer I love playing horror games/reaction videos! :) I'm a Canadian dude and I am a Professional Gamer :D I play video games, compress them into a hilarious/scary montage, then share them with all my fans! If you enjoy my videos, be sure to SUBSCRIBE to keep yourself updated with my videos! -VaporTheGamer\\n\\nUPLOAD SCHEDULE: I UPLOAD 1-2 VIDEOS EVERY DAY :)\\n\\nBe sure to check out my various social media accounts so I can keep in touch with you guys! :)\",\n",
       "  522000,\n",
       "  168679164,\n",
       "  1951,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=TFEBEpELVhA',\n",
       "  'Vapor Reacts #1057 | BENDY SONG MINECRAFT ANIMATION \"Art of Darkness\" by EnchantedMob REACTION!!',\n",
       "  '[BATIM] BENDY AND THE INK MACHINE SONG MINECRAFT ANIMATION \"Art of Darkness - The Stupendium\" by EnchantedMob REACTION!!\\n\\nOriginal Video►https://www.youtube.com/watch?v=OE_3dsbgfuk\\nAnimation by EnchantedMob►https://www.youtube.com/user/EnchantedMob\\nOriginal Song by The Stupendium►https://www.youtube.com/watch?v=u81OS9hC85g\\n\\n*DON\\'T FORGET TO HIT THAT 🔔 ICON TO GET NOTIFIED!*\\n\\nFollow me on my other social media accounts!\\nInstagram►https://www.instagram.com/vaporthegamer\\nTwitter►https://www.twitter.com/VaporTheGamer17\\n\\nNew Saber Sunday merch on sale NOW!►https://gummymall.com/collections/vaporthegamer\\nStop by the VTG Merch shop!!►►https://shop.spreadshirt.com/VTGmerch\\nIntro Music provided by Monstercat►\\nRIOT - Overkill\\nhttps://youtube.com/monstercat \\nhttps://youtube.com/monstercatinstinct\\n\\nJoin me on Discord NOW!►https://discord.gg/PSQCqCD\\nSubscribe to My Fiance\\'s React Channel!►https://www.youtube.com/channel/UCQHQo11skgBLM-gdg-LtmYw\\n\\nThanks for all the support my fellow YouTubers! Please like, comment, and subscribe to keep yourself updated on my latest content!\\n-VaporTheGamer\\n\\nThis channel and all of its videos are not “directed to children” within the meaning of Title 16 C.F.R. § 312.2 and are not intended for children under 13 years of age. (VaporTheGamer) and its owner(s), agents, representatives, and employees (hereinafter, “CHANNEL”) do not collect any information from children under 13 years of age and expressly deny permission to any third party seeking to collect information from children under 13 years of age on behalf of CHANNEL. Further, CHANNEL denies any and all liability or responsibility for the practices and policies of YouTube and its agents and subsidiaries, or any other affiliated third party, regarding data collection.\\n\\n#batim #minecraft #artofdarkness',\n",
       "  '2020-04-11T20:11:36.000Z',\n",
       "  85914,\n",
       "  2805.0,\n",
       "  234.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCWs7VfYmoynENET1XWaubCQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'zacharycampbellbookings@gmail.com',\n",
       "  nan,\n",
       "  'On Zach’s Youtube Channel, you will find the latest and greatest in Pop Culture from around the world! Reaction videos of Music Artists including Nicki Minaj, Kash Doll, Dua Lipa, Little Mix, Lizzo, Iggy Azalea, Billie Eilish, Beyonce, Normani, Ludmilla, Rihanna, Selena Gomez, Doja Cat, Anitta, Megan Thee Stallion, Camila Cabello, Ariana Grande, Becky G, Lady Gaga, and Many More!',\n",
       "  480000,\n",
       "  78645399,\n",
       "  603,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=Rn8vYB78tE0',\n",
       "  'DOJA CAT \"SAY SO\" MUSIC VIDEO REACTION!',\n",
       "  'Join the Tired Ass Army: https://www.youtube.com/channel/UCWs7VfYmoynENET1XWaubCQ/join\\r\\nMy First Visual Cover: https://bit.ly/2swYpJT\\r\\nLatest Uploads: https://www.youtube.com/watch?v=d9sB--PQXLo&list=PLVHuDxDT6bNsmX2cH0kyI0J080T-GNXhb\\r\\n\\r\\nFollow Zachary Campbell:\\r\\nInstagram: https://bit.ly/34H5YvZ\\r\\nTik Tok: https://bit.ly/2DFgyYc\\r\\nNew Twitter Account: http://bit.ly/tweetZachCampbel \\r\\nFacebook: http://bit.ly/ZachCampbelFB \\r\\nSnapChat: http://bit.ly/SnapZachCampbell \\r\\nWatch More Zachary Campbell: \\r\\nPopular Uploads: https://www.youtube.com/playlist?list=PLVHuDxDT6bNsHE_gFIlDsKPEV4IqJ2nch\\r\\nReactions: https://youtube.com/playlist?list=PLV... \\r\\nStorytime: https://youtube.com/playlist?list=PLV...\\r\\n\\r\\n\\r\\nAbout Zachary Campbell: \\r\\nZach is a sought after\\xa0Pop-Culture/Music Commentator who shares his keep it real, straight no chaser view, on all things Pop Culture. Zach has been featured and has worked on multiple platforms including Netflix, Tinder, Hello Ross, Gram Norton with Lady Gaga, Beyonce’s Formation Tour, MTV Awards, PRIDE, and VH1 Honors. Zach is currently developing his show “That’s a Bop!,” where the first episodes were released this year featuring rising artist Lizzo, MNEK, Little Mix, and Iggy Azalea. He was also cast for the newest season of \"Dear White People.\" Zach has over 75 million total views on Youtube, and over 2 million impressions weekly on Instagram, and expanding his influence fast!\\r\\n\\r\\nOn Zach’s Youtube Channel, you will find the latest and greatest in Pop Culture from around the world! Reaction videos of Music Artists including Nicki Minaj, Kash Doll, Dua Lipa, Little Mix, Lizzo, Iggy Azalea, Billie Eilish, Beyonce, Normani, Ludmilla, Rihanna, Selena Gomez, Doja Cat, Anitta, Megan Thee Stallion, Camila Cabello, Ariana Grande, Becky G, Lady Gaga, and Many More!\\r\\n\\r\\nContact: ZacharyCampbellBookings@gmail.com',\n",
       "  '2020-02-28T03:52:09.000Z',\n",
       "  268678,\n",
       "  16767.0,\n",
       "  1768.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCndv21pMjPqoJN84GX57YgQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@alex_hefner',\n",
       "  'Law School Graduate + YouTuber = my life.\\nEngaged to the most incredible person I have ever met! :) I love you, sweet gul!',\n",
       "  477000,\n",
       "  112618199,\n",
       "  640,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=qkYZ4dTzWfw',\n",
       "  'BEST HOLLYWOOD UNDEAD SONG?!! | \"Hear Me Now\" (REACTION!!)',\n",
       "  'HFNRD SHOP: https://www.bonfire.com/store/hefnerd/\\n\\n\\n▼ TODAY\\'S VIDEO▼\\nBEST HOLLYWOOD UNDEAD SONG?!! | \"Hear Me Now\" (REACTION!!)\\n\\n▼ SUBSCRIBE▼\\n► http://bit.ly/SUBSCRIBEhella\\n\\n\\nOriginal Video: https://www.youtube.com/watch?v=pdoIs1jZbCY\\n\\n\\nLast Video: https://www.youtube.com/watch?v=f-o9qBSygYc&t=2s\\n\\n\\n▼ FOLLOW ME▼\\n► Instagram: https://www.instagram.com/alex_hefner/\\n► Snapchat: https://snapchat.com/add/alexhefner (alexhefner)\\n► Twitter: https://twitter.com/alex_hefner',\n",
       "  '2020-01-31T21:00:07.000Z',\n",
       "  108841,\n",
       "  4248.0,\n",
       "  1124.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCgJ0-khC7vDOCuBMGquwPdg',\n",
       "  'korea.dost@gmail.com',\n",
       "  nan,\n",
       "  'korea.dost@gmail.com',\n",
       "  nan,\n",
       "  '- We are your Korean Dost! - \\n\\nHello Yaaron! This is Min, and I am your Korean Dost🇰🇷, and I make videos with my Best Friends!\\n\\nWe are very excited to bring you our positive outlook of India, and thus becoming the cultural bridge that unclogs any misunderstandings between us.\\n\\nPlease join our Journey that Explores the True Beauty of India 🇮🇳\\nWe will be sure to show our Honest Reactions, Opinions, and Thoughts on India,\\nand demonstrate all the Great Things about INDIA!\\n\\nFor Business Inquiries, Gift Sending, and Contents Ideas, Email us! : korea.dost@gmail.com\\n\\nThank you so much for being part of our family Yaaron!',\n",
       "  461000,\n",
       "  64490971,\n",
       "  185,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=UyW48bz1c_g',\n",
       "  \"'Garmi' Nora Fatehi Reaction by Korean Dost - Street Dancer 3D\",\n",
       "  'Korean Dost Reaction to Garmi song from upcoming Bollywood film Street Dancer 3D!\\n\\nWe have received overwhelming recommendations to do reaction on this song!\\nNora Fatehi!! She was even more amazing in this song!\\n\\nThank you for all the recommendation! We are so thrilled for this upcoming amazing movie!!!\\nThank you for watching as always\\n\\n\\n➡️ New To Korean Dost?\\n🎆 We celebrate Diwali at Indian Home:\\nhttps://youtu.be/a0pahj4MnV4\\n🎤 We rap and sing in Hindi:\\nhttps://youtu.be/exA8Byvtv78\\n🍜 We cook Maggie in Korean Style:\\nhttps://youtu.be/us6McNDCcsU\\n🕉️ We learn Hindi:\\nhttps://youtu.be/zjq-0RHVSf4\\n🎨We draw Hindu Gods (Lord Shiva)\\nhttps://youtu.be/mmfV6yXR8Wg\\n🇯🇵 We interview Japanese people on Bollywood actors:\\nhttps://youtu.be/1ygsMNZyGzU\\n🇰🇷🇮🇳Are Koreans Descendants of Indian Princess?\\nhttps://youtu.be/H8x_oDtRa8g\\n\\n___\\n\\n➡️Connect with K-Dost \\nInstagram https://instagram.com/korean_dosts\\nTik Tok @koreandost\\nIf you want to send us a package, email us @ korea.dost@gmail.com\\n\\n➡️ If you want to contribute by translating Titles, Descriptions, and Subtitles of our videos\\nClick here: http://www.youtube.com/timedtext_cs_panel?tab=2&c=UCgJ0-khC7vDOCuBMGquwPdg',\n",
       "  '2020-01-04T05:38:11.000Z',\n",
       "  706102,\n",
       "  23798.0,\n",
       "  1704.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC_rD0WTWsygn28me13EqbkA',\n",
       "  'vijaypc46@gmail.com',\n",
       "  '@pcvijay630',\n",
       "  'vijaypc46@gmail.com',\n",
       "  '@pcvijay630',\n",
       "  'Welcome to Enowaytion Plus Videos!!!!\\nMovie Reviews\\nMovie Updates\\nIndependent Album Songs\\nBike Vlogs\\nTravel Videos\\n\\nInstagram: https://www.instagram.com/pcvijay630/?hl=en\\n\\nTwitter: https://twitter.com/VijayImmanuel6?s=09\\n\\nContact: vijaypc46@gmail.com',\n",
       "  446000,\n",
       "  78295079,\n",
       "  1720,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=uNu3nI0eJXg',\n",
       "  'Official: Master New Poster Reaction & Review | Master Team Official Update On Release | Thalapathy',\n",
       "  '\" #Master New Poster Reaction & Review \"\\n\\nFor Brand Collaborations & For Business Promotions/Contact: vijaypc46@gmail.com\\n\\nTherikkum Thalapathy Motion Poster: https://youtu.be/lWgWyzUMtbQ\\n\\nGaandu Song: https://youtu.be/wXwm1HGraw4 \\n\\nThalapathy Adhipathi Full Song:: https://youtu.be/MkRqK3yY3u4\\n\\nJoin EnowaytionPlus In Telegram: https://t.me/joinchat/IEiWBBJfINWJNdbvNlK8pw\\n\\nTAGS: MasterUpdates, MasterlatestUpdates, MasterNewPoster, MasterReleaseDate, IlayathalapathyVijay, ThalapathyVijay, Kollywood, TamilCinemaNews, EnowaytionPlus\\n_________________________________________________\\n\\n[YOU CAN FOLLOW ME ON]\\n \\n*Follow Me On INSTAGRAM* : https://www.instagram.com/pcvijay630/\\n\\n*Me On Musically* : http://vm.tiktok.com/SyAobM/\\n\\n*My Personal FB ID* : https://www.facebook.com/vijay.immanuel.10\\n\\n*My Twitter ID* : https://twitter.com/Vijay27172413?s=09 \\n_________________________________________________\\n\\n[THIS CHANNEL DOESN\\'T SUPPORT PIRACY]\\n\\nMake Sure To Like Comment And Subscribe.\\nkeep Spreading Love To The Channel For More Videos!!!\\n_________________________________________________\\n\\n©EnowaytionPlus...',\n",
       "  '2020-04-09T10:41:08.000Z',\n",
       "  76660,\n",
       "  9445.0,\n",
       "  554.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCjes410ugtg9BT8QeMSVX7g',\n",
       "  'tamatle1@hotmail.com',\n",
       "  nan,\n",
       "  'tamatle1@hotmail.com',\n",
       "  nan,\n",
       "  'สวัสดีทุกคน ดีใจมากที่มาอ่านตรงนี้ แสดงว่าเราเริ่มจะได้รู้จักกันแล้ว\\nยินดีที่ได้รู้จักนะ ขอบคุณที่เปิดใจให้กับช่องเรา \\nพวกเราหวังว่าจะได้มอบสิ่งดีๆ และรับการแลกเปลี่ยนจากทุกคน\\nมาช่วยกันทำสังคมนี้ให้บันเทิงร่วมกันเถอะ \\n\\nอย่าลืมนะ !\\n\\nSubscribe สำคัญมาก!\\nแต่\"กระดิ่ง\"สำคัญที่สุด!!\\nอย่าลืมกด Subscribe / Like  / Share \\nและกด\"กระดิ่ง\"เวลาที่เรา Live สด!\\nจะได้ส่งการแจ้งเตือนล่วงหน้าให้ทราบ\\n\\nสนับสนุนเราเพียงทำตามขั้นตอนด้านบน\\nเป็นกำลังใจให้พวกเราด้วยนะครับ \\nขอบคุณครับ\"ชาวหน้าโรง\"ทุกคน\\n\\nอีเมล์สำหรับติดต่องาน\\ntamatle1@hotmail.com',\n",
       "  438000,\n",
       "  98297019,\n",
       "  460,\n",
       "  'TH',\n",
       "  'https://www.youtube.com/watch?v=wOiBtu2mGs4',\n",
       "  'Reaction หอมเธอ + ดี๊ดี - JAYLERR x PARIS | Nadao Music #หนังหน้าโรง',\n",
       "  'หนังหน้าโรง REACTION \\n- หอมเธอ (Scent of love) : PARIS feat. Toey Jarinporn \\n- ดี๊ดี (UNEXPECTED) - JAYLERR x PARIS \\n\\nFollow Nadao Music...\\nFacebook: https://www.facebook.com/NadaoMusic\\nFacebook: https://www.facebook.com/NadaoContent\\nFacebook: https://www.facebook.com/NadaoBangkok\\nInstagram: https://www.instagram.com/nadaobangkok\\nTwitter: https://twitter.com/NadaoBangkok\\n\\nSubscribe to หนังหน้าโรง for exclusive content: \\nhttps://bit.ly/2FzTeOT\\n\\nFacebook: https://bit.ly/2MhlnKS\\nTwitter: https://bit.ly/2TZxi2A\\nIG: https://bit.ly/2Cudrl8\\n\\nสนับสนุนพวกเรา อย่าลืมกด..\\nSubscribe สำคัญมาก!\\nแต่\"กระดิ่ง\"สำคัญที่สุด!!\\nอย่าลืมกด Subscribe / Like  / Share \\nและกด\"กระดิ่ง\"เวลาที่เรา Live สด!\\nจะได้ส่งการแจ้งเตือนล่วงหน้าให้ทราบ\\n\\nสนับสนุนเราเพียงทำตามขั้นตอนด้านบน\\nเป็นกำลังใจให้พวกเราด้วยนะครับ \\nขอบคุณครับ\"ชาวหน้าโรง\"ทุกคน\\n\\nFacebook: https://goo.gl/nvsQ9q\\n\\nอีเมล์สำหรับติดต่องาน\\ntamatle1@hotmail.com',\n",
       "  '2020-04-08T16:07:59.000Z',\n",
       "  152824,\n",
       "  6218.0,\n",
       "  527.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCn7_BRA5Nq_mQmh20G7_bew',\n",
       "  nan,\n",
       "  nan,\n",
       "  'contatoversatiloficial@hotmail.com',\n",
       "  nan,\n",
       "  'Bem vindos ao canal VERSATIL, seu mais completo portal de notícias e informações sobre o mundo do rap/trap nacional e internacional!\\n\\nVÍDEO NOVO TODOS OS DIAS!\\n\\nE chuva de mec galera, fé!',\n",
       "  411000,\n",
       "  42499843,\n",
       "  928,\n",
       "  'BR',\n",
       "  'https://www.youtube.com/watch?v=LaelMwZdlg4',\n",
       "  'NGC Daddy - La Chica (Official video) | REACT / ANÁLISE VERSATIL',\n",
       "  'LINK DO CLIPE: http://bit.do/fnPuU \\r\\nALBUM DO JAG: https://jag.hearnow.com\\r\\nCLIPE JAG & LAIOUNG - GVNG FT. ADONIS: http://bit.do/fkPKM\\r\\n\\r\\n✖ CONTATO PROFISSIONAL: contatoversatiloficial@hotmail.com\\r\\nVERSATIL STREAM: http://bit.ly/33KtUxp\\r\\nLINK DO VERSATIL e-Sports: http://bit.do/e6d8C\\r\\n\\r\\nPARA FICAR NA RÉGUA MULLER BARBER: http://bit.do/fcCPY\\r\\nVIRE MEMBRO DO VERSATIL: https://goo.gl/TRVtZL \\r\\n\\r\\n✖ SEGUE O JAG NO INSTA: http://bit.do/e5rGF\\r\\n✖ SEGUE O BELTRAMI NO INSTA: http://bit.do/e8zSk\\r\\n✖ SEGUE O DANIEL NO INSTA: http://bit.do/e5rGP\\r\\n✖ SEGUE O JHOON NO INSTA: http://bit.do/e8zSC\\r\\n✖ Twitter JAG: http://twitter.com/oficialjag\\r\\n✖ Twitter Beltrami: https://twitter.com/JonBeltrami\\r\\n\\r\\n✖ Canal de LIVES: https: http://bit.do/e8zSS\\r\\n✖ PLAYLIST SPOTIFY JAG NACIONAL: https://goo.gl/xyL77Z\\r\\n✖ PLAYLIST SPOTIFY BEL INTERNAC.: https://goo.gl/4wY3vL\\r\\n\\r\\nRajada de Fé!\\r\\n\\r\\n#Versatil #React',\n",
       "  '2020-01-03T21:21:49.000Z',\n",
       "  143663,\n",
       "  11813.0,\n",
       "  296.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCRqy4Iq88vWzASHxfJwaAqw',\n",
       "  'rehan.khan327@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'M Bros Reactions Is All About Connecting People Across The Borders To Make Love And Peace.\\n\\nHere You Get Some Reaction Videos & Gossips Of Bollywood & Lollywod Both The Industries.\\n\\n\\n\\nFor Business Inquiry & Sponsorship :\\n\\nRehan.khan327@gmail.com\\n\\nSO DONT FORGET TO SUBSCRIBE \\n\\n\\n\\nMake Love , Not War\\n\\nM BROS REACTIONS',\n",
       "  405000,\n",
       "  70980825,\n",
       "  1045,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=UG2PyTP2hCA',\n",
       "  'Indian Reaction On AROOBA KHAN Tik Tok Videos | PAKISTAN TIK TOK STAR',\n",
       "  'Indian Reaction On Pakistani Pathan Girl AROOBA  KHAN Tik Tok Videos.\\n\\n#AroobaKhan #AroobaKhanTikTok #MBros #TikTokPakistan #IndianReaction\\n\\n\\nFollow Some Simple Steps To Know More about Us.\\n\\nFollow on Facebook Facebook : https://www.facebook.com/M-Bros-Reactions-1860180350963591/\\n\\nInstagram : @RehanMansuri01 @Zahidlahori @Faizanmansuri00 @SahilMansuri_02\\n\\nTwitter : Take a look at M Bros Reaction (@iamMrRey): https://twitter.com/iamMrRey?s=09\\n\\nHit The SUBSCRIBE Button To Watch My Future Videos :\\n\\nMy Vlog Channel : https://www.youtube.com/channel/UCCXeLLPSoK1RGfwISQkmTzg\\n\\nSubscribe M Bros Reactions : https://www.youtube.com/channel/UCRqy4Iq88vWzASHxfJwaAqw\\n\\nM Bros India Channel Link : https://www.youtube.com/channel/UCa6EvCemWybSRkkEg06ssLA',\n",
       "  '2020-04-12T18:28:46.000Z',\n",
       "  80566,\n",
       "  3237.0,\n",
       "  476.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCQ99CmIeeIL6CNR6vHAf9Wg',\n",
       "  nan,\n",
       "  nan,\n",
       "  'fosquad02@gmail.com',\n",
       "  nan,\n",
       "  \"2 black guys with a camera learning more about K-pop and having fun while doing so! In this Channel we'll be posting nothing but genuine and fire K-pop reactions that WILL require some popcorn so GO GRAB SOME POPCORN, HIT THAT SUBSCRIBE BUTTON AND START CATCHING UP ON WHAT YOU MISSED💛🍿- FO Squad :)\",\n",
       "  381000,\n",
       "  65908557,\n",
       "  385,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=aSqnBwLVgFo',\n",
       "  \"(여자)아이들((G)I-DLE) - 'Oh my god' Official Music Video | REACTION!\",\n",
       "  \"(여자)아이들((G)I-DLE) - 'Oh my god' Official Music Video | REACTION!\\nMore content on our Patreon: https://www.patreon.com/fosquadkpop\\nMORE K-POP REACTIONS HERE: https://www.youtube.com/kpopuniversity\\n\\nMERCH: https://merchlabs.shop/collections/fosquadkpop\\n\\nFOLLOW US WE'RE ALWAYS ACTIVE!\\n\\nINSTAGRAM:\\nhttps://www.instagram.com/louballout\\nhttps://www.instagram.com/ouskb\\n\\nTWITTER:\\nhttps://twitter.com/ouskb_\\nhttps://twitter.com/louballout\\n\\nOriginal Video: https://www.youtube.com/watch?v=om3n2ni8luE\\n\\nBusiness inquiries? Here you go: fosquad02@gmail.com\\n\\nYou going to heaven for clicking see more :)\",\n",
       "  '2020-04-07T01:54:15.000Z',\n",
       "  177417,\n",
       "  11236.0,\n",
       "  548.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCfF9pPS2BYqjTDluBimKjNw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'snordatdude1@gmail.com',\n",
       "  nan,\n",
       "  'The ugly guy name snor',\n",
       "  359000,\n",
       "  31814494,\n",
       "  1542,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=hSasOZY56lg',\n",
       "  'THIS IS BETTER THAN GIVENCHY!!!  DDG - OD (Official Music Video) REACTION!!!',\n",
       "  \"Bussiness email- snordatdude1@gmail.com\\n\\nLet's aim for 10,000 likes this video.\\n\\n\\nMy reaction to \\nDDG - OD (Official Music Video)\\n\\n\\nFull ORIGINAL video https://www.youtube.com/watch?time_continue=2&v=XnSD4J6XKLA\\n\\n\\n\\n\\n\\n\\n\\n\\n-\",\n",
       "  '2020-04-15T03:54:33.000Z',\n",
       "  61578,\n",
       "  4116.0,\n",
       "  209.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCBTAmq05nl9EkZ_F1S_NfzQ',\n",
       "  'shilpasinghrajput17398@gmail.com',\n",
       "  '@_that_boho_style_',\n",
       "  'shilpasinghrajput17398@gmail.com',\n",
       "  '@_that_boho_style_',\n",
       "  'Hi, my name is Shilpa  Singh Rajput. Welcome to the channel, Enjoy the vibes and join Our family if you feel at :)\\n\\n★Help us to grow\\nwe always making improvements to our channel and NOW you can help us by sharing the videos.\\n\\nIn this channel you will get all type of Reaction Videos. \\nRequest your Video Here \\nFB Page- https://www.facebook.com/ShilpaViews/\\nInstagram- https://www.instagram.com/_that_boho_style_/\\n\\nFor Business Inquiry & Sponsorship Feel free to contact us :- shilpasinghrajput17398@gmail.com\\n\\nThank You\\n\\n[ THE VIDEO ON WHICH WE ARE REACTING WE HAVE THE LEGAL PERMISSION OF THAT OWNER. IF YOU HAVE ANY OBJECTION THEN YOU CAN CONTACT US ANY TIME ! ]',\n",
       "  352000,\n",
       "  36746007,\n",
       "  396,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=J8E3uN-wNH4',\n",
       "  'Indian Reaction On Bol Kaffara Kya hoga Live Qawwali  Complete Video Shahbaz Fayyaz Qawwal',\n",
       "  'Like Share & Subscribe To Original ( Content and Channel ).\\r\\n \\r\\nOriginal video : https://youtu.be/4QfSnSxu8fU\\r\\n\\r\\nAlso Subscribe Krishna Views Channel : http://www.youtube.com/c/KrishnaViews\\r\\n\\r\\nShilpa\\'s New Channel : https://www.youtube.com/channel/UC_tIU3-p583k6zuPB3_EC8g\\r\\n\\r\\n-----------------------------------------\\r\\n\\r\\nOfficial FaceBook Page :  https://www.facebook.com/pg/ShilpaViews/\\r\\n\\r\\nEmail : shilpasinghrajput17398@gmail.com\\r\\n\\r\\nInstagram : Shilpa - https://www.instagram.com/_that_boho_style_/\\r\\n                     Krishna - https://www.instagram.com/krishna_leo/\\r\\n                     Manish - https://www.instagram.com/soul_devil18/\\n\\r\\n------------------------------------------\\r\\n\\r\\nCopyright Disclaimer : Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.\\n\\n#qawwali #BolKaffaraKyahoga #indianreaction',\n",
       "  '2020-01-30T09:30:01.000Z',\n",
       "  380051,\n",
       "  8389.0,\n",
       "  915.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCg9w2x6EYbcxGiLeh8UTMdQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'We are a Houston based group who want to share laughs, drama, and skits on not only funny but some serious topics. Subscribe, watch and enjoy the growth of our YouTube Family!',\n",
       "  351000,\n",
       "  67566848,\n",
       "  762,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=C4FdIjhq7NA',\n",
       "  'Eminem - Godzilla (ft. Juice WRLD) (REACTION)',\n",
       "  'THANKS AGAIN FOR WATCHING OUR VIDEO! MAKE SURE YOU SUBSCRIBE TO THE SQUAD. \\nALSO SUBSCRIBE TO DUB\\'S AND ROSS VLOG CHANNELS\\n\\nMAKE SURE YOU JOIN OUR PATREON TO GAIN EARLY ACCESS TO ALL OUR VIDEOS, EXCLUSIVE VIDEOS AND DEALS ON UPCOMING MERCH. CHECK THE LINK BELOW\\n\\nhttps://www.patreon.com/intheclutch\\n\\nADUBSLIFE713 - https://www.youtube.com/channel/UCu-nNg2XqM5Zu4Nz_Q6r7Aw\\n\\nKICKIN IT WITH ROSS - https://www.youtube.com/user/Wimberley3906\\n\\nORIGINAL VIDEO: https://www.youtube.com/watch?v=GVoEx9-aAt4\\n\\n\\nOutro Song: EVERYTHING LIT BY MC BEEZY\\nHis Instagram: @gomcbeezy\\n\\n\"Outro Template made by Grabster - Youtube.com/GrabsterTV\"\\n\\n\\nVOD APPAREL & DESIGNS:\\nhttps://www.visionzovadreamz.com/\\n\\nALSO FOLLOW US ON INSTAGRAM: \\n@intheclutchent\\n@dubtheg \\n@rossthechosenone \\n\\n\\nTwitter:\\n@dubtheg - https://twitter.com/DubtheG\\n\\n\\nCheckout some DOPE Music!\\nKENZAL YOUNG\\nhttps://www.youtube.com/channel/UC13UYuuchpdSHrEbC-NiAwg\\n\\nDubtheG: https://soundcloud.com/dub-theg\\n\\nJoel Love: https://soundcloud.com/joel_lovemusic\\n\\nGrayling John: https://soundcloud.com/user-351474864\\n\\nE.T.I.D.23: https://soundcloud.com/etid23\\n\\n#Eminem #Godzilla #JuiceWRLD',\n",
       "  '2020-01-20T03:00:10.000Z',\n",
       "  1686034,\n",
       "  66934.0,\n",
       "  4643.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCaTSjmqzOO-P8HmtVW3t7sA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  347000,\n",
       "  78253343,\n",
       "  310,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=el_4eZQG2Gw',\n",
       "  'POP SONG REVIEW: \"Yummy\" by Justin Bieber',\n",
       "  'Is Justin Bieber headed towards a total career collapse? Let\\'s look at the damage done by his awful new single, \"Yummy\"\\n\\n(Support Todd on Patreon! http://www.patreon.com/toddintheshadows)',\n",
       "  '2020-02-23T14:59:56.000Z',\n",
       "  297119,\n",
       "  14092.0,\n",
       "  2491.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCUyDpu18SLNxJxMjJKFbNOA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'booking@justinburke.co',\n",
       "  nan,\n",
       "  'Get free singing lessons from me at www.Singr.tv.\\nCheck out my music on all streaming platforms - \"Justin Burke\"',\n",
       "  346000,\n",
       "  49933199,\n",
       "  467,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=AleRboemF4Y',\n",
       "  'VOCAL COACH & DIRECTOR React to Jackson Wang - 100 Ways (Official Music Video)',\n",
       "  \"Our reaction to Jackson Wang - 100 Ways (Official Music Video) - What did you think?\\n➢Get my free singing lesson: http://www.getsingr.com\\n\\nSubscribe to Payton: http://www.youtube.com/c/paytonpeterson\\n\\nThe free lesson is 15 minutes, over 10,000 people have taken the lesson and almost all have said they hear an improvement immediately after! Don't forget to record your voice before and after to compare the progress :) This is just the beginning of your improvement...\\n\\n➢Get my free singing lesson: http://www.getsingr.com\\n\\nIf you want to improve your singing, keep reading because it will save you time and money…\\n\\nMy mission is to revolutionize singing lessons. I want everyone to have access to the gift of singing without having to pay the high price of traditional lessons. \\n\\nI used to be tone-deaf (I couldn’t sing on pitch to save my life)...\\n\\nFast forward eight years and my songs have been played over 50 million times.. which still shocks me because I can still feel the embarrassment of getting made fun of when I would try to sing. If you would have asked me back then if I could improve my voice, I wouldn’t have believed you.\\n\\nThe techniques and exercises I guide you through in my program Singr completely transformed my voice. \\n\\nNow, Singr has transformed over 2,100 other voices.\\n\\nRead a few of the testimonials on my site:\\nhttp://www.singr.tv\\n \\nIn my program Singr, I show you exactly how to...\\nRelease the tension and strain that is killing your voice, sing with impeccable pitch, hit powerful high notes, dramatically increase your range, nail the hardest riffs and runs, unlock your radio-quality tone, sing in public with confidence, master your chest, mixed, and head voice, connect your registers seamlessly, develop full control over your vibrato, and so much more… \\n\\nI know exactly what it takes to get your voice to the next level quickly. Many using the program have seen major improvement in their singing in as little as two weeks. \\n\\nI want to help you achieve the results I did without the high costs of lessons. Traditional voice lessons cost an average of $160+/month (over $1900/year) and require a specific time and place. Some vocal coaches that I've taken lessons with here in LA cost $1,000+ per hour- and you will get the same techniques that they teach in Singr for a fraction of the cost!\\n\\nWith Singr’s 100 on-demand lessons and practice sessions, you have access to learning so much more, anytime and anywhere, and you can get started for free.\\n\\nLearn more about Singr here:\\n➢http://www.singr.tv\\n\\n➢Playlist of all my original music:\\nhttps://www.youtube.com/playlist?list...\\n\\nIt would mean so much if you'd check out my music and leave me a comment with what you think :)\\n\\nAdd me on Instagram:\\nhttps://www.instagram.com/iamjustinburke\\n\\n #JacksonWang #100Ways #react #reaction #vocalcoach #singers #kpop\\n\\nBusiness email: booking@justinburke.co\",\n",
       "  '2020-03-23T23:45:01.000Z',\n",
       "  155048,\n",
       "  12097.0,\n",
       "  959.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCCtXr8HiqtdeJQLfzn4rUVw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Lahat ng Juan na may pangarap at nagsusumikap ay may pag-asa at mararating sa buhay! :)',\n",
       "  346000,\n",
       "  58952746,\n",
       "  164,\n",
       "  'PH',\n",
       "  'https://www.youtube.com/watch?v=_8yFqP-wezg',\n",
       "  'Hindi Tayo Pwede (Wishclusive) Reaction Video | The Juans',\n",
       "  'Performing back on the Wishbus, we wanted to capture our actual reactions!\\nThis is us watching ourselves. Cringe-worthy video, here we go!',\n",
       "  '2020-01-22T13:00:13.000Z',\n",
       "  91486,\n",
       "  5269.0,\n",
       "  563.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCxTKteFisQAtr3l97fL4d6g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@themegamcqueen',\n",
       "  \"This where all the LIT AHH VLOGS FINNA HAPPEN. SUBSCRIBE IF YOU REAL. THERE'S GON BE MORE IN THIS DESCRIPTION SOON I JUST MADE DIS CHANNEL\",\n",
       "  344000,\n",
       "  8602921,\n",
       "  152,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=L_8fSGVdEDY',\n",
       "  'Sad Frosty x DDG - \"Pull Up!\" (Official Music Video) REACTION!',\n",
       "  'SUBSCRIBE TO THE GAMING CHANNEL OR YOU WACK!\\n\\nFOLLOW MY INSTAGRAM: https://www.instagram.com/themegamcqueen/',\n",
       "  '2020-04-19T22:10:42.000Z',\n",
       "  62218,\n",
       "  4015.0,\n",
       "  247.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCtK1EizfGsvhbEMcVmN1jdQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'thetmgfamily@gmail.com',\n",
       "  '@tmg4lyfe',\n",
       "  'THE MATTHEWS Fam featuring Lamar aka \"L\", Kaela aka \"Queen Kae\", Zaire and Zion!! On this channel you\\'ll find a variety of family friendly content, vlogs, challenges, games and much more!\\n\\nJust trying to make people laugh.\\n\\nNew Video EVERY Day!\\n\\nDon\\'t forget to SUBSCRIBE so you never miss an upload!',\n",
       "  341000,\n",
       "  91570029,\n",
       "  1762,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=SX-QvlXUiTI',\n",
       "  'Eminem Topped Rap God Speed | Eminem - Godzilla (Lyrics) ft. Juice WRLD REACTION!!!',\n",
       "  '#Eminem #MusicToBeMurderedBy #Godzilla\\nOriginal Video Links:\\nhttps://www.youtube.com/watch?v=SmBzqkgdH9I\\n\\nThank You For 200K Subs TMG Fam!!\\nNow We\\'re On The Road To 300k!!!! LET\\'S GRIND!!\\n\\nConnect with US:\\n“L” Instagram - https://www.instagram.com/tmg4lyfe/\\n“L” Twitter - https://twitter.com/TMG4LYFE\\n“L” Facebook - https://www.facebook.com/lamar.matthewswebb\\nQueen Instagram - https://www.instagram.com/queentmg4lyfe/\\nQueen Twitter - https://twitter.com/QueenTMG4Lyfe\\nQueen Facebook - https://www.facebook.com/kaela.matthewswebb\\n\\nTMG Official \\nTMG Fam Page - https://www.facebook.com/tmgfam4lyfe/\\nAmazon Shop – https://www.amazon.com/shop/thematthewsfam\\nMerch – https://teespring.com/stores/tmg-fam-merch\\n\\nFor All Business Inquiries Email:  thetmgfamily@gmail.com\\n\\nClick Here To Subscribe: https://www.youtube.com/channel/UCtK1EizfGsvhbEMcVmN1jdQ\\n\\nNEW VIDEOS EVERYDAY! *Subscribe and turn on notifications so you don\\'t miss any!*\\n\\nThank you so much for the Love and Support! I really appreciated it and am humbled! Stay Tuned for more Videos!💯\\n\\n\"Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\"\\n\\nIF YOU WOULD LIKE TO SEND US ANYTHING =D\\nTMG Fam – L. Matthews\\nPO BOX 1082\\n225 Parkway 575\\nWoodstock, GA 30188',\n",
       "  '2020-01-17T17:52:41.000Z',\n",
       "  1480170,\n",
       "  45785.0,\n",
       "  3857.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCBh30NFGt4uXbzNMnqfYU0Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Namkeen Sach brings you the stuff you want to talk more about, from REACT series, to shows across scripted, unscripted, animation, interactive, sketch comedy, and more.\\n\\nNS makes originals for TV, the web, and everything in between. As a team, we strive to create thought-provoking and entertaining shows for you every week.',\n",
       "  339000,\n",
       "  68825284,\n",
       "  410,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=DVDDN09V4lQ',\n",
       "  'Machaenge 2 EMIWAY - FIRSE MACHAYENGE (OFFICIAL MUSIC VIDEO)  PAKISTAN REACTION',\n",
       "  'EMIWAY - FIRSE MACHAYENGE (OFFICIAL MUSIC VIDEO)\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nemiway bantai,bantai,music,hip hop,machayenge,firse machayenge,bantai island,rap,upermainstream',\n",
       "  '2020-02-15T11:44:22.000Z',\n",
       "  407707,\n",
       "  18616.0,\n",
       "  772.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC2dguLGQRAIaXA4yum4G9qw',\n",
       "  'thuglifedude786@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'YOOOOOOO\\n\\nWe Make Reaction Videos ...\\n\\nSwaggy D Team\\n \\n  Names                                                          \\n\\n- Parminder Singh                                         \\n- Abhishek Pandey                                        \\n- Akashdeep Singh                                        \\n- Vineet Thakur                                 \\n- Gurinder Singh                                            \\n\\nE- mail\\n( For Business Inquiry & Sponsorship Feel free to contact us  )\\n\\nthuglifedude786@gmail.com',\n",
       "  338000,\n",
       "  80483644,\n",
       "  876,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=FDQOyVYDEm0',\n",
       "  'Indian reaction on Dua-e-Reem Song | Shoaib Mansoor | Mahira Khan | Swaggy d',\n",
       "  'Indian reaction on Dua-e-Reem Song | Shoaib Mansoor | Mahira Khan | Swaggy d\\n\\n#DuaeReem #MahiraKhan #reaction\\n\\n( #indian #reaction #on #DuaeReem #ShoaibMansoor #MahiraKhan #Swaggy #d #Swaggyd )\\n----------------------------- \\n\\nFollow us on :\\n\\nInstagram : @parminder.12345\\n-----------------------------------\\n\\nLike Share & Subscribe To Original ( Content and Channel ).\\n\\nVideo: https://www.youtube.com/watch?v=QcON6vmP9no\\n\\nYousaf Salli  : https://www.youtube.com/channel/UCvny6uQhQtE5fDROfVbbWdw\\n \\n---------------------------------\\n\\nCopyright Disclaimer : Copyright Disclaimer Under Section 107 of the Copyright Act 1976,\\nallowance is made for \"fair use\" for purposes such as criticism, comment, news reporting,\\nteaching, scholarship, and research. Fair use is a use permitted by copyright statute that\\nmight otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-03-25T17:32:51.000Z',\n",
       "  69725,\n",
       "  1950.0,\n",
       "  218.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCWK2jcteb-y1Wtz2AZbyxTg',\n",
       "  nan,\n",
       "  nan,\n",
       "  'perkyyandhoneeybee@gmail.com',\n",
       "  nan,\n",
       "  \"Was the deal its Perkyy and Honeeybee aka Ashley and Britney!! We are two sisters who reside in Los Angeles, California who make videos like reactions, pranks, vlogs, story times, challenges etc. We hope to grow with each and every one of you and we thank you for all the love and support!! Just remember anything you set your mind to, you can achieve it and we know this because of Philippians 4:13!\\n\\nFor instant updates, check out our social media accounts below!\\nPerky's social media \\nInstagram: @perkyy\\nSnapchat: perkyduhh\\n\\nHoneeybee's social media\\nInstagram: @_honeeybee_\\nSnapchat: honneeybeee\\nTwitter: @Honey_Heartless\",\n",
       "  338000,\n",
       "  28357763,\n",
       "  450,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=u8UeS3Egl6I',\n",
       "  'Luh Kel - Y.O.U. (Official Music Video) Reaction',\n",
       "  'Luh Kel - Y.O.U. (Official Music Video) Reaction | Perkyy and Honeeybee\\n\\nBusiness email: perkyyandhoneeybee@gmail.com\\n\\nSubscribe: http://bit.ly/PerkyyandHoneeyBee\\n\\nShop Perkyy And Honeeybee Merch: https://teespring.com/stores/perkyy-and-honeeybee-merch\\n\\nEwin Gaming Chair \\nDiscount (30% OFF) Code: \"Perkyy\"\\nClick Here: http://bit.ly/2O3qPUT \\n\\nWatch more of Perkyy and Honeeybee: https://goo.gl/Kk8ur2\\nPopular Videos: https://goo.gl/8xdw2v\\nChallenges: https://goo.gl/YtD3qd\\n\\nFollow us so we know its real!\\n► LiveRaise: https://www.liveraise.com/channel/7111\\n► YouNow: https://www.younow.com/perkyyandhoneeybee\\n► Facebook: https://www.facebook.com/PerkyyandHoneeybee/\\n\\nFollow Perkyy\\'s social media:\\n►Instagram: https://goo.gl/CxQ7tW\\n►Snapchat: https://goo.gl/AaFYMr\\n\\nFollow Honeeybee\\'s social media:\\n►Instagram: https://goo.gl/ShtRGW\\n►Snapchat: https://goo.gl/MS3RX3\\n►Twitter: https://goo.gl/1ojtLq\\n\\nOriginal video here: https://www.youtube.com/watch?v=0y_2VU7x0hA\\n\\nOur Intro Song: https://www.youtube.com/watch?v=-uhN7kUtgHk\\n\\n13 I can do all things through Christ who strengthens me. \\nPhilippians 4:13 KJV\\n\\nAbout us\\nWas the deal it\\'s Perkyy and Honeeybee aka Ashley and Britney!! We are two sisters who reside in Los Angeles, California who make videos like reactions, pranks, vlogs, story times, challenges etc. We hope to grow with each and every one of you and we thank you for all the love and support!! Just remember anything you set your mind to, you can achieve it\\n\\n#LuhKel #YOU #INeedYou',\n",
       "  '2020-02-18T22:00:06.000Z',\n",
       "  104138,\n",
       "  3783.0,\n",
       "  97.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC3N6Rrx3eTcJ4A5QRs2WRHw',\n",
       "  'bubsanddoe.entertainment@gmail.com',\n",
       "  nan,\n",
       "  'bubsanddoe.entertainment@gmail.com',\n",
       "  '@bubsanddoee',\n",
       "  'Get ready to be entertained on the BUBS & DOE show!\\n\\nInstagram: @bubsanddoee\\nTwitter: @BubsAndDoe\\nBusiness only email: bubsanddoe.entertainment@gmail.com',\n",
       "  332000,\n",
       "  48092779,\n",
       "  206,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=_OfLqh1taKM',\n",
       "  'Marcelito Pomoy Sings \"Time To Say Goodbye\" Semi-Finals Song Choice (REACTION)',\n",
       "  'We have an idea:)\\n►Marcelito Pomoy Sings \"Time To Say Goodbye\" Semi-Finals Song Choice (REACTION)\\n►SUBSCRIBE FOR MORE VIDEOS\\n►Get to Know Us Q&A: https://www.youtube.com/watch?v=E8IQAOEbb6k\\n►MAKE SURE TO LIKE AND COMMENT \\n\\nINSTA\\nhttps://www.instagram.com/bubsanddoee/?hl=en\\n\\nInstagram: @bubsanddoee\\nTwitter: @BubsAndDoe\\nBusiness only email: bubsanddoe.entertainment@gmail.com\\n\\nLink to video:\\nhttps://www.youtube.com/watch?v=HAaFvYKajqg\\n\\nDISCLAIMER:\\nAll of the content in this video belong to their respective owners.\\nWe do not own any of the footage shown or music used in this video.',\n",
       "  '2020-01-23T01:49:40.000Z',\n",
       "  254296,\n",
       "  4515.0,\n",
       "  452.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCQ9c354bGU-xEnWBe1ete3Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"We sit down as a family to check out trailers, music videos, review movies & other random videos. It's a good way for us to spend time together as a family & with you all. If you'd like to join our Geek family, hit that subscribe button! Thank you for spending time with us!\\n\\nMailing Address:\\nGeeks A Musing\\nPO Box 1622\\nColumbia, TN 38402\\nUnited States Of America\",\n",
       "  329000,\n",
       "  150719510,\n",
       "  675,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=v6aNzluREQ4',\n",
       "  'Jagga Jasoos: Galti Se Mistake Video Song REACTION! | Ranbir, Katrina | Pritam, Arijit, Amit',\n",
       "  'Hey Geek family, today we are checking out the song Galti Se Mistake from the movie Jagga Jasoos!\\n\\nOriginal Video Link: https://www.youtube.com/watch?v=05TA9jNnCdU\\n\\nMailing Address:\\nGeeks A Musing\\nPO Box 1622\\nColumbia, TN 38402\\n\\nFollow us on Twitter & Instagram: @geeksamusing\\n\\n#Reaction #FamilyReaction #GaltiSeMistakeReaction #JaggaJasoos #Ranbir #Katrina #Pritam #Arijit #Amit #AmitabhB',\n",
       "  '2020-01-14T01:00:04.000Z',\n",
       "  507690,\n",
       "  13475.0,\n",
       "  468.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCfNLP6sN6p-kH9VYzTZyvrA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  324000,\n",
       "  60670964,\n",
       "  30,\n",
       "  'PH',\n",
       "  'https://www.youtube.com/watch?v=wEcwOluUD7k',\n",
       "  'ALLMO$T - Heart React (Official Music Video)',\n",
       "  'Heart React by ALLMO$T (Official Music Video)\\n\\nDirected by Simon Dayao\\nDOP & Editor by Vince Greg\\n\\nStarring\\n• Alexa Miro\\n• Kirn Tuaño\\n• Gemikha Magnayon\\n• Peso Mercado\\n\\nNow available on Spotify, Apple Music, iTunes and other streaming platforms.\\n\\nStream it now:\\niTunes - https://apple.co/36lbLHt\\nSpotify - https://spoti.fi/2RnuYUP\\nApple Music - https://apple.co/33ZpCDn\\n\\nFollow us on our socials:\\nCRAKKY\\n- Facebook: https://bit.ly/2vdm3K9\\n- Twitter: https://bit.ly/2oMSEpF\\n- Instagram: https://bit.ly/2o01JLZ\\n\\nCLIEN\\n- Facebook: https://bit.ly/2oaiDHI\\n- Twitter: https://bit.ly/2o0xG6S\\n- Instagram: https://bit.ly/2oLh7vy\\n\\nRUSSELL\\n- Facebook: https://bit.ly/2obBSAv\\n- Twitter: https://bit.ly/2oSUsNN\\n- Instagram: https://bit.ly/2oIl5Ff\\n\\nJOM\\n- Facebook: https://bit.ly/2ncQbV4\\n- Twitter: https://bit.ly/2oMSEpF\\n- Instagram: https://bit.ly/2niN520\\n\\nALLMO$T Music\\n- Facebook: https://bit.ly/2oQcyAk\\n- Twitter: https://bit.ly/2oMSEpF\\n- Instagram: https://bit.ly/2pCuaQh\\n\\n© 2020 ALLMO$T Music\\nwith the collaboration of Peso Productions\\n\\n#HeartReact #ALLMOST',\n",
       "  '2020-01-25T11:00:13Z',\n",
       "  4227993,\n",
       "  39431.0,\n",
       "  2455.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCb2h-vtXFd5I-g8TFyOTXRA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'artofkickz@gmail.com',\n",
       "  '@artofkickz',\n",
       "  nan,\n",
       "  322000,\n",
       "  39847845,\n",
       "  1086,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=3YFj9UsV5rQ',\n",
       "  'ONE GUY, 54 VOICES (With Music!) Drake, Queen -Famous Singer Impressions - REACTION',\n",
       "  '** NEW MERCH AVAILABLE  **\\nhttps://artofkickz.com/\\n\\nGrab your Lord Timepiece Watch at lower cost using my personal link: https://lordwatch.co/Artofkickz\\n\\nDON\\'T FORGET TO ADD ME ON INSTAGRAM @ArtOfKickz\\nhttps://www.instagram.com/artofkickz/\\n \\nTwitter: \\nhttps://twitter.com/artofkickz\\n\\nFor Business Inquiries Email artofkickz@gmail.com\\n\\nFor More Exclusive Content And To Further Support of My Channel\\nSubscribe to me on Patreon.\\nhttps://www.patreon.com/artofkickz\\n\\nIf You Want To Send Me Letters Or Anything Safe At All. Send To \\nP.O. Box 2384\\nLilburn Ga, 30048\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n\\nLINK TO ORIGINAL:\\nONE GUY, 54 VOICES (With Music!) Drake, TØP, P!ATD, Puth, MCR, Queen - Famous Singer Impressions\\nhttps://www.youtube.com/watch?v=ZNFskLKrhx4',\n",
       "  '2020-01-16T00:00:01.000Z',\n",
       "  169495,\n",
       "  5981.0,\n",
       "  227.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCX_uC0GfYw6UqiiR-6vxZBw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Music Reactions and Much More',\n",
       "  319000,\n",
       "  63796649,\n",
       "  1093,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=7dKJCOWUr8A',\n",
       "  'Video El Gran Silencio - Chúntaro Style | REACTION',\n",
       "  'I Got My Cardio In For the Day🕺🏾😅\\n\\n\\n\\n\\n\\n\\nHere’s the video link https://youtu.be/oIOuEe0et1w',\n",
       "  '2020-02-20T01:11:55.000Z',\n",
       "  297655,\n",
       "  13641.0,\n",
       "  1767.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCNsmmI_wagenGxmVwNwD29g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to the Pets Paws where you can find lots of cute, funny and adorable videos about Pets. If you are an animal lover, you are in the right place. Because we will bring you daily videos of cutest Pets in the world. Are you ready for that? \\nMake sure to subscribe and hit the bell for daily updates. Pets Paws is always waiting for you.\\n*This is to confirm my affiliation with the website\\n\\n► Subscribe: http://bit.ly/PetsPaws\\nAll Video From PETS PAWS 👉https://bit.ly/39eAzUb\\n🐶🐱Facebook Group 👉https://bit.ly/2T5mbrN\\n 💟Tell us stories about your pet in our community tab 👉 https://bit.ly/2tSXRyR',\n",
       "  307000,\n",
       "  83492249,\n",
       "  73,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=a9PMT3RLPu4',\n",
       "  'Funny Dance Meme - Dogs And Cats Reaction - Tik Tok Animals Video 2020 | Pets Paws',\n",
       "  'Funny Dance Meme - Dogs And Cats Reaction - Tik Tok Animals Video 2020 | Pets Paws\\n\\n► Link video:  https://youtu.be/a9PMT3RLPu4\\n► Subscribe: http://bit.ly/PetsPaws\\n► More Cute Animals Video:  https://bit.ly/2kKh69o\\n_\\nAll Video From PETS PAWS 👉https://bit.ly/39eAzUb\\nFacebook: https://www.facebook.com/PetsPawsTV\\n🐶🐱Facebook Group 👉https://bit.ly/2T5mbrN\\n 💟Tell us stories about your pet in our community tab 👉 https://bit.ly/2tSXRyR\\n\\nWelcome to the Pets Paws where you can find lots of cute, funny and adorable videos about Pets. If you are an animal lover, you are in the right place. Because we will bring you daily videos of cutest Pets in the world. Are you ready for that? \\nMake sure to subscribe and hit the bell for daily updates. Pets Paws is always waiting for you.',\n",
       "  '2020-04-17T13:00:07.000Z',\n",
       "  55726,\n",
       "  1255.0,\n",
       "  39.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCsmXiDP8S40uBeJYxvyulmA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@official_jo1',\n",
       "  'JO1 Official YouTube Channel\\n\\nJO1(ジェイオーワン)\\n大平 祥生 - Shosei Ohira\\n川尻 蓮 - Ren Kawashiri\\n川西 拓実 - Takumi Kawanishi\\n木全 翔也 - Syoya Kimata\\n金城 碧海 - Sukai Kinjo\\n河野 純喜 - Junki Kono\\n佐藤 景瑚 - Keigo Sato\\n白岩 瑠姫 - Ruki Shiroiwa\\n鶴房 汐恩 - Shion Tsurubo\\n豆原 一成 - Issei Mamehara\\n與那城 奨 - Sho Yonashiro\\n\\n日本最大級のオーディション番組「PRODUCE 101 JAPAN」で、視聴者である“国民プロデューサー”によって101名の中から選ばれた11名で結成されたグローバルボーイズグループ。',\n",
       "  304000,\n",
       "  34381171,\n",
       "  40,\n",
       "  'JP',\n",
       "  'https://www.youtube.com/watch?v=6_Pg-tsPnBY',\n",
       "  'JO1｜『無限大(INFINITY)』 MV Reaction Video',\n",
       "  'Debut Single『PROTOSTAR』\\n2020.03.04 Release\\n\\n📣速報📣\\n\\n『無限大(INFINITY)』 MVを観た\\nJO1のリアクションを先行公開します‼\\n\\nついに『無限大』MV公開！▼\\nhttps://youtu.be/U-n1BR5JCDI\\n\\n\\nMV再生回数公約💪\\n\\n1) 101万View⬆️\\n『無限大』 Practice Video 公開!\\n2) 300万View⬆️\\n『無限大』 Practice Video(Costume Ver.)公開!\\n3) 500万View⬆️\\n『無限大』MVのPerformance Ver. 公開!\\n\\nOfficial Website\\nhttps://jo1.jp\\n\\nOfficial Twitter\\nhttps://twitter.com/official_jo1\\n\\nOfficial Instagram\\nhttp://instagram.com/official_jo1/\\n\\nOfficial FC\\nhttps://fc.jo1.jp/\\n\\n#JO1 #ジェイオーワン #PROTOSTAR #無限大 #INFINITY',\n",
       "  '2020-02-16T12:00:01.000Z',\n",
       "  454640,\n",
       "  24458.0,\n",
       "  2839.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCT345dg8o4zDvPGBIwTY_3g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  293000,\n",
       "  89508489,\n",
       "  1242,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=Zrpxfv4No1c',\n",
       "  'Garmi Song | Street Dancer 3D | Varun D, Nora Fatehi [REACTION]',\n",
       "  'Thanks for watching. Subscribe for daily vids!\\r\\n\\r\\nGaming Channel: https://www.youtube.com/c/LilHulkGames\\r\\n\\r\\nInstagram: https://www.instagram.com/2brosofficialpage',\n",
       "  '2020-01-15T04:15:31.000Z',\n",
       "  193025,\n",
       "  4235.0,\n",
       "  490.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC6Fgaug2RPddpWarjIxR4wQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'hollyxsdot@gmail.com',\n",
       "  nan,\n",
       "  'Positive Vibes ONLY!',\n",
       "  287000,\n",
       "  43785553,\n",
       "  1141,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=c5eZ_TFppXw',\n",
       "  'Lil Nas X - Rodeo (ft. Nas) [Official Video] REACTION!',\n",
       "  'Watch our reaction to Lil Nas X and Nas\\'s Official Video \"Rodeo\".\\n\\nINTRO Song: https://www.youtube.com/watch?v=Ful_B0iqwX4\\nADD US ON TWITCH:\\nhttps://www.twitch.tv/hollyxsdot\\n\\nFollow Us On Social Media:\\nInstagram: https://www.instagram.com/hollyxsdot\\nTwitter: https://twitter.com/hollyxsdot\\nSnapchat: HxSgang\\nFacebook: https://www.facebook.com/hollyxsdot\\n\\nSdot Social Media:\\nSPOTIFY: https://open.spotify.com/artist/3FOxF9u8sWvrUUyb12Gm9a\\nTwitter: https://twitter.com/yfmsdot\\nINSTAGRAM: https://Instagram.com/yfmsdot [@YFMsdot]\\n\\nHolly Social Media:\\nTwitter: http://twitter.com/officialhollyg\\nInstagram: https://www.instagram.com/officialhollyg [@officialhollyg]\\n\\nBusiness Inquiries: hollyxsdot@gmail.com',\n",
       "  '2020-02-11T22:40:19.000Z',\n",
       "  151051,\n",
       "  2702.0,\n",
       "  169.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCv-6wzQJoTVs_l7uImWVyYQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'thejokerproductionhouse@gmail.com',\n",
       "  '@instamasum',\n",
       "  'Why So Serious ?',\n",
       "  286000,\n",
       "  16095517,\n",
       "  47,\n",
       "  'BD',\n",
       "  'https://www.youtube.com/watch?v=yV1G0hXhRHo',\n",
       "  'Reaction To Music Videos | Episode 03 | Shoytan | Tri-Gang | The Joker Production House | Masum',\n",
       "  'In this video I gave reactions to a Music Video. I criticised them on some points.\\n\\nThis video is just for entertainment purpose. Please do not take it seriously.\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nMusic Video Owner : Tri-Gang\\nLink : https://youtu.be/ODwjUlHlvec\\n\\nOutro Sound : https://youtu.be/chtdUZADCSc\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nThe \"Music Video\" used in this video is not owned by me. I just gave reactions & criticised them.\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nA Bangla Rap Song From My Channel :\\nhttps://youtu.be/fR-twVqvOrM\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nYou Can Check My Other Videos : \\n\\nReaction To Music Videos\\nEpisode 01 : https://youtu.be/gNmXhclWkLM\\nEpisode 02 : https://youtu.be/vBXgOV5jKec\\n\\n\\nReaction to TikTok Episode 01 : https://youtu.be/ZM0Wwvfo5jg\\nReaction to TikTok Episode 02 : https://youtu.be/KwFHvNpTw7A\\nReaction to TikTok Episode 03 : https://youtu.be/iarpzj0s-Gg\\nReaction to TikTok Episode 04 : https://youtu.be/H4YbRqPIdHs\\nReaction to TikTok Episode 05 : https://youtu.be/ymNrFbn0kzo\\nReaction to TikTok Episode 06 : https://youtu.be/n-EtrqjH6i0\\nReaction to TikTok Episode 07 : https://youtu.be/lZH5OshvLFE\\nReaction to TikTok Episode 08 : https://youtu.be/SFUVBOdbM_o\\nReaction to TikTok Episode 09 : https://youtu.be/rxVGhTslZ1A\\nReaction to TikTok Episode 10 : https://youtu.be/XUR6HOZiFkQ\\n\\n\\n\\nE Kemon Cinema Episode 01 : https://youtu.be/0e9CaA91t9g\\nE Kemon Cinema Episode 02 : https://youtu.be/WLr8VXKlkRE\\nE Kemon Cinema Episode 03 : https://youtu.be/u6ALBr0nZus\\nE Kemon Cinema Episode 04: https://youtu.be/FIepUUxawg4\\nE Kemon Cinema Episode 05 : https://youtu.be/CDjRTo1Umio\\nE Kemon Cinema Episode 06 : https://youtu.be/zTTdVCj_6Ek\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted.\\n\\nThis video is just for entertainment purpose. Ranting or Roasting is a form of criticism. There is no personal grudge to any person in this video. Ranting should not be confused with abuse. Viewer\\'s discretion is advised.\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nVideo Title : Reaction To Music Videos | Episode 03 | Shoytan | Tri-Gang | The Joker Production House | Masum\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nFacebook Id : https://www.facebook.com/marufahmedmasum2\\n\\nInstagram Id : https://www.instagram.com/instamasum/\\n\\nFacebook Page : https://www.facebook.com/instamasumpage/\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\n\\n\\nThanks For Watching. Please Subscribe , Like ,Comment And Share.\\n\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\n*** ANTI-PIRACY WARNING ***\\n\\nThis content is Copyright to The Joker Production House. Any unauthorized reproduction, redistribution or re-upload is strictly prohibited of this material. Legal action will be taken against those who violate the copyright of the following material presented!\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nPowered By :\\nThe Joker Production House\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nReaction to Music Videos\\nEpisode 03\\n\\nশয়তান\\nShoytan\\nTri-Gang\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\nFor any contact :\\n\\nthejokerproductionhouse@gmail.com\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\n\\n#ReactionToMusicVideos   #Episode03  #JokerProduction',\n",
       "  '2020-04-22T05:47:07.000Z',\n",
       "  122306,\n",
       "  7400.0,\n",
       "  1245.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCSBngetwn2RXDZSjgz1UI1A',\n",
       "  'lxb.kor@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'सत्यमेव जयते. \\n\\nbusiness contact - lxb.kor@gmail.com',\n",
       "  281000,\n",
       "  2494589,\n",
       "  21,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=NvAqlEnTEAs',\n",
       "  \"'Vaaste Song' Reaction by Korean｜Dhvani Bhanushali｜Tanishk Bagchi\",\n",
       "  \"'Vaaste Song' Reaction by Korean｜Dhvani Bhanushali｜Tanishk Bagchi｜reaction by korean｜reaction by foreigners\\n\\n\\nNamaste Namaskar Namaskaram \\nVanakam Kemcho dodongs 💕🙏🏻👍🏻🇮🇳\\n\\nToday, We korean watched and react to the 'Vaaste song' Which DoDos recommended!  So this time we korean have tried to react Vaaste song! Vaaste song is really heartwarming and pit a par lovely song! It remids us of the first love! So it becames our favorite song!\\n\\nWe fully enjoyed lovely Vaaste song! Vaaste song give us so much emotion that we can feel  this song althoulgh we can't get lyrics!\\n\\nIt's really great to watch Vaastes song! We fall in love into Vaste song!\\n\\nThank you for always helping me!\\nHappiness will always be with you 😻\\n\\n#VaasteSong #DhvaniBhanushali #TanishkBagchi\\n\\nDoHwi’s instagram- https://instagram.com/dohwisae?igshid...\\nID-dohwisae\\nJino’s instagram- https://instagram.com/doublejinw?igsh...\\nID- doublejinw\",\n",
       "  '2020-04-09T07:30:00.000Z',\n",
       "  108075,\n",
       "  4853.0,\n",
       "  435.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCn3-eJk9e_aEKTJH0QX1dEQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '⚡LIKE, COMMENT, AND SUBSCRIBE to see more from the DARKSKIN SAVIORS⚡ TURN POST NOTIFICATIONS ON!!\\n6GUZVE',\n",
       "  274000,\n",
       "  27176740,\n",
       "  339,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=Y5xGQe9sWqI',\n",
       "  'Roddy Ricch - The Box [Official Music Video][REACTION]',\n",
       "  'We  want to thank you guys for getting us to 192k subs , Pls turn on the post notifications 🛎 We Appreciate Everything, Thank You guys.💯💯💯\\n\\nMERCHANDISE- https://teespring.com/stores/thedarkskinsaviors\\n\\n► HIT THAT LIKE BUTTON!\\n► SEND THIS VIDEO TO YOUR FRIENDS\\n► FIRST TIME HERE? CLICK THAT SUBSCRIBE BUTTON \\n\\nFOLLOW US ON SOCIAL MEDIA\\n@Akeemtherobot\\n@Kvngntrain\\n@Donscreationz\\n@Davontae506\\n@Realpelmx\\n\\nGet this video to 500 Likes!!!  and p.s It’ll make us really happy if you left your comments in the comment section below we really want to hear what you guys want to see next.\\n#Roadto1mill',\n",
       "  '2020-03-03T00:35:03.000Z',\n",
       "  208646,\n",
       "  7592.0,\n",
       "  597.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCjSHxjzeNQsWf_EuL3gl0nA',\n",
       "  'mainhugyaani@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"To see what I'm doing when I'm not on youtube add me on Instagram: @mainhugyaani\\nBusiness: mainhugyaani@gmail.com\",\n",
       "  271000,\n",
       "  35652688,\n",
       "  862,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=Em-R-AK-v40',\n",
       "  'Yo Yo Honey Singh : LOCA (SONG REVIEW)',\n",
       "  'Temporary insta: https://www.instagram.com/mainhuabhishek\\r\\nTwitter: https://twitter.com/mainhugyaani\\r\\nTelegram: https://t.me/mainhugyaani\\r\\nfacebook: https://www.facebook.com/mainhugyaani\\r\\n\\r\\nGAMING: \\r\\nhttps://www.youtube.com/channel/UCX52xoibcBvzcSpUY6fG7ag\\r\\n\\r\\n Support This Channel Buy Anything \\r\\nAmazon: http://amzn.to/2lGv6h7\\r\\nFlipkart: http://fkrt.it/FOtaBTuuuN\\r\\n\\r\\nGear That I Use\\r\\nMIC: http://amzn.to/2hIeHdT\\r\\nInterface: http://amzn.to/2jA7L37\\r\\nLaptop: Lenovo T420\\r\\nHeadphones: http://amzn.to/2jyTPpW\\r\\n\\r\\nVIDEO EDITING SOFTWARE: VEGAS\\r\\nSOUND RECORDING: Audacity\\r\\n\\r\\nIntro Designed: Hardik Singh\\r\\n\\r\\nDISCLAIMER: This video is just for entertainment purpose only. Please take this video in lite humor',\n",
       "  '2020-03-03T16:35:19.000Z',\n",
       "  91565,\n",
       "  9893.0,\n",
       "  1897.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCtR4ePwI68dyU4vffkQMscQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Identical Twins, Hot Takes, Good Music, and Infectious Energy. \\nLike Comment Share Subscribe, Whole 9! \\nNew Videos Every Tuesday and Friday!',\n",
       "  269000,\n",
       "  41419810,\n",
       "  282,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=MKWxyzDfh4E',\n",
       "  'KEHLANI \"TOXIC\" VIDEO REACTION | #MALLORYBROS',\n",
       "  'Whole9Store.com SHOP NOW!\\n\\nLike, Comment, Share, Subscribe.... #Whole9\\n\\nInstagram\\nTerrell: @terrellmallory\\nTerrance: @terrancemallory\\n\\nTwitter\\nTerrell: @twinndiesel\\nTerrance: @SpikeTeeJoint',\n",
       "  '2020-03-27T13:40:22.000Z',\n",
       "  60038,\n",
       "  3069.0,\n",
       "  338.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC9gn1WzruIOksNgdEvQucjg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"My face was made for reactions, I can't help it.\\nSend me Requests.\\n\\nShake My Hand!\",\n",
       "  267000,\n",
       "  29205243,\n",
       "  134,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=EbI-0sTreLw',\n",
       "  'WHAT!!?? EMINEM GODZILLA MUSIC TO BE MURDERED - REACTION',\n",
       "  nan,\n",
       "  '2020-01-18T16:00:00Z',\n",
       "  817927,\n",
       "  31241.0,\n",
       "  2299.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCB5YH4CLWzXvpVh7pqNEQQw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Girl with a dream to be extraordinary. Singer. Dancer. LA Livin.',\n",
       "  265000,\n",
       "  26527356,\n",
       "  216,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=v6bG0aSGzak',\n",
       "  'BEST FRIENDS REACT TO MY NEW MUSIC VIDEO! (DROPPING WED FEB 19!)',\n",
       "  \"PRE-SAVE CORAZON FRIO!!!! LINK BELOW!\\nhttps://ffm.to/corazonfrionezza\\n\\n*FOLLOW ME ON ALL MY PLATFORMS*\\nINSTAGRAM (@babynezza) ►https://www.instagram.com/babynezza\\nTWITTER (@bbynezza) ►https://twitter.com/bbynezza\\n\\nSHOUTOUT TO MY FRIENDS I LOVE YOU!!!!\\n\\nDAVID'S YOUTUBE►https://www.youtube.com/user/AlphaMonkeysDMC\\nDAVID'S INSTAGRAM►https://www.instagram.com/DavidAlvareeezy\\n\\nBOBBY!\\nCHANNEL►https://www.youtube.com/user/mygenuinefind\\nINSTAGRAM► https://www.instagram/com/itsbobbymares\\n\\nALEX'S YOUTUBE►https://www.youtube.com/user/hoiitsroi\\nALEX'S INSTAGRAM►https://www.instagram.com/alexwassabi\\n\\nCHRISTIANS INSTA►https://www.instagram.com/christian_seavey\\n\\nFRANNY'S YOUTUBE►https://www.youtube.com/channel/UCtQ7zqr9cWlvnPLq2GSS-1A\\nFRANNY'S INSTAGRAM►https://www.instagram.com/franny_arrieta\\n\\nPAULS CHANNEL►https://www.youtube.com/user/trueimageprod\\nPAULS INSTA►https://www.instagram.com/thepaulmerrell\\n\\nTWINS CHANNEL►https://www.youtube.com/user/merrelltwins\\nINSTAGRAM►https://www.instagram.com/merrelltwins\",\n",
       "  '2020-02-17T22:25:37.000Z',\n",
       "  109832,\n",
       "  6939.0,\n",
       "  548.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC9qV99c_HzUhyEhFmwo7xfg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hi guys! welcome to my channel!! I plan to do weekly vlogs, storytimes, fitness related topics and much more here on this channel. be sure to subscribe !! thnx!',\n",
       "  265000,\n",
       "  45225044,\n",
       "  821,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=Iu2fNskD_oQ',\n",
       "  \"🇹🇭 LILI's FILM #3 - LISA Dance Performance Video REACTION\",\n",
       "  '--------------------------------------·FOLLOW ME ·-----------------------------------------------\\n-TWITTER - https://twitter.com/theclarebear88\\n-INSTAGRAM - https://www.instagram.com/theclarebear88\\n-------------------------------------------------------------------------------------------------------\\nORIGINAL VIDEO - https://www.youtube.com/watch?v=je_R3gEtDbw',\n",
       "  '2020-04-21T03:46:04.000Z',\n",
       "  83973,\n",
       "  6107.0,\n",
       "  160.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCHaFIH17-cvKekxvwg51SnA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@farrukhnotfarooq',\n",
       "  'www.PAKISTANIREACTIONS.COM',\n",
       "  263000,\n",
       "  92631867,\n",
       "  672,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=4463x4pjoLs',\n",
       "  'Pakistani Reacts to EMIWAY - HARD (PROD.HIPPY JACK) (OFFICIAL MUSIC VIDEO)',\n",
       "  \"#Emiway #Hard #HipHop\\n\\nGo to https://www.pakistanireactions.com to read live comments 24 hours of the day. \\r\\n\\nEMIWAY: https://www.youtube.com/watch?v=9-YmtwUfoVU\\n\\r\\nMystery Link : https://www.designbyhumans.com/shop/Kreate/\\r\\n\\r\\nTHANK YOU TO ALL MY PATRONS.. YOU ALL MAKE IT HAPPEN. \\r\\nhttps://patreon.com/user?u=4799739\\r\\n\\r\\n \\r\\n\\r\\nCheck out: http://www.PakistaniReactions.com\\r\\n\\r\\nCheck out my Instagram: @FarrukhNotFarooq https://www.instagram.com/farrukhnotfarooq/ \\r\\n\\r\\nTwitter @PakistaniReacts https://goo.gl/S31HvH\\r\\n\\r\\nCheck out Pakistani Reaction's second channel: https://www.youtube.com/channel/UCmJT1A_9LXTgsVuIoNcbamg\\r\\n\\r\\nPlease support the channel by becoming a Patreon. If you pledge $1 I will buy you an iPhone 120 when it comes out.\\r\\nCLICK HERE https://patreon.com/user?u=4799739\\r\\n\\r\\nWatch more Pakistani Reactions and original content here: https://www.youtube.com/playlist?list=PLdVKzkEmHj2BAhcfbb-Uaj9KJRF9i_iPO \\r\\n\\r\\nMusic by Breakmaster Cylinder: https://breakmastercylinder.bandcamp.com/\\r\\n\\r\\nCome say Hi on  Instagram:  http://instagram.com/pakistanireactionofficial \\r\\n\\r\\nSnapchat: Karafornication \\r\\n\\r\\nFacebook: https://goo.gl/69M6DU\\r\\n\\r\\nTwitter: https://goo.gl/S31HvH\\r\\n\\r\\nLeave a comment if you want more.\\r\\n\\r\\nLet me know how you all felt about my reviews and reactions. Maybe I missed something? \\r\\n\\r\\nShare this video with your friends. They need this.\",\n",
       "  '2020-04-17T09:04:24.000Z',\n",
       "  116478,\n",
       "  8672.0,\n",
       "  1855.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCvBFpTOOmE1iP4m-bE2MQVA',\n",
       "  'itsshane702@gmail.com',\n",
       "  nan,\n",
       "  'itsshane702@gmail.com',\n",
       "  '@its_shane452',\n",
       "  'Hey Guys! We are Reaction Guru from Pakistan. We are here to react on different movies, songs, places and events happening in nepal bangladesh india. The message is to spread peace and prosperity in the subcontinent. \\nYour support to our channel will be highly appreciated! Thanks\\n\\nGmail : itsshane702@gmail.com\\n\\n\\nStart 15 Aug 2018\\n1k sub 21 sep 2018\\n5k sub 3 jan 2019\\n10k sub 24 feb 2019\\n25k sub 29 mar 2019\\n50k sub 14 june 2019\\n75k sub 21 july 2019\\n100k subs 26 aug 2019\\n150k subs 10 nov 2019',\n",
       "  263000,\n",
       "  25818988,\n",
       "  513,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=aowQhzq_tqk',\n",
       "  'Pakistani Reaction Amay Diyo Call Song | The Ajaira LTD | Prottoy Heron | Ripon Video 🇵🇰🇧🇩',\n",
       "  '#AmayDiyoCall\\xa0#Ajairaltd\\xa0#ValentinesSpecial\\n#bangla_music\\n#bangla_song\\n#bangla_short_film\\n#bangla_music_video\\n#bangla_song_video\\nthe ajaira ltd\\nbangladesh\\nvalentine\\'s day song 2020\\nmusic 2019\\n\\nVlog Channel link\\nhttps://www.youtube.com/channel/UCJdUvwr1yFp79RzkHRp0MEg\\n\\nInstagram: https://www.instagram.com/its_shane452/ \\nhttps://www.instagram.com/chaudhryaliraza12/\\n\\nFacebook :https://www.facebook.com/Reaction-Guru-273174676912602/\\n\\nOriginal video Link:\\nhttps://youtu.be/hTdk83ytEvE\\n\\nDisclaimer: Our channel #reactionguru is a channel which is created for do reactions on videos it is just for entertain peoples .if you have any problem with the video then first contact with me through personal email ( itsshane702@gmail.com ) we will delete your videos if you not want to share on my channel Thanks:) _______________________________________________________ \\nCopyright Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. educational or personal use tips the balance in favor of fair use....\\n\\nKeywords:\\nprottoy heron amay diyo all amay dio call amay diyo dak amay diyo daak amay dio daak ripon da ripon video Taheri Giyash uddin taheri ajaira ltd the ajaira ltd dhele dei boshen boshen song bosen bosen sefat ullah\\xa0\\nkhan helal ahsan habib piar nasir subha shalarputera Dudu khao dudu kha dipjol dialogue dipjol movie songs dipjol funny dialogues h2o song song mod kha dj mod kha song prottoy heron mod kha dj alvee new song 2020 bangladeshi song bd song new bangla song 2020 Bangla new song 2020 Bangla new song Love song Bangla music Bangla Music Video bangla video song bangla video song 2020 ,bangla gana video bangla gaan video bangla gaan bangla video gan bangla new video song 2020 new video song 2019 bangla song 2019 new bangla song 2019 Bangla new song 2018 Bangla new song Love song Bangla music Bangla Music Video bangla video song bangla video song 2019 ,bangla gana video bangla gaan video bangla gaan bangla video gan bangla new video song 2019 new video song 2019 bangla song 2019',\n",
       "  '2020-02-15T12:58:24.000Z',\n",
       "  139122,\n",
       "  8437.0,\n",
       "  452.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCDikY0fBFXGCFA_0Fr2azYg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@asiansdownunder',\n",
       "  'A group of Asians from the Land Down Under Asians in Australia\\n\\nB站：https://space.bilibili.com/380554481/#/',\n",
       "  263000,\n",
       "  53440943,\n",
       "  271,\n",
       "  'AU',\n",
       "  'https://www.youtube.com/watch?v=GA-X5BINZ_E',\n",
       "  'Sarah Geronimo — Tala (ASEAN Japan Music Festival) | Asian Australian Reaction ADU',\n",
       "  'The Tala dance has become turned into a new dance challenge recently so we wanted to check out Sarah Geronimo performing her Tala song and dance live!\\n\\nSarah G is a super amazing singer and dancer!\\n\\nWhat do you want us to react to next? Let us know in the comments.\\n\\nFOLLOW AND SUPPORT US:\\n\\nAsians Down Under\\nFacebook: https://www.facebook.com/asiansdownunder/\\nInstagram: https://www.instagram.com/asiansdownunder/\\n\\nLaw\\nYouTube: https://www.youtube.com/channel/UCQn3o9lAzjjAm2xySvDrEgA\\nInstagram: https://www.instagram.com/law.vlogs/\\n\\nKirk\\nYouTube: https://www.youtube.com/channel/UCLpK-owwNCUAq09Hz6-NQbQ\\nInstagram: https://www.instagram.com/yokirk/\\nTikTok: https://www.tiktok.com/@yokirkk\\n\\nRach\\nYouTube: https://www.youtube.com/channel/UCFc5z3hW__dNvjwEEHoMAGQ\\nInstagram: https://www.instagram.com/rach_tv19/?hl=en\\n\\nBaby Zac\\nYouTube: https://www.youtube.com/channel/UCdI8KqxOo7Cf3PUc3QEg0Jg\\nInstagram: https://www.instagram.com/zac.t16/\\n\\nThank you for watching!\\n\\n#Tala #SarahGeronimo #TalaDance',\n",
       "  '2020-01-26T12:48:35.000Z',\n",
       "  167283,\n",
       "  3888.0,\n",
       "  190.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCTErPLylFTokgN4-plBBSbQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hello, Youtube!!! \\nI'm Cansu and welcome to my channel! \\nAs a huuuuge fan of Indian Cinema, I'm here to watch trailers, giving movie reviews and do so much more fun stuff!\\nI hope you enjoy it!\",\n",
       "  260000,\n",
       "  29630552,\n",
       "  143,\n",
       "  'TR',\n",
       "  'https://www.youtube.com/watch?v=1yR7sZG0FWI',\n",
       "  'Ramuloo Ramulaa | Ala Vaikunthapurramuloo | Allu Arjun | Music Video | REACTION',\n",
       "  'Original Music Video Link:\\nhttps://www.youtube.com/watch?v=wFAj0pW6xX0\\n\\nThanks for watching!!\\n\\n#AlaVaikunthapurramuloo #AlluArjun #Reaction',\n",
       "  '2020-01-02T03:00:00Z',\n",
       "  506764,\n",
       "  13322.0,\n",
       "  821.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCsCwJMVAZ7sLz1NjwKLI-Vw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'brainchowhindi.yt@gmail.com',\n",
       "  nan,\n",
       "  'We are from India & we react to Pakistani videos. Currently, we release a video every single day! The long term goal of this channel is to improve relations between India & Pakistan. Videos showing positive aspects of both nations can be a potent tool in getting rid of present misconceptions. Consider subscribing if you enjoy our reaction videos :)',\n",
       "  258000,\n",
       "  50766731,\n",
       "  596,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=CZcqdPeqWuc',\n",
       "  'INDIANS react to Bol Kaffara Kya Hoga Qawwali Viral Video',\n",
       "  \"Original Video link- https://www.youtube.com/watch?v=4QfSnSxu8fU\\n\\n\\n#BolKaffaraKyaHoga #Qawwali #IndianReaction\\n\\nSupport me on Patreon: https://www.patreon.com/brainchow\\n(Please DON'T support me if you are short on money yourself)\\n\\n\\nI react to Full Episodes of Pakistani Dramas on my Facebook page: https://www.facebook.com/BrainChowReactions\\n(Suno Chanda, Khaani, Pyarey Afzal, Zindagi Gulzar Hai, Woh Aik Pal, etc.)\\n\\n \\nFollow me on:\\nInstagram:  https://www.instagram.com/rajmuralidharan94\\n       Akash:  https://www.instagram.com/im__nawab\\n\\n                     \\nFacebook: https://www.facebook.com/raj.muralidharan.1\\n                  \\nTwitter: https://www.twitter.com/muralidharanraj\\n               \\n\\n\\nOfficial contact: brainchowhindi.yt@gmail.com\",\n",
       "  '2020-02-04T14:00:04.000Z',\n",
       "  88475,\n",
       "  2453.0,\n",
       "  307.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCGtcBqydj9ZqSxsIiybMooQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'complexambition401@gmail.com',\n",
       "  '@chriskarell',\n",
       "  'Creative collective out of the city of Providence, located in the smallest state in the country, Rhode Island. \\n\\nWe appreciate music and the culture surrounding it. \\n\\nA channel meant to inspire, motivate, and entertain everyone that views the content. \\n\\nWe all have a #ComplexAmbition\\n\\n- Main Site: ComplexAmbition.com\\n- Subscription Exclusive Content: OnlyFans.com/ComplexAmbition',\n",
       "  256000,\n",
       "  38470891,\n",
       "  705,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=az6aUAKNb0o',\n",
       "  'YO PERREO SOLA - BAD BUNNY (VIDEO) REACTION REVIEW',\n",
       "  '#BadBunny #YoPerreoSola #ComplexAmbition\\n\\nBad Bunny, rompiendo fronteras...\\n\\n\\n- https://www.youtube.com/watch?v=GtSRKwDCaZM\\n\\n_______________________________________________\\nPAID PROMO:\\n\\nYoutube video: https://youtu.be/9doz6vVSPN8\\nInstagram: https://www.instagram.com/chriskarell/?hl=de\\nSpotify: https://open.spotify.com/track/4x44vYq8lBY15Xr53FZA35?si=56xYbMHaQsCJNvB_WgQtvA\\n\\n\\nEmail us if interested in business:\\n\\nComplexAmbition401@Gmail.com\\n\\n-------------------------------------------------------------\\nR.I.P.\\n\\nNipsey, Mac Miller, XXXtentacion, Juice WRLD, & Pop Smoke\\n--------------------------------------------------------------\\nFOLLOW US ON OUR SOCIAL MEDIA \\n--------------------------------------------------------------\\nInstagram\\n\\nSOUND:  https://www.instagram.com/itsavibe/?h...\\nMarloon: https://www.instagram.com/itshotinthi...\\nY.I: https://www.instagram.com/evenbetters...\\n\\n Twitter / Facebook / IG \\n\\n@ComplexAmbition \\n\\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\nCLOTHES FOR SALE\\n\\nhttps://www.grailed.com/SOUNDsales\\nhttps://www.grailed.com/complexambition\\n---------------------------------------------------------------------\\nCOPYRIGHT DISCLAIMER \\n\\nUnder Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. \\n\\nALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS',\n",
       "  '2020-03-30T03:11:42.000Z',\n",
       "  239915,\n",
       "  10624.0,\n",
       "  750.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCideLO7JJw2poa1JrEmQKDQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'scrufacejean@gmail.com',\n",
       "  nan,\n",
       "  'Step into the mind of Scru and see what I think about music videos, viral videos and other funny things.',\n",
       "  255000,\n",
       "  40167273,\n",
       "  1819,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=O7cpHOimVG4',\n",
       "  \"Quadeca - Where'd You Go? (Official Music Video) REACTION!\",\n",
       "  '#QUADECA\\n\\n*JOIN THE OFFICIAL SFJ PATREON* https://www.patreon.com/scrufacejean\\n\\n\\nWATCH \"I AM NOT DAX\" Video : https://www.youtube.com/watch?v=6lbc7HLA0qw\\n\\n\\n** ROAD TO 300,000 SUBSCRIPTIONS ***\\n\\nto Donate using Paypal!: Scrufacejean@gmail.com\\n\\nFOLLOW MY SPOTIFY: https://artists.spotify.com/c/artist/0zspuZLm1rglTb82ZVaU7p/profile#overview\\n\\nFOLLOW ME: Https://www.instagram.com/scrufacejean\\n\\nSupport ya boy by gettin my single \"No Way\" on Itunes: https://itunes.apple.com/us/album/no-way-single/1349570433\\n \\nCLICK THE BELL! 🔔\\nFIRST TIME HERE? CLICK TO SUBSCRIBE: http://bit.ly/2EKtawm\\n\\nIf you liked this video, then you should check these out! \\n\\nCONTACT ME\\n➡️ http://www.twitter.com/scrufacejean\\n➡️ https://www.facebook.com/therealscrufacejean\\n➡️ http://www.instagram.com/scrufacejean\\n➡️ Snapchat: @TheRealSFJ',\n",
       "  '2020-04-08T20:14:01.000Z',\n",
       "  91740,\n",
       "  6041.0,\n",
       "  343.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCyUddxXedBM1h6Qc5weaxpQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@toolitmafia',\n",
       "  \"I'm bringing you the Hardest, LIT and Dopest Reactions! Any video! Every video! LET ME Know what you want to see to see if it gets the TOO LIT MAFIA STAMP!!.\",\n",
       "  254000,\n",
       "  24150557,\n",
       "  781,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=z_Q96E8jaPw',\n",
       "  'Eminem - Godzilla ft. Juice WRLD \"Official Video\" TM Reacts (2LM Reaction)',\n",
       "  'THE FLAME IS BACK!!!! One of the G.O.A.T is back and this time we\\'re diving into some visuals that we\\'ve never seen before. Im not going to spoil this reaction! Get in there and enjoy!\\n\\nEminem - juice WRLD (Official Video): https://www.youtube.com/watch?v=r_0JjYUe5jo\\n\\n#JuiceWRLD #Eminem #Godzilla\\n \\nBe sure to leave a thumbs up for more great content! Subscribe if you haven\\'t already and lets keep it LIT!\\n\\nMAFIA!!!!!!!\\n\\n🚨FLAME UNIVERSITY MERCH🚨\\nhttps://teespring.com/stores/flame-university-2\\n\\n🚨PAYPAL DONATIONS🚨\\nHelp Me Keep These Videos Flowing Daily!!\\nhttps://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XFY3YAYEJYZYW&source=url\\n\\n🚨BECOME A PATREON & GET YOUR REQUEST IN FIRST!!🚨\\nhttps://www.patreon.com/user?u=13642328&u..\\n\\n🚨Follow Me On All Social Media🚨\\n\\n▶︎Twitter: https://twitter.com/toolitmafia\\n\\n▶︎Instagram: https://www.instagram.com/toolitmafia/\\n\\n▶︎Snapchat: I_amtm\\n\\nPlaystation Network: TooLITMafia\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS',\n",
       "  '2020-03-10T20:01:54.000Z',\n",
       "  493087,\n",
       "  16891.0,\n",
       "  923.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC7qIoZBYVvq3hHryTsDsJJQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"This channel is all about Indian stuff performed by girls from all over the world. Here you will find girls from USA, Ukraine, Romania, Venezuela, South Africa and various other countries dancing on Bollywood songs, doing Bollywood reaction videos, singing Bollywood songs and doing various other stuffs related to India. We also value our subscribers and that's why we allow you to tell us what do you want in our new videos. You can let us know by commenting on our videos.\",\n",
       "  251000,\n",
       "  37119188,\n",
       "  286,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=3_ES98s8Xsk',\n",
       "  'Titanic Music Indian Version | Tushar Lall | Reaction by Rebecca',\n",
       "  'Donate and help us: https://gogetfunding.com/help-cross-cultural-to-make-more-videos-on-india/\\n\\nLike us on Facebook: https://www.facebook.com/pg/CrossCulturalYoutubeChannel/\\n\\nOriginal video link: https://www.youtube.com/watch?v=IzpviJVHxUs\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.',\n",
       "  '2020-04-12T14:15:11.000Z',\n",
       "  69637,\n",
       "  3766.0,\n",
       "  268.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCX4QhdJJNlcZhSWVyRWLJcg',\n",
       "  'mariahmillianbusiness@gmail.com',\n",
       "  nan,\n",
       "  'mariahmillianbusiness@gmail.com',\n",
       "  nan,\n",
       "  'Business: mariahmillianbusiness@gmail.com\\nTwitter: MariahMillian\\nInstagram: MariahMillian\\nSnapchat: mariah_grodi',\n",
       "  247000,\n",
       "  12596566,\n",
       "  180,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=zaxYbpLhqno',\n",
       "  'DDG - Cotton Mouth (Official Music Video) (My reaction) 😍',\n",
       "  'Y’all I am bringing back the reaction videos! I missed doing these so much especially cause I know you guys loved them so I’ll be doing a lot more! Make sure you let me know when you want me to react to something. Love you! #millygang\\n\\nmake sure yall go check the cotton mouth music video out!\\n\\n\\nLets be friends!\\nInstagram: Mariahmillian\\nTwitter: Mariahmillian\\nSnapchat: Mariah_Grodi\\n\\nBusiness: Mariahmillianbusiness@gmail.com',\n",
       "  '2020-01-23T19:11:58.000Z',\n",
       "  101871,\n",
       "  5966.0,\n",
       "  239.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCytsMf3mG13YZK9pDjw8yqg',\n",
       "  'reactionshappinesscrossing@gmail.com',\n",
       "  nan,\n",
       "  'contact@happinesscrossing.com',\n",
       "  '@happinesscrossing',\n",
       "  'Vanessa & Fernando. We are from Germany & Brazil, we met in Australia and are currently traveling the globe together with you guys! \\n\\nThis is our reaction channel only! \\nIf you enjoy watching us reacting to music videos, sports & viral videos make sure to subscribe! \\n\\nIf you like travel & digital nomad lifestyle, our channel is @happinesscrossing \\n\\nFor business enquires: reactionshappinesscrossing@gmail.com',\n",
       "  246000,\n",
       "  20674653,\n",
       "  151,\n",
       "  'DE',\n",
       "  'https://www.youtube.com/watch?v=aGZbU7ASMOY',\n",
       "  'MARCELITO POMOY - Power of Love Performance! AGT Finals SONG? - Reaction',\n",
       "  'Now we are trying to guess which song Marcelito Pomoy will sing on AGT Finals! Can you help us out?\\n\\nOriginal Video: https://www.youtube.com/watch?v=3yet306h9QI\\n\\n\\nWe hope you all enjoyed this video! MABUHAY!\\n\\n#itsmorefuninthephilippines #philippinesreaction\\n\\nMake sure to subscribe to our channel and follow us on Instagram! \\n\\n\\nIf you want our complete Travel Vlog Series Around the World check it out this playlist:\\nhttps://www.youtube.com/playlist?list=PL0lKxj-ed5LjG0BewH6OBuQSZOXyT1314\\n✈️ Do you want to become a Digital Nomad? \\nJoin us on our 5-Days Free Course: Build a Brand and Make Money Online https://happinesscrossing.ck.page/free-5-day-course\\n\\n👍🏻 LET\\'S BE FRIENDS ON SOCIAL MEDIA:\\n\\n✘ Instagram: https://www.instagram.com/happinesscrossing/\\n✘ Vanessa\\'s: https://www.instagram.com/wanderlustvanessa/\\n✘ Fernando\\'s: https://www.instagram.com/wegonetravel/\\n✘ Facebook: https://www.facebook.com/happinesscrossing/\\n✘Twitter: https://twitter.com/HappinessCrossi\\n_______________________________________\\n\\n🔥Get THE Best UNLIMITED portable Wifi EVER here - https://mbsy.co/CQSHR \\n(use HAPPINESSCROSSING code for 10% discount) \\n🔥The Best YouTube Growth Free Tool: https://www.tubebuddy.com/happinesscrossing _______________________________________\\n📷 GEAR WE USE 🎙:\\nCanon G7X - https://amzn.to/2oRuRVr\\nCanon - 200D - https://amzn.to/2odyLbg\\nBoya Camera Microphone - https://amzn.to/2oJOejx\\nWaterproof Camera Backpack - https://amzn.to/2oRBmrj\\nVanessa’s Dell Laptop - 5481 - https://amzn.to/2o0t9Bp\\nFernando’s ASUS Laptop Vivo Book Flip 14 TP410UA - https://amzn.to/2oNx6Jw\\nDrone DJI Spark - https://amzn.to/2pHaKdg\\nDrone Bag - https://amzn.to/2o0zInx\\nTripod - https://amzn.to/2oQz5wU\\nGoPro 7 Black - https://amzn.to/2njaqAE\\nTravel Backpack during Day - https://amzn.to/2pJjrDV\\nUniversal Travel Adapter - https://amzn.to/2oIPX8B\\nEditing Set up:\\nExternal HDD - https://amzn.to/2oM4Ve8\\nHigh-Quality Copyright Free Music HERE: https://bit.ly/2oP90hG\\n _______________________________________________________________\\n↠ For Business Enquiries: contact@happinesscrossing.com\\n\\n📃 COPYRIGHT DISCLAIMER:\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. All of the content in this video belong to their respective owners. We do not own any of the footage shown or music used in this video.',\n",
       "  '2020-02-05T23:30:00.000Z',\n",
       "  198245,\n",
       "  4909.0,\n",
       "  441.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCTAu6vhBVzNR2f9SgmWzKuQ',\n",
       "  'rashodzay@yahoo.com',\n",
       "  '@bzdesignz',\n",
       "  'rashodzay@yahoo.com',\n",
       "  '@bzdesignz',\n",
       "  'ZAYRASHOD/POVERTY GANG MERCH!!!!\\nhttps://teespring.com/stores/zay-rashod\\n\\n\\n😗 Check Out My ADVICE CHANNEL! https://www.youtube.com/channel/UCH0zfPH0FJSg6UuuGWD9yDQ?sub_confirmation=1\\n\\n🤤 Check Out My Gaming Channel! https://www.youtube.com/channel/UCKhSoYQQxCSZ-C-yyPVnS6g?sub_confirmation=1\\n\\n🤑 Check Out My Twitch For DAILY Streams! https://www.twitch.tv/zayrashod\\n\\n   Check Out My NEWEST Thumbnail Maker https://www.instagram.com/bzdesignz/\\n   \\nTHE MAN RESPONSIBLE FOR MY VIDEO EDITING!!!\\n www.instagram.com/tomgrut\\n\\n♛Instagram♛: https://www.instagram.com/zay_rashod\\n♛Twitter♛: https://twitter.com/JOAT_Zay\\n\\n🤵 Send All Business Inquiries To Rashodzay@yahoo.com',\n",
       "  243000,\n",
       "  35567554,\n",
       "  1787,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=_l_TYbKvmVA',\n",
       "  'Future - Life Is Good (Official Music Video) ft. Drake Reaction Video',\n",
       "  'Future and Drake team up to work regular jobs and make it look fun meanwhile im poor af and broke\\n\\nMy PATREON https://www.patreon.com/ZayRashod\\n\\nGaming Channel! https://www.youtube.com/channel/UCKhSoYQQxCSZ-C-yyPVnS6g?sub_confirmation=1\\n\\nTwitch https://www.twitch.tv/zayrashod  \\n\\n♛Instagram♛: https://www.instagram.com/zay_rashod\\n♛Twitter♛: https://twitter.com/JOAT_Zay\\n\\nCheck Out My NEWEST Thumbnail Maker https://www.instagram.com/bzdesignz/\\n\\n🤵 Send All Business Inquiries To Rashodzay@yahoo.com',\n",
       "  '2020-01-10T20:30:00.000Z',\n",
       "  41779,\n",
       "  1583.0,\n",
       "  95.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCBnHMS89gOpohY-DKy90ONg',\n",
       "  'labidubs@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'MUSIC MOVIES Entertainment, LIFESTYLE & MORE\\n\\nMy Channel is for entertainment & lifestyle purpose. Majority of my videos are taken from Media Press conferences that I attended from Local and International events. \\n\\nCovering celebrities latest updates, travel, food, music and anything that will entertain my viewers/subscribers are my priorities.\\n\\nFor any invites you may email me at \\nlabidubs@gmail.com\\n\\nTwitter Account : ph_rider\\nInstagram.          : Rider.ph\\nFacebook Page. : Rider.ph\\nOfficial Facebook : Jojo Ramos',\n",
       "  243000,\n",
       "  105144666,\n",
       "  6815,\n",
       "  'PH',\n",
       "  'https://www.youtube.com/watch?v=ICv4KXlarlI',\n",
       "  'Catriona Gray REACTIONS on MATTHAIOS Song titled CATRIONA',\n",
       "  'Catriona Gray REACTIONS on MATTHAIOS Song titled CATRIONA\\n#CatrionaGray\\n#Matthaios\\n#MissUniverse2018\\n#BeautyQueen\\n#Rapper',\n",
       "  '2020-01-08T06:37:08.000Z',\n",
       "  1586867,\n",
       "  23418.0,\n",
       "  755.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCLhcQ0bBZTLipRJ7D42Riow',\n",
       "  'nikpopovic16@gmail.com',\n",
       "  '@nik.nocturnal',\n",
       "  nan,\n",
       "  '@nik.nocturnal',\n",
       "  'Solo artist from Toronto, ON. I love creating instrumental metal music and covering amazing tracks from some of the greatest bands of my time.\\n\\nFor lessons, guest work, or general inquiries please email: Nikpopovic16@gmail.com\\n\\nFacebook: https://www.facebook.com/NikNocturnal\\nPatreon: https://www.patreon.com/NikNocturnal\\nInstagram: https://www.instagram.com/nik.nocturnal/\\nTwitter: https://twitter.com/NikNocturnal',\n",
       "  239000,\n",
       "  33547078,\n",
       "  827,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=l3BpkoUg050',\n",
       "  '10 Types of Metal Reaction Videos',\n",
       "  'Subscribe For More Content! ► http://bit.ly/2nrb7a5\\n\\nSupport The Channel 🙏\\n• Patreon ► https://www.patreon.com/NikNocturnal\\n• Merch ► https://teespring.com/stores/nik-nocturnal\\n\\nFollow Me On My Socials 📱\\n• Instagram: https://www.instagram.com/nik.nocturnal/\\n• Facebook: https://www.facebook.com/NikNocturnal\\n• Spotify: https://open.spotify.com/artist/1Gc5ZiJhqjQQcfvMTSCa3q\\n\\nGear I Used 🎸\\nUR22MKII USB Interface https://amzn.to/2WqXOI2\\nShure SM57 Mic https://amzn.to/2WrwGIU\\nKRK Rokit 5 https://amzn.to/2Mo8T8b\\n\\n———————————————————\\n#Metal #Music #Reaction',\n",
       "  '2020-01-14T01:50:22.000Z',\n",
       "  49550,\n",
       "  4583.0,\n",
       "  553.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCgLNX3FxUfgKy2gKh19fZkQ',\n",
       "  'ubunifuspace@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Made up of two teams.\\n\\nBased in London, UK & Nairobi, Kenya\\n\\nThe space is a digital space where we showcase & share the different sounds & creative arts of young Africans from within the African continent & also in diaspora.\\n\\nWe also aim to help build and  create links for Africans from across the continent and the world to come connect share ideas and create new ideas!\\n\\nDone by Africans for Africans!\\n\\nBusiness Enquires: Ubunifuspace@gmail.com\\n\\n\\n( All social media accounts links can be found in the bottom right corner of our you tube page banner which is found at the top of this page )',\n",
       "  233000,\n",
       "  36955260,\n",
       "  315,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=745BJPSITMw',\n",
       "  'Gambi - Hé oh (REACTION VIDEO) || @gambinojetski @Ubunifuspace',\n",
       "  \"The Ubunifu team back again with another reaction video!\\nThis is our reaction to a French: Gambi - Hé oh\\n🔴 Subscribe to our YouTube Channel & Press that Notification Bell 🔔 to be notified as soon as we upload!\\n🔴 Follow our socials & music playlists curated by us here: https://linktr.ee/theubunifuspace 🔴\\n\\n***********************************************************************\\n\\nSubscribe to our channel for more reaction Video's Every week! \\n\\nIntro Vid: MHD - Roger Milla Instrumental\\n\\nOriginal Video: Gambi - Hé oh - https://youtu.be/xSHGzO4FzBA\\n***********************************************************************\\n\\nApple Music: https://itunes.apple.com/profile/TheUbunifuSpace …\\n\\nSpotify: https://goo.gl/hfMnFY \\n\\n***********************************************************************\\n\\nFollow us one Facebook / Twitter / Instagram / Snapchat; Link below\\n\\nLinks; https://linktr.ee/theubunifuspace\\n\\nFacebook - The Ubunifu Space\\n\\nTwitter - https://twitter.com/UbunifuSpace\\n\\nInstagram - @theubunifuspace\\n\\nSnapchat - theubunifuspace\",\n",
       "  '2020-01-27T21:00:01.000Z',\n",
       "  125490,\n",
       "  2332.0,\n",
       "  183.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCJHCKETd4_zhx3w0NrJdx6Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Welcome to the Official YouTube Channel of Color Frames! Simply Indian's Hottest and leading Media and Entertainment Company.\\n\\nFollow Color Frames Channel for Exclusive Celebrity Interview, Tollywood News, Bollywood News, Entertainment News, Breaking News, Sports Coverage, Science & Technology related news and much more in short and crispy manner!\\n\\nDo follow and stay connected with us!!!\\n\\n►Subscribe: https://www.youtube.com/colorframes\\n\\n►Facebook: https://www.facebook.com/colorframesofficial\\n\\n►Twitter: https://twitter.com/colorframesind\\n\\n►Instagram: https://www.instagram.com/colorframesofficial\\n\\n►Latest News & Reviews: https://www.colorframes.com\",\n",
       "  232000,\n",
       "  67143327,\n",
       "  2870,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=D_HJLWWujkA',\n",
       "  'Ala Vaikunthapurramuloo  Butta Bomma Video Song Review | Bunny | బుట్ట బొమ్మ సాంగ్ | Color Frames',\n",
       "  \"Ala Vaikunthapurramuloo  Butta Bomma Video Song Review | Bunny | బుట్ట బొమ్మ సాంగ్ | Color Frames\\n\\n#AlaVaikunthapurramuloo #ButtaBommaVideoSong #colorframes\\n\\nWelcome to the Official YouTube Channel of Color Frames! Simply Indian's Hottest and leading Media and Entertainment Company.\\r\\n\\r\\nFollow Color Frames Channel for Exclusive Celebrity Interview, Tollywood News, Bollywood News, Entertainment News, Breaking News, Sports Coverage, Science & Technology related news and much more in short and crispy manner!\\r\\n\\r\\nDo follow and stay connected with us!!!\\r\\n\\r\\n►Subscribe: https://www.youtube.com/colorframes\\r\\n\\r\\n►Facebook: https://www.facebook.com/colorframesofficial\\r\\n\\r\\n►Twitter: https://twitter.com/colorframesind\\r\\n\\r\\n►Instagram: https://www.instagram.com/colorframesofficial\\r\\n\\r\\n►Latest News & Reviews: https://www.colorframes.com\\r\\n\\r\\nThank You For Watching.\",\n",
       "  '2020-01-08T15:30:00.000Z',\n",
       "  554549,\n",
       "  2561.0,\n",
       "  55.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCuTZwiTkJHBuv70CWTajjcw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@fannix.youtube',\n",
       "  '~ リアクション動画 - Reaction Video ~\\n\\nI am a music- & videoproducer. On this channel I want to spread my love for japanese music and videography.\\nHave fun, be respectful and stay awesome~\\n\\n\\nFor business purposes please use the e-mail adress below.',\n",
       "  223000,\n",
       "  30120059,\n",
       "  168,\n",
       "  'JP',\n",
       "  'https://www.youtube.com/watch?v=17YolNgq0Jo',\n",
       "  'LiSA - 紅蓮華 / THE FIRST TAKE • リアクション動画 • Reaction Video | FANNIX',\n",
       "  '🌈 ▬▬ SNS ▬▬ 🌈\\n➤ https://www.instagram.com/fannix.youtube/?hl=de\\n➤ https://twitter.com/fannixmusic?lang=de\\n▬▬ ▬▬ ▬▬ ▬▬\\n\\nこんばんは~! 🌙 今年は私にとって非常に大切な年でした。 1年前は2万人でした。でも今、私たちは150,000人を超えています。皆さんからの非常に多くの愛とサポートを感じ、感謝しています！いつも僕のビデオを見て、美しいコメントを投稿してくれてありがとう！僕も皆さんのためにより多くのビデオを作るため、一生懸命働き続けます！素敵な1年を過ごされたことを願っています！もちろん、悪いことやイイことがあり、完璧な年はありません。私もそうではありませんでした。それが人生。だから、浮き沈みに感謝できることを願っています。ダウンから学び、アップを誇りに思う。健康に問題がなければ、同様に感謝してください。健康であることは私たちのほとんどに共通していますが、非常に貴重なものです。健康問題に苦しんでいるすべての方へ：戦い続けてください！来年も最高な年であるように！！これを読んでくれてありがとう、そしてまたお会いしましょう！ハッピーニューイヤー〜!! ✨💚✨\\n\\n▬▬ ▬▬ ▬▬ ▬▬\\n\\nLiSA - 紅蓮華 / THE FIRST TAKE • リアクション動画 • Reaction Video | FANNIX',\n",
       "  '2020-01-01T14:00:38.000Z',\n",
       "  1160319,\n",
       "  17680.0,\n",
       "  1999.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCalSiE2uU0gUBt0D05sHG2Q',\n",
       "  'illumigirl99@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  '@itssshikha',\n",
       "  \"Hey my viewers I'm shikha and welcome to my channel.\\n\\nIllumigirl❤\\nIllumi Girl\\nFor Business enquiries only : \\nillumigirl99@gmail.com \\n-Not managing by me\\n-Don't email us for requests or anything\",\n",
       "  206000,\n",
       "  24748707,\n",
       "  282,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=A4S9nib5IHU',\n",
       "  'EMIWAY - FIRSE MACHAYENGE (OFFICIAL MUSIC VIDEO) | REACTION BY ILLUMI GIRL',\n",
       "  'Emiway - Firse Machayenge (Official Music Video) Reaction By Illumi Girl\\n#emiway #firsemachayenge #illumigirl\\n\\n_________________________\\n\\nFollow me on - \\n\\nInstagram - https://www.instagram.com/itssshikha/?hl=en\\nTwitter- https://twitter.com/IllumiGirl?s=09\\nFacebook - https://m.facebook.com/illumigirl/?ref=bookmarks\\n_____________________________\\n\\n_____________________________\\n\\n\\n\\nCopyright Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-02-16T16:42:45.000Z',\n",
       "  236898,\n",
       "  13572.0,\n",
       "  565.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCmv3MrWYx6Z7tCvT73-19hg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'HELLO EVERYONE!!!  I AM MAKING MASHUPS AND MONTAGES FOR YOU TO WATCH AND REACT!!!\\n\\nMy Gaming Channel: https://www.youtube.com/channel/UCg2c7yGgQ-tbhCCl3KXHuxA\\nMy Discord Server:  https://discord.gg/SzP9Vmf (I hope I did it right)',\n",
       "  201000,\n",
       "  83011783,\n",
       "  734,\n",
       "  'RU',\n",
       "  'https://www.youtube.com/watch?v=MyUlo6nEB3Y',\n",
       "  '\"Don\\'t Forget\" Minecraft FNAF Animation Music Video (Song by TryHardNinja) [REACTION MASH-UP]#651',\n",
       "  \"My Twitter: https://twitter.com/Link0217\\nMy Discord: https://discord.gg/SzP9Vmf\\n\\n========\\n\\nMy Gaming Channel (FeDlink): https://www.youtube.com/channel/UCPiX...\\nMy 3rd Channel (Gaming Reactions): https://www.youtube.com/channel/UCiS4...\\n\\nSUGGEST YOUR IDEAS (and reactors) IN THE COMMENTS DOWN BELOW!!!\\nNO SPAMMING AND SWEARING!!!\\nALSO RING A BELL FOR GET NOTIFIED ABOUT THE LATEST VIDS!!!\\n\\n========\\n\\nOriginal link (ZAMination Productions): https://www.youtube.com/watch?v=9K-bEFA_0iA\\n\\nMASH-UPS: https://www.youtube.com/playlist?list...\\nVocal Cover MASH-UPS: https://www.youtube.com/playlist?list...\\nMASH-UPS (Season 2): https://www.youtube.com/watch?v=rcZeo...\\nMASH-UPS (Season 3): https://www.youtube.com/watch?v=t432i...\\nMASH-UPS (Season 4): https://www.youtube.com/watch?v=spl-v...\\nMASH-UPS (Season 5): https://www.youtube.com/watch?v=dulNj...\\nMASH-UPS (Season 6): https://www.youtube.com/playlist?list...\\nMASH-UPS (Season 7): https://www.youtube.com/playlist?list...\\nMASH-UPS (Season 8): https://www.youtube.com/playlist?list...\\nMASH-UPS (Season 9): https://www.youtube.com/playlist?list...\\nMASH-UPS (Season 10): https://www.youtube.com/playlist?list...\\nMASH-UPS (Season 11): https://www.youtube.com/playlist?list...\\nMASH-UPS (Season 12): https://www.youtube.com/playlist?list...\\n\\n========\\n\\nPeople reacted to this:\\n\\nVaporTheGamer: https://www.youtube.com/watch?v=_f7xqPGF_kc&t=49s\\nSkychrew: https://www.youtube.com/watch?v=HcizEvw96oA&t=137s\\nJGReactor: https://www.youtube.com/watch?v=jbWWLYJO0wM\\nTGN's Studio: https://www.youtube.com/watch?v=eYcsTN4NXqk\\nMaster Delta: https://www.youtube.com/watch?v=8-Pt5Xr3sSw&t=3s\\nLaughter Dawg: https://www.youtube.com/watch?v=hVVDn7ceCf0\\nJose Gaming PH: https://www.youtube.com/watch?v=t075dXF_E4w\\nMMEYC (McMiner's Epic YouTube Channel): https://www.youtube.com/watch?v=YeLk_bBf7hMhttps://www.youtube.com/watch?v=YeLk_bBf7hM\\nFeDlink: https://www.youtube.com/watch?v=PgnTJAEjlP0&t=215s\\nLandFox Reacion Time: https://www.youtube.com/watch?v=qF2d9V8YCsc\",\n",
       "  '2020-03-30T21:00:12.000Z',\n",
       "  882139,\n",
       "  14544.0,\n",
       "  426.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCEcqr9Hm-LEios9gBNqonZw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'dezzymarch@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  201000,\n",
       "  47406761,\n",
       "  651,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=3xxbse8rIW4',\n",
       "  \"(여자)아이들((G)I-DLE) - 'Oh my god' Official Music Video REACTION\",\n",
       "  '(여자)아이들((G)I-DLE) - \\'Oh my god\\' Official Music Video REACTION #여자아이들 #GIDLE #OhMyGod\\n\\nHimalaya \"In My Feels\" Podcast Link: https://www.himalaya.com/music-podcasts/in-my-feels-with-jre-and-emily-haydel-1490709\\nHimalaya Premium member: Use promo code: \" Hi- mPPR7\" for FREE MONTH!\\nSpotify \"In My Feels\" Podcast Link: https://open.spotify.com/show/01EubdU0K799MhG73LVmIl\\nApple \"In My Feels\" Podcast Link: https://podcasts.apple.com/us/podcast/in-my-feels-with-jre-and-emily-haydel/id1486674745\\n\\nWays To Support The Channel!\\n- Patreon • https://patreon.com/dezzymarch\\n- Donations • https://paypal.me/DezzyMarch?locale.x=en_US\\n- Merch • https://teespring.com/stores/intellectual-mall\\n\\nFOLLOW YA BOY ON THE SOCIAL MEDIAS!\\nInstagram • https://www.instagram.com/dezzymarch\\nTwitter • https://twitter.com/dezzymarch\\n\\nWatch The Original Video • https://www.youtube.com/watch?v=om3n2ni8luE\\nMy Intro Song • https://www.youtube.com/watch?v=tXj_Viuvcrc\\n\\n* For All Business Inquiries: DezzyMarch@gmail.com *\\n\\nI love you, all y\\'all. Make sure you drink water, preferably alkaline water, eat fruits & veggies, but also stay positive & read you a book. For real tho.. DRINK WATER',\n",
       "  '2020-04-06T11:29:38.000Z',\n",
       "  136631,\n",
       "  7965.0,\n",
       "  463.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCO54iyC3IXVDRG_QBgfb8wg',\n",
       "  'bvelez1994@live.com',\n",
       "  nan,\n",
       "  'bvelez1994@live.com',\n",
       "  '@bvelezmusic',\n",
       "  'Obsessed with the 🌎\\n\\n✖This Channel is also managed by a Latvian, Kintija. (Film Producer/Editor) ✖\\n\\nTwitter: @BrianVelez1994\\n\\nPersonal Inquiries: BVelez1994@live.com\\n\\nFacebook Page: www.facebook.com/bvelezmusic\\n\\nInstagram: @BVelezMusic\\n\\n▬▬▬\\nWant to send us a letter?\\n\\nBrian Velez \\nPO Box# 23581\\nOakland Park, FL, 33307\\n\\nWant to send us a package?\\n3350 NE 12th Avenue,\\nOakland Park, FL, 33307\\nPO Box# 23581',\n",
       "  193000,\n",
       "  32534058,\n",
       "  369,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=kFY278ZOTLs',\n",
       "  'Romanian Music 6 REACTION',\n",
       "  \"Over 1 year already of us sharing music back and forth, yet there is still so much to cover! I'm excited to check out more musicians coming out of Romania. All that is missing at this point is to actually go and visit the country! Slap that 'like' button to show your support! \\n\\nHelp us continue doing, what we do! \\nhttps://www.patreon.com/BVelez\\n\\nThank you to Kintija for editing this video! (Latvian Youtuber)\\nhttps://www.youtube.com/channel/UCpqVPpAGamLJSyb8Xsj80iQ\\n\\nI ATTEMPT TO SPEAK ROMANIAN \\nhttps://www.youtube.com/watch?v=BBYGsZ11Rvc\\n\\nMusicians Mentioned: \\n-Carlas Dream Ft. Delia \\n-Connect-R ft. Shift \\n-Lino Golden ft. Aspy\\n-Smiley \\n▬▬▬\\nPersonal Social Media Pages!\\n\\nInstagram: \\nhttps://www.instagram.com/bvelezmusic/\\n\\nFacebook Page:\\nhttps://www.facebook.com/BVelezmusic/\\n\\nTwitter: \\nhttps://twitter.com/BrianVelez1994\\n\\nBusiness Inquires: \\nbvelez1994@live.com\\n\\n▬▬▬\\nWant to send us a letter?\\n\\nBrian Velez \\nPO Box# 23581\\nOakland Park, FL, 33307\\n\\nWant to send us a package?\\n3350 NE 12th Avenue,\\nOakland Park, FL, 33307 \\nPO Box# 23581\",\n",
       "  '2020-01-27T05:02:03.000Z',\n",
       "  123499,\n",
       "  9078.0,\n",
       "  1954.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCfkVJtpCaVD3nchndm8j5uQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@meami_ami',\n",
       "  \"Music,Anime,Friends,Family & Gamez=life. A lil bit of me with a lil bit of everything\\n\\nEveryone on the road to 10k subs meanwhile im just trying to get 10k views\\n(okay okay i got more then 10k views but still not a believer)\\nWell i guess the people shut me up 2 1/2 month and we at 10k (shrug)\\n\\n500 subs!    2/9/16 .. (btmsbasketball)\\n1000 subs!  2/15/16..(Jeremy Midvidy)\\n1500 subs!  2/15/16..(Unknown)\\n2000 subs!  2/17/16.. ( apparently doesn't tell me when you guys sub me anymore :/)\\n6000 subs!  3/15/16 (Brian smith)\\n10,000 subs!!!!!!!!! 4/15/16 (Primetime404)\\n15,000 subs! 5/18/16\\n20,000 subs! 6/23/16\\n30,000 subs! 7/27/16\\n100,000 subs! 10/31/17\",\n",
       "  189000,\n",
       "  43884446,\n",
       "  733,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=JXRAZkQ9MiM',\n",
       "  'Pop Smoke - First REACTION/REVIEW',\n",
       "  'My Merch!\\nhttps://www.niicethings.co/merch\\n\\nMY PATREON:\\nhttps://www.patreon.com/Meami\\n\\nYour Boy Is Sponsored By EwinRacing Chairs!\\nhttp://bit.ly/2W9oA7G and code \"Meami\" for 20% off!\\n\\nIntro: Check out the homies for all the dope game samples\\njtbs-\\nhttps://www.youtube.com/channel/UCVpI...\\nRaisi K- \\nhttps://www.youtube.com/user/RaisiM1222\\n\\nAfter initially not liking Gatti i decided to give Pop Smoke the first listen after all you guys asked me to dig deeper into his catalog. New York drill is what you guys stated his genre is so let\\'s just see what he has in store for me. Enjoy! \\n\\nFollow meh on all my socialz! \\n\\nInsta: https://www.instagram.com/meami_ami/\\nTwitter: https://twitter.com/Meami_Ami\\n2nd Twitter: https://twitter.com/MeamdaPanda\\nTwitch: http://www.twitch.tv/Meami_ami/profile\\nSnapchat: Meami_ami\\nFacebook : Meami',\n",
       "  '2020-02-18T17:59:19.000Z',\n",
       "  74664,\n",
       "  3173.0,\n",
       "  865.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCSLjDwWK2AoL8MUOSkoSnVg',\n",
       "  nan,\n",
       "  nan,\n",
       "  'brandaireyt@gmail.com',\n",
       "  nan,\n",
       "  'you might know me as Hacuracy or Bangtan Brandon.. or Kbrandon... or just brandon... or even branuwu... who knows.\\nI make videos and stream sometimes ｡◕‿‿◕｡',\n",
       "  185000,\n",
       "  24880483,\n",
       "  716,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=bdQg2mqTZ6g',\n",
       "  \"OH MY... / LILI's FILM #3 - LISA Dance Performance Video REACTION!!\",\n",
       "  \"this is the hottest dance video ive EVER seen... lisa will u marry me?\\nthis is my reaction to LILI's FILM #3 - LISA Dance Performance Video\\noriginal video: https://www.youtube.com/watch?v=je_R3gEtDbw\\n\\nMake sure to hit the subscribe button and turn on post notifications! \\n🚶 Follow me for unfunny tweets and cute pictures of myself\\nTWITTER | https://www.Twitter.com/uwubran\\n INSTAGRAM | https://www.Instagram.com/uwubran\\nTIKTOK | https://www.tiktok.com/@branuwu\\n\\n😳join me on twitch for some fun livestreams!\\nhttps://www.twitch.tv/uwubran\\n\\n👪Join the Blushie Discord for monthly votes and chill talks!!\\nhttps://discord.gg/UWkxHnz\\n\\n\\n\\n💸 Support the channel financially with patreon!\\nhttps://www.patreon.com/branuwu\\n\\nWatch some other videos of mine: https://www.youtube.com/playlist?list=PLSlTM1uETSzigN-RLda7AShvcbygDxzu-\\n                                                                                                                                                                                                                                                                                                                                                \\n Business Email ► BrandaireYT@gmail.com\\n\\nFilmed by Anthony King\\n\\nChoreography by Cheshir Ha\\n\\nMusic by QUIN, 6LACK - Mushroom Chocolate\\n#lilifilm #lilifilm3 #LisaDancePerformanceVideo\\n\\nTAGS\\nlisa,lilifilm,lilis film #3 - lisa dance performance video,lilifilm dance 3,lilis film #3 - blackpink in california,lilifilm 3 reaction,LILI's FILM #3 - LISA Dance Performance Video,LILI's FILM #3 - LISA Dance Performance Video reaction,lilifilm reaction 3,lilifilm mv reaction,lilis film,blackpink lisa,lisa dance,lilifilm reaction,lalisa manoban,lisa dance reaction,dance performance video,lisa dance performance video,lisa dance performance\",\n",
       "  '2020-04-20T11:16:52.000Z',\n",
       "  401678,\n",
       "  27761.0,\n",
       "  1128.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCDdw6n7EOZp4HAZqc1wO6nw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'joeydaprincemusic@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  184000,\n",
       "  34120679,\n",
       "  1381,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=7Vtda8-SXL8',\n",
       "  'Roddy Ricch - The Box [Official Music Video] - REACTION',\n",
       "  'Original Video LINK: \\r\\nRoddy Ricch - The Box [Official Music Video] - REACTION\\n\\nBusiness Email: JoeyDaPrinceMusic@gmail.com\\r\\n\\r\\nDaily Uploads: 1pm - 2pm - 3pm - 4pm - 5pm Central Time\\r\\n\\r\\nHashtags: #RoddyRicch #TheBox #TheBoxChallenge',\n",
       "  '2020-02-28T23:29:31.000Z',\n",
       "  126568,\n",
       "  2174.0,\n",
       "  113.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCSxgptIiBT3jv1k2LLoPizw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Perfecto De Castro's Official YouTube Channel hosting Guitar and Music Lessons, Gear Demos, Tour VLOGs and Video Performances.\",\n",
       "  179000,\n",
       "  13266047,\n",
       "  523,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=GT7BchLD9Mw',\n",
       "  '\"Lakas\" - COLN feat. Dale Jarius | Tagalog REACTION VIDEO (no subtitles)',\n",
       "  'BUY my Guitar Solo TABS and MP3 Backing tracks here: https://perfectodecastro.com/store \\n\\n***BUY #PracticeMakesPerfecto Shirts***\\n\\nPHILIPPINES: http://shirtly.ph/perfdecastro\\nINTERNATIONAL MERCH: http://perfectodecastro.threadless.com \\n\\n***ALL THE STUFF I USE ON AMAZON (AFFILIATE LINK) ***\\nhttps://www.amazon.com/shop/perfektus\\n\\n***STUFF I USE ON SWEETWATER (AFFILIATE LINKS)***\\nHeadrush Gigboard: https://imp.i114863.net/6Z603\\nHeadrush FRFR108: https://imp.i114863.net/Dx69q\\nHeadrush Expression Pedal: https://imp.i114863.net/vdKeN \\nMacbook Pro: https://imp.i114863.net/e70yZ\\nYeticaster: https://imp.i114863.net/PGQJq\\nRode Wireless Go: https://imp.i114863.net/ZWGnW \\nPRS Sonzera 50: https://imp.i114863.net/zdKZ7\\nEventide H9 Max: https://imp.i114863.net/Nax1N \\nEventide Rose: https://imp.i114863.net/6Z633\\n\\nSWEETWATER DEALS!\\nHot new Products: https://imp.i114863.net/c/2224689/797138/11319\\nMonthly Giveaway: https://imp.i114863.net/c/2224689/797134/11319\\nDeal Zone: https://imp.i114863.net/c/2224689/796914/11319\\n\\nBUY Mee Audio MX3Pro In-Ear Monitors and use Coupon Code PERFECTO for 10% discount: http://pro.meeaudio.com\\n\\nRelease your music with DISTROKID! Use VIP Discount Link: http://distrokid.com/vip/perfecto\\n\\nPayPal donations here: https://www.paypal.me/perfectodecastro\\n\\nSubscribe here: http://www.youtube.com/subscription_center?add_user=perfektus\\n\\nhttp://www.perfectodecastro.com\\nhttps://twitter.com/perfdecastro\\nhttps://www.facebook.com/perfecto10string\\nhttps://soundcloud.com/perfecto-de-castro\\nhttp://www.cdbaby.com/Artist/PerfectoDeCastro\\nINSTAGRAM: @perfdecastro',\n",
       "  '2020-03-18T07:00:09.000Z',\n",
       "  156902,\n",
       "  16136.0,\n",
       "  780.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCgJzIBgq46e-_-x-oXZZ3cQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  179000,\n",
       "  18608021,\n",
       "  118,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=A-CeYnBzbW0',\n",
       "  'Roddy Ricch - The Box [Official Music Video] - REACTION',\n",
       "  'Reacting to Roddy Ricch the box music video\\n\\nFollow me on instagram @girlhefunnyaf44',\n",
       "  '2020-03-01T06:02:25.000Z',\n",
       "  124017,\n",
       "  9347.0,\n",
       "  1196.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCowvC34OgaJC34xtjhdcSTg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hosted by Ken Lee. I love doing reviews and reaction to movies, music, food, tech and more. My goal of this channel is make you smile for a few brief minutes of your day. I want to show the world that a nice guy can actually succeed on YouTube and in the social media world. This world has too much negativity in it, so let's make something positive here together. \\n\\nThis channel is yours as much as it is mine. I react to your suggestions and then we discuss it. So if you like the idea of guiding where this channel will go, please subscribe. \\n\\nAlso, I'm a proud father of two special needs boys, Jonah and Connor who have their own channel - JCTV Our Family Adventure. Please support them!!!\\n\\nJoin me on Social Media for more tips, tech talk etc. \\n\\nTwitter/Instagram - @therealdadsden\",\n",
       "  175000,\n",
       "  24868030,\n",
       "  790,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=dj-_xd_S33g',\n",
       "  'Chill Bro Video Song Reaction | Dhanush | SO MUCH FUN',\n",
       "  'Thank you for watching Chill Bro Video Song reaction featuring Dhanush from the movie Pattas. \\n\\nTHALA LEVEL PATRONS - Karthik R, SRIRAM BHARADWAJ, RP & Diro Deva\\nBE A PATRON HERE - https://www.patreon.com/dadsden\\n\\nOriginal Video here - https://youtu.be/pHxz8l1iWU4\\n\\nSUPPORT MY OTHER CHANNELS\\n\\nDad\\'s Den Tech Reviews - https://bit.ly/2Zzv5xO\\nMy Family Vlog Channel - https://bit.ly/31JFJ72\\n\\nMy name is Ken and I LOVE Movies, Music, Tech and Sports! I also LOVE doing REACTION videos and tech reviews. I am married to my beautiful wife Suzie and we have two amazing boys named Jonah and Connor. Together we have a family vlog called JCTV Family Vlog.\\n\\nWhy should you keep watching?\\n\\nI CONSIDER ALL MY SUBSCRIBERS FAMILY. I love talking to all my subscribers as they help me learn, grow and understand more about South Asia and India.  \\n\\nSocial Media:\\nIG - www.instagram.com/therealdadsden\\nFacebook - www.facebook.com/therealdadsden\\nTwitter - www.twitter.com/therealdadsden\\n\\nGear used to Film:\\n\\nCanon SL2 Camera: https://amzn.to/2J5aivo\\nLighting Equipment - https://amzn.to/2RxVeu0\\n3-Axis Gimbal: https://amzn.to/2CDBZty\\nMacBook Pro for Editing - https://amzn.to/2EHdGO7\\nMicrophone Used - https://amzn.to/2XKATo0\\nGreen Screen - https://amzn.to/2XJ6HK0\\n\\nDisclaimer: No Copyright intended in this video. All rights belong to the rightful owner\\n\\n\"Copyright Disclaimer, Under Section 107 of the Copyright Act 1976, allowance is made for \\'fair use\\' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\"',\n",
       "  '2020-01-27T11:30:00.000Z',\n",
       "  71827,\n",
       "  4079.0,\n",
       "  362.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC7-L72YPAW7UcpBMNb69w5g',\n",
       "  nan,\n",
       "  nan,\n",
       "  'super.shey@yahoo.com',\n",
       "  '@supersheybaby',\n",
       "  'Singer,dancer,DJ,',\n",
       "  175000,\n",
       "  9038898,\n",
       "  128,\n",
       "  'PH',\n",
       "  'https://www.youtube.com/watch?v=Q3lPVaUIacY',\n",
       "  'Araw araw Love - Flow G SUPERSHEY REACTION',\n",
       "  'Araw araw Love - Flow G SUPERSHEY REACTION\\n\\nORIGINAL VIDEO:Araw araw Love - Flow G\\nhttps://www.youtube.com/watch?v=zj-cLpCdWaM\\n\\nNO COPYRIGHT INFRINGEMENT INTENDED \\n\\nOfficial Social Media accounts\\nfacebook:@SUPERSHEY\\nhttps://www.facebook.com/SUPERSHEYBABY/\\nInstagram:@SUPERSHEY\\nhttps://www.instagram.com/supersheybaby/\\nTwitter : @SUPERSHEYBABYhttps://twitter.com/sheyhero\\n\\nEmail:super.shey@yahoo.com\\n\\nINTRO:Maggie Lindemann - Pretty Girl (Cheat Codes x Cade Remix)\\nhttps://www.youtube.com/watch?v=RhkgE...\\n\\nOUTRO:Raven & Kreyn - So Happy [NCS Official Video]\\nhttps://www.youtube.com/watch?v=cmVdg...\\n\\nMUSIC:Sneaky Snitch - Kevin MacLeod\\nhttps://www.youtube.com/watch?v=7-rXQ...\\n\\nFUNNY VIDEOS:\\nJOJOWAIN O TOTROPAHIN CHALLENGE (MALUPET TO)\\nhttps://www.youtube.com/watch?v=0eMlp...\\n\\nReaction Videos: Pakinabang - Ex Battalion (Official Music Video)REACTIONhttps://www.youtube.com/watch?v=p9HiI...\\nCategory\\nPeople & Blogs',\n",
       "  '2020-02-07T09:13:44.000Z',\n",
       "  636859,\n",
       "  17928.0,\n",
       "  1238.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCNfFcrKoCMvZLoWcNGMcoXQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to Frankenstein’s Lab!  Here you will find funny reactions to movie trailers, music videos, sports, tv shows, and everything in between. Thank you for joining me Frankenstein and my cousin Rondo on this journey to 100,000 subscribers. Please leave comments and suggestions for what you would like us to react to.Thank You Enjoy!',\n",
       "  172000,\n",
       "  62226863,\n",
       "  859,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=LqZWsbyp2fE',\n",
       "  'The Black People Song Reaction',\n",
       "  'Frankenstein’s Lab IG Fan Page https://instagram.com/frank3nst3ins_labfanpage?igshid=1i7v0w3x3ler1.                                                                                     Frankenstein’s Lab Merch https://teespring.com/frankenstein-s-september-2019?pid=227',\n",
       "  '2020-01-20T22:50:56.000Z',\n",
       "  166987,\n",
       "  5423.0,\n",
       "  684.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCuBgQMllxvxKLuABHZlV5KA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'rell.deotv@gmail.com',\n",
       "  '@rell.deotv',\n",
       "  \"Rell & Deo reacts to some of the most amazing trending music videos and performances.  You'll hear almost every genre: rock, soul, gospel, classical - you name it!  Enjoy the content and don't forget to subscribe! :)\",\n",
       "  171000,\n",
       "  19399111,\n",
       "  359,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=1xM9k49cPWo',\n",
       "  '🇵🇭🇺🇸WHO SANG \"DA COCONUT NUT\" SONG BETTER?! | FILIPINOS VS. AMERICANS | REACTION',\n",
       "  '⚫WHO SANG \"DA COCONUT NUT\" SONG BETTER?! | FILIPINOS VS. AMERICANS | REACTION\\n⚫HELP US REACH 200,000 SUBSCRIBERS!!!\\n⚫Follow us on IG: https://www.instagram.com/rell.deotv/ \\n⚫Be sure to subscribe for MORE REACTION VIDEOS!!!\\n⚫Like & Comment and DEFINITELY give us suggestions as to what we should react to NEXT!\\n\\nIf you would like us to shout you out, follow these 4 steps:\\n-Like this video\\n-Subscribe to our channel\\n-Follow us on Facebook: https://www.facebook.com/rellxdeoreact/\\n-Send us a message on Facebook and say SHOUT OUT!\\n\\nFor business inquiries, please email rell.deotv@gmail.com\\n\\n*No copyright infringement intended. Posted for entertainment purposes only.\\n\\n#DaCoconutNut #PhilippineMadrigalSingers #BaylorUniversityMensChoir',\n",
       "  '2020-02-14T06:04:22.000Z',\n",
       "  92869,\n",
       "  2731.0,\n",
       "  203.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UClr3yuRZJAuanlZfon50kMQ',\n",
       "  'realschuks@gmail.com',\n",
       "  nan,\n",
       "  'realschuks@gmail.com',\n",
       "  '@realjgee',\n",
       "  \"Hi I'm RealGee! You can call me Real, whatever! Here you'll find awesome gaming videos, vlogs, reacting, and anything else entertaining- plus I upload every single day! If you're interested then subscribe to join RealGee!\\nI make videos, I love working out and playing video games!\\nFor Business/Integration/Promotion requests please email me: realschuks@gmail.com\",\n",
       "  170000,\n",
       "  27841045,\n",
       "  1873,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=TqFhrebj7O0',\n",
       "  'Ceza - Beatcoin [Official Music Video] TURKISH RAP | REACTION!!!',\n",
       "  \"Join RealGee Membership Perks Here: https://www.youtube.com/channel/UClr3yuRZJAuanlZfon50kMQ/join\\n\\nhttps://streamlabs.com/realjgee\\nhttps://www.paypal.me/RealGee1\\nhttps://www.tipeeestream.com/realjgee/donation\\nThanks, love you guys!\\n\\nThanks for watching! I hope you all loved it. Don't forget to SUBSCRIBE, SHARE, COMMENT, and LIKE!!!\\n\\nGT Omega have managed to make a very comfortable gaming chair that's very cheap when comparing against the competition.\\nUse this code - REALGEE\\n\\n►UK Links◄\\nGT OMEGA RACING CHAIR - UK - https://www.gtomegaracing.com//?tracking=REALGEE\\n-------------------------------------------------------------------------\\n►US Links◄\\nGT OMEGA RACING CHAIR - USA - https://usa.gtomegaracing.com//?tracking=REALGEE\\n-------------------------------------------------------------------------\\nThis Is My Reaction To Ceza - Beatcoin [Official Music Video] TURKISH RAP\\n\\nOriginal Video: https://www.youtube.com/watch?v=fGsIRIy6Jvs\\n \\n#RealGee #RealGeeTube #RealGeeVlogs \\n\\n👉↓ FOLLOW ME! ↓\\n▶️FIRST CHANNEL: https://www.youtube.com/c/RealGee1\\n▶️SECOND CHANNEL: https://www.youtube.com/channel/UC2zrYO_fElPGGdk_qvIKiiA\\n▶️THIRD CHANNEL: https://www.youtube.com/c/RealGeeVlogs\\n▶️TWITCH: https://www.twitch.tv/realjgee\\n▶️GOOGLE+: https://plus.google.com/u/0/117010169684900407648\\n▶️TWITTER: https://twitter.com/RealschuksGee\\n▶️FACEBOOK: https://www.facebook.com/RealGee8/\\n▶️INSTAGRAM: https://www.instagram.com/realjgee/ \\n▶️TURN ON NOTIFICATIONS 🔔*\\n\\nFOR BUSINESS INQUIRIES EMAIL ME: realschuks@gmail.com\",\n",
       "  '2020-01-07T18:05:44.000Z',\n",
       "  87020,\n",
       "  1936.0,\n",
       "  241.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCDf1u4zE618cbWE7Qt3eNWQ',\n",
       "  'denzandrenz@gmail.com',\n",
       "  nan,\n",
       "  'denzandrenz@gmail.com',\n",
       "  nan,\n",
       "  \"Denz & Renz \\nSo basically we're just gonna be dropping all sorts of content for you lot!\\nJoin us on this journey because....well because init LOL!\\nTHANK YOU FOR YOUR SUPPORT AND MAKE SURE YOU HIT THAT SUBSCRIBE BUTTON!!\\n\\nFOR ALL BOOKINGS & ENQUIRES PLEASE LEAVE US AN EMAIL @ denzandrenz@gmail.com \\n\\n#NoCap\\n#SoUsedToWinning\\n#UP\\n#OhLard\",\n",
       "  167000,\n",
       "  24212325,\n",
       "  419,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=0wB_nxuWScA',\n",
       "  '🧼 🧼 🧼  Chunkz X Yung Filly - Clean Up [Music Video] - REACTION ‼️',\n",
       "  'NOW THIS ONE HERE CAME OUT OF KNOW WERE AND IT WAS FIRE CHUNKZ ACTUAL SINGING ABILITY IS CRAZY AND YUNG FILLY SMASHED HIS VERSE,YOU KNOW WE LOVE THE WAVE TING AND THEY ACTUALLY EXECUTED IT TO A HIGH STANDARD SO LARGE THEM UP LET’S SEE WHAT ELSE THEY HAVE GOT UNDER THEIR SLEEVE  👀🔥🔥\\nDenz&Renz\\n\\nLINK TO ORIGINAL VIDEO: https://m.youtube.com/watch?v=L9R1Bms18K0\\n\\nSpotify Playlist - https://open.spotify.com/playlist/4kbcR5kS7ecuPutQoNTcal?si=u2fsjngXSZCpxsAoV_8qcw\\n#RoadTo500K\\n#Ohlard\\n#issawholenewwave\\n#AtYourBigAge\\nLASTLY! Like, comment & Subscribe!\\n\\n\\nWELCOME TO OUR CHANNEL!\\n\\n▶ Instagram: @OFFICIALDENZANDRENZ/DENNYDENZ/ @LORENZODJRENZ\\n▶ Twitter: @LORENZO_DJRRENZ / @DENNYDENZ/@DENZANDRENZ\\n\\n▶ SUBSCRIBE: https://www.youtube.com/channel/UC\\n\\n▶ SOUNDCLOUD: https://soundcloud.com/dj-renz93\\n\\nBusiness email: DenzAndRenz@gmail.com\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-03-08T18:22:29.000Z',\n",
       "  165978,\n",
       "  6333.0,\n",
       "  229.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCBIObHID9vYsowPtbYKVdMw',\n",
       "  'tony@prettygoodagents.com',\n",
       "  nan,\n",
       "  'becometheknight@gmail.com',\n",
       "  nan,\n",
       "  'For business inquiries: Tony@prettygoodagents.com\\n\\nBecome The Knight is a progressive metal project conceived by Michael Kupris. This channel is meant to entertain, inspire, and excite.\\n\\n2 videos a week. I talk a lot about music. And I play it every once in a while too ;)\\n\\nWanna send stuff? Send it here:\\nBecome The Knight\\nPO Box 210325\\nNashville, TN 37221',\n",
       "  162000,\n",
       "  26445596,\n",
       "  507,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=w22zfZfRf50',\n",
       "  'Puddle of Embarrassment (About a Girl fail reaction) | Mike The Music Snob',\n",
       "  \"Puddle of Mudd performed About a Girl by Nirvana on the SiriusXM channel, and it was..........not good. Here's my take.\\n\\nWes Scantlin \\n\\nFollow my band Crusade:\\nhttps://www.facebook.com/crusadenash\\nhttps://www.instagram.com/crusadenash\\nhttps://twitter.com/Crusadenash ( @Crusadenash )\\n\\nSUPPORT ME ON SUBSCRIBESTAR!!!: https://www.subscribestar.com/become-the-knight\\nBecome The Knight merch: https://teespring.com/stores/become-the-knight-merch\\nWanna TIP? I accept PayPal and bitcoin! \\nBitcoin Address: 1BBWEk7Qo8Rrm7RdRWsizVj6pRmACbPHH6\\nPayPal Email: becometheknight@gmail.com\\n\\nSupport the artist who made the new channel graphics: tapas.io/series/The-Battlers\\n\\nMIKE THE MUSIC SNOB: https://www.youtube.com/playlist?list=PLgmGgsTY8UOJB_-3k4viztGCCpoKVbxr8\\nWatch me make music on RANDOM JAMS!: https://www.youtube.com/playlist?list=PLgmGgsTY8UOJTT4Qi7eQwm_vPCEiA10gW\\n\\nInstagram: https://www.instagram.com/become_the_knight\\nFacebook: http://www.facebook.com/becometheknight\\nTwitter: http://www.twitter.com/becometheknight\\n\\nWanna send stuff? Send it here:\\nBecome The Knight\\nPO Box 210325\\nNashville, TN 37221\",\n",
       "  '2020-04-19T19:00:12.000Z',\n",
       "  55024,\n",
       "  3063.0,\n",
       "  764.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC0bVc9xu9K9oG5bYhD5SD3Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  'k1ngferg.7@gmail.com',\n",
       "  nan,\n",
       "  \"Welcome to the Official YouTube of CELLYYBO!\\n\\n📍Bay Area \\n\\nYouTuber producing quality content. Road to 100k subscribers!!\\nDon't forget to subscribe for more LIT content!\",\n",
       "  162000,\n",
       "  25347613,\n",
       "  426,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=dj9XE1-Qa1M',\n",
       "  'Roddy Ricch - The Box [Official Music Video] - REACTION',\n",
       "  'Let’s get 200,000 subs together➡️: https://bit.ly/2BWevPa\\n\\nBusiness Only: K1ngferg.7@gmail.com\\n\\nWant to support my channel? Cashapp: $cellyybo\\n\\nWant us to react to your music or music video? Email K1ngferg.7@gmail.com\\n\\nWant to have your music/music video in the beginning of our reactions? Email K1ngferg.7@gmail.com\\n\\nFollow CELLYYBO on Instagram➡️: https://bit.ly/2Ic40fX\\nFollow Trell DaDon on Instagram➡️: https://bit.ly/2EFI7SO\\nFollow Zavey on Instagram➡️: https://bit.ly/2XybY6U\\n\\n\\n\\nFair Use:  https://www.copyright.gov/fair-use/mo...\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS',\n",
       "  '2020-03-03T10:07:36.000Z',\n",
       "  150562,\n",
       "  6492.0,\n",
       "  257.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCzE-MGtRIQGir0XVi3ehoxQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Disclaimer - The views, opinions and statements expressed by the anchor, guest /participants are their alone and are not subscribed to by YouTube or White Tomato Production \\n\\n\\nsubscribe Reaction Express for latest Trailer and music Reaction videos and some entertaining videos as well.\\n\\nAND YOU CAN ALSO SUGGEST US TO REACT ON YOUR FAVORITE TRAILER , MUSIC OR ANYTHING YOU WANT .\\n\\nSO DONT FORGET TO SUBSCRIBE \\n\\nMake Love , Not War\\n\\nReaction Express\\n\\nPakistani Reaction videos,Paki Reactions,Pakistani Reacts. Pakistanis React',\n",
       "  161000,\n",
       "  44565375,\n",
       "  526,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=YY3cv44N7FI',\n",
       "  'Pakistani Reacts To | SHOOTER : Jayy Randhawa Trailer | New Punjabi Movie 2020 | Reaction Express',\n",
       "  'Credits:\\n\\nChannel Name: Geet MP3 \\n\\nChannel Link: https://www.youtube.com/channel/UClZF7OsrECe3t_ADrjZEh_Q\\n\\nVideo Title: SHOOTER : Jayy Randhawa (Trailer) Releasing 21 February 2020 | New Punjabi Movie 2020\\n\\nVideo Link: https://www.youtube.com/watch?v=HbJFQ8ViRzw\\n\\nEmail us @ : \\n\\nDisclaimer - The views, opinions and statements expressed by the anchor, guest /participants are their alone and are not subscribed to by YouTube or White Tomato Production\\n\\n\\nReaction Express 2 New Channel  : https://www.youtube.com/channel/UCcddTvWrl-bCfWiy0dAg-NQ\\n\\nPatreon Link: https://www.patreon.com/ReactionExpress\\n\\nLike Us Facebook:  https://goo.gl/xCQ5Dv\\n\\nFollow Us: https://twitter.com/ReactionExpress\\n\\ninstagram :  https://www.instagram.com/reactionepress\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.\\n\\n\\nsubscribe Reaction Express for latest Trailer and music Reaction videos and some entertaining videos as well.\\n\\nAND YOU CAN ALSO SUGGEST US TO REACT ON YOUR FAOURITE TREAILER , MUSIC OR ANYTHING YOU WANT .\\n\\nSO DONT FORGET TO SUBSCRIBE \\n\\nMake Love , Not War\\n\\nReaction Express\\n\\nThis one looks so MIGHTY!! What do you guys think?\\n\\nEnjoy what we do? Please support us by liking and subscribing!\\n\\nWe love you guys! Drop us a comment and tell us what you think!\\n\\n\\nOriginal: https://www.youtube.com/watch?v=HbJFQ8ViRzw',\n",
       "  '2020-01-29T22:15:58.000Z',\n",
       "  22984,\n",
       "  721.0,\n",
       "  119.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCCXh-Tk4K5eulQK9c0ZVrxw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome To This Channel \"Be Crazy With\" Here Is All Things Which You Want..',\n",
       "  160000,\n",
       "  32234835,\n",
       "  658,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=iX-pCVQVkHw',\n",
       "  'Sidharth Shukla and Shehnaz Gill New Song Become Blockbuster - Bhula Dunga Review.',\n",
       "  'Sidharth Shukla and Shehnaz Gill New Song Become Blockbuster - Check Out This Video \\n#SidharthShukla #ShehnazGill #SidNaaz #Biggboss13 #BhulaDunga\\n\\n\\nMusic :-\\n-----------------\\nBackground  Credit :- \\nAdventures by A Himitsu https://soundcloud.com/a-himitsu Creative Commons — Attribution 3.0 Unported— CC BY 3.0 http://creativecommons.org/licenses/b... Music released by Argofox https://youtu.be/8BXNwnxaVQE Music provided by Audio Library https://youtu.be/MkNeIUgNPQ8\\n\\nIntro Video Music Credit :-\\nSalvation [Inspiring Uplifting Orchestra] by Ghostrifter Official https://soundcloud.com/ghostrifter-of...\\nCreative Commons — Attribution 3.0 Unported — CC BY 3.0 \\nFree Download / Stream: https://bit.ly/salvation_\\nMusic promoted by Audio Library https://youtu.be/b487O0qTpXo',\n",
       "  '2020-03-24T08:05:05.000Z',\n",
       "  4293,\n",
       "  358.0,\n",
       "  15.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCMJD9wZVMP8X-9pa1JxbGTw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@therealdocrich',\n",
       "  nan,\n",
       "  160000,\n",
       "  25415830,\n",
       "  2157,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=NX8mVlybQy0',\n",
       "  'Eminem - Godzilla Feat. Juice Wrld (Music To Be Murdered By Album | Reaction',\n",
       "  'Eminem Godzilla Feat Juice Wrld Music To Be Murdered By Album Reaction.\\n\\nOriginal Video: https://www.youtube.com/watch?v=nbqMIBYJlvk\\n\\nInstagram: https://www.instagram.com/therealdocrich/\\n\\nTwitch: https://www.twitch.tv/richyfit\\n\\nFollow us on twitter: https://twitter.com/therealdocrich?lang=en\\n\\nSnapchat: thegoat37\\n\\nInstagram: https://www.instagram.com/therealdocrich/\\n\\nFacebook: https://www.facebook.com/Rich-and-Kelsey-1120943214757097/\\n\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-01-17T12:44:07Z',\n",
       "  339517,\n",
       "  13375.0,\n",
       "  1002.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC4lb0YsApH03hdApNLvprow',\n",
       "  'info@danandkaz.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Strictly entertainment!! \\n\\n- Vlogs \\n- Challenges \\n- Reactions \\n- Breakdown videos\\n\\nSUBSCRIBE!!!\\n\\nJOIN THE TEAM!!! \\n\\nEmail for enquiries: Info@danandkaz.com\\n\\nSnapchat: afd14 x kazem98\\nInstagram: @dan_osi x @kazidris\\nTwitter: @osiordan x @kazidris',\n",
       "  159000,\n",
       "  26526917,\n",
       "  517,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=xl4-4vLXaSU',\n",
       "  '🧽 | Chunkz X Yung Filly - Clean Up [Music Video] - REACTION',\n",
       "  'Welcome back to another reaction video!\\n\\nChunkz x Yung Filly - Clean Up\\n\\nThis one here is a tuneee tho, one of them stuck in your head type of ones. Hear it once, sing it all day type of ones. Banger. \\n\\nLink to the original video: https://youtu.be/L9R1Bms18K0\\n\\n⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️\\n\\n‘PLAYITAGAIN’ Playlist On Spotify Now :\\nhttps://open.spotify.com/user/h9z1ml64ah673p1ysesws3uju/playlist/2ZMbtEll5b7BcewhcKpSFw?si=W6r0mdZTRl6uqhqSzyFzzw\\n\\n⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️⬆️\\n\\nOUTRO - https://soundcloud.com/straight3/romyjo-x-rushy-truth\\n\\nAlso if you guys would like us to do more challenges/vlogs please comment down below!\\n\\nFOLLOW OUR SOCIALS FOR SOME BEHIND THE SCENES CONTENT!!!\\n\\nINSTA 📸 : - @dan_osi - @kazidris \\nSNAPCHAT 👻 : - @ afd14 - @kazem98 \\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-03-08T18:21:19.000Z',\n",
       "  137058,\n",
       "  5905.0,\n",
       "  417.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCZCMPuY9tJSXrWW12EyO99A',\n",
       "  nan,\n",
       "  '@dan_alexandrov',\n",
       "  nan,\n",
       "  '@dan_alexandrov',\n",
       "  \"Hi guys! I'm Dan and if you like music there is a big chance for us to become friends...well...everybody likes music....so I guess we all can become friends...right? \\n\\n My social-media:\\nInstagram: https://www.instagram.com/dan_alexandrov/\\nFacebook: https://www.facebook.com/dan.alexandrov.7\",\n",
       "  158000,\n",
       "  18460649,\n",
       "  445,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=JopfYaAAhms',\n",
       "  'Morissette Amon and Marcelito Pomoy - Secret Love Song | Reaction [Marcelito can actually sing Pop]',\n",
       "  '#marcelitopomoy #morissette #reaction\\n\\n\\nPatreon: https://www.patreon.com/danalexandrov\\n\\nFollow me:\\nInstagram: https://www.instagram.com/dan_alexandrov/\\nFacebook : https://web.facebook.com/dan.alexandrov.7',\n",
       "  '2020-01-09T00:25:11.000Z',\n",
       "  84467,\n",
       "  3123.0,\n",
       "  149.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCIV98HBmHcD75nlIflN-pBA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'maniacbusiness1@gmail.com',\n",
       "  '@mansamayne',\n",
       "  'MY GOAL IS TO ENTERTAIN & MAKE YOU LAUGH! On my channel you will see a lot of different videos, mostly reactions, random videos, vlogs, dread journey, challenges, pranks, & whatever else I record & find entertaining. If you guys enjoy what you see & want to join the family go ahead & SUBSCRIBE to become a mayniac! We going to go crazy, be lit, & have funnnn! Join the journey to 100k 🙏🏾',\n",
       "  154000,\n",
       "  18919821,\n",
       "  1108,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=ZHyDjbpKDo4',\n",
       "  'Diamond Platnumz - Jeje (Official Music Video) | REACTION VIDEO',\n",
       "  '#mansamayne \\n\\nBUSINESS EMAIL: maniacbusiness1@gmail.com\\n\\nORGINAL VIDEO: https://youtu.be/g5rFro4XdZ0\\n\\nMY INSTAGRAM: https://www.instagram.com/mansamayne/...\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-02-27T07:15:23.000Z',\n",
       "  65721,\n",
       "  2918.0,\n",
       "  188.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCqZPVOtVUvpZ6vb47W4MoAA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'pakistanreacts197@gmail.com.we',\n",
       "  '@jahangir699',\n",
       "  'Pakistan Reacts 2 is our second channel about pakistan reacts to indian movies and indian comedy and some pakistani good things . our channel is all about pakistani reaction to movies,song and comedian. Please subscribe for more update .',\n",
       "  152000,\n",
       "  38290714,\n",
       "  655,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=_kAAf_yPg-w',\n",
       "  'Pakistani Reaction on | ALL IPL SONGS | IPL SONG 2008 - 2018 || IPL 2019 SONG || IPL ANTHEMS',\n",
       "  '►►Please SUBSCRIBE My New Cannel LINK : https://www.youtube.com/channel/UC5t5j-nQzctoQv3vp9vC2RA?sub_confirmation=1\\n\\nOriginal Video Link & Subscribe Them:- ►►  https://youtu.be/NcYv4btc-7w?list=LLqZPVOtVUvpZ6vb47W4MoAA\\n\\n►►►If you have any issue with our video please kindly message at pakistanreacts197@gmail.com.We will remove the video.\\n\\nFollow me on Facebook jahangir : https://www.facebook.com/muhammad.jahangir.5836711\\n\\nFollow me on Instagram Jahangir : https://www.instagram.com/jahangir699/ \\n\\n-------------►►subscribe my new channel  :https://www.youtube.com/channel/UCBgh_zAoj-l5GnvnJwLq5yg?view_as=subscriber\\n\\n\\n►Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n#TRENDING#netflix#zee5#amazonprime\\n\\nThe Video Is All About The Theme Songs Of All Seasons Of IPL \\nVideo Deals With All The Theme Songs Till Now Payed For The Great Indian Premiere League \\nYou Will Hear The Following Songs as per The Timeline given Below : \\n\\n1. IPL 2008 Theme Song [Tu Laga Dum] : 0:17 \\n2. IPL 2009 Theme Song [Divided By Nations / United By IPL] : 0:55\\n3. IPL 2010 Theme Song [Saare Jahan Se Achha] : 1:53\\n4. IPL 2011 Theme Song [Dum Laga Ke Maara] : 2:30 \\n5. IPL 2012 Theme Song [Aisa Mauka Fir Kaha Milega] : 3:04 \\n6. IPL 2013 Theme Song [Jumping Japang] : 3:35\\n7. IPL 2014 Theme Song [Bulawa Aaya Hai] : 4:00 \\n8. IPL 2015 Theme Song [India Ka Tyohaar] : 4:24\\n9. IPL 2016 Theme Song [Happy Wala India ] : 4:52\\n10. IPL 2017 Theme Song [Waah Re waah] : 5:26\\n11. IPL 2018 Theme Song [Best Vs Best] : 6:06',\n",
       "  '2020-01-03T13:13:51.000Z',\n",
       "  65878,\n",
       "  1804.0,\n",
       "  107.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCwur8-hHnq2uGPc7jadB1pw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'yuyuyumandani@gmail.com',\n",
       "  nan,\n",
       "  'Hai',\n",
       "  148000,\n",
       "  18476948,\n",
       "  585,\n",
       "  'ID',\n",
       "  'https://www.youtube.com/watch?v=wKyppeH_YZI',\n",
       "  'Weird Genius - Lathi (ft. Sara Fajira) Official Music Video | Reaction~',\n",
       "  'Weird Genius - Lathi (ft. Sara Fajira) Official Music Video\\n\\nVideo Link Asli:\\nhttps://www.youtube.com/watch?v=8uy7G2JXVSA\\n\\n____________________________________________________________________\\n\\nBuat yang mau request video reaction, ini syaratnya ya:\\n1. Video belum pernah gw tonton.\\n2. Video belum lebih dari 1 bulan setelah upload.\\n3. Kalau mau share link, pastikan itu dari official video. bukan re-uploader\\n4. Channel ini Tidak akan lagi reaction acara TV atau program TV manapun.\\n5. Request lagu cukup 1x aja, tidak perlu request disetiap harinya/semua video yang pernah gw upload (auto dianggap spam yang jadinya komentar kalian tidak akan pernah lagi kebaca ama gw).\\n\\nNote: Semua komentar masih gw baca sendiri & Request lagu cukup di youtube, tidak perlu sampe DM IG ya~\\n\\nTerima Kasih atas pengertiannya~\\n\\n____________________________________________________________________\\n\\nEmail: yuyuyumandani@gmail.com\\nIG: https://www.instagram.com/yuyu_yumandani\\n\\n____________________________________________________________________',\n",
       "  '2020-03-27T09:00:26.000Z',\n",
       "  146855,\n",
       "  7567.0,\n",
       "  465.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCRg0OMmfui-i6xabwPGtQKQ',\n",
       "  'info@shadeybangs.co.uk',\n",
       "  nan,\n",
       "  'shadeybangs@.co.uk',\n",
       "  nan,\n",
       "  'Aloha! Welcome to my channel.\\n\\nJust a small girl with a camera and some really cool editing software.\\n\\nWATCH | LIKE | COMMENT | SUBSCRIBE\\n\\nFor Business Enquiries, email me at info@shadeybangs.co.uk',\n",
       "  147000,\n",
       "  10351302,\n",
       "  161,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=YwiWSXTf3zM',\n",
       "  'REACTION| TURKEY vs ALBANIA + KOSOVO Rap/ Hip Hop/ RnB/ Pop',\n",
       "  'HAPPY NEW YEAR 🥳 \\n\\n\\nToday’s #MusicMondays is TURKEY vs ALBANIA + KOSOVO Hip Hop/ Rap/ Pop/ RnB !! If you like this video then share it to your friends and family :) If you share it and tag me on twitter or snap me, then I’ll make sure to send you a message!\\n\\n\\n\\nRemember to L I K E • C O M M E N T • S H A R E • S U B S C R I B E ☼\\n\\n\\n\\nAlso follow me on Snapchat  @ShadeyBangs\\nInstagram | www.instagram.com/Shadeybangs\\nTwitter | www.twitter.com/Shadeybangs\\nFor Business Enquiries, email me at info@shadeyBangs@.co.uk ✉ \\n\\n\\n\\n\\n﹉﹊ Music featured ﹍﹎\\n\\nAlbanian/Kosovar Playlist 🇦🇱🇽🇰 \\nTurkish Playlist 🇹🇷\\n\\n\\n\\n\\n**This is not a sponsored video**',\n",
       "  '2020-01-06T18:04:28.000Z',\n",
       "  38098,\n",
       "  884.0,\n",
       "  204.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCHd-Pz_xu0oNtILpmtbm2Yw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hello People, Welcome to TN360...Here in TN360, You'll Find all the Latest Political News & Tamil Movie News, Audio Launch Speech, Press Meet, Famous Celebrity Interviews, Shooting Spot Behind the Scenes, Movie Review, Gossips, Trailers, Teaser & Lot more ... \\n\\nFor More such Videos Subscribe us @ http://bit.ly/SubscribetoTN360\\n\\nFollow us on :\\n\\n--- Facebook: https://www.facebook.com/tn360tamil\\n--- Twitter: https://twitter.com/tn360tamil\\n--- Instagram : https://www.instagram.com/tn360tamil\\n--- Website: www.tn360.net\",\n",
       "  145000,\n",
       "  17584794,\n",
       "  1113,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=nT7wqZNN9Kg',\n",
       "  'Master Vaathi Coming Public Review | Master Vaathi Song | Thalapathy Vijay | 2nd Single Reaction',\n",
       "  \"Master Vaathi Coming Public Review | Vaathi Coming Public Reaction | Thalapathy Vijay | 2nd Single \\n\\nMake way for the extraordinary ThalapathyKuthu! Our VaathiComing right here from Thalapathy's Master! Loaded with the ultra-catchy rhythms and the Thara-local slang , listen to this Anirudh dance number on loop! \\n\\n#Master\\n#VaathiComing\\n#ThalapathyVijay\\n\\nMaster song, thalapathy vijay, vaathi coming song, master vaathi coming, master songs, tamil song, latest songs in tamil, songs in tamil, latest tamil movies, tamil movie songs, sony music south, master vijay, vaathi coming lyric, master audio launch, master trailer, sony music, latest video songs tamil, latest tamil hit songs, kutti story, master teaser, master trailer vijay, master second single, master, master vaathi song,vijay, tamil latest song, tamil latest songs 2018, tamil latest songs 2019, latest tamil love songs, vijay songs, vaathi master, vaathi coming song review, vaathi coming song reaction, vaathi, latest song, new\",\n",
       "  '2020-03-10T14:52:08.000Z',\n",
       "  96189,\n",
       "  4600.0,\n",
       "  123.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCkwICQsiGRQmmCBUw7iKteQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'We deliver those fire reactions🔥🔥🔥🔥',\n",
       "  145000,\n",
       "  17820077,\n",
       "  1086,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=7JG87kdJw7Q',\n",
       "  'Diamond Platnumz - Jeje (Official Muisc Video) | That American Reaction',\n",
       "  'Diamond Platnumz - Jeje (Official Muisc Video) | That American Reaction\\n\\n#diamondplatnumz #jeje #thatfirela\\n\\nFollow us on instagram: \\nhttps://www.instagram.com/that_fire_la\\n\\n\\n*Link to artist at bottom of description*\\n\\n That fire! Is a channel we created for reacting/reactions to songs and possibly other s**t.  We love to keep this going and appreciate YALL for hitting that LIT BUTTON and subscribing to the channel.\\n\\n*****************WOW REACHED OUR GOAL OF 100K*****************\\n\\nThis is crazy!!!!! We honestly appreciate the love and support 🙏🏾! A thank you vid is in the works!!!\\n\\n*************** New Goal is 250k  ******************\\n\\nPlease tell your friends and family about us 🙏🏾.\\n\\nHelp us reach our goal by sharing [ Diamond Platnumz - Jeje (Official Muisc Video) | That American Reaction ] with your family and friends. We just trying to stay LIT. \\n\\nAppreciate ya🙏🏾\\n** Diamond Platnumz - Jeje (Official Muisc Video) ** link to Video on YouTube: https://youtu.be/g5rFro4XdZ0\\n\\nWe want to thank everyone who is watching\\n\\n\\n*************************************************************** Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS********************************************',\n",
       "  '2020-02-27T07:03:00.000Z',\n",
       "  73046,\n",
       "  2067.0,\n",
       "  395.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCFs6l30oKhWdHefSHjNas3Q',\n",
       "  'tff3998@gmail.com',\n",
       "  nan,\n",
       "  'tff3998@gmail.com',\n",
       "  nan,\n",
       "  'Hey Guys,\\nMe hu Jai Gurjar or Aap sab ka is channel \"Par Swaagat hai..\\n\\nDosto aapko is channal par \\n★ All Panjabi Singers Updates/News\\n★ Panjabi Upcoming Songs Updates/News\\n★ Panjabi Singers Upcoming Live Events Updates\\n★ Latest Bollywood Important News/Updates\\nOr bhi kuch special Latest News/Updates Dekhne Ko Mil Jayenge😊\\n\\nSo Agar Aapne Abhi Tak Hmare Is Channal Ko Subscribe Nhi Kiya To Abhi Subscribe Kar Ke Bell Icon Ko Press Kar Lo Jis Se Aapko Aapki Favorite Video Sabse Pahle Mil Jayegi😊\\n\\nEmail :- tff3998@gmail.com\\n\\nThank You🙏',\n",
       "  143000,\n",
       "  11497133,\n",
       "  427,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=iE4PSKwM8yw',\n",
       "  'Guru Randhawa React On \"LOCA Song\" Yo Yo Honey Singh | Singers Reaction On LOCA Song |',\n",
       "  'Guru Randhawa React On \"LOCA Song\" Yo Yo Honey Singh | Singers Reaction On LOCA Song |\\n\\n_____________________________________________\\nMy Official Second Channel https://www.youtube.com/c/jaigurjar\\n_____________________________________________\\nQueries:-\\n1. Guru Randhawa reaction on loca song honey singh\\n2. singers reaction on loca song yo yo honey singh\\n3. loca song official video\\n4. loca song yo yo honey singh\\n_____________________________________________\\n #TheFinalFact\\n_____________________________________________\\nFor Bussiness Enquiry And Sponcership :-\\ntff3998@gmail.com\\n_____________________________________________\\nBest Videos Of This Channel \\nhttps://www.youtube.com/playlist?list=PL-7La4fiEl-gYcuDhZ0PolpW6qSWXzNBg\\n\\nPUNJABI SONGS REVIEW\\nhttps://www.youtube.com/playlist?list=PL-7La4fiEl-jzN3O7YOBQL63t9nEkDDH_\\n\\nBest Top 10 Series Videos\\nhttps://www.youtube.com/playlist?list=PL-7La4fiEl-gwX7gu4CxWFH0c55PcMvVd\\n_____________________________________________\\nInstagram : https://www.instagram.com/iamjai3998\\n__________\\nTiktok :\\nhttp://vm.tiktok.com/mHKVjQ/\\n__________\\nTwitter :\\nhttps://www.twitter.com/iamjaigurjar\\n__________\\nFacebook Page :\\nhttps://www.facebook.com/thefinalfact\\n_____________________________________________\\n_____________________________________________\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n\\nTHANKS FOR WATCHING...\\n_____________________________________________',\n",
       "  '2020-03-03T11:55:05.000Z',\n",
       "  422193,\n",
       "  18200.0,\n",
       "  844.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCwuwE3q0A1I8uy4pbQhq8xg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@xheycharliex',\n",
       "  \"Welcome to a channel where nothing but good vibes are shared. Rather that being from me to you or you to me, we're all about living, laughing and loving here. I'm a huge fan of Memes and KPOP so sit back and enjoy =D\\n\\n---------------------------------------------------------------------------------------------------------\\n\\n[ Sub Goals ]\\n\\n20,000 Subs (√)\\n25,000 Subs (√)\\n50,000 Subs (√) \\n75,000 Subs (√)\\n100,000 Subs (√)\\n200,000 Subs ()\\n\\n----------------------\\n\\n[ Views Goals ]\\n\\n1,000 Views ( √ )\\n10,000 Views ( √ )\\n50,000 Views ( √ )\\n100,000 Views ( √ )\\n250,000 Views ( √ )\\n500,000 Views ( √ )\\n1,000,000 Views ( √ )\\n\\n----------------------------\\n\\n[ YouTube Birth Date ]\\n- June 26, 2014\",\n",
       "  138000,\n",
       "  27483498,\n",
       "  1948,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=b03p-9oUQnY',\n",
       "  \"99% WON'T SURVIVE | LILI's FILM #3 - LISA Dance Performance Video | Reaction\",\n",
       "  \"💜 - Support the channel by becoming a Patreon\\nhttps://www.patreon.com/xHeyCharliex\\n99% WON'T SURVIVE | LILI's FILM #3 - LISA Dance Performance Video | Reaction\\n📬 P.O. Box 47776, Oak Park MI, 48237\\n\\n▶ Horror Channel: https://www.youtube.com/channel/UC1n-4IGvjU6LQL_7FAPldMw?view_as=subscriber\\n▶ Gaming Channel: https://www.youtube.com/channel/UClql2OErnECNstcd64ybRag\\n▶ Gamer Tees | Gaming T Shirts | Geek And Gamer Gear: https://teespring.com/stores/tee-k-oooh-2?aid=marketplace\\n▶ Original Video: https://www.youtube.com/watch?v=je_R3gEtDbw\\n▶ Outro Music: https://www.youtube.com/watch?v=5uNav1XJw74\\n\\n----------------------------------------\\xad-----------\\n ▶ Previous Videos \\n----------------------------------------\\xad-----------\\n\\n•\\xa0\\n\\n----------------------------------------\\xad-----------\\n ▶ Equipment I Use \\n----------------------------------------\\xad-----------\\n\\n•\\xa0Chair\\n   -  KillaBee - http://bit.ly/KILLABEE\\n•\\xa0Mic\\n   - Fifine | K670 - https://www.amazon.com/Microphone-FIFINE-Computers-Podcasting-K670/dp/B079HRFH2Y/ref=sr_1_1?s=musical-instruments&ie=UTF8&qid=1539787931&sr=8-1&keywords=k670\\n•\\xa0Headphones \\n   - MassDrop | AKG M220 Blue - https://dro.ps/heycharlie-m220\\n\\n----------------------------------------\\xad-----\\n▶ Social\\n----------------------------------------\\xad-----\\n\\n•Twitter: https://twitter.com/xHeyCharliex\\n•Instagram: https://www.instagram.com/xheycharliex/\\n•Facebook: https://www.facebook.com/xheycharliex...\\n•Twitch: http://www.twitch.tv/xheycharliex\\n\\n▶ Hip Hop Music Used: [No Copyright Music] Chill LoFi Hip-Hop Beat FREE (Copyright Free) Music By: LAKEY INSPIRED - https://www.youtube.com/watch?v=2HiP-Sdtbck\\n\\n#LilisFilm #LilisFilmReaction #Lili\",\n",
       "  '2020-04-21T00:59:29.000Z',\n",
       "  111052,\n",
       "  7497.0,\n",
       "  352.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCeuK0Kc3IHVupkoDnBmweZg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  131000,\n",
       "  12291376,\n",
       "  302,\n",
       "  'MA',\n",
       "  'https://www.youtube.com/watch?v=NCteZ9gpBiQ',\n",
       "  'HABLO - LOVA (Official Music Video) (Prod by Hades) (Reaction)',\n",
       "  'Connect with MEHDI SCOOT \\n\\n\\nSNAPCHAT ► mehdinigga33s\\n\\n\\n\\nINSTAGRAM ►mehdi_scoot\\n\\n\\n\\nFACEBOOK ►https://www.facebook.com/mehdi.dizzy.33',\n",
       "  '2020-03-07T20:40:59.000Z',\n",
       "  38769,\n",
       "  3310.0,\n",
       "  97.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCD58HBLhMozUsE6JwK3y10g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to bowzers reaction pit where you don’t need a patreon account to get your request done. \\n\\nThank you to  everyone that has subscribed!!!! We made it to 86k 💪 and thanks to you all we have a B grade on socialblade\\n\\nBowzer’s brutally honest metal music reactions.. We love metal music, and also have a taste for good rap.. We will try and post new content everyday. Hit me up with songs you want me us react to. Because without you We can’t grow! 🤘🔥 lets get to 100,000 subscribers and beyond 🔥👊 if you love this channel please subscribe and share everywhere.',\n",
       "  130000,\n",
       "  21036887,\n",
       "  819,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=msqqbgzQ24A',\n",
       "  'You asked! We listened! | COLN - LAKAS ( OFFICIAL VIDEO) METALHEADS REACTION',\n",
       "  '#ColnReaction\\n#lakas\\n#Coln\\n#bowsersreactionpit\\n#metalheadsreaction\\n#metalreaction \\n\\nLink to the original video: https://youtu.be/1Y5zXi0RUKk\\n\\nhttps://www.facebook.com/Bowsersreactionpit/\\n\\n\\nWelcome to bowzers reaction pit where you don’t need a patreon account to get your request done. \\n\\nThank you to  everyone that has subscribed!!!! We made it to 114k💪 and thanks to you all we have a B grade on socialblade\\n\\nBowser’s brutally honest metal music reactions.. We love metal music, and also have a taste for good rap.. We will try and post new content everyday. Hit me up with songs you want me us react to. Because without you We can’t grow! 🤘🔥 lets get to 100,000 subscribers and beyond 🔥👊 if you love this channel please subscribe and share everywhere.\\n\\nLink to original video: https://youtu.be/1Y5zXi0RUKk\\n\\nCopyright Disclaimer: Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-03-21T20:40:48.000Z',\n",
       "  107970,\n",
       "  3373.0,\n",
       "  862.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCx1d4vFd7qgEr9KIdbWkj7g',\n",
       "  nan,\n",
       "  nan,\n",
       "  'jondenton22@gmail.com',\n",
       "  nan,\n",
       "  'The hardest working music reactor in the game.\\nJoin me on a journey through the past, present and future of hip hop, and ALL music. \\n\\nTwitter: www.twitter.com/jondenton\\nInsta: www.instagram.com/jondenton22\\nDiscord group: https://discord.gg/7TGZG5P',\n",
       "  125000,\n",
       "  10475544,\n",
       "  284,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=t_ru4XM-ulY',\n",
       "  'The Weeknd - After Hours FULL ALBUM REACTION',\n",
       "  \"The Weeknd - After Hours FULL ALBUM REACTION \\nTry Filmora9 for free: http://bit.ly/33wDWUe\\nFilmstocks: http://bit.ly/3b7LaAA\\n\\nIt's finally here! Join me as I react to The Weeknd's gorgeous new album, After Hours. \\n\\nPATREON LINK: \\nhttps://www.patreon.com/jondenton\\n\\nFollow me ⬇\\nhttps://www.twitter.com/jondenton\\nhttps://www.instagram.com/jondenton22\\n\\nFollow the Spotify Playlist!\\nhttps://open.spotify.com/playlist/4Z2N3jI5LtFtgNPrbSahh6?si=gqif7K7zTM6lG8nByDljVw\\n\\nContact jondenton22@gmail.com for promo\\n\\nHang out in the DISCORD: https://discord.gg/gmdn7qb\\n\\nBeats by Luca Malaspina - check him out for FIRE beats\\n\\nLuca Malaspina Beats\\nhttps://www.youtube.com/lucamalaspinabeats\\nhttps://instagram.com/lucamalaspinabeats\\n\\n     \\nNew to the channel? Subscribe!\\nhttps://goo.gl/AnKLMC\",\n",
       "  '2020-03-20T15:00:22.000Z',\n",
       "  209232,\n",
       "  13624.0,\n",
       "  1449.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCz6JB_rgK6XLJtk0gAz_rMA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'officialashleyperkins@gmail.com',\n",
       "  nan,\n",
       "  \"Was the deal! Its Ashley but you may know me as Perkyy...Welcome to my Youtube channel! On this channel, you will see more of me and what i'm about. I will do videos like challenges, pranks, unboxing, shoe collection, hauls, vlogs, storytimes, etc. We are going to grow together and I just want to thank each and every one of you that are going to be apart of this journey! #PerkyyGangOrDontBang\\nFor instant updates, check out my social media accounts below!\",\n",
       "  125000,\n",
       "  7386196,\n",
       "  188,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=1xWkognXBnQ',\n",
       "  'DaBaby - Find My Way (Official Music Video) Reaction',\n",
       "  'MERCH: https://teespring.com/stores/perkyy\\n\\nSubscribe if you\\'re new: http://bit.ly/2Dlm816 \\n\\nBusiness Email: officialashleyperkins@gmail.com\\n\\nDaBaby - Find My Way (Official Music Video) Reaction | Perkyy\\n\\nAporro Jewelry:\\nDiscount ($10 OFF) Code: “perkins10” (Free shipping in the U.S.)\\nClick Here: http://bit.ly/2O5dXNH\\n\\nEwin Gaming Chair \\nDiscount (30% OFF) Code: \"Perkyy\"\\nClick Here: http://bit.ly/2O3qPUT \\n\\nSoufeel Jewerly:\\nDiscount (15% OFF) Code: \"Ashwy15\"\\nClick Here: http://bit.ly/2UQNZz6\\n\\nKroma IPhone Cases\\nDiscount (10% OFF) Code: Perkyy\\nClick Here: http://kroma.me?ref=Perkyy\\n\\nPerkyy and Honeeybee channel: http://bit.ly/PerkyyandHoneeyBee\\n\\nFollow Me So I Know It\\'s Real!!👇🏽\\n» Instagram: http://bit.ly/2D4gbrH\\n» Snapchat: http://bit.ly/2AQrEWx\\n» Facebook: http://bit.ly/2D5yjBi\\n\\n\"Women like you don\\'t happen often never forget how rare you are\" - r.h. Sin\\n\\nAbout Perkyy\\nWas the deal! Its Ashley but you may know me as Perkyy...Welcome to my Youtube channel! On this channel, you will see more of me and what i\\'m about. I will do videos like challenges, pranks, unboxing, shoe collection, hauls, vlogs, storytimes, etc. We are going to grow together and I just want to thank each and every one of you that are going to be apart of this journey! #PerkyyGangOrDontBang',\n",
       "  '2020-04-01T22:30:01.000Z',\n",
       "  68581,\n",
       "  3886.0,\n",
       "  268.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UClylk2CQZtH7bSOuNJ66k4A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  124000,\n",
       "  7077383,\n",
       "  91,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=KhKCKPr0lDI',\n",
       "  'ImDontai Reacts To Flight - Disingenuous',\n",
       "  'https://www.twitch.tv/im_dontai/\\nhttps://www.twitch.tv/im_dontai/\\nhttps://www.twitch.tv/im_dontai/\\nhttps://www.twitch.tv/im_dontai/\\nhttps://www.twitch.tv/im_dontai/\\nhttps://www.twitch.tv/im_dontai/\\nhttps://www.twitch.tv/im_dontai/\\nhttps://www.twitch.tv/im_dontai/',\n",
       "  '2020-04-21T01:12:53.000Z',\n",
       "  145159,\n",
       "  10814.0,\n",
       "  832.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCyIxQG-ZTzrjAoBpSOJbGBQ',\n",
       "  'business.floderflo@gmail.com',\n",
       "  nan,\n",
       "  'business.floderflo@gmail.com',\n",
       "  nan,\n",
       "  'A crazy German 19 year old, who fell in love with K-Pop a year ago!\\n\\nOn my channel you will find everything related to K-Pop reaction videos! As of right now we are reacting to BlackPink, BTS and Twice, but every sunday a reaction to a different group is also uploaded here.\\n\\nSo feel free to explore some of my playlists and if you want to get in touch with me just hit me up on my socials or write something in the comment section, I am reading everything :) \\n\\n\\nFor business related inquiries contact me at: business.floderflo@gmail.com',\n",
       "  124000,\n",
       "  24399704,\n",
       "  436,\n",
       "  'DE',\n",
       "  'https://www.youtube.com/watch?v=t6BSm5ZKL_k',\n",
       "  \"I DIED 😳😨 LILI's FILM #3 - LISA Dance Performance Video - Reaction\",\n",
       "  \"LILI's FILM #3 - LISA Dance Performance Video - Reaction\\n►Kpop TV Show Reactions & Early Acces: \\nhttps://www.patreon.com/floderfloeng\\n\\n►Merch: \\nhttps://teespring.com/de/stores/floderflo-k-pop\\n\\n►Twitter: https://twitter.com/FloderFlokpop\\n► Instagram: https://www.instagram.com/floderflo \\n►TikTok: https://www.tiktok.com/@floderflo\\n\\n►Watch all BTS reactions here: https://www.youtube.com/watch?v=nw0h-nrQKO0&list=PLmpXElrqknwylggCBjMW7TAuur7-vJuR_\\n►Watch all BlackPink reactions here: https://www.youtube.com/watch?v=twKc_JX7kb0&list=PLmpXElrqknwz083g0jxZJ7Otwgn53koS7\\n►Watch all Twice reactions here: https://www.youtube.com/watch?v=tQ4m4K5Z38w&list=PLmpXElrqknww9-Jv0MuVTF64HPWX6dv5p\\n\\n\\n►Original: https://www.youtube.com/watch?v=je_R3gEtDbw&t=0s\\n\\n►business inquires: business.floderflo@gmail.com\\n\\n►Send me letters  (are unpacked oncam)\\nFlo M.\\nPostfach 11 61\\n25442 Quickborn\\nGermany\\n\\n► 📦 Send me packages (are unpacked oncam)\\nFlo M.\\n910374341\\nPackstation 117\\n25451 Quickborn\\nGermany\",\n",
       "  '2020-04-20T11:16:52.000Z',\n",
       "  108762,\n",
       "  11215.0,\n",
       "  681.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCl6rkFLhFc7tXN8n8Wk_-vw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Welcome to the palace \\n\\nHey I'm India \\nI'm from Ohio born and raised and it's where i spend most of my days\\n\\nLets go on a music journey\\n\\n\\nDESTROY THE LIKE AND SUBSCRIBE BUTTON FOR ME 💙\\n\\n\\nInstagram @indiamafiaaa\\nSnap@indiabush104\",\n",
       "  122000,\n",
       "  39762150,\n",
       "  1714,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=13_INdIHeg8',\n",
       "  'ZZ Top - Legs (Official Music Video) REACTION!!!',\n",
       "  '#ZZTop #Legs #zztopreactions\\n\\nreact with me to ZZ Top - Legs (Official Music Video)\\nhttps://youtu.be/eUDcTLaWJuo\\n\\n\\nThank you for watching\\n welcome\\n SALUTATIO \\n bienvenida \\n\\n road to 100k\\n\\n just a kid with a camera \\n\\n LIKE, COMMENT, AND SUBSCRIBE!!! \\n\\n WATCH THESE ADS SO I CAN EAT PLEASE! LMAO! \\n\\ninstagram@indiamafiaaa\\n\\n Personal channel: https://youtu.be/-_LTb2PUi_4 \\n\\n for faster request donate to channel @https://paypal.me/indiacbush?locale.x...',\n",
       "  '2020-02-12T01:13:47.000Z',\n",
       "  47951,\n",
       "  1786.0,\n",
       "  364.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCSZLzCcpZqWJUxUi8h57sew',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@sali2x',\n",
       "  \"V Kings We're bringing you litt reactions, pranks, challenges, public interviews we just having fun creating content that we think you would love, enjoy the videos, show some love. \\nMake sure you hit that subscribe button and join the family; ONE LOVE.\\n\\nThank Ya'll for 100k plus subscribers we're growing, let's get the channel to 200k  by the end of the year.\\n\\nFollow our Ig's: @sali2x  @tremo_a  @shaniceworld.a\",\n",
       "  122000,\n",
       "  31640234,\n",
       "  332,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=zJFgwybr_b4',\n",
       "  'Americans First Reaction to FRENCH RAP/DRILL music P3 feat. PNL, Koba LaD, 100 Blaze & More',\n",
       "  '#Frenchrap #vkings\\n\\nWelcome to the V Kings FAM- This is our reaction to a few French Rappers Artist - if Ya\\'ll enjoy it please like and subscribe.\\n\\nhttps://www.youtube.com/channel/UCSZLzCcpZqWJUxUi8h57sew?view_as=subscriber\\n\\n\\nDISCLAIMER: The music posted in this video does not belong to us. All the credit goes to the channel and artists that originally posted it.\\n-------------------------------------------------------------------------------------------------------------\\n\"Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. *credit to the rightful owner*\\n*No copyright infringement intended*\\n======================================================\\n\\nMembers- DOUBLE A, TOMI, AND SALI\\n\\nSocial Media\\nV Kings Official IG @V_Kingss\\n\\n Sali\\'s\\nIG: @sali2x : https://www.instagram.com/sali2x/\\nSnapChat: @Lowtrigga7\\n\\nTomi\\'s\\nIG:  @tremo_a: https://www.instagram.com/tremo_a/\\n\\nDouble A\\nIG: @shaniceworld.a: https://www.instagram.com/shaniceworld.a/',\n",
       "  '2020-04-02T14:00:32.000Z',\n",
       "  53935,\n",
       "  943.0,\n",
       "  165.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC95A3KrNy-b7ZlKSi5cxdLA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'turkishreaction@gmail.com',\n",
       "  nan,\n",
       "  \"I'm from Turkey.  In this channel I react to videos.\\nTurkish Reaction, pakistan reaction, indonesia reaction, india reaction, thailand reaction, mexico reaction and other countries\\n\\nFREE SUBSCRIBE\\nhttp://www.youtube.com/c/TurkishReactionn?sub_confirmation=1\",\n",
       "  117000,\n",
       "  5814589,\n",
       "  236,\n",
       "  'TR',\n",
       "  'https://www.youtube.com/watch?v=p-aESowC_Ms',\n",
       "  'VANNDA - ម្តាយ (MAMA) ft. ក្មេងខ្មែរ [OFFICIAL MUSIC VIDEO] | CAMBODIA MUSIC REACTION',\n",
       "  'Original Video:\\r\\nVANNDA - ម្តាយ (MAMA) ft. ក្មេងខ្មែរ [OFFICIAL MUSIC VIDEO]\\nhttps://www.youtube.com/watch?v=WNL3zDgWZc0\\r\\n\\r\\n➤CAMBODIA REACTION: https://bit.ly/36P7T22\\n➤Business: turkishreaction@gmail.com ✔️\\r\\n➤Subscribe and support me ❤️🙏🏻 \\r\\n\\r\\nSubtitle contribute: https://bit.ly/30jT9VO\\r\\n\\r\\nSocial Media\\r\\nInstagram: https://www.instagram.com/tuncayseymenn\\r\\nTwitter: https://twitter.com/tuncayseymen',\n",
       "  '2020-03-25T10:00:16Z',\n",
       "  267459,\n",
       "  22324.0,\n",
       "  1612.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCUXTfjk-7PcxRwqo_-gagrg',\n",
       "  nan,\n",
       "  '@hiphoptvwhy',\n",
       "  'hiphoptvwhy@gmail.com',\n",
       "  '@hiphoptvwhy',\n",
       "  'Official Youtube Channel Of \"Why TV\"  First Independent Hip Hop TV In Youtube Since 2008 Formed As WHY TV \\n\\nhttp://hiphoptvwhy.com/\\n\\n Dj Why Is Hip Hop Act Worked With Legendary Rappers And Producers, Bone Thugs-N-Harmony, Bizzy Bone, Blais, Mexican Legend Salmex, Did Collaboration With Daz Dillinger, Kurupt From Dogg Pound, Onyx, Jeru The Damaja, Snoop Dogg And Many More. \\nDJ WHY With His Team Reviews, Covers & Reacts The News Of Hip Hop, Celebrity Rumors And Premieres...\\n\\'WHY TV\\' This Is When You Love Hip Hop !!!\\n\\nFOLLOW US \\n\\nWHY TV FACEBOOK : https://www.facebook.com/hiphoptvwhy/\\nWHY TV INSTAGRAM : https://www.instagram.com/hiphoptvwhy/\\nWHY TV TWITTER : https://twitter.com/hiphoptvwhy\\n\\n\"\"Any 3rd Party Content on WHY TV Channel Has Been Properly Cleared For Use, I own all rights. It is NOT \"reused\" Content\"\"\\nDJ WHY New Platform ! Bodcast by DJ WHY & DJ WHY JR\\n\\n\\n\\n 🔔 Business inquires : CONTACT US on @Mail  Or Official Facebok',\n",
       "  117000,\n",
       "  2280829,\n",
       "  1497,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=zndeucy3itY',\n",
       "  'Nicki Minaj Reviews Her New Song In Studio With Her Husband',\n",
       "  'INSTAGRAM: https://www.instagram.com/hiphoptvwhy/\\n    TWITTER: https://twitter.com/hiphoptvwhy/\\n    FACEBOOK: https://www.facebook.com/hiphoptvwhy/\\n\\nAny PROMO 30$ To 100$ !!! mail us Hiphoptvwhy@gmail.com \\n\\nIntro And Background Song Made By DJ WHY Special For WHY TV\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing\\n\\nBusiness Inquiries: Message Us On Channel  Or HipHopTVWhy@gmail.com\\n#whytv #nickiminaj',\n",
       "  '2020-02-04T09:14:02.000Z',\n",
       "  1989,\n",
       "  50.0,\n",
       "  13.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC5YhP-H5snGgi6dOE8vj-aA',\n",
       "  'simonjmiller@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hello! It's Simon Miller here the bald idiot from WhatCulture who is also a wrestler and a YouTube moron. This is my personal channel and here you get updates on my wrestling journey, fitness videos, reactions to music/trailers/whatever works, mental health vlogs, reviews, lists and whatever else comes to mind when we're talking about things I'm passionate about. Come join the ride! \\n\\nYou can grab some Simon Miller merchandise here: http://simonmiller.bigcartel.com and find me on Twitter/Instagram @SimonMiller316.\\n\\nContact with any opportunity at simonjmiller@gmail.com. I look forward to hearing from you!\",\n",
       "  116000,\n",
       "  6590185,\n",
       "  798,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=eENgRKDnsWc',\n",
       "  'Eminem - Music To Be Murdered By FULL ALBUM REACTION!! Metalhead Reacts To Hip Hop!',\n",
       "  \"Eminem - Music To Be Murdered By METALHEAD REACTION! Given that it came out of nowhere and I was gonna listen to the whole thing anyway, why not live on YouTube? Eminem REACTION!\\n\\n#Eminem #EminemReaction #MusicToBeMurderedBy\\n\\nSupport Me On Patreon! http://www.patreon.com/SimonMiller316\\n\\nMERCH: http://simonmiller.bigcartel.com\\n\\nSubscribe To The Channel: http://www.youtube.com/c/themillerreportrules\\n\\nFollow on Twitter: http://www.twitter.com/SimonMiller316\\n\\nFollow on IG: http://www.instagram.com/simonmiller316\\n\\nWatch more videos!:\\nVLOGS: https://www.youtube.com/watch?v=np4IVaegr7s&list=PLbL2zYBoFs_qhGvYgxP6uQTgBs3nPBWxS\\n\\nTHE PRO-WRESTLING SHOW: https://www.youtube.com/watch?v=28fBiR_Vt7M&list=PLbL2zYBoFs_pFHJc7piha4B6L2BFeNcqB\\n\\nREACTIONS: https://www.youtube.com/watch?v=KwxCPt4d6fE&list=PLbL2zYBoFs_pmQvsPl_rFfrPt1-EuI2ld\\n\\nAbout Simon Miller:\\nSimon Miller brings you a YouTube channel that breaks all the rules and doesn't focus on any one subject. Wrestling, vlogs, mental health, video games, reactions, music, movies, podcasts! Designed to give you a look into the brain of Simon Miller – who is also a feature over on WhatCulture Wrestling where he hosts Ups and Downs as well as the Why series - give the channel a subscribe if you just want a daily dose of nonsense and entertainment.\",\n",
       "  '2020-01-18T17:00:07.000Z',\n",
       "  39258,\n",
       "  1766.0,\n",
       "  277.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCkzqQVHUwJ1VmgNRjnurUww',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  114000,\n",
       "  25328800,\n",
       "  211,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=RmEBGxR0bkA',\n",
       "  'Illegal Weapon 2.0 - Street Dancer 3D | Varun D, Shraddha K | PAKISTAN REACTION',\n",
       "  'Illegal Weapon 2.0 - Street Dancer 3D | Varun D, Shraddha K | Tanishk B,Jasmine Sandlas,Garry Sandhu\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nnew songs,tseries,tseries new songs,bollywood songs,new bollywood songs,tseries movie songs,hindi film songs,t-series,tseries hindi songs,hindi new songs,illegal weapon 2 song,illegal weapon 2 0,street dancer 3d all song,illegal weapon 2,illegal weapon 2 0 song,illegal weapon 2 0 video,street dancer 3d songs,illegal weapon video song,jasmine sandlas,garry sandhu,street dancer song,street dancer song 219',\n",
       "  '2020-01-11T14:03:44.000Z',\n",
       "  289351,\n",
       "  5913.0,\n",
       "  267.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCBDv8kTJTXSvPql-n1jJg6w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Reaction time with John X Lulu! Embracing talent and entertainment from all over this beautiful world we share!\\n\\nTHX TO ALL OUR FANS!\\n02/15/20 - 100k Subscribers!\\n01/01/20 - 10 Mil Views!\\n12/01/19 - 500k Hours Watched!\\n11/01/19 - 35K Subscribers!\\n09/30/19 - 7 Mil Views!\\n06/22/19 - 10K Subscribers!\\n05/26/19 - 1 Mil Views!\\n04/13/19 - 1 Mil Minutes Watched!\\n\\n\\nAlso check out our channel John X Lulu Show as we explore Vegas and the world around us!',\n",
       "  112000,\n",
       "  18894489,\n",
       "  702,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=Q4q3iSIxcXM',\n",
       "  \"Marcelito Pomoy - Time To Say Goodbye Reaction | Next Song On (AGT) America's Got Talent Champions?\",\n",
       "  \"Lots of people online seem to think that Marcelito will sing Time To Say Goodbye as his next song on America's Got Talent Champions. We say... BRING IT ON! One of John's fave songs, and even in this grainy cellphone recorded footage we found online, you can hear how Marcelito soars when he sings this.\\n\\nPeace X Love\\nJohn X Lulu\",\n",
       "  '2020-01-30T08:16:38.000Z',\n",
       "  363742,\n",
       "  3529.0,\n",
       "  108.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCA99nItLBFj_cOVeOuiT_aQ',\n",
       "  'singhparbrahm@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'A Channel where we try to give you the fastest and the best Reaction possible! SUBSCRIBE for amazing Reactions!\\n\\nFor business enquiries- singhparbrahm@gmail.com\\n \\nSUPPORT OUR WORK ON PATREON\\nhttps://www.patreon.com/parbrahmsingh\\n\\nFollow me on Instagram\\nParbrahm Singh - @parbrahm',\n",
       "  111000,\n",
       "  35776151,\n",
       "  859,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=3LB4sQ06qjQ',\n",
       "  'Samajavaragamana Full Video Song REACTION | Allu Arjun | #AlaVaikunthapurramuloo',\n",
       "  \"Hello guys, here is our reaction on Samajavaragamana Full Video Song! Watch&Share!\\n\\nJOIN OUR CHANNEL AND BECOME A MEMBER AT Rs 29 ONLY-\\nhttps://www.youtube.com/channel/UCA99nItLBFj_cOVeOuiT_aQ/join\\n\\nDownload Raja Rani Chor Police Game Here - https://play.google.com/store/apps/dev?id=8289191747398222779\\n\\nLike us?😋 Then do support us via Paytm  - https://p-y.tm/yH-351x\\n\\nYou can also become a SUPERSTAR of our channel by joining us-\\nhttps://www.youtube.com/channel/UCA99nItLBFj_cOVeOuiT_aQ/join\\n\\nDisclaimer: No Copyright intended in this video. All rights belong to the rightful owner !!\\n\\nOur Other Channels - \\nIndian Cricket Stand-\\nhttps://www.youtube.com/channel/UCPgaXqlEXbza2i2GO18vWmQ\\n\\nGopali's Channel- https://www.youtube.com/channel/UCTqsGUh7K4Rt4W3FfmAfPkA\\n\\nSUPPORT OUR WORK ON PATREON - https://www.patreon.com/parbrahmsingh\\n\\nProduct We Use -\\n\\nhttps://www.amazon.in/shop/parbrahmanurag\\n\\nFollow us On- \\nTwitter - https://twitter.com/ParbrahmSingh\\n\\nInstagram - @parbrahm\",\n",
       "  '2020-02-18T13:45:01.000Z',\n",
       "  91653,\n",
       "  3272.0,\n",
       "  208.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCEjRARqIrgTJYB2xvlWwgvQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'malaysiangirlreactions1@gmail.com',\n",
       "  nan,\n",
       "  'On Malaysian Girl Reactions Channel you will get Mostly Pakistani, Bangladeshi, Nepali Content Reaction videos. Generally, we are here to promote hidden talent. \\nPlease Subscribe Today!\\nEnjoy your stay!',\n",
       "  104000,\n",
       "  6374148,\n",
       "  115,\n",
       "  'MY',\n",
       "  'https://www.youtube.com/watch?v=QAC541TOQ5Q',\n",
       "  'SIRFUL - 2 SONG REACTION | NEPALI SONG | Malaysian Girl Reactions',\n",
       "  'Like, Share & Subscribe To Original (Content and Channel).\\n\\nVideo Credit: Ness Studio\\n\\nOriginal Video: https://youtu.be/AslPKXn11Go\\n---------------------------------------------------------------------------------\\n\\nSIRFUL - 2 SONG REACTION | NEPALI SONG | Malaysian Girl Reactions\\n\\n\\n#Malaysian #Girl #React #reaction #Nepal #Nepali\\n-----------------------------------------------------------------------------------------------------------\\n\\nFOLLOW US: \\nFacebook - https://www.facebook.com/MalaysianGirlReactions\\nInstagram - https://www.instagram.com/MalaysianGirlReactions\\ntwitter - https://twitter.com/MalaysianGirlR1\\nEmail Address: malaysiangirlreactions1@gmail.com \\n-------------------------------------------------------------------------------------------------------------\\n\\nCopyright Disclaimer: Copyright Disclaimer under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\"\\nFor purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by\\nCopyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-04-09T06:05:22.000Z',\n",
       "  48672,\n",
       "  3391.0,\n",
       "  335.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC3f8EmDP2JrqTNZjyvk0FkQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'contact@camperamedia.com',\n",
       "  nan,\n",
       "  'Imprint:\\nCAMPERA MEDIA\\nc/o Rahim Erbil\\nSt.-Apern Str. 20\\n50667 Cologne\\nGermany',\n",
       "  101000,\n",
       "  19298023,\n",
       "  893,\n",
       "  'DE',\n",
       "  'https://www.youtube.com/watch?v=s-FcS8xrEi0',\n",
       "  'K-Pop Live Music Reaction - Producer reacts!',\n",
       "  'Donations: https://streamlabs.com/rahimerbil/tip\\n\\nThe Story behind RAHIM: https://youtu.be/-N1wiEu0YDk\\n\\n❤️ Social Media Links ❤️\\nRAHIM:\\n► Instagram: https://instagr.am/rahimerbil\\n► TikTok:  https://www.tiktok.com/@rahimerbil\\n► Twitter: https://twitter.com/rahimerbil\\n► Twitch: https://twitch.tv/rahimerbil\\n► Reddit: https://www.reddit.com/r/RahimErbil/\\n► Discord: https://discord.gg/z4GY24X\\nDANA:\\n► Instagram: https://instagr.am/danarolle\\n► YouTube: https://www.youtube.com/danarolle\\n► TikTok:  https://www.tiktok.com/@danarolle.tiktok\\n\\n📻 Follow my Spotify weekly Top20 Playlist:\\n► http://bit.ly/RAHIM-Top20\\n\\n🎚️ My Amazon Shop*:\\n► https://www.amazon.de/shop/rahim\\n\\n🎧 My headphones:\\n► *Samsung Galaxy Buds (2019)\\nhttps://amzn.to/2PxyBs6\\n► *beyerdynamic DT 770 PRO 250 Ohm for studio use (perfect for mixing in the studio)\\nhttps://amzn.to/2GPL82A\\n► *beyerdynamic DT 770 PRO 80 Ohm for professional recording and monitoring\\nhttps://amzn.to/2LfTbvg\\n► *beyerdynamic DT 770 PRO 32 Ohm for professional sound in the studio and on mobile devices such as tablets and smartphones\\nhttps://amzn.to/2ULTAVz\\n\\n🎚️ Coupons:\\n*WAVES 10%-Off Coupon:\\n► https://www.waves.com/r/agjb3h\\n*Amazon Music UNLIMITED - 90 Days free streaming:\\n► https://amzn.to/2W3Fpju\\n\\n⏰ My clock and sub counter:\\n► *LaMetric Time: https://amzn.to/2ZQGtGl\\n\\nIf someone wants to help create subtitles, click the link below! Thanks!!!\\n⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️\\nhttp://www.youtube.com/timedtext_cs_panel?c=UC3f8EmDP2JrqTNZjyvk0FkQ&tab=2\\n\\n📧 Business inquiries:\\n► contact@camperamedia.com\\n\\n*All links marked with \"►\", are related to an affiliate program. They serve as a guide and refer to products selected by me. If these links are used, a commission can be distributed to me in the case of a purchase decision. It won’t be more expensive! :)',\n",
       "  '2020-03-14T01:33:32.000Z',\n",
       "  43986,\n",
       "  1843.0,\n",
       "  235.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC0FRSQh4P5S-5FwnL8hsQrQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'leetothevibusinessenquiries@gmail.com',\n",
       "  '@mr_golgo',\n",
       "  \"Welcome to my channel - LeeToTheVI on YouTube. I'm a UK Rap artist documenting my journey & developing here in front of you all with the aim to eventually become the best musician I can be.\\n\\nIf you like my music, vlogs or remixes please subscribe and stay tuned for more!.\",\n",
       "  101000,\n",
       "  16209335,\n",
       "  862,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=g4q9QrBhRRQ',\n",
       "  'Mastermind x #OFB Bandokay - War [Music Video] | GRM Daily [Reaction] | LeeToTheVI',\n",
       "  \"Mastermind x #OFB Bandokay - War [Music Video] | GRM Daily [Reaction] | LeeToTheVI.  \\r\\nBuy Tees here: https://hittersanddrillers.com\\r\\nHitters & Drillers playlists Below\\r\\nAppleMusic Playlist https://music.apple.com/gb/playlist/hitters-drillers/pl.u-AkAm8qyI2VDK2J\\r\\nSpotify Playlist: https://open.spotify.com/user/9f55qqpirry9hxy1im7rxqtuy/playlist/4qcWIfRbMJlF436kVIcnhe?si=yHo0NsQmSheyQxc03z9Dew\\r\\n\\r\\nThis UK reaction was recorded filmed & edited by myself Levi. LeeToTheVI 2019. \\r\\nAppleMusic: https://music.apple.com/gb/album/war-feat-bandokay-single/1501391279\\r\\niTunes: https://music.apple.com/gb/album/war-feat-bandokay-single/1501391279\\r\\nSpotify: https://open.spotify.com/track/5fLvnG9XNRpQWwy8kNDTDk?si=nZRHvxRFR5iF1xnwc14kBg\\r\\nwatch the full video here: https://www.youtube.com/watch?v=bV8dWSym3Fg\\r\\n\\nSUBSCRIBE TO GRM DAILY: http://bit.ly/GRMsubscribe  \\nVISIT: http://grmdaily.com/\\nDOWNLOAD THE GRM APP FOR iPHONE & iPAD NOW: https://itunes.apple.com/us/app/grm-d...\\nDOWNLOAD FOR ANDROID NOW: https://play.google.com/store/apps/de...\\nWWW.GRMDAILY.COM\\n@GRMDAILY\\nTWITTER : http://www.twitter.com/grmdaily\\nFACEBOOK : http://www.facebook.com/grmdaily\\nINSTAGRAM : https://www.instagram.com/grmdaily\\n\\r\\n-----------------------------------------------------------------------------------------------------------------\\r\\n\\r\\n► Subscribe➜ http://hyperurl.co/LeeToTheVI\\r\\n\\r\\n★ Connect With Me ★ \\r\\n\\r\\nLeeToTheVIBusinessEnquiries@Gmail.com\\r\\n\\r\\n► YouTube ➜ http://hyperurl.co/LeeToTheVI\\r\\n► Website ➜ http://hyperurl.co/levi\\r\\n► Facebook ➜ http://hyperurl.co/leetotheviFB\\r\\n► Twitter ➜ http://hyperurl.co/leetotheviTW\\r\\n► Google+ ➜ http://hyperurl.co/leetotheviGplus\\r\\n► Instagram ➜ http://hyperurl.co/leetotheviInsta\\r\\n► SoundCloud ➜ http://hyperurl.co/leetotheviSoundcloud\\r\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\r\\nWelcome to my channel - LeeToTheVI on YouTube. I'm an guy with a passion for music documenting my life & and pasion here in front of you all.\\r\\n\\r\\nIf you like the music, vlogs or please subscribe and stay tuned for more!.\\r\\n\\r\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\\r\\n\\r\\nPlease like the video if you enjoyed. \\r\\n\\r\\nBackground music produced by Duke Togo check him out below\\r\\nDuke's Youtube https://www.youtube.com/user/VIP2GAMING\\r\\nDuke's Instagram https://www.instagram.com/mr_golgo/\\r\\nDuke's Twitter https://twitter.com/ViP2GAMING_\\r\\n\\r\\nor\\r\\n\\r\\nPRODBYWALKZ\\r\\nWebsite: http://www.prodbywalkz.com\\r\\nYouTube: https://www.youtube.com/ProdByWalkz\\r\\nFacebook: https://www.facebook.com/ProdByWalkz\\r\\nTwitter: https://www.Twitter.com/ProdByWalkz\\r\\nInstagram: https://www.Instagram.com/ProdByWalkz\\r\\nGoogle Plus: https://plus.google.com/+Prodbywalkz\\r\\nSnapChat: ProdByWalkz\",\n",
       "  '2020-03-20T00:39:14.000Z',\n",
       "  53880,\n",
       "  2228.0,\n",
       "  305.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCuzfW1NsnNej2NTIo6vTOrQ',\n",
       "  'koreanamateurtv@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"안녕하세요~ We are 'Korean Amateur TV'!! \\nWe do reaction videos and having culture experiences of Thailand. \\nPlease subscribe to our Youtube channel and stay tuned to what we are doing!! Thanks~ 땡큐~!\\n\\nContact : koreanamateurtv@gmail.com\\nFacebook : www.facebook.com/pg/KoreanAmateurTV\",\n",
       "  98100,\n",
       "  24619062,\n",
       "  296,\n",
       "  'TH',\n",
       "  'https://www.youtube.com/watch?v=NhL2F-pf5mQ',\n",
       "  '[Korean Reaction] ดี๊ดี (UNEXPECTED) - JAYLERR x PARIS [Official Music Video]',\n",
       "  'Korean Reaction to ดี๊ดี (UNEXPECTED) - JAYLERR x PARIS [Official Music Video]   Nadao Music\\n\\nSubscribe to Korean Amateur TV!\\nYoutube : https://goo.gl/y07brv\\nFacebook : https://www.facebook.com/pg/KoreanAmateurTV',\n",
       "  '2020-02-21T10:00:05.000Z',\n",
       "  112429,\n",
       "  2353.0,\n",
       "  163.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC1XLTLQdr0zSNf-Qhy3BpLQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'If you love music, this is the place to be. You can find more about me through my mental health channel here: http://www.youtube.com/depressiontoexpression\\n\\nIf you want to suggest new songs and join our community on Patreon and Discord, sign up here: http://www.patreon.com/depressiontoexpression',\n",
       "  96200,\n",
       "  5587032,\n",
       "  64,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=Xr4FGeFmT8c',\n",
       "  'Parthiv Gohil - Yoon Shabnami (REACTION!)',\n",
       "  \"Don't forget to subscribe for reactions from all different kinds of music.\",\n",
       "  '2020-01-30T18:56:50Z',\n",
       "  216102,\n",
       "  9468.0,\n",
       "  2065.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCb63z5VLDfOYNeCyizq876A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@v_neshgram',\n",
       "  \"Vanakam Vanthanam Namaste Namaskar! Welcome to my channel, My name is Vignesh. I am a Desi Indian Guy who upload Reaction videos to Music From all around the world, Try not to laugh challenge,Trailer Reactions, Gaming videos, Reviews,vlog whenever I travel and even much more.\\n\\nEventhough we are from different parts of the world who hears different music,speaks different languages,different race,different religion and culturally diverse etc But Here we are together as a united army called V Gang 🤘🏼 \\n\\nI love making videos ❤\\n\\nIf you Love what I'm doing here don't forget to subscribe and stay tuned for more ☺\",\n",
       "  96000,\n",
       "  12602840,\n",
       "  1665,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=qI1coO7geT8',\n",
       "  'INDIANS REACT TO Fnaïre Ft. Saad Lamjarred - ASIF HABIBI (Music Video)',\n",
       "  'Me and My Sister\\'s reaction to Fnaïre Ft. Saad Lamjarred - ASIF HABIBI (Music Video)\\n\\nJOIN THE \\'V\\' GANG FAMILY : https://www.youtube.com/c/Vnesh\\n\\nCheck out my Ahmedabad Vlogs: https://www.youtube.com/playlist?list=PL47kLA2VjGk5O-4hFHvPWko3MBqCYL2jS\\n\\nCheck out My Mumbai Vlogs: https://www.youtube.com/playlist?list=PL47kLA2VjGk5vREWyvXiYIsf_9-SnfrB1\\n\\nAlso check out my reaction to : https://www.youtube.com/watch?v=5l0wZEm8H0A\\n\\nOriginal Video: https://www.youtube.com/watch?v=ssZ8vlY1rJU\\n\\nHelp the channel Grow: https://www.paypal.me/vneshvar :)\\n\\nDon\\'t forget to follow me in\\nInstagram: https://www.instagram.com/v_neshgram/\\n \\nMy Sister\\'s Instagram: https://instagram.com/priya_foxie?igshid=7s0cgwjvrnp5\\n\\nFacebook: https://www.facebook.com/Vnesh495/\\n\\nFair Use: https://www.copyright.gov/fair-use/more-info.html\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS\\n\\n#SaadLamjarred #Fnaïre #AsifHabibi #Moroccan #Funny #IndianReaction #Reaction #Vgang\\n\\n\"LIKE \", SHARE AND/ OR COMMENT video if you enjoyed it! It really Helps Me Out!! Thanks for Watching!!',\n",
       "  '2020-02-23T21:02:05.000Z',\n",
       "  159627,\n",
       "  4587.0,\n",
       "  524.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCx5d2tq_bzIq9Sb98lk6rcA',\n",
       "  'itstoosushi@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hey guys it’s Sushi !!\\nEntertaining videos every... day?!                         \\n\\nCreate your best LIFESTYLE + REACTIONS  +  GOOD VIBES\\n                 ✔ Follow me on Instagram @TOOSUSHI2\\n                 ✔ Business Inquiries: itstoosushi@gmail.com\\n                                    THE SUSHI NATION  🍣',\n",
       "  95400,\n",
       "  18268173,\n",
       "  345,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=CycxtV9yjno',\n",
       "  'Eminem - Godzilla (ft Juice Wrld) (Music Video) | Reaction',\n",
       "  nan,\n",
       "  '2020-03-16T02:09:10.000Z',\n",
       "  140855,\n",
       "  4530.0,\n",
       "  1009.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCA71Fz0UOgt3HQY6w8RWyaQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'anthonynashfilms@gmail.com',\n",
       "  nan,\n",
       "  'listening to music and stuff',\n",
       "  93500,\n",
       "  18538886,\n",
       "  588,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=g8h6VspCPxo',\n",
       "  \"LILI's FILM #3 - LISA Dance Performance Video - REACTION....\",\n",
       "  '● More reactions on Patreon! https://www.patreon.com/anthonysnobody\\n\\nSocial Media! \\n● Twitter 🐦 - https://twitter.com/anthonysnobody\\n● Twitch 🎮 - https://www.twitch.tv/anthonysnobody\\n● Instagram 📷 - https://www.instagram.com/anthonysnobody\\n● Discord 🤝 - https://discord.gg/yZYFn4n\\n\\nIntro Song - Tobi Lou - Knock Knock\\nOriginal Video - https://youtu.be/je_R3gEtDbw\\n\\n#anthonytoo #LILIFILM #LISA\\n\\nBusiness Only Email  \\nanthonynashfilms@gmail.com\\n\\n💜 As always, thank you to the people that go above and beyond to support me and my channel on Patreon:\\nJax\\nKatie\\nKendrick N Chism\\nMuzainah Quadri\\n\\nThanks for Watching!',\n",
       "  '2020-04-21T06:10:44.000Z',\n",
       "  98641,\n",
       "  5364.0,\n",
       "  196.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCCSrx-sJngIg3PvKwsYRf8Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"CDTVProductions' twin sold out and made a reaction channel. Nice to see you here, hope you enjoy.\",\n",
       "  92000,\n",
       "  6967356,\n",
       "  100,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=S5W9Kr3reKM',\n",
       "  'Eminem \"Music To Be Murdered By\" - ALBUM REACTION/REVIEW',\n",
       "  'Eminem \"Music To Be Murdered By\" - ALBUM REACTION/REVIEW:\\nHey guys!\\nSo Eminem released a surprise album last Friday titled Music to Be Murdered By, containing features from artists like Juice WRLD, Don Toliver & Ed Sheeran, also releasing a music video for the song Darkness.\\nI thought Eminem\\'s last project, Kamikaze, was a pretty solid effort if not a bit inconsistent, so how does MTBMB compare? Well this is CDTVThaG, and watch my first reaction/review of Music To Be Murdered By to find out!\\n\\nPrevious Video:\\n\\n➤ Smokepurpp \"Deadstar 2\" - ALBUM REACTION/REVIEW - https://www.youtube.com/watch?v=2D5F1...\\n\\nRelated/Mentioned Videos:\\n\\n➤ Eminem \"Kamikaze\" - ALBUM REACTION/REVIEW - https://www.youtube.com/watch?v=Kr02k...\\n➤ Eminem \"KILLSHOT\" (MGK Diss) - REACTION/REVIEW - https://www.youtube.com/watch?v=sx-Wr...\\n\\nMusic To Be Murdered By Full Album Tracklist:\\n1. Premonition (Intro)\\n2. Unaccommodating (feat. Young M.A.)\\n3. You Gon\\' Learn (feat. Royce Da 5\\'9\" & White Gold)\\n4. Alfred (Interlude)\\n5. Those Kinda Nights (feat. Ed Sheeran)\\n6. In Too Deep\\n7. Godzilla (feat. Juice WRLD)\\n8. Darkness\\n9. Leaving Heaven (feat. Skylar Grey)\\n10. Yah Yah (feat. Royce da 5\\'9\", Black Thought, Q-Tip & Denaun)\\n11. Stepdad (Intro)\\n12. Stepdad\\n13. Marsh\\n14. Never Love Again\\n15. Little Engine\\n16. Lock It Up (feat. Anderson .Paak)\\n17. Farewell\\n18. No Regrets (feat. Don Toliver)\\n19. I Will (feat. Royce da 5\\'9\", Joell Ortiz & KXNG Crooked)\\n20. Alfred (Outro)\\n\\nMAIN CHANNEL:\\n\\nCDTVProductions - https://www.youtube.com/channel/UCkTq...\\n\\nInstagram - https://www.instagram.com/cdtvproduct...\\nTwitter - https://twitter.com/CDTVProductions\\nFacebook Page - https://www.facebook.com/cdtvproducti...\\nPatreon - https://www.patreon.com/CDTVProductions\\n\\nEquipment I Use to Make Videos:\\nRode NT1-A Microphone - http://amzn.to/2yub1zv\\nScarlett 2i2 Solo Interface - http://amzn.to/2iOByB7\\nCanon EOS Rebel SL2 Camera - http://amzn.to/2E4MnsQ\\n\\nBackground Music By Prod. Riddiman - https://www.youtube.com/watch?v=3zX-v...\\n\\nDisclosure: This description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission, with no extra cost to you. This help support the channel and allows me to continue to make videos like this. Thank you for the support!\\n\\nRAP 2020/HIP HOP 2020',\n",
       "  '2020-01-20T23:29:59.000Z',\n",
       "  166358,\n",
       "  7818.0,\n",
       "  2604.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCcEW4SihMCGpa92wUD3vqvA',\n",
       "  'musicdzp@gmail.com',\n",
       "  nan,\n",
       "  'musicdzp@gmail.com',\n",
       "  '@dzpmusic',\n",
       "  'No copyright infringement intended. The purpose of creating this channel is only for music and promotion! I think that everybody has an ear for music, but he/she searches the kind of music that matches to him/her!! Please enjoy and let the music play!\\n\\nAll the uploads on this channel are for the promotional purposes only, and are uploaded after release! if you are label manager or artist and you don\\'t want your material featured on the channel please contact me it will be removed inside 24h!\\n\\nFor any problem please contact me on ( musicdzp@gmail.com ) or find me on Facebook (\"https://www.facebook.com/dzppsy\")!! Thank you for supporting my channel!\\n\\nDZP Music & Trancentral are part of Glide Bros Family \\nhttp://www.glidebros.com/',\n",
       "  91400,\n",
       "  12654190,\n",
       "  6042,\n",
       "  'RS',\n",
       "  'https://www.youtube.com/watch?v=pEorSxYX700',\n",
       "  'Katharsis & Mystical Space - Chemical Reaction (New Edit)',\n",
       "  '▶️ Katharsis - Paka Walla EP ◀️ // Profound Records [PREP100]\\nBeatport: https://www.beatport.com/release/paka-walla/2848982\\nGenre: Psytrance\\nRelease Date: 2020-02-17\\nLabel: Profound Records \\n\\n🔊Tracklist🔊\\n01. Katharsis - Paka Walla (Original Mix)\\n02. Katharsis & Mystical Space - Chemical Reaction (New Edit)\\n\\nProfound Records \\n➭ website: http://www.profoundrecordsofficial.com/\\n➭ soundcloud: https://soundcloud.com/profoundrecords\\n➭ facebook: http://www.facebook.com/ProfoundRecords.Official\\n➭ beatport: http://www.beatport.com/label/profound-records/26305\\n➭ twitter: https://twitter.com/ProfoundRecords\\n➭ junodownload: http://www.junodownload.com/labels/Profound/releases/\\n\\nKatharsis\\n➭ soundcloud: https://soundcloud.com/katharsis-4\\n➭ facebook: https://www.facebook.com/pages/Katharsis/436004729840204\\n➭ beatport: https://pro.beatport.com/artist/katharsis/311402\\n➭ youtube: https://www.youtube.com/channel/UCNRTJ3sca_QUvgfQgJ6mY7Q\\n\\nFollow\\n➭ facebook: https://www.facebook.com/dzppsy\\n➭ youtube: https://www.youtube.com/c/DZPMusic\\n➭ soundcloud: https://soundcloud.com/dzpmusic\\n➭ twitter: https://twitter.com/dzp_music\\n➭ instagram: https://www.instagram.com/dzpmusic/\\n\\nFollow Friends\\n➭ MrLemilica1: http://bit.ly/SubscribeLemilica1\\n➭ MrLemilica2: http://bit.ly/SubscribeLemilica2\\n\\nTrancentral\\n➭ Spotify: http://bit.ly/SpotifyTrancentral\\n➭ youtube: http://bit.ly/TrancentralSubscribe\\n➭ facebook: https://www.facebook.com/TrancentralTV\\n➭ Website: http://trancentral.tv\\n\\nGlide Bros. LTD: http://www.glidebros.com\\n➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖\\nFor any problem please contact me on (\"musicdzp@gmail.com\") or find me on Facebook \\n(\"https://www.facebook.com/dzppsy\")!! Thank you for supporting my channel!\\n\\n#ProfoundRecords #Psytrance #PsychedelicTrance',\n",
       "  '2020-02-17T18:56:33.000Z',\n",
       "  1437,\n",
       "  71.0,\n",
       "  2.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCdiRSaDbmx-BHs-0l-N4KZA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@kjsss9',\n",
       "  'Welcome! This is K-pop Artist Reaction Channel.🎧🎥\\nIf you want to see more videos, please dm or comment.\\n\\n✤ JUST REACTS live stream time is 1 a.m. on Tuesday and 10 a.m. on Saturday in Korean time.\\n\\n----------------------------------\\n\\n안녕하세요.\\nJUST REACTS 입니다.\\n저희는 뮤직비디오 위주의 리액션 채널입니다.\\n많은 사랑과 관심 부탁드리겠습니다.',\n",
       "  90300,\n",
       "  9922193,\n",
       "  128,\n",
       "  'KR',\n",
       "  'https://www.youtube.com/watch?v=Pnu3XEfO6mM',\n",
       "  \"K-pop Artist Reaction] BTS (방탄소년단) 'ON' Kinetic Manifesto Film : Come Prima\",\n",
       "  \"BTS (방탄소년단) 'ON' Kinetic Manifesto Film : Come Prima 🎶\\n\\nHello! We Are Korean, K-pop Artist. 🇰🇷\\nIf you want to see more videos please dm 📩 or comment. 📝\\n\\n✤ live streaming time is 1 a.m. on Tuesday and 10 a.m. on Saturday in Korean time.\\n\\n------------------------------------------------------------------\\n[ KUK HWA x HOONIA - Not Easy ] 🎧\\n\\nSpotify: https://open.spotify.com/track/21BJ0MWVUUjyD8DwcvfdCI\\nApple Music: https://music.apple.com/kr/album/not-easy-single/1497240047\\nTidal: https://tidal.com/track/129950713\\nYouTube Music: https://music.youtube.com/watch?v=nt_kM4SGBjE&feature=share\\namazon music: https://music.amazon.com/albums/B084DJ4S5G?trackAsin=B084DGGR7S&ref=dm_sh_a7bb-e7a4-dmcp-1c98-3013c&musicTerritory=US&marketplaceId=ATVPDKIKX0DER\\nMelon: http://kko.to/Onf1i0U0j\\nGenie: https://www.genie.co.kr/1ZO0E7\\nBugs: https://music.bugs.co.kr/track/31819740\\n------------------------------------------------------------------\\n● J.R 😎 Instagram : https://www.instagram.com/justreacts_official\\n● Son😎 Instagram : https://www.instagram.com/kjsss9/\\n● Kuk😁 Instagram : https://www.instagram.com/kukseungpyo/\\n------------------------------------------------------------------\\n\\n| edited by. Roal 🐜\\n--\\n#KoreanReaction #BTS #ON\",\n",
       "  '2020-02-22T10:57:20.000Z',\n",
       "  211142,\n",
       "  13272.0,\n",
       "  571.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCYnkPGPqLy7PgVixfY7hqrg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@deacs_gg',\n",
       "  'Welcome to the show.',\n",
       "  89100,\n",
       "  14503708,\n",
       "  816,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=S7kR2J2d5QE',\n",
       "  \"ACCEPTING MY DEMISE (LILI's FILM #3 - LISA Dance Performance Video Reaction)\",\n",
       "  \"🥴 I'll be okay. Maybe.\\n🌌 Patreon | https://www.patreon.com/deacs_gg\\n\\n🥶 Thigh. High. Boots. \\n\\n=========== Check out my other social media! ===========\\n🔌 Main Channel | https://www.youtube.com/c/Deacs\\n🔌 Second Channel | https://www.youtube.com/c/hellBENt\\n🔌 TwitchTV | https://www.twitch.tv/deacs_gg\\n🔌 Twitter | https://twitter.com/deacs_gg\\n🔌 Instagram | https://www.instagram.com/deacs_gg/\\n🔌 Discord | https://discord.gg/bnxqGvc\\n🔌 Snapchat | https://www.snapchat.com/add/deacs.gg\\n🔌 Spotify | https://open.spotify.com/user/go_deacs1996 \\n=================================================\\n\\n🧾 Translate for me: http://www.youtube.com/timedtext_cs_panel?c=UCYnkPGPqLy7PgVixfY7hqrg&tab=2\\n\\n🌴 Don't forget to click that little notification bell to make sure you *actually* see all my new videos! \\n\\n💙 Thanks for watching! Feedback in general is always very much appreciated.\\n\\n#LISA #BLACKPINK #블랙핑크\",\n",
       "  '2020-04-20T13:50:33.000Z',\n",
       "  157521,\n",
       "  9001.0,\n",
       "  284.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCxj36tUOikEb_B71VeBAfTw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'andypiluk@gmail.com',\n",
       "  '@andrewpilukofficial',\n",
       "  'The Official Channel of Andrew Piluk! \\n\\nThank you so much for checking the channel out! Videos are posted here daily that include reactions,streams, and vlogs! \\nMake sure to subscribe and thank you again!',\n",
       "  88500,\n",
       "  17037569,\n",
       "  639,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=FJA1VOqEypw',\n",
       "  \"LILI's FILM #3 - LISA Dance Performance Video REACTION!\",\n",
       "  \"Thank you for watching my reaction to LILI's FILM #3 - LISA Dance Performance Video! \\r\\n\\r\\nFollow me on Twitter: https://twitter.com/AndyPiluk\\r\\n\\r\\nFollow me on Instagram: https://www.instagram.com/andrewpilukofficial/\\r\\n\\r\\nBusiness Inquires- andypiluk@gmail.com\\r\\n\\r\\n\\r\\nOriginal Video: https://www.youtube.com/watch?v=je_R3gEtDbw\\r\\n\\r\\nCOPYRIGHTS: FAIR USE, Title 17, US Code (Sections 107-118 of the copyright law): All media in this video is used for purpose of review & commentary under terms of fair use. All footage, music & images used belong to their respective companies.\\r\\n\\r\\n#LILIFILM #LISA\",\n",
       "  '2020-04-20T12:10:48.000Z',\n",
       "  304327,\n",
       "  20339.0,\n",
       "  813.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCF5-nb1rs5NGRodX9pdH22Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'REACTIONS UNLIMITED IS A YOUTUBE CHANNEL DEDICATED TO SHOWCASING LOCAL AND INTERNATIONAL TALENTS AROUND THE GLOBE, WHETHER POPULAR OR NOT.\\n\\nWE AIM TO PROVIDE HONEST AND UNEDITED REACTIONS TO PROVIDE MEANINGFUL DISCUSSIONS OF THE PERFORMANCES WE REVIEW AND REACT. \\n\\nWE INVITE GUESTS FROM VARIOUS RACES AND NATIONALITIES TO OBTAIN REACTIONS.\\n\\nSTAY TUNED WITH US BECAUSE WE HAVE A LOT OF SURPRISES FOR YOU! SUBSCRIBE NOW!',\n",
       "  87500,\n",
       "  18144777,\n",
       "  424,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=fOOabyqahXo',\n",
       "  'SARAH GERONIMO | TALA with G Force Dancers Live in Toronto | REACTION VIDEO BY REACTIONS UNLIMITED',\n",
       "  'SARAH GERONIMO | TALA with G Force Dancers Live in Toronto | REACTION VIDEO BY REACTIONS UNLIMITED\\n\\nNO COPYRIGHT INFRINGEMENT INTENDED. THIS IS JUST A REACTION VIDEO.\\n\\nCREDIT GOES TO THE OFFICIAL VIDEO: https://www.youtube.com/watch?v=1SLzSlyztJs\\n\\nSUBSCRIBE NOW TO RECEIVE NOTIFICATIONS OF OUR REACTION VIDEOS OF SARAH GERONIMO PERFORMANCES \\n\\nCOMMENT BELOW OF ANY SUGGESTIONS OF SARAH GERONIMO PERFORMANCES  THAT YOU WOULD LIKE TO REACT UPON. \\n\\nCOMMENT BELOW WHAT YOU THINK ABOUT THIS PERFORMANCE OF Tala - Sarah Geronimo with G Force Dancers Live in Toronto\\n\\nTo Those Asking for Our Instagram:\\nAngelo: https://www.instagram.com/angeloworldtravels_and_fitness\\nJulian: https://www.instagram.com/Julianwilusz\\n\\n#sarah\\n#tala\\n#sarahgeronimo\\n#sarahg\\n#gforce\\n#Philippines\\n#Filipino\\n#Pinoy\\n#reactionsunlimited',\n",
       "  '2020-01-21T04:00:02.000Z',\n",
       "  233332,\n",
       "  4677.0,\n",
       "  434.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCDOk20xpy9mww4BDeHc-ncw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  84900,\n",
       "  5876574,\n",
       "  595,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=NCRumBbjhXw',\n",
       "  'Indian Couple Reaction On GENDA PHOOL | Bangla Song In Bollywood',\n",
       "  'Disclaimer : Copyright Disclaimer Under  107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise bebepunjabi  infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n#GendaPhool #bangladesh #ImdianCouple',\n",
       "  '2020-04-02T07:05:44.000Z',\n",
       "  48084,\n",
       "  3130.0,\n",
       "  261.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC6mOZQ0XfDeb-C6yUZB7JrA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'vibevilla@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  84500,\n",
       "  7864204,\n",
       "  113,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=9UzY9gPG5L4',\n",
       "  'Eminem - Music To Be Murdered By FIRST REACTION/REVIEW',\n",
       "  'So Em just dropped this outta nowhere...we\\'re not complaining though! NEW EMINEM!!\\n\\nExtended Version: https://www.patreon.com/vibevilla\\r\\r\\n“Kamikaze” Reaction: https://youtu.be/H3V6m83HhLU\\n\\nOur Top 10 Em Verses: https://youtu.be/jygdg6lcgPY\\n\\nContact/Inquiries: vibevilla@gmail.com \\n\\r\\r\\nInstagram: VibeVillaTO \\r\\nTwitter: VibeVillaTO \\r\\r\\n\\nDonations: https://www.paypal.me/vibevilla\\r(Donations go towards building the channel, thanks for your support!)\\r\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\r*Copyright Disclaimer under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use. No copyright infringement intended.  All RIGHTS BELONG TO THEIR RESPECTIVE OWNERS',\n",
       "  '2020-01-22T13:41:02Z',\n",
       "  334964,\n",
       "  12676.0,\n",
       "  1781.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCv2nn-si6DneKev37ox_1kA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'prodwalkz@gmail.com',\n",
       "  nan,\n",
       "  \"Prod By Walkz is about taking Drill Worldwide. Creating a platform strictly for drill acts and helping to solidify the genre's impact and the careers of those Artists covered.\",\n",
       "  81600,\n",
       "  17858954,\n",
       "  1180,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=mMBtl9xJR2k',\n",
       "  'DigDat x Aitch - Ei8ht Mile [Music Video] | GRM Daily (REACTION)',\n",
       "  \"Who's Got Bars EP.9 ➜ https://youtu.be/4H7UKn75aAM\\nSupport On Patreon ➜ https://www.patreon.com/ProdByWalkz\\n\\nSnap ➜ https://www.snapchat.com/add/prodbywalkz\\nLease UK Drill Beats ➜ http://traktrain.com/prodbywalkz\\nSpotify Playlist ➜ http://bit.ly/drilltracks\\nApple Music Playlist ➜ http://bit.ly/appledrill\\n\\nBeat in Intro/Outro ➜ ‘Anywhere’ by Claw96ix\\nLink ➜ https://soundcloud.com/claw-ninesix/anywhere-cb-x-fizzler-x-ghosty-uk-drill\\nInsta ➜ @Claw96ix\\n\\nReacting to DigDat x Aitch - Ei8ht Mile [Music Video] | GRM Daily\\n\\nOriginal Video ➜ https://www.youtube.com/watch?v=afA0JL-oXwI\\n\\n▼ Connect With Walkz\\n\\nYouTube: https://www.youtube.com/ProdByWalkz\\nInstagram: https://www.Instagram.com/ProdByWalkz\\nTwitter: https://www.Twitter.com/ProdByWalkz\\nSnapchat: https://www.snapchat.com/add/prodbywalkz\\n\\n▼ Business Enquiries \\n\\nEmail: prodwalkz@gmail.com\",\n",
       "  '2020-01-16T23:30:54.000Z',\n",
       "  122179,\n",
       "  4901.0,\n",
       "  369.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCHNWmhhYynMPUIT5T-hflQg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  80400,\n",
       "  12987569,\n",
       "  90,\n",
       "  'ES',\n",
       "  'https://www.youtube.com/watch?v=HPbEa-uGZlw',\n",
       "  'Morissette Amon & Marcelito Pomoy \"Secret Love Song\" (Reaction Video)',\n",
       "  'This is my video reaction to #MorissetteAmon and #MarcelitoPomoy, singing #SecretLoveSong from #LittleMix\\n\\nI love, love this song, and the way they harmonize is beautiful! Both of them are very talented!! Philipino power!!!!\\nHope you have enjoyed this reaction video. If you want me reacting to more videos please comment below! ⬇️⬇️ \\nAnd if you like my channel please Subscribe!\\nIf can find me on TWITTER: https://twitter.com/missunnaturally',\n",
       "  '2020-01-03T15:10:42.000Z',\n",
       "  146960,\n",
       "  2960.0,\n",
       "  87.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCxikaEkkXH23Y3smqPBpNJQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@thethirdernest',\n",
       "  'Welcome to my channel! I like to make reaction videos, vlogs and travel edits. Please consider subscribing to my channel! Thank you for stoping by :)',\n",
       "  80000,\n",
       "  6282788,\n",
       "  272,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=rGXx6EotpDM',\n",
       "  'EMINEM - GODZILLA MUSIC VIDEO REACTION!! | FUN AND TOUCHING. MAKING JUICE PROUD.',\n",
       "  \"Become a Patreon for exclusive perks and be a direct help to the channel!! https://www.patreon.com/thethirdernest\\n\\nDISCORD FOR THE COOL KIDS: https://discord.gg/ycGkz26\\n\\nAs always...love all of thethirdfamly and I'll see yall on the next video!!\\n\\nFOLLOW ME ON INSTA!! \\nPhotography: https://www.instagram.com/ernestarrellanoiii\\nPersonal: https://www.instagram.com/thethirdernest/\\n\\nTWITTER: https://twitter.com/THETHIRDERNEST\\n#thethirdernest #thethirdfamily #GODZILLA\",\n",
       "  '2020-03-10T01:36:37.000Z',\n",
       "  64809,\n",
       "  4119.0,\n",
       "  481.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCbIfhv_oqdnFNthEQ2Pqmxg',\n",
       "  nan,\n",
       "  '@ellislamar',\n",
       "  nan,\n",
       "  '@ellislamar',\n",
       "  \"At least 2 new videos everyday, sometimes 5 or more!  Kpop reactions with guitar talk, rambles, and my kpop cat as co-host. Its awesome that you are about to subscribe. That's pretty cool of you.\\n\\n---\\nInstagram: https://www.instagram.com/ellislamar/\\nSoundcloud: https://soundcloud.com/ellislamar\\nTwitter: https://twitter.com/ellislwright\\nFacebook: https://www.facebook.com/EllisLamarMusic/\",\n",
       "  79100,\n",
       "  25169216,\n",
       "  1458,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=74SsAFijgVQ',\n",
       "  'Alip Ba Ta - The Godfather theme song (fingerstyle guitar cover) reaction / Guitarist Reacts',\n",
       "  'Ellis, the Guitarist Reacts #1178 // Patreon: https://www.patreon.com/EllisLamar\\n\\n Alip Ba Ta Fingerstyle Cover Reactions:https://www.youtube.com/playlist?list=PLe7MLm163TBiAhCQNUfAWi2bx7KJJMozX\\n\\nNew Uploads Everyday! \\n\\nPatreon: https://www.patreon.com/EllisLamar\\nInstagram: https://www.instagram.com/ellislamar/\\nFacebook: https://www.facebook.com/EllisLamarMusic\\nSoundcloud: https://soundcloud.com/ellislamar\\nTwitter: https://twitter.com/ellislwright\\n\\n#ALip #Godfather #Reaction',\n",
       "  '2020-03-04T08:29:07.000Z',\n",
       "  402011,\n",
       "  6178.0,\n",
       "  474.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCmPxR_pAVeuwOj285TXbGuQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  76000,\n",
       "  8822527,\n",
       "  40,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=iC4g8v8eOWg',\n",
       "  'BALKAN MUSIC REACTION | 2BONA, KIDDA, THCF, BANDATA NA RUBA (BNR)',\n",
       "  \"Balkan Music Reaction with Selena Marianova and Fabian J!\\n\\nHere are the songs we reacted to:\\n\\n1: KIDDA - QA PO THU\\n2: 2BONA X THCF - KOMIRAN\\n3: BANDATA NA RUBA (BNR) - EVALA\\n\\nThese songs are from Albania, Macedonia, Serbia and Bulgaria\\n\\n----------------------------------------------------------------------------------------------------\\n\\nCheck out our Albanian Music Reaction ( Noizy - Rapstar ) on\\n\\nFabian's Channel: https://www.youtube.com/watch?v=FddnbTXlBb8&t=161s\\n\\n---------------------------------------------------------------------------------------------------\\n\\nFind us on Instagram:\\n\\n@SelenaMarianova\\n\\n@Fab55ss\",\n",
       "  '2020-01-20T19:56:25.000Z',\n",
       "  59097,\n",
       "  1045.0,\n",
       "  232.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC_yVJyx7hIbUmunNAZobd4Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  75900,\n",
       "  18567226,\n",
       "  273,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=FJ87UkeyV1w',\n",
       "  'HARD REACTION | EMIWAY BANTAI | START OF A DISS BATTLE ?',\n",
       "  'NEW CHANNEL : https://www.youtube.com/channel/UCMZa3B82efAu_xEEzBbJ6eg\\n\\nOriginal Video : https://www.youtube.com/watch?v=9-YmtwUfoVU\\n\\nInstagram : @thes2life\\nhttps://instagram.com/thes2life?r=nametag',\n",
       "  '2020-04-16T11:00:13.000Z',\n",
       "  43047,\n",
       "  3473.0,\n",
       "  508.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCycPUAfCPPp07iTTfK7prJw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'loganfamily91@gmail.com',\n",
       "  nan,\n",
       "  'Welcome to the Logan Fam Channel. We will be giving you reactions to new music and vlogs everyday!',\n",
       "  75700,\n",
       "  14312320,\n",
       "  733,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=vu7k3CEdPz0',\n",
       "  'YUMMY BY JUSTIN BIEBER | A FILM BY PARRIS GOEBEL (reaction)',\n",
       "  '#yummy #parrisyummy #justinbieber\\n\\nIn this video we react to A film by Parris Goebel | Justin Bieber Yummy. We hope you enjoy!\\n\\nShakera’s Lash Line:  https://saslash.bigcartel.com\\n\\nJoin the LoganFam by subscribing to our channel \\n\\nhttps://www.youtube.com/channel/UCycP...\\n\\nTurn on your post notifications to notified whenever we post!\\n\\nLINKS TO SOME  OF OUR OTHER  VIDEOS\\n\\n I BREAK UP WITH  SHAKERA               \\nhttps://www.youtube.com/watch?v=sP8To...\\n\\nNEW APARTMENT TOUR                       \\nhttps://www.youtube.com/watch?v=q6eDP...\\n\\nMIAMI VLOG                                            \\nhttps://www.youtube.com/watch?v=0VDsI...\\n\\nBe sure to like, comment, share, and subscribe In this video you enjoy! \\n\\nFor PR/business inquires:  email us at loganfamily91@gmail.com \\n\\nInstagram \\n\\nLoganfamofficial',\n",
       "  '2020-01-10T05:20:21.000Z',\n",
       "  400692,\n",
       "  10060.0,\n",
       "  592.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCU0eCWO-6ucZuCMAYTXwTdw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'mexinesefamily@gmail.com',\n",
       "  '@uthmman',\n",
       "  'Hi! We are the Mexinese Family, a chaotic family that stans BTS!! And we love making funny videos for our family here on YouTube. Join the familia, new videos every Tuesday, Thursday, and Saturday! 💜\\n\\n\\n\\n\\n\\nOh, and we have a pet rock named Rocky.',\n",
       "  75100,\n",
       "  14413986,\n",
       "  184,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=cDRKRGHKYGo',\n",
       "  \"BTS (방탄소년단) 'ON' Kinetic Manifesto Film : Come Prima (COUPLES REACTION!)\",\n",
       "  \"In this BTS reaction video, we react to BTS (방탄소년단) 'ON' Kinetic Manifesto Film : Come Prima by Big Hit Labels for the first time! THE TIME HAS FINALLY COME FAMILIA!!! We have been very patient and deserve this reward!!! How is everyone's heart rate? \\n\\n🎉 Enjoy 40+ Minute Run BTS & Bon Voyage Reactions With Us Here Familia!: http://bit.ly/MexineseRunBTS \\n\\n🔔 Subscribe for more chaotic reaction videos! 3x new videos per week!: http://bit.ly/MexineseFamily 💜\\n\\n💜 Only ARMY Will Know: https://www.purpleidol.com \\n\\n📱 Connect with us on Social Media: \\nhttps://www.instagram.com/uthmman/\\nhttps://www.instagram.com/marisolrromo/ \\nhttps://twitter.com/MexineseFamily \\nhttps://www.instagram.com/iamrockythepetrock/ \\n\\n💥 25% OFF ALL SUPPLEMENTS AND ENERGY DRINKS! Use code 'UTHMAN25' here: https://www.Bang-Energy.com (OUR SECRET TO STAY CHAOTIC)\\n\\n🌎 Make a donation today to give the world’s most vulnerable children the nutrition, water, and medical supplies they desperately need. If you can't donate, please share: http://bit.ly/MexineseUNICEF\\n\\nCopyright Disclaimer: I do NOT own the videos nor the images featured in the video. All rights belong to its rightful owner/owner's. No copyright infringement intended. Feel free to contact us for any takedown requests.\\n\\nANNDDD no one actually reads this far down... WHAT IS YOUR FAVORITE SONG?!!??! \\n\\n📧 Business Inquiries: mexinesefamily@gmail.com\",\n",
       "  '2020-02-22T10:01:22.000Z',\n",
       "  197338,\n",
       "  15419.0,\n",
       "  678.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCOCwp0JxUDd0QjVjPX7CbfQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hi! I'm Jesica, and I am currently living between San Francisco and Los Angeles. I am an actress, designer, and former Miss Alabama USA.\\n\\nI share my reactions and reviews of Kpop and Korean dramas, and vlog the adventures in my daily life. I love traveling, gaming, learning about other cultures, fashion, milk tea, and my mini Labradoodle, Louie.\\n\\nIf you are a fan of these things too, then Subscribe, and let's be friends. Thanks for stopping by. See you in my videos!\\n\\nYou can also connect with me here: 💜\\nInstagram: http://instagram.com/jesicaahlberg\\nTwitter: http://twitter.com/jesicaahlberg\\nTikTok: @JesicaAhlberg\",\n",
       "  73700,\n",
       "  6126585,\n",
       "  40,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=BJtglSXxdoI',\n",
       "  \"(여자)아이들((G)I-DLE)- 'Oh my god' Official Music Video Reaction\",\n",
       "  \"I am shook. My first reaction to G-Idle's new music video. \\n\\n✨LET'S CONNECT:\\n-Me:\\nhttp://instagram.com/jesicaahlberg\\nhttp://twitter.com/jesicaahlberg\",\n",
       "  '2020-04-11T00:02:30.000Z',\n",
       "  58563,\n",
       "  2483.0,\n",
       "  232.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCQD6V2oDQzmDr7dYb73gzjA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@luqman.ahmed11',\n",
       "  'Pindi Reaction channel features a diverse lineup of the shows that cover food, music, comedy and entertainment. A large family of Reactors of all generation.\\nSubscribe today and become a part of the Pindi Reaction Family!\\n\\nYou can be a part of our Vlogging Channel \"AADI MAN\" to join us in our Journey to Explore the beauty of Our Surroundings. \\nYou can also join us on Facebook and Instagram\\n\\nwe love to hear from you guys, keep on commenting and sharing your thoughts',\n",
       "  73000,\n",
       "  24412251,\n",
       "  817,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=GHwbGpOuhIs',\n",
       "  'Pakistani Reaction To | Top 14 Indian Songs That Became International Hits | Viral Songs',\n",
       "  'SUBSCRIBE our New VLOGGING channel AADI MAN: https://www.youtube.com/channel/UCv3L2q65vn3f9qOdpFoYb2w/\\r\\nThis is a Reaction Video of Top 14 Indian Songs That Became International Hits | Viral Songs by Raging Bull\\r\\nPlease do like it and share your views in Comments Section\\r\\nOriginal VIDEO LINK:https://www.youtube.com/watch?v=3rhaag-i8Kg\\r\\n\\r\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\". \\r\\n\\r\\nJOIN US ON INSTAGRAM\\r\\nLuqman\\'s: https://www.instagram.com/luqman.ahmed11/\\r\\nAdil\\'s: https://www.instagram.com/adil.javed19/\\r\\n\\r\\n\\r\\nJoin us @ Facebook: https://www.facebook.com/PINDI-Reactions-2040745669519773/?notif_id=1521367585178319&notif_t=page_invite_accept&ref=notif\\r\\n\\r\\nComment for suggestions and SUBSCRIBE for more exciting Videos \\r\\nSuggest the videos that you want us to react, and we will watch it with you here.\\r\\nsee you in the next video\\r\\n\"Let\\'s Watch it Together \"',\n",
       "  '2020-03-21T05:00:05.000Z',\n",
       "  194757,\n",
       "  3467.0,\n",
       "  177.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCA3PiN-DkkTOubqAmMK0X4Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Jisko Dil se Acha Lage .. Lagjao Gale. . By clicking on Subscribe Button 😊😊😊 Want to Learn Many GOOD Things around the world.. 👉 Beleive in what you see!!',\n",
       "  72800,\n",
       "  9113422,\n",
       "  297,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=nkf2bqVNDrM',\n",
       "  'Hatti Dhungama - Prem Geet 3 Nepali Movie Song | Reaction | Pradeep Khadka, Sunil Thapa',\n",
       "  '#premgeet3song #indianreaction #nepalesemovie\\nOriginal Video link from OSR Movies:https://youtu.be/UaeScocRNsQ\\n\\npradeep khadka wife, pradeep khadka hd photos, pradeep khadka instagram, pradeep khadka hairstyle, pradeep khadka sister, pradeep khadka house, pradeep khadka home, sunil thapa family photo, sunil thapa age, sunil thapa hindi movie, precious thapa, mary kom (film)\\n\\nDisclaimer:',\n",
       "  '2020-02-06T19:36:46.000Z',\n",
       "  35862,\n",
       "  2203.0,\n",
       "  237.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCQkLGM2WgwIcTaQc82IS_nQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@nagenthiran',\n",
       "  'Teaser reviews, trailer reviews, movie reviews, game reviews, Vlogs and much more!\\nTo submit a request for a reaction/review, please send the links to my personal email down below under business inquiries.',\n",
       "  71900,\n",
       "  11536862,\n",
       "  473,\n",
       "  'MY',\n",
       "  'https://www.youtube.com/watch?v=3r_2t5jetTg',\n",
       "  'Master - Oru Kutti Story Song Reaction | Malaysian Indian Couple | Thalapathy Vijay | Anirudh | 4K',\n",
       "  'NOTE:\\nPlease do not take down the video if there is any Copyright issue. If you have any problem with this content being uploaded please contact for removal. Will response immediately.\\n\\nFilmy React Channel Make Reaction & Review Videos.\\n\\nTHE ORIGINAL LINK:\\nhttps://youtu.be/gjnrtCKZqYg\\n\\nPaakaati Po - Official Trailer:\\nhttps://youtu.be/pOk1HuowbB8\\n\\nNOTICE: \"Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\"\\n\\nConnect With Us :\\nNagen\\nFacebook - https://m.facebook.com/nagenthiran.naidu\\nInstagram - https://www.instagram.com/nagenthiran/\\nTwitter - https://www.twitter.com/iM_naGen\\nFacebook Page - https://www.facebook.com/FilmyReactForever/\\nTikTok - filmyreactcouple\\n\\nSha\\nInstagram - https://www.instagram.com/sharmiladevi91/?utm_source=ig_profile_share&igshid=1nfve6qausneu\\nTwitter - https://twitter.com/sharmiladevi91\\n\\nFilmy React\\nhttps://www.instagram.com/filmy_react\\n\\nDonate :\\npaypal.me/filmyreact\\n\\nHi Filmies, one of the most awaited video song reaction! ENJOY!\\n#MasterSingle #KuttiStory #Master',\n",
       "  '2020-02-14T14:02:18.000Z',\n",
       "  179981,\n",
       "  12458.0,\n",
       "  606.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCPr4GKmweT2P_gKXPlvGt5w',\n",
       "  nan,\n",
       "  '@its_daanish10',\n",
       "  'danzyhd108@gmail.com',\n",
       "  '@its_daanish10',\n",
       "  'HEYY, AND WELCOME TO DANZYS CHANNEL!!!\\n\\nARTIST MANAGED BY - INVESTEXT\\n------------------------------------------------------------------------------------------\\n SUBSCRIBE NOW TO JOIN THE #DANZYSQUAD\\n------------------------------------------------------------------------------------------\\nSTAY CONNECTED:\\nINSTAGRAM : https://www.instagram.com/its_daanish10/\\nSNAPCHAT: daanish10 \\nTWITTER: Daanish_108',\n",
       "  71500,\n",
       "  9557225,\n",
       "  415,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=stQyIGMYFXA',\n",
       "  'Weird Genius - Lathi (ft. Sara Fajira) Official Music Video | REACTION!',\n",
       "  'Weird Genius - Lathi (ft. Sara Fajira) Official Music Video | REACTION!\\n\\nHey guys so today i reacted to Weird Genius - Lathi (ft. Sara Fajira) Official Music Video\\nenjoy!\\n\\n#WeirdGeniusFtSaraFajira\\n#Lathi\\n#REACTION\\n\\nDONT FORGET TO SUBSCRIBE IF YOU’RE NEW AND JOIN THE #DanzySquad\\n--------------------------------- NO COPYRIGHT INTENDED-------------------------------------- -\\nALL SONGS ARE NON COPYRIGHT!\\n\\nADD ME ON SOCIAL MEDIA: \\nFACEBOOK : https://www.facebook.com/daanish.soha...\\nINSTAGRAM : https://www.instagram.com/its_daanish10/ \\nSNAPCHAT: daanish10\\n\\nBusinessEnquires: danzyhd108@gmail.com',\n",
       "  '2020-03-28T02:30:02.000Z',\n",
       "  163611,\n",
       "  6274.0,\n",
       "  499.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCDolOm9eB1Qmddq0ctZpbKA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'lucychapmanofficial@gmail.com',\n",
       "  '@therealchrishein',\n",
       "  'Fam & Reaction! Have fun with us, - enjoy new and old trailers with us.- \\nsongs, comedy and much much more! - \\nWe are the fam! -',\n",
       "  71000,\n",
       "  14831508,\n",
       "  526,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=sLUbjFJv468',\n",
       "  'Tujhe Kitna Chahein Aur Hum LIVE | KABIR SINGH | SONG REACTION!!!!',\n",
       "  'THE LIVE VERSION!!!\\n__\\n send us a donation, - click link to read story, and why to donate to us https://chrisheinbusiness.wixsite.com/famstore/donation\\n\\nFollow Our Vlog Channel\\nhttps://www.youtube.com/channel/UCzASzZ2TPM0K02ww_wYI4tg\\n\\nBECOME A PATREON!! \\nhttps://www.patreon.com/FamAndReaction\\n\\n\\n INSTAGRAM ACCOUNT Chris https://www.instagram.com/therealchrishein/?hl=en\\n\\nINSTAGRAM ACCOUNT  Lucy  https://www.instagram.com/lucinda1980/?hl=en\\n\\n__\\nOUR ONLINE SHOP & Affiliate\\n\\nBuy our products from Amazon, which are products we have created (books), and products we recommend you should get.  https://www.amazon.co.uk/shop/famreaction\\n\\nCheck Out our Online Webshop, \\nhttps://chrisheinbusiness.wixsite.com/famstore\\n\\n__\\nProfessional Inquiries: \\n\\n Lucychapmanofficial@gmail.com\\n\\n__\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.\\n__',\n",
       "  '2020-01-03T19:16:13.000Z',\n",
       "  97392,\n",
       "  2950.0,\n",
       "  107.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCDCwhPRxWIKQ-sHY3eIcDQA',\n",
       "  nan,\n",
       "  '@indi_rossi',\n",
       "  'goddessindirossi@gmail.com',\n",
       "  '@indi_rossi',\n",
       "  \"Hi! I'm Indi. Welcome to my channel. This channel will cover a wide variety of different things!\\n\\nMusic Video Reactions\\nMovie Reactions\\nProduct Reviews\\nPersonal Vlogs\\nFood Vlogs and Reviews\\n \\nSocial Media\\n\\nYoutube - https://www.youtube.com/channel/UCDCwhPRxWIKQ-sHY3eIcDQA?sub_confirmation=1\\nInstagram - https://www.instagram.com/indi_rossi/\",\n",
       "  69400,\n",
       "  10162039,\n",
       "  237,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=W2EQM7NSLS4',\n",
       "  'Dilbar Song Video Satyameva Jayate REACTION | Indi Rossi',\n",
       "  'Dilbar Song Video Satyameva Jayate REACTION | Indi Rossi\\n\\nI got several requests from you guys to do this video so here I am!\\n\\nIndi Rossi is an American actress. Her outgoing, goofy personality and attention-grabbing looks are sure to get your heart racing. Just like her favorite animal, the chameleon, she’s truly adaptable and feels equally at home at black-tie events and muddy campsites deep in the woods. When she’s not being a weirdo on the internet, she’s probably reading nonfiction or thinking about food.  \\n\\nSubscribe here: https://www.youtube.com/channel/UCDCwhPRxWIKQ-sHY3eIcDQA?sub_confirmation=1\\n\\nSocial Media \\nYoutube - https://www.youtube.com/channel/UCDCwhPRxWIKQ-sHY3eIcDQA?sub_confirmation=1\\nInstagram - https://www.instagram.com/indi_rossi/\\nTwitter - https://twitter.com/indirossi',\n",
       "  '2020-01-31T17:40:11.000Z',\n",
       "  274197,\n",
       "  6618.0,\n",
       "  418.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC6ld1tiURnH3JQuwh-w26qw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@glitch.in.the.matrix.life',\n",
       "  'We are primarily a music reaction channel, with a twist, where we discuss interesting song and band facts as opposed to only listening to the music.  This is definitely a unique niche comparably speaking, and I do not mean just reading random facts off of a screen, I mean really deep diving and having a short, but very interesting conversation about the music and band before listening.',\n",
       "  68600,\n",
       "  14697192,\n",
       "  418,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=2ZXUU4XWwYA',\n",
       "  \"Ozzy Osbourne feat. Post Malone (New Release) | It's a Raid | Reaction\",\n",
       "  \"I check out, discuss, and react to Ozzy's new song with Post Malone, It's a Raid.  Quite the shift from the last song they did together, super fast paced and worth the listen. \\n\\nPatreon Membership: https://www.patreon.com/GlitchintheMatrixMultiMedia \\nInstagram: https://www.instagram.com/glitch.in.the.matrix.life/\\n\\nOriginal Content Link: https://www.youtube.com/watch?v=atcuCyX__f8\",\n",
       "  '2020-02-20T20:25:43.000Z',\n",
       "  6146,\n",
       "  209.0,\n",
       "  98.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC_62jYuKq0O-K66pjrK5jhQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'knoxhilldmv@gmail.com',\n",
       "  nan,\n",
       "  \"Official Music and Youtube Page for Knox Hill - rapper & reactor from PG County, MD. \\n\\nIt’s my dream to be a famous mumble rapper one day, till then I guess I’ll turn the autotune off and make music and reactions that matter.\\n\\nVideos include: Freestyle Fridays (you give the topics, we make the songs), Full Reaction Videos, Music Videos, & whatever else I want. This is not a free country - it's a dictatorship of awesome. From Eminem to NF to Upchurch to Tom MacDonald, Hopsin, Dax & everything in between - we got you covered. \\n\\nMusic Streaming & Social Media Links below. Support independent artists and subscribe now! 🙌💯\\n\\nSubscribe with notifications on. Do it. \\n\\n#RapperReacts #RapReaction #Freestyle\",\n",
       "  67100,\n",
       "  5260301,\n",
       "  268,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=Ooa8BBiS3z0',\n",
       "  'Rapper Reacts to NF - NO NAME!! | FIRST EVER REACTION?! (Official Music Video)',\n",
       "  'Nate is mad! My first ever reaction to the rapper NF\\'s music video NO NAME which dropped after his Perception album. Want to see me break down more NF songs? Comment below!\\n\\nSupport independent music: http://bit.ly/SubscribeKnoxHill\\n\\nMy song Stressed Out: https://youtu.be/PCSuHUqjceo\\n\\nStream my music for free: http://bit.ly/KnoxHillSpotifyMusic\\nMe on iTunes: http://bit.ly/KnoxHillAppleMusic\\n\\nListen to my album for free: bit.ly/LettersFromParisSpotify\\nApple Music: http://bit.ly/LettersFromParisDownload\\n\\nLike this vid? Here\\'s more like it:\\nWhen I Grow Up Remix: https://youtu.be/NPMQecwc-1o\\nNF Paid My Dues Reaction: https://youtu.be/OIh9crgA_r4\\nJake Hill Reaction: https://youtu.be/ZulPdMy05E4\\nDriving In The Dark: https://youtu.be/lnl71IqZSyM\\n\\n\\nInstagram: @knoxhilldmv\\n\\nNF Reaction. NO NAME Reaction. NF Perception. Perception Album reaction. NF NO Name Official Music Video Single Lyrics Reaction. Nate Real NF.  Remix. Rapper Reacts NF Paid My Dues\\n\\n\\nFollow my Twitter: http://www.twitter.com/theknoxhill\\nFollow my Instagram: http://www.instagram.com/knoxhilldmv\\nFollow my Spotify: http://bit.ly/KnoxHillSpotify\\nFollow my Apple Music: http://bit.ly/KnoxHillAppleMusic\\nFollow my Facebook: http://www.facebook.com/knoxhill\\n\\nDo what you love, or don\\'t do it at all. \\n\\nBusiness:\\nknoxhilldmv@gmail.com\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*\\n\\n*Please note that subscriber giveaways are not real and meant for humor and entertainment purposes only. None of the products that are mentioned are physically given away.*\\n\\n#NFReaction #NF #NONAMEReaction',\n",
       "  '2020-01-15T18:00:05.000Z',\n",
       "  44725,\n",
       "  2319.0,\n",
       "  234.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCz0Ob7eYRAKSoPQb9oKmBmg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'A little look into the world of singer/songwriter Breland \"The Pen Point Guard.\" \"My Truck\" out now!',\n",
       "  66700,\n",
       "  11067522,\n",
       "  2,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=CnFPdud5Yk8',\n",
       "  'Breland Reads \"My Truck\" Music Video Comments [Reaction Video]',\n",
       "  'Breland Reads \"My Truck\" Music Video Comments [Reaction Video]\\nDownload/stream: http://breland.lnk.to/MyTruckID\\n\\nFollow Breland:\\nhttp://instagram.com/breland\\nhttp://twitter.com/breland\\nhttp://facebook.com/brelandthepenpointguard\\nhttp://soundcloud.com/brelandmusic\\n\\nLyrics: \\nYou can drink my liquor\\nYou can call my lady\\nYou can take my money\\nYou can smoke my blunt\\nScuff these Jordan’s\\nYou\\u2005can say you hate me\\nYou can\\u2005call me crazy but\\nDon’t touch my truck\\nSkrrt\\nSkrrt\\nDon’t touch my truck\\nSkrrt\\nSkrrt\\nDon’t touch my\\n \\nV8 engine with the windows tinted\\nBoy we came from the bottom got it out the mud\\nWhole block jumping ‘cause the subs stay hitting\\nIf they roll up on me know I keep one tucked\\nTell them boys come and get me\\nI be riding through the city\\nYoung rich and I’m pretty\\nHomie don’t get it twisted\\nKeep a semi in the hemi\\nRed cup full of Henny\\nMy hittas comes in plenties\\nFor real\\n \\nYou can drink my liquor\\nYou can call my lady\\nYou can take my money\\nYou can smoke my blunt\\nScuff these Jordan’s\\nYou\\u2005can say you hate me\\nYou can\\u2005call me crazy but\\nDon’t touch my truck\\nSkrrt\\nSkrrt\\nDon’t touch my truck\\nSkrrt\\nSkrrt\\nDon’t touch my\\n \\nWood grain dash with the matte black finish\\nAnd it match my shawty with the big ol\\' butt\\nKnow them boys soft ‘cause they got hard feelings\\nYou can try me if you wanna go test your luck\\nWoo\\nTell them boys come and get me\\nI be ridin\\' through the city\\nYoung rich and I’m pretty\\nHomie don’t get it twisted\\nKeep a semi in the hemi\\nRed cup full of Henny\\nMy hittas comes in plenties\\nFor real\\n \\nYou can drink my liquor\\nYou can call my lady\\nYou can take my money\\nYou can smoke my blunt\\nScuff these Jordan’s\\nYou\\u2005can say you hate me\\nYou can\\u2005call me crazy but\\nDon’t touch my truck\\nSkrrt\\nSkrrt\\nDon’t touch my truck\\nSkrrt\\nSkrrt\\nDon’t touch my truck\\n\\nDon’t touch my truck ah ah ah ah ah\\nDon’t touch my truck\\n\\n#Breland #MyTruck #ReactionVideo #YouTubeComments #MyTruckReactionVideo',\n",
       "  '2020-04-08T16:33:30.000Z',\n",
       "  201819,\n",
       "  1676.0,\n",
       "  306.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCC_5rcKYN-D47MDkpinscjw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@magicfco',\n",
       "  'Hey Guys, Stevie K and Sureet here, we are a brand new channel doing HONEST reactions and reviews for trailers, songs, movies and shows, also vlogging about our life too.  \\n\\nWe also make videos requested by you.\\n\\nWe create some videos just the two of us and some we create with our four children.  \\n\\nWe are British Indian, born, raised and living in UK. \\n\\nWe do this as a hobbie because as a family we either love Films and Filmmaking or Fashion, and we get to express that here, also we get to do things as a family and have fun together.\\n\\nWe would love it if you join us on our journey.  \\n\\nThank you.',\n",
       "  65500,\n",
       "  14490156,\n",
       "  205,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=XEc3GmIhMLs',\n",
       "  'DUAA | Jo Bheji Thi Duaa | Shanghai | Full Song Cover by OLI | REACTION & REVIEW!',\n",
       "  'Watch our REACTION to Duaa | Jo bheji thi duaa | Full cover song by OLI.\\n\\nOfficial link: https://youtu.be/Fe9YJozRi78\\n\\nPlease also take the spiritual journey of “Bol Hu” with us and let it surprise you. An original by Soch featuring 8 year old Hadia, Bol Hu is a soul searching trance of belief and devotion, braving the test of time as it has within it, the strength of the universe. Here is the link to our Reaction for Bol Hu: https://youtu.be/GA-2u1IY7vw\\n\\nDisclaimer: No Copyright intended in this video. All rights belong to the rightful owner !!\\n\\nFollow us on Instagram: https://www.instagram.com/magicfco/\\nFollow us on Twitter: https://www.twitter.com/magicfco/\\n\\n#jobhejithiduasong #Jobhejithiduamusic #jobhejithiduaoli #shanghaisongs',\n",
       "  '2020-02-12T12:30:02.000Z',\n",
       "  1074083,\n",
       "  42171.0,\n",
       "  1196.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCbrzlHxQrpAlC0s37d29sRg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@najibdraoui',\n",
       "  'السلام عليكم أصدقائي الأعزاء مرحبا بكم في قناتكم N-DREACTS سوف تجد هنا ردود أفعالي على الموسيقى المغربية أتمنى لكم فرجة ممتعة المرجو دعمي ب like و subscribe فضلا وليس أمرا، وشكرا.',\n",
       "  64300,\n",
       "  2360377,\n",
       "  41,\n",
       "  'MA',\n",
       "  'https://www.youtube.com/watch?v=Eaex-zAQmzc',\n",
       "  'Fnaïre Ft. Saad Lamjarred - ASIF HABIBI (Music Video) #REACTION',\n",
       "  \"Connect with N-Dreacts : \\nINSTAGRAM ? https://www.instagram.com/najibdraoui/\\nFACEBOOK ? https://www.facebook.com/NDMFY/\\nPAYPAL : https://www.paypal.me/NajibDraoui\\nHello, don't forget subscribe to my channel\\n\\nFnaïre Ft. Saad Lamjarred - ASIF HABIBI (Music Video) (فناير و سعد لمجرد - آسف حبيبي (فيديو كليب\",\n",
       "  '2020-02-23T22:10:39.000Z',\n",
       "  155371,\n",
       "  7871.0,\n",
       "  294.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCB2IGP9w3zUrceqENyBdDMQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Description\\nWelcome to our reaction channel \\n\\nWe offer our stupid and not asked for opinions with a dash of humor \\n\\nTrailer Reactions\\nTV Reviews\\nFilm Reviews\\nMovie Talk (News, Spoiler Reviews, Film Rumors)\\nSketches\\nENJOY THE SHOW!\\n\\n\\nFollow us on Instagram\\nTanya :\\nInstagram- @Tetiana Rykhlyk\\n\\nAlexander:\\nInstagram- Ohorkavyi\\n\\nBased in Kiev\\n\\nChannel created by Tetiana Rykhlyk',\n",
       "  64300,\n",
       "  13504436,\n",
       "  322,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=nAkYYENns-w',\n",
       "  'Urvasi Urvasi REACTION | A.R. Rahman | Prabhu Deva',\n",
       "  '#Prabhudeva #Urvashi #Reaction\\n\\nHere is our reaction on Urvashi Urvashi Song reaction\\n\\n#ATR\\n#Actiontoreaction\\n\\nIf you want to send us something then the address is :\\nName : Tetiana Rykhlyk\\nHouse Number - 2, Flat number 3\\nStreet :  Anatoliia Solovianenka\\nCity : Borispol  - 08300\\nKiev Region \\nUkraine \\n\\n\\n\\nPlease forgive us for incorrect pronunciation of names in the video.. and let us know what you want us to react on in the comment\\n\\nIf you have not supported us yet then do it now via paytm : https://p-y.tm/H29-Rt8\\n\\n\\n\\nThanks For supporting\\n\\n\\n\\nFollow us on Instagram\\n\\nTanya Rykhlyk :\\nInstagram- @Tanya_Rykhlyk\\nhttps://www.instagram.com/tanya_rykhlyk\\n\\nAlexander:\\nInstagram- Ohorkavyi\\nhttps://www.instagram.com/ohorkavyi\\n\\nTanya Horkava\\nInstagram- Tanya_Horkava\\nhttps://www.instagram.com/Tanya_horkava\\n\\nWe are based in Kyiv, Ukraine\\nChannel created by Tanya Rykhlyk',\n",
       "  '2020-01-07T03:00:09.000Z',\n",
       "  223390,\n",
       "  4319.0,\n",
       "  271.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UC4mcBGSNyYgKJBdByisoPAw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Bringing you the perspective which makes you think and think beyond what is shown or told !!\\n\\n\\nIn Simple Terms.\\n\\nDskTalks = Seedhi Baat No Bakwas.\\n\\n\\nRegards \\nDskTalks',\n",
       "  61200,\n",
       "  13810578,\n",
       "  895,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=aQmnSWzVqtg',\n",
       "  'KALLA SOHNA NAI - Asim Riaz & Himanshi Khurana | Neha Kakkar | Song Review By Dsktalks.',\n",
       "  'A soulful & beautiful song  KALLA SOHNA NAI sung by Neha Kakkar Featuring -#AsimRiaz & #Himanshi Khurana | Neha Kakkar | Song Review By #Dsktalks.\\n\\n\\nNo Copyright Infringement intended.\\n\\nImage & Video clips used for Informative purpose only.\\n\\n#DskTalks Brings you the perspective which makes you think and think beyond what\\'s been shown or told !\\n\\nDont Forget to Subscribe my channel & press the bell icon to get instant Notifications about new uploads .\\n\\n\\nMy Social Links : \\n\\nFacebook:\\nhttps://www.facebook.com/DskTalks\\n\\nTwitter:\\nhttps://twitter.com/Dsk_Talks\\n\\nInstagram:\\nhttps://www.instagram.com/im_dsk\\n\\n\\n\\nCopyright Disclaimer*\\n-------------------------------------------------------\\nNo Copyright Infringement Intended If there\\'s any issue with the content used in this video please message me via YouTube we can solve it together 🤗\\nUnder Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. \\nFair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n\\nKeep supporting & keep sharing #DSKTALKS.',\n",
       "  '2020-03-19T14:15:03.000Z',\n",
       "  36757,\n",
       "  4209.0,\n",
       "  601.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC3qGy9-gqF-jKBstqv5WCWw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'I listen to music and tell you what I think.',\n",
       "  61100,\n",
       "  6821684,\n",
       "  980,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=r_rSj6Wbli0',\n",
       "  \"SUGA THE RAP GOD! (BTS (방탄소년단) 'DOPE' | Music Video Reaction/Review)\",\n",
       "  'My reaction & review of the music video for BTS\\' single \"Dope\".\\nJoin My Discord: https://discord.gg/pWxjXkj\\nInstagram: https://www.instagram.com/mrsammycam\\n---------------------------------------------------------------------------------------------------------------------------------------------------------\\nOriginal Video:\\n• https://www.youtube.com/watch?v=BVwAVbKYYeM\\n---------------------------------------------------------------------------------------------------------------------------------------------------------\\nLinks:\\n• YouTube: https://www.youtube.com/mrsammycam\\n• Twitter: https://twitter.com/mrsammycam\\n• Instagram: https://www.instagram.com/mrsammycam\\n• Merch: https://teespring.com/stores/mrsammycam-merch-store\\n• Discord: https://discord.gg/pWxjXkj\\n---------------------------------------------------------------------------------------------------------------------------------------------------------',\n",
       "  '2020-03-20T13:00:30.000Z',\n",
       "  88422,\n",
       "  10843.0,\n",
       "  1348.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCInl8MzMSlT-tc2uEHDSq4g',\n",
       "  nan,\n",
       "  nan,\n",
       "  'itsdro200@gmail.com',\n",
       "  nan,\n",
       "  'HERE TO MAKE UR LIFE A LITTLE BETTER WITH SOME HUMOR  |SE HABLA Español TANBIEN',\n",
       "  60500,\n",
       "  4538526,\n",
       "  166,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=pUi3vP0t28E',\n",
       "  \"LILI's FILM #3 - LISA Dance Performance Video REACTION\",\n",
       "  \"MY GIRL LISA DID THAT !!!! LILI's FILM #3 \\nFollow Me:\\r\\n📣Instagram: @youn_dro\\n✔️Business Email: itsdro200@gmail.com\\r\\n-----------------------------------------------------------------------------------------------------------\\n# LILI'sFILM #lisa #blackpink\",\n",
       "  '2020-04-20T19:43:39.000Z',\n",
       "  151696,\n",
       "  10353.0,\n",
       "  374.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCLZ4lgXILZ3LNPHfCj_3yKw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to our channel Navrit Reactions.\\nHere you will find all types of latest reaction videos.\\n\\nSubscribe to our channel if you find us genuine and like our videos.\\n\\nLocation: Delhi\\nHome Town: Uttarakhand\\n\\nLove you all,\\nThank You\\nNavrit Reactions\\nGod Is great...',\n",
       "  59400,\n",
       "  9238199,\n",
       "  408,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=7u8gZM3bQSc',\n",
       "  'Yo Yo Honey Singh : LOCA Song Reaction',\n",
       "  \"Here is our reaction to Yo Yo Honey Singh Latest Song LOCA, we hope you guys will enjoy this awesome reaction video.\\n\\nYo Yo Honey Singh : LOCA Song Reaction\\nOriginal Song - https://www.youtube.com/watch?v=QeLoW2ySlbc\\n\\nIf you are new to our channel please don't forget to subscribe to our channel for latest reaction videos.\\n\\nIf you have any reaction request you can tell us in the comment box below.\\n\\n*********************************\\n[Gears/Devices & Equipment we use]\\nCamera : https://amzn.to/2M6JOLp\\nMike : https://amzn.to/2Oex1sU\\nTripod : https://amzn.to/2QBWjV1\\nPhones we use : One Plus 5 & Vivo V11 Pro\\nLights : We use DIY lights\\n\\n[Editing software's we use]\\nVideo Editing : Adobe Premiere Pro CC 2019\\nAudio Editing : Adobe Audition CC 2018 and Audacity\\nThumbnails : Adobe Photoshop CC 2018\\nVoice Recording Application : Easy Voice Recorder\\n\\n*********************************\\n\\n[SUBSCRIBE!]\\nClick here to subscribe and watch the latest reaction video as soon as we upload it.\\nhttps://www.youtube.com/channel/UCLZ4lgXILZ3LNPHfCj_3yKw?view_as=subscriber?sub_confirmation=1\\n\\n*********************************\\n\\n[Social Media]\\nInstagram : _navaljoshi, iamritupathak\\nFacebook/Twitter : @navritworld\\n\\n*********************************\\n\\n[About us] : Navrit Reactions is an Indian Reaction Channel, where you will find Reaction videos on song, vines, trailers, pranks etc. New Video is Posted Everyday. If you want us to react on any video you can tell us in the comment box.\\n\\nThank you,\\nNavrit Reactions\\nJai Hind\\n#navritreactions #reaction #locasongreaction\",\n",
       "  '2020-03-03T12:10:24.000Z',\n",
       "  118618,\n",
       "  6594.0,\n",
       "  327.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCSF1Gp1LJL6iHJe4gDEWhIw',\n",
       "  'motivationalwaysworks@gmail.com',\n",
       "  nan,\n",
       "  'motivationalwaysworks@gmail.com',\n",
       "  nan,\n",
       "  \"We are creators who are committed to use our talent and knowledge to entertain and inform the world. \\n\\n*Join our Patreon for RUN BTS Reactions & MORE - https://www.patreon.com/whatchagot2say\\nWe specialize in the following:  \\n- BTS Reaction Videos - The Music, Dance Practices, The Life, The Mission, Getting to Know the Guys\\n- Music Video Reaction and Review\\n- Movie Trailer Reactions \\n- Dance Practice Reaction / Review \\n\\nHere's how to know if this channel is for you:\\n- Do you love BTS Reaction Videos? \\n- Do you love creative Reaction Videos? \\n- Looking for engaging and entertaining Reaction videos? \\n- Are you looking for comedy and inspiration to brighten your day? \\n\\nIf you answered yes to any of these, then you belong here at WHATCHAGOT2SAY! *SUBSCRIBE TODAY*\\n\\nInterested in Becoming a Sponsor ?\\nReach out to us here or via email!\\n\\nSEND US QUESTIONS @ MOTIVATIONALWAYSWORKS@GMAIL.COM\\n\\n✔OWNERS: Nico and Mika \\n✔Editor/Head Content Creator - Nico\\n✔ Supported and loved by ARMY - We Purple You!\",\n",
       "  59200,\n",
       "  12626599,\n",
       "  119,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=Bv4W8CmTdeY',\n",
       "  \"Our FIRST COMEBACK!! | BTS 'ON' Kinetic Manifesto Film: Come Prima REACTION!!\",\n",
       "  \"BTS ON is FOOD FOR THE SOUL!!! We loved The Music, The Dance, The MESSAGE! \\n💜EXCLUSIVE CONTENT on PATREON - RUN BTS Reactions and Much More!  https://www.patreon.com/whatchagot2say \\n\\n⚡Get Authentic BTS x WHATCHAGOT2SAY GEAR here! - https://teespring.com/stores/whatchagot2say-2\\n\\n*WATCH THE BTS 'ON' VIDEO! - https://youtu.be/gwMa6gpoE9I - BTS 'ON' Kinetic Manifesto Film : Come Prima\\n\\n⚡Get Kpop Apparel here: http://bit.ly/WhatchaGot2SayKpopMerch\\n⚡Get Memes Apparel here: http://bit.ly/WhatchaGot2SayMemesMerch\\n*Use code meme for an Extra 5% discount ($49+)!\\n*Use code memes for an Extra 10% discount ($99+)!\\n\\n* BTS ON Reaction provided by WhatchaGot2Say\\n* BTS 'ON' Kinetic Manifesto Film: Come Prima REACTION\\n\\n⚡About Us: WhatchaGot2Say is one of the only YouTube BTS Reaction channels to offer UNSCRIPTED & GENUINE BTS Reaction Videos. Our goal is to always provide content that provides real VALUE to your life. You deserve the best! Search for us anytime on google under WhatchaGot2Say or Whatchagot2Say BTS \\n\\n📧Business inquires: motivationalwaysworks@gmail.com \\n\\n🔔Subscribe to WhatchaGot2Say Today - https://www.youtube.com/channel/UCSF1... \\n\\n⚡Follow US!⚡\\n* WhatchaGot2Say on Twitter: @WhatchaGot2Say\\n* WhatchaGot2Say MIKA on Instagram: @WhatchaGot2Say\\n*Follow ADAM on Twitter: @AdamJupiter\\n*Follow BLAZE on Twitter: @BlazeShow3\",\n",
       "  '2020-02-22T11:00:01.000Z',\n",
       "  378232,\n",
       "  26011.0,\n",
       "  1764.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCM9_aELZAI6ZqbBhmIjzh-Q',\n",
       "  'lunaciz@hanmail.net',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hi, we are India and Korea channel.\\nIt is a channel that shares our thoughts with the hope that Korea and India will get closer to each other and understand each other.\\nI hope that we can learn and share Indian cultural, entertainment, political, social and religious knowledge and become good friends.\\n\\nbusiness contact: lunaciz@hanmail.net',\n",
       "  57400,\n",
       "  12245109,\n",
       "  171,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=0G8NIqi8lKA',\n",
       "  \"'Lehanga' reaction by korean | Jass Manak | Satti Dhillon | Latest Punjabi Songs | India fashionist\",\n",
       "  \"Today is the response of Koreans who watched the music video of Indian pop singer Jass Manak's song 'Lehanga.' Koreans say they look like Korean singer  while watching Jass Manak.\\nWho the hell is the Korean singer?\\nLet's check out the video!!!!!!\",\n",
       "  '2020-01-17T12:15:00.000Z',\n",
       "  163103,\n",
       "  5236.0,\n",
       "  189.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCRjEjH_Xj7sQNJ9A_RU-RiA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'The Pussycat Dolls are an American girl group and dance ensemble, founded in Los Angeles, California, by choreographer Robin Antin in 1995 as a burlesque troupe. At the suggestion of Jimmy Iovine, Antin decided to take the burlesque troupe mainstream as a pop group. Antin negotiated a record deal with Interscope Geffen A&M Records in 2003 turning the group into a music franchise comprising Nicole Scherzinger, Carmit Bachar, Ashley Roberts, Jessica Sutta, Melody Thornton, and Kimberly Wyatt. Their debut single, \"Sway\", was featured on the soundtrack of the 2004 film Shall We Dance?\\nThe Pussycat Dolls achieved worldwide success with number-one singles \"Don\\'t Cha\", \"Stickwitu\", \"Buttons\", and their multi-platinum debut album PCD. However, despite their commercial success, the group was plagued by internal conflict due to the emphasis on Scherzinger, the group\\'s lead vocalist, and the subordinate treatment of the other members. Bachar\\'s departure from the group preceded the release of their second and final studio album Doll Domination, which contains hit singles \"When I Grow Up\", \"I Hate This Part\", and \"Jai Ho!\".',\n",
       "  57200,\n",
       "  31779462,\n",
       "  500,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=A0vq3jLAoQg',\n",
       "  'React',\n",
       "  'Provided to YouTube by Awal Digital Ltd\\n\\nReact · The Pussycat Dolls\\n\\nReact\\n\\n℗ Access Records\\n\\nReleased on: 2020-02-07\\n\\nComposer  Lyricist: Georgia Buchanan\\nComposer  Lyricist: Hannah Wilson\\nComposer  Lyricist: Johan Gustafson\\nComposer  Lyricist: Nicole Scherzinger\\nComposer  Lyricist: Will Simms\\n\\nAuto-generated by YouTube.',\n",
       "  '2020-02-06T10:19:15.000Z',\n",
       "  1614646,\n",
       "  25845.0,\n",
       "  1729.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC9VKvuGihgywp6eCRDo7dIA',\n",
       "  'jasmine562@snu.ac.kr',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Our Universe is Here!\\n\\nStudent of Seoul National University (SNU)\\nDepartment of English Language and Literature\\n\\nE-mail: jasmine562@snu.ac.kr\\n\\nSeoul, Korea.',\n",
       "  56100,\n",
       "  3359887,\n",
       "  50,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=1muZoZGx2OQ',\n",
       "  'Korean reaction to Indian song voice of nagaland as one | Northeast Indian song',\n",
       "  \"Hey guys! Today's video is my reaction on Northeast Indian song 'Voice of nagaland - As one'. I watched Northeast Indian music video and was really touched... as one!\\n\\n✨New to KAHEVA universe?\\n\\n💄Korean makeup on Indian friend\\nhttps://youtu.be/kXhEmctRpZU\\n\\n\\U0001f97b Wearing Saree\\nhttps://youtu.be/S84KQK55H1E\\n\\n⭐My daily life in Korea\\nhttps://youtu.be/7eFh6nNwxM0\\n\\n\\n\\n___\\nInstagram https://instagram.com/kaheva_official\\n\\n#voiceofnagalandreaction\",\n",
       "  '2020-03-28T12:24:17.000Z',\n",
       "  359468,\n",
       "  17398.0,\n",
       "  2589.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCQPn5uTbTPczQ_f1ljwVDuA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@lovekandr',\n",
       "  '♡ Love. There is no greater feeling! ♡\\nWe hope you enjoy watching our love story, just as much as we love filming it. \\nFrom challenges to events, pranks and everyday life, we hope you fall in love with us! \\n\\nSubscribe, share, like, comment and enable ALL push notifications. ♡ \\n\\nWe upload videos everyday!\\n\\nCheck out our social media accounts below!\\n\\nInstagram: lovekandr, Mr.anderson18_ kristenvp\\nTwitter: Lov3KandR\\nTikTok:lovek_r\\n\\nlove,\\nK & R',\n",
       "  56000,\n",
       "  8201851,\n",
       "  225,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=cJt8tPtd0TA',\n",
       "  \"LILI's FILM #3 - LISA Dance Performance Video REACTION! 🔥\",\n",
       "  \"LILI's FILM #3 - LISA Dance Performance Video REACTION! 🔥\\n\\nK&R Squad!! Lisa decided to surprise us with her LILI Film Dance #3 so let's check it out! 👀\\n\\nLink to Lisa's original dance video: https://www.youtube.com/watch?v=je_R3gEtDbw\\n\\nThanks For Watching ❤️ Please give this video a like, share and please SUBSCRIBE! \\n\\nKeep Hitting That Subscribe Button For Us Y’all 🙏🏾\\nWe're On The Road To 100,000k 💯\\nWe Love You K&R Squad!!💙\\n\\n❤️ FOLLOW US ON INSTAGRAM TO KEEP UP WITH US:\\nhttps://www.instagram.com/lovekandr/\\nKristen - kristenvp\\nReafe - mr.anderson18_\\n\\n✨Reaction Videos✨\\nhttps://www.youtube.com/playlist?list=PLFBV5Ew2hHdbgN7StZ65WEA8Mq59a7QdF\\n\\n✨Pranks✨\\nhttps://www.youtube.com/playlist?list=PLFBV5Ew2hHdYt03lO74DhY_wjy7yZG_a1\\n\\n✨Challenges✨\\nhttps://www.youtube.com/playlist?list=PLFBV5Ew2hHdaXNt9Z9ZqOmPXp3ZiH3LZL\\n\\n✨Advice✨\\nhttps://www.youtube.com/playlist?list=PLFBV5Ew2hHdZRRqhWLFI6X_W8Xb0O2ltF\\n\\n✨Try Ons✨\\nhttps://www.youtube.com/playlist?list=PLFBV5Ew2hHdYBq88RRc2BNjA54qHoUTiq\\n\\n✨Travel✨\\nhttps://www.youtube.com/playlist?list=PLFBV5Ew2hHdYpvzoUi1BWsMrI553cyz8j\\n\\n✨Vlogs✨\\nhttps://www.youtube.com/playlist?list=PLFBV5Ew2hHdYlhu5LdO5bjSHq-OD-T_4s\\n\\n#Lisa #Blackpink #LiliFilm\",\n",
       "  '2020-04-20T21:19:26.000Z',\n",
       "  331482,\n",
       "  23334.0,\n",
       "  921.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC4-6KGFjpSr0LJhbqZTeGew',\n",
       "  'whiting1402@gmail.com',\n",
       "  nan,\n",
       "  'whiting1402@gmail.com',\n",
       "  nan,\n",
       "  '*Branding, Media, & General Business Inquiries:\\n\\nWhiting1402@gmail.com',\n",
       "  55400,\n",
       "  6409051,\n",
       "  443,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=B4i83itQHaE',\n",
       "  'AGT GRAND FINAL SONG? Marcelito Pomoy - I BELIEVE IN YOU | REACTION',\n",
       "  '👍🏻 LET\\'S BE FRIENDS: \\n\\nINSTAGRAM: https://bit.ly/2WOSSIW\\nTWITTER:   https://bit.ly/30pB5KA\\nFACEBOOK:  https://bit.ly/2Q5ugJD\\n\\n📸 GEAR I USE:\\n\\n✅ Blue Yeti Microphone:\\nAmazon Affiliate Link:  https://amzn.to/2sILPYo\\n\\n✅ Canon 550D Camera:\\nAmazon Affiliate Link: https://amzn.to/36NRYkv\\n\\n ✅ Lighting: \\nAmazon affiliate link: https://amzn.to/34z0IJN\\n\\n✅ Macbook Pro:\\nAmazon Affiliate Link: https://amzn.to/38LWMZH \\n\\n\\n📼 VIDEO LINKS:\\n\\nMORE MARCELITO:\\n\\n https://www.youtube.com/watch?v=l3a5Izi9xfw&list=PLA1n31QpZZt8E4bjJrUc7xcZt_2Fqa6tq\\n\\n👘 MERCH: \\n\\n\\n📌 HASHTAGS:\\n\\n#AGTChampions #MarcelitoPomoy #JamesWhiting\\n\\n📼 ORIGINAL VIDEO:\\n\\nhttps://www.youtube.com/watch?v=KHL4Q_F90vI\\n\\n🎶 MUSIC I USE IN MY VIDEO:\\n\\nhttps://www.youtube.com/watch?v=FYW1Y4EEA2Y&list=WL&index=12&t=0s\\n\\n\\n📧 Branding, Media, & General Business Inquiries:  \\n\\nWhiting1402@gmail.com\\n\\n\\n📃 COPYRIGHT DISCLAIMER:\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.',\n",
       "  '2020-02-04T17:15:39.000Z',\n",
       "  845511,\n",
       "  19759.0,\n",
       "  1553.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC0vYjqYxxqoegTJijlbej3w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  55300,\n",
       "  10400022,\n",
       "  96,\n",
       "  'KR',\n",
       "  'https://www.youtube.com/watch?v=8jTw84nGlLM',\n",
       "  'Indian Tik Tok Reaction by Koreans | Naagin | New Trend',\n",
       "  'Indian Tik Tok Reaction by Koreans | Naagin | New Trend \\n\\nTiktok 🔥Naagin🔥 New Trend |Latest Going Viral Trending Ft. Hardik, Avneet, Madboi37, Videos|\\n\\nvideo Link: https://www.youtube.com/watch?v=XbHQ5BeDGd4\\n\\nTitle: Longing by Joakim Karud\\nGenre and Mood: Dance & Electronic + Inspirational\\n\\n#IndianTikTok\\n#Reaction\\n#Naagin',\n",
       "  '2020-02-11T12:12:22.000Z',\n",
       "  437973,\n",
       "  6519.0,\n",
       "  222.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCTjGE2WNPU2zZs_3MxxPtcg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  55100,\n",
       "  1513431,\n",
       "  49,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=Ai6P5OT8uIY',\n",
       "  '\"TEKA LANG \" - EMMAN (REACTION VIDEO) THE FAMOUS VLOGGER',\n",
       "  'GRABE TO!',\n",
       "  '2020-03-25T07:40:42.000Z',\n",
       "  96227,\n",
       "  6578.0,\n",
       "  1148.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCvxNdwdaRnw4TOZ_PeVNhVw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  54800,\n",
       "  5805822,\n",
       "  261,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=reVd8y9IE4s',\n",
       "  'Youngboy Never Broke Again - Lil Top | Official Music Video | FIRST REACTION',\n",
       "  \"This our first reaction to the video. Yes it's REAL! Yes it's RAW! And yes it's AUTHENTIC! And don't forget GHETTO!! If you enjoyed the video make sure you like, comment, share, and subscribe.\\n\\nLink to original video: https://www.youtube.com/watch?v=lUmYlsulfYo\\n\\nLink to background music: https://www.youtube.com/watch?v=SPqW0izJ0p4\\n\\nLink to NBA Youngboy reaction Playlist: https://www.youtube.com/watch?v=FukE4T87oEs&list=PLdUZfPBfTKQrcBCXuOsFsvJTbwmGImS7e\\n\\nFollow us on the socials: \\n\\nJun:\\nIG: @_rodney.r.j_\\nTwitter: @RodneyReed_\\n\\nAce: \\nIG: @hobbs919\\n\\n\\nDisclaimer: We do not own the rights to the music in this video.\",\n",
       "  '2020-02-21T21:34:04.000Z',\n",
       "  113011,\n",
       "  4336.0,\n",
       "  208.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCPdG_4q3zi184a5-Hj42SYA',\n",
       "  'likhith.r22@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Subscribe to our channel for more interesting filmy videos and updates...\\n\\nFollow me on instagram :- Ur_Likhith_shetty\\n\\nFollow me on twitter :- @LIKHITHR22\\n\\nFor business enquiry contact this email ID :- Likhith.r22@gmail.com\\n\\nThank you 😊',\n",
       "  54700,\n",
       "  5401211,\n",
       "  538,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=f55FnuPiUWM',\n",
       "  'Pogaru Karabuu Song Review | Pogaru 1st Song | Dhruva Sarja | Likhith Shetty',\n",
       "  'Pogaru First Song Honest Review. \\n\\nMy Twitter ID :-https://twitter.com/LikhithR22?s=08\\n\\nSubscribe to our channel for more Reviews\\n\\n#PogaruFirstSongReview #KarabuuSongReview',\n",
       "  '2020-04-02T13:28:10.000Z',\n",
       "  42282,\n",
       "  2392.0,\n",
       "  305.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC7_VE0AdUTxWJTXWfsYVFOQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Yooooo, what's good? My name is Reginald aka Da R Star aka Mr. Straightfire and this is Unabashedly Reggie's channel! On this channel you will see rap songs or verses lyrics breakdown! I'm a huge Eminem fan, so most of my videos are about Eminem songs, but I also cover other artists.  Please subscribe!\\n\\nSupport me on Patreon!\\nhttp://www.patreon.com/UnabashedlyReggie\\n\\nSubscribe!\\nhttp://www.youtube.com/UnabashedlyReggie?sub_confirmation=1\\n\\nLike me on Facebook!\\nhttp://www.facebook.com/UnabashedlyReggie\\n\\nFollow me on Twitter!\\nhttp://www.twitter.com/mrstraightfire\\n\\nFollow me on Instagram!\\nhttp://www.instagram.com/mrstraightfire\",\n",
       "  54400,\n",
       "  3223265,\n",
       "  53,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=JWYK8fpj61Q',\n",
       "  'Music To Be Murdered By - REACTION! REVIEW! BREAKDOWN!',\n",
       "  \"Here's my Eminem's Music To Be Murdered By album review! #Eminem #MusicToBeMurderedBy #Review\\n\\nSupport me on Patreon!\\nhttp://www.patreon.com/UnabashedlyReggie\\n\\nSkip to a specific section!\\n\\nReview Start: 01:10 | 1:10\\nImpression/Reaction: 10:15\\nScore: 20:16\\nMini Breakdowns: 21:05\\n\\nSubscribe!\\nhttp://www.youtube.com/UnabashedlyReggie?sub_confirmation=1\\n\\nLike me on Facebook!\\nhttp://www.facebook.com/UnabashedlyReggie\\n\\nFollow me on Twitter!\\nhttp://www.twitter.com/mrstraightfire\\n\\nFollow me on Instagram!\\nhttp://www.instagram.com/mrstraightfire\\n\\nSoundCloud:\\nhttp://www.soundcloud.com/UnabashedlyReggie\\n\\nAnchor:\\nhttps://anchor.fm/unabashedlyreggie\\n\\nMerchandise Store:\\nhttps://teespring.com/stores/unabashedlyreggie\",\n",
       "  '2020-01-28T22:39:52.000Z',\n",
       "  39277,\n",
       "  2692.0,\n",
       "  860.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UC3t4DBaHtNHF6gRQGK7t2nQ',\n",
       "  'charchawithbhurani@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hey frnds welcome to our(mine+yours) channel \"CHARCHA WITH BHURANI\". Here you do Reviews Of Movies, Songs, Trailers and web Series plus here You Will find A lot of New Content related to bollywood.\\nSo do not wait and subscribe our channel without wasting time.\\nFor Business Enquiry Mail me At - Charchawithbhurani@gmail.com',\n",
       "  53000,\n",
       "  11421270,\n",
       "  902,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=2FFHLzIycPo',\n",
       "  'Loca Yo Yo Honey Singh Full Song | Review and Reaction | T-Series, Yo Yo Honey Singh |',\n",
       "  'So friends now we will review Yo Yo Honey Singh New Song Loca\\nDo not hesitate to hit like comment share and subscribe.\\n#Loca #YoYoHoneySingh #T-Series \\n\\nLoca Yo Yo Honey Singh Song, Loca Song Yo Yo Honey Singh, Loca Yo Yo Honey Singh, Loca Song Review, Loca Yo Yo Honey Singh Song Review, Loca Song Reaction, Loca Yo Yo Honey Singh Song Reaction, Loca Full Song, Loca Yo Yo Honey Singh Full Song, Loca Song Lyrics, Loca Song 3d, Loca Song 8D, loca Song Dance Cover, Loca Song Cover Version, Loca Yo Yo Honey Singh Song Cover Version, Yo Yo Honey Singh New Song Loca, Pakistani Reacts on Loca Yo Yo Honey Singh Song, Pakistani Reacts on Yo Yo Honey Singh Loca, Foreigner Reacts on Loca Yo Yo Honey Singh Song, Yo Yo Honey New Songs 2020, Loca 2020 New Song Of Yo Yo Honey Singh, charcha with bhurani, \\n\\nFollow me on here 👇👇\\nFacebook - https://facebook.com/deepak.bhurani.9\\nInstagram - https://Instagram.com/deepsbhurani\\nTwitter - https://twitter.com/deepak_bhurani',\n",
       "  '2020-03-03T08:04:17.000Z',\n",
       "  2193,\n",
       "  201.0,\n",
       "  48.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCNrCRuKk1IZCe6rwEUkt8PA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'looking to show my all around talents , I love to do all kinds of videos , not to be cocky but I do what all youtubers do in one , I’m looking to show my versatility 💯 Subscribe to my channel and let’s become family\\n\\nInstagram: jblethaltv\\nSnapchat:jeezyb1900',\n",
       "  51700,\n",
       "  12310326,\n",
       "  863,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=doXKMPgtHR4',\n",
       "  'R.E.M. - Everybody Hurts (Official Music Video) REACTION (EMOTIONAL)',\n",
       "  nan,\n",
       "  '2020-02-06T23:44:26.000Z',\n",
       "  137866,\n",
       "  5144.0,\n",
       "  1441.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCkk4Wcd520RRs5AFFCDncRg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@andyandalexofficial',\n",
       "  'Thank you for stopping by! The main focus will be going through all the Pink Floyd albums in chronological order! I will also be doing requests so don’t hesitate to comment a request below a video! 😁',\n",
       "  51000,\n",
       "  11843091,\n",
       "  317,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=gXMVQaghGnQ',\n",
       "  \"Listen to the Music - The Doobie Brothers | College Students' FIRST TIME REACTION!\",\n",
       "  \"Hope you guys enjoyed the video! \\n\\nFollow our Instagram!!\\nInstagram: @andyandalexofficial\\nhttps://www.instagram.com/andyandalexofficial/\\n\\nP.O. BOX Address:\\n2000 E 12th Ave, Unit #5211 Tampa, FL, 33675\\n\\nConsider Joining our Patreon to enjoy exclusive videos!\\nhttps://www.patreon.com/AndyAndAlex\\nSee you there! :)\\n\\nFacebook: Andy & Alex\\nhttps://www.facebook.com/Andy-Alex-1626130424198347/\\n\\nIf you liked the song from our intro,\\nFollow Alex's Band, Kings and Culprits on Spotify!\\nhttps://open.spotify.com/album/4Dao8y1Ew70VKZlQ7g73mW\\n\\nWe post a new video every single Monday, Wednesday, and Friday!\\n\\nDon't forget to Like and Comment any thoughts you have down below!\\nAnd Consider Subscribing if the video made you smile! :)\",\n",
       "  '2020-02-28T17:22:48.000Z',\n",
       "  50748,\n",
       "  2651.0,\n",
       "  1568.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC093kTJdVRhwP30sMZYnoqg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@dt.parker',\n",
       "  \"I recently discovered BTS, and I've been addicted ever since I started watching their videos and biographical content. Now I'm on this exciting path of music discovery and I'm super excited to continue it with you guys. I hope you'll subscribe and follow me on my journey.\",\n",
       "  50900,\n",
       "  8088268,\n",
       "  147,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=arK2rbYx04s',\n",
       "  'BTS Contribution to Music REACTION',\n",
       "  \"Exclusive reactions on Patreon: https://www.patreon.com/dtparker/\\n\\nCould BTS be the hardest working music group in the world? It seems like all they think about is producing great music that their fans will love. They've already made a huge contribution to music, and I hope they keep going. \\n\\nTwitter: https://twitter.com/dt_parker\\nInstagram: https://www.instagram.com/dt.parker/\",\n",
       "  '2020-02-08T06:51:03.000Z',\n",
       "  59376,\n",
       "  5823.0,\n",
       "  384.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCCfwTlHIF4ZE8DjF3Nx0Ukw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@fiendbreezy',\n",
       "  \"New Comers to this YouTube thing that's looking to grow a family and as individuals but also have fun reppin L~I~B to the fullest so salute to anyone supporting and all constructive criticism is welcome just keep the good vibes flowing at the same time!\\n\\nRoad to 100k subs \\n45%\\n█████▒▒▒▒▒\",\n",
       "  50500,\n",
       "  9945101,\n",
       "  430,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=OGLg21Fm8lg',\n",
       "  'Anitta, Lexa, Luisa Sonza feat MC Rebecca - Combatchy (Official Music Video) | Reaction',\n",
       "  'Breezy : https://www.instagram.com/fiendbreezy/\\nhttps://www.instagram.com/friendlyneighborhoode/\\nLIBtv : https://www.instagram.com/libtv/',\n",
       "  '2020-01-01T01:34:09.000Z',\n",
       "  202295,\n",
       "  9040.0,\n",
       "  150.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCUk3uhkzr89WTMnM1eawgMg',\n",
       "  'kyaasstudio@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'We creates Reaction Videos \\nPlease subscribe and stay connected with us...\\nMarketed By Kyaas Studio\\nkyaasstudio@gmail.com',\n",
       "  49600,\n",
       "  9587362,\n",
       "  240,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=s8AMrI7qglc',\n",
       "  'Reaction On  TIBEYAN DA PUTT | Sidhu Moose Wala | Latest Punjabi Song 2020 | Judgmental',\n",
       "  'Reaction On  TIBEYAN DA PUTT | Sidhu Moose Wala | Latest Punjabi Song 2020 | Judgmental\\n\\nSubscribe to watch daily new video\\r\\nOur Channel 👉 https://www.youtube.com/channel/UCUk3...\\r\\nOur other channel 👉 https://www.youtube.com/channel/UC5cG...\\r\\n\\r\\n#TIBEYANDAPUTT #SidhuMooseWala #Judgmental\\r\\n\\r\\nLink of the original Video 👉https://www.youtube.com/watch?v=twCHVhk8iMU\\r\\n\\r\\nGuys, Thank you so much for your support and love!! Please keep Supporting us Hit subscribe, like and Share us for more reactions!!😘❤️❤️\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n    L I K E  ||  C O M M E N T  ||  S H A R E  ||  S U B S C R I B E',\n",
       "  '2020-03-18T08:00:12.000Z',\n",
       "  113024,\n",
       "  6016.0,\n",
       "  443.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCzBg1I3H2rrCMXlenEA9WGg',\n",
       "  'trc@thereportcardlive.com',\n",
       "  nan,\n",
       "  'trc@thereportcardlive.com',\n",
       "  '@trcpodcast',\n",
       "  'Music producer and recording engineer Dame Diddy sits down with Co Host Ambitious Ace to review everything Hip Hop, RnB, K-Pop and world music. Sit back and listen to us weekly discuss grades for albums from artist like Rihanna, J. Cole, Beyoncé, Taemin, NCT 127 and many more. Listen to us keep it real about everyones favorite artist as you discover new artist as well.\\n\\nSubscribe on YouTube, Spotify, iTunes, Google Play Music, iHeart Radio, Stitcher, tune In,  Soundcloud, Stitcher, Libsyn, and anywhere podcast are available.\\n\\nDirect link to all podcast episodes. http://thereportcard.libsyn.com/\\n\\nLike us on Facebook The Report Card Podcast.\\n\\nFollow us on Instagram @TRCPodcast\\n\\nFollow us on Twitter @TRCPodcastlive\\n\\nTo request an album for review email us at trc@thereportcardlive.com',\n",
       "  49200,\n",
       "  19463236,\n",
       "  1803,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=N10bO6-LqGw',\n",
       "  'Red Velvet \"Psycho\" Music Video Reaction',\n",
       "  'We check out the music video for \"Psycho\" by Red Velvet.  What did we think about it?  Check out our reactions and let us know what you thought in the comments!\\n\\n#REDVELVET #PSYCHO #REACTION\\n\\nSupport us through Patreon!\\nhttps://www.patreon.com/thereportcardpodcast\\n\\nWANT YOUR PROJECT REVIEWED? EMAIL US trc@thereportcardlive.com\\n\\nSubscribe to Prince Treysaun\\'s Gaming World\\nhttps://www.youtube.com/channel/UCebu75oUqbLNIrm8qkqvBlQ\\n\\nSubscribe to Welcome To The Wall Podcast\\nhttps://www.youtube.com/channel/UCZUPaa-GpwWDHyIq4QJ1MCA\\n\\nTwitter\\n\\nThe Report Card\\nhttps://twitter.com/trcpodcastlive\\n\\nAmbitious Ace\\nhttps://twitter.com/AmbitiousAce\\n\\nInstagram\\n\\nThe Report Card\\nhttps://www.instagram.com/trcpodcast/\\n\\nAmbitious Image\\nhttps://www.instagram.com/ambitiousimage/\\n\\nSubscribe To The Podcast On All Platforms\\n\\nItunes\\nhttps://itunes.apple.com/us/podcast/the-report-card-podcast/id1091629614?mt=2\\n\\niHeart Radio\\nhttps://www.iheart.com/podcast/the-report-card-podcast-27572876/\\n\\nGoogle Play Music\\nhttps://play.google.com/music/m/Ies7cjhislcwjbmqhbygpdbyepm?t=The_Report_Card_Podcast\\n\\nAlso available On\\n\\niHeart Radio Soundcloud Stitcher Libsyn TuneIn Facebook Tumblr Google+\\n\\nGrade Scale\\n\\nCheck\\n\\nGreat project. Worth a check out. You will find songs you like.\\n\\nDash\\n\\nThe project is ok. Maybe more for the current fans. Not much replay value.\\n\\nX\\n\\nDo not waste your valuable time with this. Nothing redeemable about this project.\\n\\n\\xa0\\n\\nLike...Comment...Subscribe...Review\\n\\nThank you to everyone who listens weekly.',\n",
       "  '2020-01-06T20:20:00.000Z',\n",
       "  126558,\n",
       "  4800.0,\n",
       "  148.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCNjBwZD3GAU3ksFTBj4dFbg',\n",
       "  'kophillover@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Kumusta? Mabuhay! KorPhil Lover~with KORPS!\\nWe are ❤️korean couple❤️ who are interested in Philippine culture!\\nWe're Yejin(W) and Bulhwi(M)!\\n\\n\\nFor all business related inquiries please email us at \\nkophillover@gmail.com\\n\\nFor all suggestions related contents you want\\nplease leave us comments on our videos or SNS\\n\\n\\nDon't miss our videos! If You miss, you'll regret~\\nIf you want more our creative videos, please Click  Subscribe, Like and Alarm buttons!\\nAlways thank you for watching our video!\\nMahal ko kayo, BYE BYE♥!\",\n",
       "  47400,\n",
       "  3505266,\n",
       "  43,\n",
       "  'PH',\n",
       "  'https://www.youtube.com/watch?v=WGV5hZ6gF3E',\n",
       "  \"Morissette Amon-Resignation(Asia's Song Festival 2018) reaction｜ Korean reaction\",\n",
       "  'Kumusta! Mabuhay! KORPHIL LOVER~!\\nToday we are gonna watch Morissette Amon\\'s a Korean song entitled \"Resignation\" by Lee Young Hyun!!\\nWe are very shocked and she is totally insane!! KILLING IT!! AWESOME!!\\nshe slayed it!!\\nWe really enjoyed this video! \\nLet\\'s watch with us!\\n\\n\\n[OUR OTHER VIDEOS]\\nSB19 - GO UP MV reaction video\\nhttps://youtu.be/7HaiA_7MWuw\\n\\nSB19 - GO UP Dance Practice Reaction\\nhttps://www.youtube.com/watch?v=6NqxGCJgMdQ\\n\\nSB19 - GO UP 2X Dance Practice Reaction\\nhttps://www.youtube.com/watch?v=9HBkExxRkA0&t=1s\\n\\nSB19 - Alab (Burning) [MV] reaction\\nhttps://www.youtube.com/watch?v=0cBZ6hOYMT0\\n\\nBen&Ben-Araw Araw Reaction\\nhttps://www.youtube.com/watch?v=wB4-hRBdzag&t=271s\\n\\nCLR and Omar Baliw perform K&B LIVE REACTION\\nhttps://youtu.be/VsaL-uVvbKc\\n\\nSarah Geronimo -TaLa (TaLa Nation Grand Tala Day)Reaction \\nhttps://www.youtube.com/watch?v=mrp0dXW_jOQ&t=79s\\n\\nMichael Pangilinan - Rainbow LIVE on Wish 107.5 reaction\\nhttps://www.youtube.com/watch?v=qLyWQkmD6IM\\n\\nSB19 - BTS COVER \\'BOY WITH LUV\\' + \\'IDOL\\'  Reaction\\nhttps://www.youtube.com/watch?v=s_6mQovqAx4&t=34s\\n\\nMiracle in Cell No 7 TEASER reaction\\nhttps://www.youtube.com/watch?v=MDWEd2L1QxQ&t=111s\\n\\nBen&Ben - Pagtingin LIVE on Wish 107.5 Bus reaction\\nhttps://www.youtube.com/watch?v=6oZSGnl0V0c\\n\\nSB19-Tilaluha LIVE on Wish 107.5 reaction\\nhttps://www.youtube.com/watch?v=bbcMObWsJlU\\n\\nVPeepz - How Low (World of Dance 2019) \\nhttps://www.youtube.com/watch?v=HRA6pBjXhGk\\n\\n\\n#MorissetteAmon\\n#morissetteamonresignation\\n#morissetteamonresignationkoreanreaction\\n#morissetteamonsongfestival2018\\n#morissetteamonreaction\\n#morissette체념\\n#ppop\\n#opm\\n#pinoy\\n#Koreanreaction\\n#Internationalreaction\\n#asiasongfestival\\n#morissette\\n#korphillover',\n",
       "  '2020-01-23T05:06:40.000Z',\n",
       "  196011,\n",
       "  6654.0,\n",
       "  517.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCmNdcnbIa7Nk-igc81T5gvQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Opera singer and (online) voice teacher in Amsterdam\\n\\nHere’s a paradox: some passionate singing students resist practice.\\n\\nIt’s not that they’re lazy. They simply can't stand sounding ‘bad’ during a exercise.\\n\\nI’m the last person to judge people for this. I’ve been through all the mental and physical issues that kept me from singing with joy. \\n\\nBut it frustrates me that a stupid issue gets in the way of people's passion, like it once did with me. \\n\\nLet me tell you this: your love for singing won’t go away. I’ve had first-time students of a respectable age. My oldest freshman was 68!\\n\\nAs a singing teacher, I clean up the mess for you: replacing bad habits with new ones.\\n\\nYou need a system that replaces ‘I sucked!’ with an objective system to build on. That's my online course Make singing click. \\n\\nhttps://singwell.eu/online-singing-course\\n\\nMy free course:\\n\\nhttps://singwell.eu/online-course-learn-from-the-best\\n\\nSingWell with Yoga:\\n\\nhttps://singwell.eu/online-course-singwell-with-yoga\",\n",
       "  47000,\n",
       "  12425675,\n",
       "  90,\n",
       "  'NL',\n",
       "  'https://www.youtube.com/watch?v=KtKuN2JkdvI',\n",
       "  'Nani and I react to Dimash: Love is like a dream',\n",
       "  \"Much requested! It was a year ago that I showed Dimash to my friend Nani for the first time. Time for a new Dimash reaction.\\n\\nIf you like reaction videos, I have a free course based on these: Learn from the best\\nhttps://singwell.eu/online-course-learn-from-the-best/\\n\\nCheck out Nani's channel\\nhttps://www.youtube.com/nanisinger\\n\\nCheck out all our reaction videos here:\\nhttps://www.youtube.com/playlist?list=PL7PY-1GHxCfkFnfYcG-23py8E4FnXXnrO\",\n",
       "  '2020-03-10T19:52:45.000Z',\n",
       "  102526,\n",
       "  3461.0,\n",
       "  1041.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC8FfpkqDNq0BNJoageO5GTA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"#kevinkev if you didn't know now you know\",\n",
       "  46600,\n",
       "  8857417,\n",
       "  277,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=omBnLX5NQ8E',\n",
       "  'Justin Bieber - Yummy (Official Video) REACTION | KEVINKEV 🚶🏽',\n",
       "  '🔥Intro song: WALKER - Sex and the Litty\\r\\nSpotify- https://open.spotify.com/album/5W40Vn2530YG13YMyJHrQJ?si=Aiu2sbt2QuuJtQCwEyvpfA\\r\\nApple Music -\\r\\n https://itunes.apple.com/us/album/288-ep/1441797452\\r\\n\\r\\nhttps://www.soundcloud.com/onlyonewalker/sets/288ep\\r\\n\\r\\nWALKER : IG: https://www.instagram.com/onlyonewalker\\r\\nFacebook: https://www.facebook.com/onlyonewalker\\r\\nTwitter: https://www.twitter.com/onlyonewalker\\r\\nSoundcloud: https://www.soundcloud.com/onlyonewalker\\r\\n\\r\\nKILLA KEV: IG: https://www.instagram.com/killakev8\\r\\nPHOTO IG: https://www.instagram.com/kandidsxkev\\r\\nFacebook: https://www.facebook.com/killakev8\\r\\nTwitter: https://www.twitter.com/killakev_8\\r\\n\\r\\nAnd never forget \"I may not be living good, but I\\'m living\" \\r\\n\\r\\nCLOUTSHOUT RULES: 1. LIKE THE VIDEO 2.SUBSCRIBE AND TURN ON THE POST NOTIFICATIONS 3.FOLLOW US INSTAGRAM, THEN DM US WITH THE PROOF! AND BOOM YOU GET THE CLOUT SHOUT.\\r\\n\\r#justinbieber #yummy #kevinkev\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-01-08T00:18:45.000Z',\n",
       "  71253,\n",
       "  1830.0,\n",
       "  90.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCqFHXgQ5NVwVxUOcx5GUFfg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@mamasgeeky',\n",
       "  \"Welcome to Mama's Geeky on YouTube! I am Tessa from MamasGeeky.com and I love all things geek culture - especially Marvel! Marvel movies, Marvel video games, and Marvel comic books, I love it all. I am here to be your Marvel guru. Is there a character you don't know much about but want to? Tweet me @MamasGeeky & I will try my best to fulfill your request!\\n\\nVisit my store: https://streamlabs.com/mamasgeeky#/merch\\n\\nEvery New Comic Book Day (Wednesday) at 1pm I will be coming to you LIVE with my newest comic book haul. We can talk about where the story lines are going and what we expect to see in the future.\\n\\nIf a new movie trailer is released (especially a Marvel one) you can expect me to have my reaction video up within an hour! Make sure you subscribe so that you don't miss out! https://goo.gl/rJF5tw\\n\\nCheck me out at https://mamasgeeky.com!\\n\\nFollow on Instagram: https://goo.gl/HMMFe5\\nFollow on Twitter: https://goo.gl/HEiwck\\nLike on Facebook: https://goo.gl/UbN4Lk\",\n",
       "  46000,\n",
       "  8145022,\n",
       "  1227,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=PFqkkZSO_io',\n",
       "  'Zombies 2 Call To The Wild Song REACTION!',\n",
       "  \"Loving these dance moves but I don't like this boy and the fact that it seems like he is after Addison! #Zombies2 #DisneyZombies #DisneyZombies2\\n\\n\\nBecome a member for EXCLUSIVE perks live shout outs and members only live chats: https://www.youtube.com/channel/UCqFHXgQ5NVwVxUOcx5GUFfg/join\\r\\n\\r\\nGet awesome shirts like mine in my TeePublic Store: http://tee.pub/lic/wXZLBvx5NJw\\r\\n---------------------------------------------------------\\r\\nTessa Smith \\r\\nMama's Geeky \\r\\nPO Box 3016 \\r\\nOswego, NY 13126\\ufeff\\r\\n\\r\\nBook me on Cameo for personalized videos and shout outs!: https://www.cameo.com/v/5cc8d6734399aa015da29143\\r\\n\\r\\nIf you are looking to grow your YouTube Channel quickly and organically, take my video course: https://mamasgeeky.com/2019/03/how-to-succeed-at-youtube-video-course.html\\r\\n\\r\\nVisit my store & buy my merch!: https://streamlabs.com/mamasgeeky#/merch\\r\\n\\r\\nEvery New Comic Book Day (Wednesday) at 1pm EST I will be coming to you LIVE with my newest comic book haul. We can talk about where the story lines are going and what we expect to see in the future.\\r\\n\\r\\nIf a new movie trailer is released (especially a Marvel one) you can expect me to have my reaction video up within an hour!  \\r\\n\\r\\nSubscribe so you don't miss out on my latest content:\\r\\nhttps://goo.gl/rJF5tw\\r\\n\\r\\nCheck me out at https://mamasgeeky.com\\r\\n\\r\\nFollow on Instagram: https://www.instagram.com/MamasGeeky/\\r\\nFollow on Twitter: https://twitter.com/MamasGeeky\\r\\nLike on Facebook: https://www.facebook.com/MamasGeeky/\\r\\nSupport me on Patreon: https://www.patreon.com/mamasgeeky\",\n",
       "  '2020-02-17T16:00:05.000Z',\n",
       "  36879,\n",
       "  755.0,\n",
       "  132.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCzM4IbSmrHntce2zvl6NF0g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@citizen_shaneofficial',\n",
       "  \"My mission as a South East Asian lovin' white boy from Hollywood, California, USA who is a musician, stand up comedian and actor is to honestly react and communicate my thoughts/feelings about the content featured on the channel.  Wether it's content from the Philippines, Indonesia, Korea or China or content from the USA - it doesn't matter to me.  TUNE IN FOR DAILY VIDEOS EVERYDAY!\\n\\nWhat's up everyone!?  Do you like Pinoy and other South East Asian reaction videos?  Then SUBSCRIBE!!  This channel is dedicated to all things South East Asia.  Because my YouTube partner Karen is from the Philippines, we have a tendency to cover more Filipino topics!  If you want a channel that is a little bit of everything relating to South East Asian pop culture with an undercurrent of sarcasm and comedy in every video, then please, subscribe to your boy Citizen Shane's channel!  (Oh yeah, and occasionally, when I am traveling, I will do travel vlogs, so be on the look out for those too!)\",\n",
       "  45600,\n",
       "  9280676,\n",
       "  294,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=GopyoZyS0vk',\n",
       "  'Alip Ba Ta - SUPER MARIO BROS Theme Song | REACTION (2020)',\n",
       "  'SUPER ALIP BA TA BROS is Shane and Alip. Alip plays, I react. There are a MILLION Super Mario Bros covers out there.  THIS IS THE BEST. Maybe its not the fastest or the most flashy, but it\\'s definitely the most melodic and prettiest to listen to. In this Alip Ba Ta reaction video you will see Alip Ba Ta take a basic melody from Super Mario Bros and turn it into something people actually want to listen to!  This Alip Ba Ta guitar video is special to me because I grew up as a kid playing Super Mario Bros and nostalgia has just slapped me in the face like a ten ton hammer, son. That\\'s a Machine Head reference. Anyone catch that? Anyways, back to the Alip Ba Ta guitar reaction video. Basically all I have to say is:  watch it!\\n\\nHey! Thanks for watching! DON\\'T FORGET to tune in everyday for fresh, new, daily videos!\\n\\nIf you like this video and want to see more Alip Ba Ta guitar videos, click the link below:\\n\\nhttps://www.youtube.com/playlist?list=PLGWk-hE6tY5GokkXsEPoQjUT27q51X5H8\\n\\nI WANT TO BE YOUR FRIEND: \\nFACEBOOK:  @CitizenShaneYouTubeChannel\\nhttps://www.facebook.com/citizenshaneyoutubechannel/\\n\\nINSTAGRAM:  @Citizen_ShaneOfficial\\nhttps://www.instagram.com/citizen_shaneofficial/\\n\\nWe post different things on Facebook and Instagram so make sure to check it out!\\n\\nSPECIAL ANNOUNCEMENT:  If I gain 500,000 subscribers by December 31, 2020 I will personally fly to Indonesia, meet up with Alip Ba Ta and buy him a top of the line Taylor or Martin guitar.  Those are the best acoustic guitars money can buy!  So, get the word out to everyone! Share this video everywhere you can and make sure this happens!  That would be an amazing experience!  500k subs by end of 2020 and Alip Ba Ta gets a new guitar from your boy Citizen Shane.  Then, Alip and I will have a jam session and make a bunch of videos together while I am in Indonesia! #BuyAlipAGuitar\\n\\nThank you all for commenting, liking and subscribing! I try to get to ALL the comments but YouTube doesn\\'t show them all to me! I only get notified with SOME comments and I don\\'t know why! So, if I don\\'t get to your comment I am NOT ignoring you! You are COOL but YouTube ain\\'t telling me I got comments!\\n\\nThey call me Citizen Shane or Citizen Shiz,\\nIndonesian reaction videos are my biz. \\nIndonesian boys and Indonesian girls, \\nAre my closet friends all over the world.\\n\\nWhat is a reaction video?\\nREACTION DEFINITION:\\nRe·ac·tion rēˈakSH(ə)n/noun\\nAn action performed or a feeling experienced in response to a situation or event.\\n\\nCOPYRIGHT DISCLAIMER:\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.\\n\\nOriginal video: https://www.youtube.com/watch?v=pNzIZrwYsvc\\n\\n----\\n\\nBottom feeder. Disgusting person. Loser. Thats me I am talking about because I am here once again:  at the bottom of the description. But that\\'s ok, because Alip Ba Ta offers saving grace through the power of his guitar. Today we are doing:  Alip Ba Ta - Super Mario reaction video, which should be an instant classic. Especially since it\\'s on the Citizen Shiz, A.K.A. Citizen Shane channel. Please watch this Alip Ba Ta - Super Mario Bros reaction till the very end, even if you get bored. Then HIT subscribe. DO IT. Please? Ok, bye.',\n",
       "  '2020-02-02T01:00:00.000Z',\n",
       "  168817,\n",
       "  3715.0,\n",
       "  320.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCWBVppxuscg85QDDmcBOUQA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  45400,\n",
       "  4286019,\n",
       "  19,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=x-AYvZxrNBk',\n",
       "  'GENDA PHOOL Song Reaction | RUSSIA | Jaqueline Fernandez | Badshah | Payal Dev | AniTalkies',\n",
       "  \"#Badshah #GendaPhool #JacquelineFernandez #SongReaction\\n\\nHello, Friends! #AniTalkies from Russia is here! \\n\\nYES, WE ARE BACK!\\n\\nFirst of all, THANK YOU for being with us all this time and watching our videos! We are really sorry for a long break, but we promise - lot's of videos are coming out soon! \\n\\nSo, We've got a lot of requests of doing a video reaction on #GendaPhool song, with Jaqueline Fernandez in leading role and...here we are! \\n\\n\\nStay Tuned \\nand please suggest us more videos to watch!\\n\\nFOLLOW US:\\n________________________\\nInstagram: http://instagram.com/anitasutradhar\\nYoutube: http://youtube.com/anitasutradhar \\nFacebook: http://www.facebook.com/devdandance\\nInstagram: http://instagram.com/devdandance\\nVK: http://www.vk.com/anitkas\\n________________________\\n\\nAnita Sutradhar -  http://instagram.com/itsmeaniita\\nMarina Tikhonova -  http://instagram.com/marni_t\\nKseniya Kuznetcova -  http://instagram.com/ksundelek_ogonek\\n\\nLike | Share | Comment | Subscribe .\\nFeedback is always appreciated\\n\\nNo Copyright infringement intended . Music is not owned by me\",\n",
       "  '2020-04-16T18:45:16.000Z',\n",
       "  37121,\n",
       "  957.0,\n",
       "  141.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCjvSFOoSlBF2_P8bjWI4E4A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'This channel is about entertainment.\\nSongs , Short Videos & Trailer Reaction',\n",
       "  45100,\n",
       "  3916718,\n",
       "  419,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=dSU9ou7fL7Q',\n",
       "  'Yo Yo Honey Singh - LOCA Song Reaction & Review | Ishan says | New Song 2020',\n",
       "  'Latest Assam Vlog 👇🙈🔥💓\\nhttps://youtu.be/7s879ughrKA\\n\\n\\nMy New Channel 💓👇\\nhttps://www.youtube.com/channel/UC9p9rYJ_8SW6ZHK_iUU-GNA\\n\\nReacted To The Song Loca for you all💓\\n\\n Hope you all like it !\\nIf you like the video Please give a Thumps up 👍\\nAnd give your reviews in the Comment Section too 💓\\n\\n\\nBe connected  🙌💓🙏\\nInstagram - IshanSethii\\nFacebook - https://www.facebook.com/IshanSethiOf...\\n \\n\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n.........................\\n................\\n#LocaSongReaction #YoYoHoneySingh #IshanSays',\n",
       "  '2020-03-03T14:46:06.000Z',\n",
       "  19840,\n",
       "  1436.0,\n",
       "  105.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCjRUW6LETPvzoQb5I8tGLhw',\n",
       "  'iamduanejackson@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'http://www.duanejacksonmusic.com\\n\\nAlbum Release Date - February 20th, 2020\\n\\nMAILING ADDRESS\\nDuane J\\nP.O. Box 17\\nRockville, Maryland 20848\\n\\nFor Promotion: iamduanejackson@gmail.com\\n\\nSocial Media\\nTwitter: @itsDuaneTV\\nInstagram: @DuaneTV\\n\\nSUBSCRIBE FOR ALL THE DOPE CONTENTS\\n\\n**THIS CHANNEL IS NOT INTENDED FOR MINORS',\n",
       "  43200,\n",
       "  4871892,\n",
       "  978,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=YErqJ8cmqlQ',\n",
       "  'LORD JAMAR DISS! | Eminem - I Will (Music To Be Murdered By) [REACTION]',\n",
       "  'Subscribe Here! 👉 https://goo.gl/YCFnyM\\nROAD TO 50,000 SUBSCRIBERS!\\n\\nMy Website  👉 http://www.duanejacksonmusic.com\\n\\nSpotify 👉 https://t.co/5epISj5CZC\\n\\nTwitter 👉 http://twitter.com/itsduanetv\\n\\nMAILING ADDRESS\\nDuane J\\nP.O. Box 17\\nRockville, Maryland 20848\\n--------------\\n#eminem #lordjamar #eminemdiss\\nTAGS: eminem i will reaction,eminem i will,eminem lord jamar diss,eminem vs lord jamar,lord jamar diss,eminem diss,music to be murdered by reaction,eminem music to be murdered by,eminem 2020,eminem new album,eminem 2020 album,eminem,eminem reaction 2020,eminem reaction,rap,hip hop,reaction channels,duanetv,hip hop reactions,funny reactions',\n",
       "  '2020-01-17T14:51:11.000Z',\n",
       "  60590,\n",
       "  2827.0,\n",
       "  405.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCDzXMJ3WtO-Xk4pfo9HcNQg',\n",
       "  nan,\n",
       "  nan,\n",
       "  'afaikyouknow@gmail.com',\n",
       "  '@afaikyouknow',\n",
       "  'AFAIK is a channel where I am trying to build a community of Hip-Hop artists and enthusiasts. Over here I do reaction videos of desi Hip-Hop songs of both Popular and Underground artists. The main motive behind starting this channel is to build a community of Hip Hop lovers, educate and entertain my audience about the desi Hip Hop. Lastly I just want to say that this is more than just a reaction channel, this is Love!!\\n#AFAIK #MusicSunaoMusicBachao',\n",
       "  42500,\n",
       "  2736318,\n",
       "  129,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=Mz_I2Krkjbs',\n",
       "  'SACH BOL PATTA REACTION + BREAKDOWN | DIVINE 2ND DISS FOR EMIWAY | DIVINE NEW SONG REACTION | AFAIK',\n",
       "  'This is a reaction plus breakdown video of Divine new song - ‘SACH BOL PATTA’, which is also a 2nd diss track for EMIWAY\\n#SachBolPatta #DIVINE #AFAIK\\n____________________________________________________________________________________________\\nLink to the original song - https://www.youtube.com/watch?v=Z-rWc7b1be0\\n\\nCredits of the song:\\nArtist: DIVINE\\nLyrics: DIVINE\\nMusic Producer: Stunnah Beatz\\nMixing and Mastering: Stunnah Beatz\\nVisuals & Edit - Panini Pandey, Chang\\n____________________________________________________________________________________________\\nInterested In Paid Promotions (Music, Product etc.) → email: afaikyouknow@gmail.com\\n_________________________________________________________________________\\nIf you Like the video then Please Follow Us @:\\nYouTube @ http://bit.ly/2oL7BIO\\nFacebook @ https://bit.ly/2RpvnHe\\nInstagram @ https://www.instagram.com/afaikyouknow/\\n________________________________________________________________________\\nLinks of the #ANTRIKSH RAP CHALLENGE:\\nSONG - https://www.youtube.com/watch?v=4XY7Jd14QKs\\nFOR RAP CHALLENGE CONTACT I.D. ON INSTA - @KABEELAGANG\\n_________________________________________________________________________\\nCheck out my other videos - \\nChaabi Wala Bandar Reaction - https://www.youtube.com/watch?v=-FuNKK7DxUY\\nEMIWAY HARD REACTION - https://www.youtube.com/watch?v=kmRfySSB7Hw\\n#4BARCHALLENGE Part 1. - https://www.youtube.com/watch?v=L8yDEf_YA0s\\nQuarantine Reaction - https://www.youtube.com/watch?v=Vfq5UhKoK2E\\nEMIWAY BATISTA BOMB REACTION - https://www.youtube.com/watch?v=lQMZ8VW2u1I\\n_________________________________________________________________________\\n♫Music By♫\\n1. Ship Wrek & Zookeepers - Ark - https://youtu.be/8xlDwukxjnA\\nSupport Ship Wrek\\n●Facebook - https://www.facebook.com/theshipwrek\\n●YouTube - https://www.youtube.com/user/theshipwrek\\n●Soundcloud - https://soundcloud.com/theshipwrek\\n●Support Zookeepers\\n●Facebook - https://www.facebook.com/zookeepers\\n●Soundcloud - https://soundcloud.com/zookeepersdk\\n\\n2. 6XBEATS\\nhttps://www.youtube.com/channel/UC08Ej_GdbnB0KkpXH02Vn5g\\n__________________________________________________________________\\nDisclaimer:\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-04-22T17:30:12.000Z',\n",
       "  60830,\n",
       "  6084.0,\n",
       "  789.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCmo1Cve3yYaWkQPvpUB1JIw',\n",
       "  'deanaandphil@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  '@deanasdetours',\n",
       "  \"We are an American and German couple with a shared love for FUN, FOOD and TRAVEL! \\n\\nWe usually release 2 videos a week about couple's stuff, fun challenges, cultural differences, life around the globe, or just things that interest us. :)\\n\\nWe want to share our struggles, experiences and observations on this channel. We also want this to be a comfortable place for others to share their thoughts and opinions. We highly encourage and appreciate friendly behavior and do not tolerate any form of discrimination or toxicity to ourselves or others on this channel. Life is too short for that nonsense. \\n\\nIf you can relate to two people from different parts of the world trying to figure out this life together or if you simply enjoy our videos - make sure to SUBSCRIBE! :)\\n\\nWe are open for collaborations and business inquiries. Mail us on deanaandphil@gmail.com \\n\\nSee you soon! \\n\\nDeana and Phil\",\n",
       "  42300,\n",
       "  6796793,\n",
       "  164,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=aqAAEO94bMc',\n",
       "  'American Girlfriend Reacts to GERMAN Music!!',\n",
       "  'Time for Deana to react to some German culture, aka music! :D Okay, maybe not the most \"classic\" or \"cultural\" music, but stuff that is definitely in the mix (or was a while ago). \\n\\nWe watch some German Rap, German Schlager, Mallorca Party Music, Rammstein and more!\\nWe also wanted to react to \"Bibi H\\' -  That\\'s just how it is\" from Bibis Beauty Palace (German Youtuber). All of these songs are of course copyrighted and we will not make any money from this video, but the Bibi H video blocked our entire video from being shown at all. And though is was probably our funniest reaction we had to cut that part of the video very short. \\nYou can find a list of the music we reacted to here:\\n\\n\"Gzuz - Vor der Tür\": https://youtu.be/MFd2tPzd0X8\\n\"Florian Silbereisen - Links a Madl, rechts a Madl\": https://youtu.be/3Q0whyunOuo\\n\"Lorenz Büffel - Johnny Däpp\": https://youtu.be/CE70PHlgrlo\\n\"Rammstein - Mein Herz brennt\": https://youtu.be/WXv31OmnKqQ\\n\"Bibi H - That\\'s just how it is (wap bap)\": https://youtu.be/4gSOMba1UdM\\n\\n► Check out “American Girlfriend Tries German Bakery Items!\\n”:  https://youtu.be/4BKRSxcWqSY\\n\\nWe post new videos every week!\\n\\n✔ If you enjoyed our video, please SUBSCRIBE here: https://www.youtube.com/channel/UCmo1Cve3yYaWkQPvpUB1JIw?sub_confirmation=1\\n\\n► Support us on PATREON! https://www.patreon.com/deanaandphil\\n\\n___________________________\\n\\nOUR SOCIAL MEDIAS:\\n\\nDEANA AND PHIL STUFF ►\\nFacebook: @deanaandphil (https://www.facebook.com/deanaandphil)\\n\\nDEANA’S STUFF ►\\nInstagram: @deanasdetours (https://www.instagram.com/deanasdetours/)\\nYouTube: Deana\\'s Detours (https://www.youtube.com/DeanasDetours)\\nBlog: Deana’s Detours (https://deanasdetours.com/)\\nFacebook: Deana’s Detours (https://www.facebook.com/DeanasDetours/)\\n\\nPHIL’S STUFF ►\\nInstagram: @phil_299 (https://www.instagram.com/phil_299/)\\nYouTube Channel: Phil TV (https://www.youtube.com/channel/UCoY01DRKKeL7vf0Abuv-lCQ)\\n\\n______________________________\\n\\nMUSIC CREDIT ►\\n\\n♫ Main Music Provided By:\\n\\n______________________________\\n\\nBOOK YOUR NEXT ADVENTURE ►\\n*Note: These are affiliate links, so we make a small commission if you use our links. There is no additional cost for you! It does help support our travels. :)\\n\\nAirbnb (Sign up for Airbnb and get $40 off your first adventure!): https://abnb.me/e/9VkpjX7NZT \\n\\n\\n______________________________\\n\\nGEAR we use and recommend ►\\n\\nMain Camera (DE): https://amzn.to/2TWJ5iv\\nSmall Camera (DE): https://amzn.to/2Gvi4jj \\nGoPro Hero 7 Black (DE): https://amzn.to/2EiCSYY\\nMicrophone (DE): https://amzn.to/2Gxz1tt\\nCheap cabled Mic (DE): https://amzn.to/2TWlqPo \\nVlogging Tripod (DE): https://amzn.to/2SHtuaj\\nCheap Vlogging Tripod (DE): https://amzn.to/2BHu5yd \\nGreat Big Travel Tripod (DE): https://amzn.to/2DU2cTF\\n\\n\\nMain Camera (US): https://amzn.to/2DQy4bJ \\nSmall Camera (US): https://amzn.to/2TSXg8k \\nGoPro Hero 7 Black (US): https://amzn.to/2TVsBaB \\nMicrophone (US): https://amzn.to/2BHpYSJ \\nCheap cabled Mic (US): https://amzn.to/2tu3YGm \\nVlogging Tripod (US): https://amzn.to/2BEzFkM \\nGreat Big Travel Tripod (US): https://amzn.to/2XbrANJ',\n",
       "  '2020-01-25T11:15:02.000Z',\n",
       "  49876,\n",
       "  1023.0,\n",
       "  436.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC00mPbq8NCxDLQYxCL67svA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@avatheadaptor',\n",
       "  'Welcome To The Adaptor! \\n\\nI’m Ava and this is the place to be for the most entertaining and real reactions! :) \\n\\nI’m the perfect combo of extra and passionate!  \\n\\nDon’t believe me? Check out any video of mine! ;)',\n",
       "  41000,\n",
       "  5053282,\n",
       "  418,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=s6zQbcGoXp0',\n",
       "  'ButtaBomma Video Song REACTION || Allu Arjun || #AlaVaikunthapurramuloo || #AA19',\n",
       "  'Instagram: @avatheadaptor https://www.instagram.com/avatheadaptor/\\xa0 Facebook: https://www.facebook.com/avatheadaptor/ YouTube: The Adaptor \\nhttps://www.youtube.com/channel/UC00mPbq8NCxDLQYxCL67svA?view_as=subscriber\\n \\nThe Adaptor reacts to the ButtaBomma Video Song!\\n\\nButtaBomma Video Song REACTION: https://youtu.be/s6zQbcGoXp0\\n\\nSong: https://www.youtube.com/watch?v=zXWJLEE7LeI\\n\\n#ButtaBomma #AlluArjun\\n\\nAla Vaikunthapurramloo Trailer Reaction: https://youtu.be/Ugm2L9pZ5HI\\n\\nTrailer: https://www.youtube.com/watch?v=SkENAjfVoNI\\n\\n#AlaVaikunthapurramulooTrailer #AlluArjun #AlaVaikunthapurramuloo \\n\\n\\nSamajavaragamana Video Song Reaction: https://youtu.be/PNgRLApx4c0\\n\\nSong: https://www.youtube.com/watch?v=Mw9QBhc8_KQ\\n\\nSamajavaragamana Full Song Reaction: https://youtu.be/zvRtciQvWf8\\n\\n\\nMeme of AA fans: Pappu Avakai - https://www.facebook.com/PappuAvakaiOfficial/\\nThank you for the hilarious meme! :))\\n\\n #AlluArjun #AA19\\n #Samajavaragamana \\n #AlluArjun\\n#SeetharamaSastry\\n\\n#AlaVaikunthapurramuloo\\n\\n\\n\\n#AlaVaikunthapuramulo\\n\\nButtaBomma Lyrical Reaction: https://youtu.be/dvinE5eMAK4\\n\\n#ButtaBomma #AlluArjun\\n\\nButtaBomma Song Teaser Reaction: https://youtu.be/D-6DpZGF-j4\\n\\n#ButtaBomma #AA19 #AlaVaikunthapurramuloo #AlluArjun \\n\\n\\nAla Vaikunthapurramloo Teaser Reaction: https://youtu.be/aMsze9O3fR0\\n\\n\\n#AlaVaikunthapurramulooTeaser #AlluArjun #AlaVaikunthapurramuloo \\n\\nOMG Daddy Song Reaction: https://youtu.be/fazE_eX31Ks \\n\\nOMG Daddy Song Teaser REACTION: https://youtu.be/_m6ckqtp_Y0\\n\\nRamuloo Ramulaa Full Song REACTION: https://youtu.be/MPGZrsrWvyk\\n\\nRamuloo Ramulaa Song Teaser REACTION: https://youtu.be/RSdARLT8kVc\\n\\nSamajavaragamana Full Song REACTION: https://youtu.be/zvRtciQvWf8\\n\\nLover Also Fighter Also Reaction: https://youtu.be/IDdX0TtWDGE\\n\\nLover Also Fighter Also Song: https://www.youtube.com/watch?v=wui6D5J38MM&list=PLhzYt0j98ZO-rQSrzfOP4tYH8e7effMIc&index=21&t=0s\\n\\nSeeti Maar Reaction: https://youtu.be/DrAJNJf5GrI\\n\\n#LoverAlsoFighterAlso #AlluArjun #NaaPeruSuryaNaailluIndia  #AnuEmmanuel #AlaVaikunthapurramloo\\n#Samajavaragamana #OMGDaddy #OMGDaddySong',\n",
       "  '2020-01-08T13:09:19.000Z',\n",
       "  122088,\n",
       "  3535.0,\n",
       "  110.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCMC_opE56WHaRgw7TYwVlqA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'kdarlingsblog@gmail.com',\n",
       "  nan,\n",
       "  '𝚂𝚑𝚊𝚛𝚒𝚗𝚐 𝚘𝚞𝚛 𝚕𝚘𝚟𝚎 𝚘𝚏 𝚖𝚞𝚜𝚒𝚌, 𝚊𝚛𝚝, 𝚊𝚗𝚍 𝚎𝚗𝚝𝚎𝚛𝚝𝚊𝚒𝚗𝚖𝚎𝚗𝚝 𝚘𝚗𝚎 𝚟𝚒𝚍𝚎𝚘 𝚊𝚝 𝚊 𝚝𝚒𝚖𝚎 🎼🎤🎧🎹📽🎬🎞',\n",
       "  40800,\n",
       "  11475733,\n",
       "  1105,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=vfwRwOASEOE',\n",
       "  'REACTION| ดี๊ดี (UNEXPECTED) - JAYLERR x PARIS Official Music Video',\n",
       "  'REACTION| ดี๊ดี (UNEXPECTED) - JAYLERR x PARIS Official Music Video\\n\\nDISCLAIMER: WE DO NOT OWN ANY OF THE CONTENT WE REACT TO. OUR REACTIONS ARE FOR ENTERTAINMENT PURPOSES ONLY, AS WELL AS TO PROMOTE THE ARTISTS WE LOVE. PLEASE FIND THE ORIGINAL LINKS IN THE DESCRIPTION AND WATCH AND SHARE. IF YOU WOULD LIKE THIS VIDEO REMOVED, PLEASE CONTACT THE EMAIL BELOW. \\n\\r\\nNote: During initial reactions, we like to point out the things that jump out at us. But we always rewatch the music videos several times after we turn off the camera. Which is why we tend to add notes or pop up text during editing for things we caught when rewatching. 😍\\n\\r\\nOriginal video here: https://youtu.be/-SEmqYTbm4Q\\n\\r\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.\\n\\r\\n**Credit to all of the original owners of the videos. We own nothing.**\\n\\r\\nThank you so much for watching! \\r\\n\\r\\nIf you like what you see, please subscribe to our channel\\n\\r\\nIntroduction video artwork by Rachel Ryals \\r\\nProfile pic and banner artwork by Melissa Wright \\r\\n\\r\\n--------------------------------------------\\r\\nFollow us on Instagram: @kdarlingsblog\\r\\n--------------------------------------------\\r\\nFollow us on Twitter: https://twitter.com/kdarlings1\\r\\n\\r\\nMail to:\\r\\n\\r\\nKDarlings \\r\\nC/O Regina or Sabrina \\r\\nP.O. Box 300\\r\\nSoso, MS 39480\\r\\n\\r\\nOr \\r\\n\\r\\nKDarlings\\r\\nC/O BJ \\r\\nP.O. Box 300\\r\\nSoso, MS 39480\\r\\n\\r\\nYou can email us or Chair Dancing with BJ at kdarlingsblog@gmail.com or comment below with any suggestions or feedback. We love feedback! Thank you! \\r\\n\\r\\nKdrama review videos coming soon!',\n",
       "  '2020-02-07T20:25:45.000Z',\n",
       "  55943,\n",
       "  1011.0,\n",
       "  28.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCX8mVFiNaJmUSCX8b3IgvNw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@kcfamilytv',\n",
       "  'Welcome To K&C Family Bang Bang !!, This Channel We Will Be Doing Reactions To All Types Of Videos, although our main reaction videos are drill music. We also react to new up and coming artist as we call them “new promo artist” so if you are a new artist and want your music promoted on our channel feel free to DM us on our Instagram @kcfamily4life Make Sure To Subscribe, Like And Comment And Turn Notifications On So You kNow When We Upload Videos.\\nFollow Our Instagram:: @kcfamily4life and @baangbangtv',\n",
       "  40300,\n",
       "  6329390,\n",
       "  866,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=w_hMLKzlzxA',\n",
       "  'POP SMOKE - CHRISTOPHER WALKING REACTION 🔥 \"DAMNN THIS WAS CRAZY!\" MUST WATCH!',\n",
       "  'In This Video Kingkeith & Cece Do A Reaction To Pop Smoke - Christopher Walking Official Music  Damnn! This Song Was Fire! Must Watch Now K&C Family Bang Bang! #kcfamily4life #ukdrill #reaction #nydrill #chiraqdrill\\n\\nNew Artist Alert:: Official Music Click Link To Watch Full Video Bang Bang:: \\n\\nAll New Artist For Promo Reaction Dm Us On Our Instagram::\\nFollow Our Instagram:: https://www.instagram.com/kcfamilytv/\\n\\nSupport Our Channel K&C Family Go To Gawkbox Website Click Link Below To Support Our Channel::\\nhttps://www.gawkbox.com/Kcfamily4life\\n\\nShop Now For K&C Family Merch Click Link Below To Shop Or Dm Us On Our Instagram::\\nhttps://teespring.com/bang-bang-k-c-f...\\n\\nSubscribe, Like, Comment And Turn Notifications On.',\n",
       "  '2020-01-27T16:11:06.000Z',\n",
       "  5074,\n",
       "  116.0,\n",
       "  20.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCo8rx9qkskenav7slUjCABw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'londonalexisbiz@gmail.com',\n",
       "  '@thekiingkush',\n",
       "  'Just a bay area girl expressing her love for music & her cat Kush. On this channel I post reactions to US & UK music,  different music playlists, etc.\\n\\nSubscribe for new videos everyday!',\n",
       "  39300,\n",
       "  2603139,\n",
       "  102,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=WIqJujDPHjk',\n",
       "  'Eminem - Godzilla ft. Juice WRLD (Dir. by _ColeBennett_) | MUSIC VIDEO REACTION',\n",
       "  'PROMOTED SONG https://www.youtube.com/watch?v=PDn0D1TVDck\\n\\nJUICE WRLD REACTIONS https://www.youtube.com/watch?v=8atXFrsSy6k&list=PLjghVHaxuEvKaHxdwiZf1I8PYxlSjlxhv\\nEMINEM REACTIONS https://www.youtube.com/watch?v=AF3ancsHw1E&list=PLjghVHaxuEvL7uSXQzPjulUXp7Aw1a13A\\nLYRICAL LEMONADE REACTIONS https://www.youtube.com/watch?v=Aifm7XpW3Go&list=PLjghVHaxuEvKt4kcANdhW9yqBdLB4VH18\\n\\n♫ INTRO SONG https://www.youtube.com/watch?v=LdXMi8jSheo\\n♫ OUTRO SONG https://www.youtube.com/watch?v=IcxrD3k7Xk8\\n\\nOUR TIKTOK https://www.tiktok.com/@london.niecol\\n\\nFOLLOW NICOLE\\n✫ http://instagram.com/niecol\\n✫ https://www.youtube.com/channel/UCJMhwm9bvCvgLiTphuqQWOg\\n\\nFOLLOW ME\\n✫ http://instagram.com/londonalexis\\n✫ https://www.twitch.tv/londonalexis\\n✫ https://twitter.com/theLondonAlexis/\\n✫ https://www.instagram.com/thekiingkush/ (my cat)\\n\\nSUBSCRIBE TO MY OTHER CHANNELS\\n✫ https://www.youtube.com/channel/UC-nI3Vpg1AwSPC3AW37GlOg\\n✫ https://www.youtube.com/channel/UCo8rx9qkskenav7slUjCABw\\n\\n✫ ORIGINAL VIDEO https://www.youtube.com/watch?v=r_0JjYUe5jo\\n\\n------------------------------------------------------------------------------------\\n\\n✫ BUSINESS EMAIL LondonAlexisBiz@gmail.com\\n\\n✫ MY AMAZON LISTS (all the products i use - including the star lights on my ceiling) https://www.amazon.com/SHOP/LONDONALEXIS',\n",
       "  '2020-03-11T01:33:25.000Z',\n",
       "  299459,\n",
       "  8934.0,\n",
       "  781.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCWvR0wYU48CARCDKV7FwfqQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hi welcome to my channel. I make reaction videos of artist and bands I've never heard before. I like being exposed to new music and I like the opportunity that I receive with each video to share some new songs with my subscribers; that they might've never heard before. I believe that music has no color and it's there for everyone to enjoy. In my reactions, I  give my thoughts on the song and add memes to brighten my reactions a bit. I hope you join me on the road to 1 million subscribers and appreciate all the amazing talent that i'll be reacting to along the way \\n\\nI also will be doing vlogs and general videos to interact with my audience even more.\\n\\nI work hard on my reactions and I hope you enjoy them.\",\n",
       "  39000,\n",
       "  7893948,\n",
       "  238,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=sFqM-T9pPzs',\n",
       "  \"JOHN DENVER ANNIE'S SONG REACTION\",\n",
       "  'Follow me on Instagram http://bit.ly/2FUxbAh\\nFollow me on facebook  https://fb.me/JayveeTV1 \\n\\nPatreon!!!: https://www.patreon.com\\nPaypal: https://www.paypal.me/jayveetv\\n\\nMy headphones here:https://amzn.to/2OY5w7F\\nGear https://kit.com/jayenuh/gear\\n\\nLink to original video:https://www.youtube.com/watch?v=RNOTF-znQyw\\n\\nThanks for 24K subscribers lets get to 25k\\n\\n\\n\\nClick Here To Subscribe! https://www.youtube.com/JayveeTv\\n\\n\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-02-07T03:19:25.000Z',\n",
       "  36029,\n",
       "  2104.0,\n",
       "  670.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC0cfaHtbf28laI3KmaGc20A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hi! We are Kimchi Curry Smile~~~~🤟\\n\\nKimchi is an inseparable food of Korean's life🇰🇷\\nCurry is an inseparable food of Indian's life🇮🇳\\n\\n\\nWhat if Kimchi and Curry meet together?!\\n🤔\\n\\nSubscribe our channel and check Korean people's stories every week!\\n\\n-------------------------------\\n\\n안녕하세요! 저희는 김치커리스마일입니다~~~\\n\\n한국인의 밥상에 매일 올라오는 김치🇰🇷\\n인도인의 밥상에 매일 올라오는 커리🇮🇳\\n\\n김치와 커리가 함께 만나면 어떻게 될까요?!\\n\\n\\n김치커리스마일을 구독하고 매주 올라오는 한국인의 인도 이야기를 만나보세요!\",\n",
       "  38500,\n",
       "  5247456,\n",
       "  87,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=-yF2Y-WVwnc',\n",
       "  'Garmi Song Reaction by Korean | Street Dancer 3D | Varun D, Nora F, Shraddha K, Badshah, Neha K',\n",
       "  'Garmi Song Reaction by Korean | Street Dancer 3D | Varun D, Nora F, Shraddha K, Badshah, Neha K\\n\\n\\n#Garmi #Garmisong #GarmiKorean #GarmiReactionbyKorean #Streetdancer3d\\n\\nHi, Smilers :)\\nWelcome back again!\\n\\nWe reacted to Garmi song which you guys recommended a lot so far.\\n\\nObviously, Nora is a dancing queen of India these days.\\nWe were so shocked with her sexy dance....@_@\\n\\n* Come With Us *\\n\\n—\\n*Instagram : @kimchicurrysmile\\nhttps://www.instagram.com/kimchicurry...\\n\\n*Facebook : @kimchicurrysmile\\nhttps://www.facebook.com/kimchicurrys...\\n\\n*Tiktok : @kimchicurrysmile\\n▶▶ https://vt.tiktok.com/8Fr5nd/',\n",
       "  '2020-01-19T13:30:00.000Z',\n",
       "  47569,\n",
       "  1478.0,\n",
       "  41.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCdWYLIRFeC6_NvKaidIurvg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  38000,\n",
       "  1393108,\n",
       "  48,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=kjquLzYLK1w',\n",
       "  'Cmr & Crissy Reaction Towards Govana New Song Convo **can u relate**',\n",
       "  '#thecarterfamily #crissycushane',\n",
       "  '2020-01-21T18:43:12.000Z',\n",
       "  80645,\n",
       "  5821.0,\n",
       "  412.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC5SN-A9lPuDVYBUwQr5YNDg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@thebogeres',\n",
       "  'Welcome to the best reaction channel we about to take you on an amazing lit journey.\\nYou can achieve anything you put your mind to in this life, nothing is impossible!!!\\n\\nSubscribe to join the Family',\n",
       "  37700,\n",
       "  9519919,\n",
       "  1179,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=41MTev3D-7w',\n",
       "  'ROSALÍA - Juro Que (Official Video) - REACTION',\n",
       "  'ROSALÍA - Juro Que (Official Video) - REACTION\\n\\nOriginal Video Link - https://www.youtube.com/watch?v=mtym36PG6R8\\n\\nMake sure you subscribe and let us know what other videos you want us to react to next! \\n\\nINSTAGRAM\\nThe Bogeres - https://www.instagram.com/thebogeres/\\nDavid -  https://www.instagram.com/davidmukwana/\\nEsther - https://www.instagram.com/estherbogere/\\n\\n\\nTWITTER\\nhttps://twitter.com/TBogeres\\n\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-01-25T00:05:25.000Z',\n",
       "  82513,\n",
       "  2496.0,\n",
       "  238.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCI9Rrl-eqXXA-LQEIWoTBvw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  37700,\n",
       "  3650610,\n",
       "  127,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=xdv0qx9axEI',\n",
       "  'Badshah - Genda Phool (SONG REACTION) | JacquelineFernandez | Payal Dev | Don David',\n",
       "  'thats my reaction to \"Genda Phool\", hope you enjoyed it :)\\n\\nOriginal Music Video: https://www.youtube.com/watch?v=SD4Z8dlZPd8\\n\\nSUBSCRIBE :)\\n\\nFOLLOW ME :)\\n-------------------------------------------------------------------------\\nFACEBOOK : https://www.facebook.com/dondavidtv/\\nINSTAGRAM: ddon_david\\nTIKTOK: ddondavid\\n-------------------------------------------------------------------------\\n\\n#GendaPhool #Badshah #JacquelineFernandez',\n",
       "  '2020-03-26T13:51:51.000Z',\n",
       "  110808,\n",
       "  3691.0,\n",
       "  337.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCLP3nBlYHq9CzM7bXxAmKYQ',\n",
       "  'nbreviewspk.business@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'We take movie reviews and opinions from the general public.\\nWe also try to analyse and present our views as a common viewer.\\nPlease SUBSCRIBE our channel for further updates\\nFor business inquiry : nbreviewspk.business@gmail.com',\n",
       "  37600,\n",
       "  7268670,\n",
       "  343,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=s5dELLN0avg',\n",
       "  'Danyal Zafar TEACHES Ali Zafar Udh Chaliye Song | NB Reviews',\n",
       "  nan,\n",
       "  '2020-04-04T17:30:56.000Z',\n",
       "  317572,\n",
       "  5862.0,\n",
       "  459.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCmmaCzuHpxU6ewLT_y9pBYg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'THIS CHANNEL IS ABOUT REACTORS REACTION COMPILATIONS..THANK YOU ALL FOR WATCHING.',\n",
       "  36900,\n",
       "  8806421,\n",
       "  107,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=MlTT5R4V2Iw',\n",
       "  '\"BEAUTY AND THE BEAST\" REACTORS REACTION COMPILATION/MARCELITO POMOY/FINAL SONG',\n",
       "  '#finalsong\\n#marcelitopomoy\\n\\nOriginal video link: https://youtu.be/gsv9PZ5getI\\n\\n\\nWelcome to my Channel!!! Subscribe for more videos. Don\\'t forget to LIKE & SHARE! Feel free to comment down below. \\nThank you for watching...\\n\\n\\nCredits to:\\n\\n\\nDan Alexandrov- https://youtu.be/-hA7hCRoZjs\\niSOReacts- https://youtu.be/b5VxQVZLzZo\\nTHE VOCAL LEXICON- https://youtu.be/QY0C2YTfCEI\\nBUBS & DOE- https://youtu.be/s9bktfi-Lg4\\nH of The Stage- https://youtu.be/f4iEB0wIp1g\\nBillyYouSoCrazy- https://youtu.be/AX7t_5aIuhc\\nfahimmuchi- https://youtu.be/1Vvi2B6GH8M\\nLoly- https://youtu.be/JmS7dIVKvQ4\\nDublirious- https://youtu.be/WTBrzxz7sk4\\nYani and Fabio- https://youtu.be/0Ulfo3Pbmi0\\nKaif- https://youtu.be/A1Q41aK2G84\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. All of the content in this video belong to their respective owners. We do not own any of the footage shown or music used in this video.',\n",
       "  '2020-02-10T00:21:15.000Z',\n",
       "  240588,\n",
       "  4549.0,\n",
       "  258.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCtmOuM-6nNmsz177k4ZubXA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"FORTNITE SUPPORT CREATOR CODE : FAUTYX\\n\\nHey! My name is Khalil Sheckler \\n\\nThat's my new channel because my old channel has been terminated! and i create new one :)\",\n",
       "  36900,\n",
       "  8417572,\n",
       "  590,\n",
       "  'MA',\n",
       "  'https://www.youtube.com/watch?v=IS-wH7AEhog',\n",
       "  \"SABYAN - AL WABAA' (Official Music Video) Virus Corona REACTION\",\n",
       "  'SABYAN - AL WABAA (Official Music Video) REACTION\\nSABYAN - AL WABAA (Official Music Video) #Corona REACTION\\n\\nKhalil Sheckler REACT TO SABYAN - AL WABAA (Official Music Video) #Corona and I hope you like it :D\\n\\n• Support me in making better videos! \\nhttps://www.paypal.me/FoddyGames\\n\\n• Check out the original video here :\\nhttps://www.youtube.com/watch?v=Tds0CYMP9Rw\\n\\n• Pleases s u b s c r i b e for more videos! :) thank you in advance?e!\\n\\n======================== • F O L L O W • ========================\\n\\n• I N S T A G R A M: https://goo.gl/L6W9SJ\\n\\n• F a c e b o o k : https://goo.gl/QS67yd\\n\\n• T w I t t e r: https://goo.gl/4gX8wk\\n\\n__________________________________________________________________________________________\\n\\nThanks for watching SABYAN - AL WABAA (Official Music Video) #Corona REACTION! Comment video suggestions down below! Share with your friends and add to your favorites it helps the channel grow more than anything :) Show less',\n",
       "  '2020-04-05T09:10:43.000Z',\n",
       "  59536,\n",
       "  2017.0,\n",
       "  84.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCunKnnWI3EpWMc8ghXROh4Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hi!\\n\\nWe are from Portugal, and we like reading, writing, dancing, listening to music and teaching!! Yes, we are teachers! :)\\nWe love the asian world and everything about the asian culture. We love kpop, kdrama, jdrama, cdrama, tdrama - we even love lakorns.',\n",
       "  36700,\n",
       "  1007034,\n",
       "  158,\n",
       "  'PT',\n",
       "  'https://www.youtube.com/watch?v=DO_zPUeuH3k',\n",
       "  'TEACHERS REACT | RAMULOO RAMULAA Full Video Song || Allu Arjun || Trivikram | Thaman S',\n",
       "  '#AlaVaikunthapurramuloo #ALLUARJUN #ramulooramulaa #indianmoviereaction #telugu #telugureaction #teachersreact\\n\\nGreat actor, great song and great dancing!!!! Stylish Actor in the dance floor!!!\\n\\nWe hope you enjoy this reaction!\\n\\nLink to the original video: https://www.youtube.com/watch?v=Bg8Yb9zGYyA\\n\\nP.S.: This is a non profitable channel and we do not monetize our videos. We just like to have fun and relax a little while we learn something more about other cultures, other countries, whether in music, sports, art, literature, cinema, etc. We like to apply our analysis and interpretation techniques that we use in our classes to everything we see and react.\\n\\nWe would like also to remind everyone that our job is very demanding and that we can only react when we have some free time (which does not happen often), so we ask for patience to those who want to make a request.\\n\\nIntro by Alexbau01 - wwww.youtube.com/Alexbau01\\n\\nMusic in the intro - Kygo - Firestone\\nlink: https://www.youtube.com/watch?v=9Sc-ir2UwGU\\n\\nNo copyright infringement intended. \\nAll rights go to the copyrighted contents original owners.\\n\\n\"Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \\'fair use\\' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. \\nFair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\"',\n",
       "  '2020-04-10T22:17:42.000Z',\n",
       "  61466,\n",
       "  nan,\n",
       "  137.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCgApNUj0ENAZHbCGkoKFEGg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Caleb Coles is a singer/songwriter from Australia.\\n\\nThis channel features Caleb's original music & cover songs, singer and musician reactions & analysis, singing technique videos and other content tailored for those who love the skills and artistry behind singers and songwriters.\\n\\nWeekly uploads of 2-3 videos per week.\",\n",
       "  36600,\n",
       "  5199267,\n",
       "  94,\n",
       "  'AU',\n",
       "  'https://www.youtube.com/watch?v=5p-G1qBxlkg',\n",
       "  'Little Big - Uno | EUROVISION 2020 | Singer Songwriter REACTION',\n",
       "  \"As a change of pace, thought I'd have a bit of fun and react to Little Big - Uno from Eurovision 2020. Hope you enjoyed it as much as I did. To hear more of my music, get contact info and links visit https://www.calebcoles.com\\n\\nInstagram @calebcoles1\\nFacebook.com/calebcolesmusic\\nhttps://www.calebcoles.com\",\n",
       "  '2020-03-20T08:00:02.000Z',\n",
       "  266220,\n",
       "  9260.0,\n",
       "  566.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC6zsSO4MWusVRVvGVt6oraw',\n",
       "  nan,\n",
       "  '@_mr.rocknroll',\n",
       "  nan,\n",
       "  '@_mr.rocknroll',\n",
       "  \"This channel is all about music and discovering new artists of all walks! Welcome to my Crazy Train! Won't you stay for a while???\\n\\nClick below to subscribe!\\nhttp://www.youtube.com/c/MrRockNRollLive\\nPlease consider supporting my team's gaming channel below!\\nhttp://www.youtube.com/c/GoldTeamGaming\\n\\nFollow my rock n roll life below!!\\n* FOLLOW MY SNAPCHAT: thebighombre\\n● ROCK WITH ME ON TWITTER: https://twitter.com/_MrRockNRoll\\n● ROCK WITH ME ON INSTAGRAM??: https://www.instagram.com/_mr.rocknroll/\\n● SUPPORT ME??: https://www.patreon.com/mrrocknroll\",\n",
       "  36300,\n",
       "  7514390,\n",
       "  359,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=9hJezrmUC6U',\n",
       "  'MY BRAIN HOLES!!! | Nightwish - Noise (Official Music Video) | REACTION',\n",
       "  '#Nightwish #Noise #FloorJansen\\n\\nOh how the Nightwish Train CHUGS!!!!!!\\n\\nLink to original video below!\\nhttps://www.youtube.com/watch?v=LczGSoibRe8\\n\\nClick below to subscribe!\\nhttp://www.youtube.com/c/MrRockNRollLive\\nPlease consider supporting my team\\'s gaming channel below!\\nhttp://www.youtube.com/c/GoldTeamGaming\\n\\nFollow my rock n roll life below!!\\n* FOLLOW MY SNAPCHAT: thebighombre\\n● ROCK WITH ME ON TWITTER: https://twitter.com/_MrRockNRoll\\n● ROCK WITH ME ON INSTAGRAM??: https://www.instagram.com/_mr.rocknroll/\\n● SUPPORT ME??: https://www.patreon.com/mrrocknroll\\n\\nComment more vid ideas below and KEEP ON ROCKIN\\' MY PEOPLE!\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-02-08T02:54:13.000Z',\n",
       "  55733,\n",
       "  2373.0,\n",
       "  432.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCQ1kJRiiaA_ezpDuVth0PwQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'bggbusinessinq@gmail.com',\n",
       "  nan,\n",
       "  'Welcome to my channel where I post reactions, vlogs, and honestly, whatever I feel like posting! I post a lot about Taylor Swift too ;)\\n\\nBe sure to subscribe!!',\n",
       "  36300,\n",
       "  3850822,\n",
       "  173,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=2IsJBItnYQ4',\n",
       "  'BTS - Spring Day | Reaction (lyrics, music video + explained)',\n",
       "  \"This is my reaction to BTS's Spring Day including the lyrics, music video and explained!\\nSubscribe!\\n\\nMY SECOND CHANNEL: https://www.youtube.com/channel/UCSmfmg6Vhr2CJzQ6HvhqUxg\\n\\n||| SOCIALS |||\\nTwitter: \\n@thecaitlinmarie\\nInstagram:\\n@the.caitlin.marie\\n\\nBUSINESS INQUIRIES: bggbusinessinq@gmail.com\\n\\nMy Spotify: https://open.spotify.com/user/1268464750?si=ga9K9-PDSFm8EaIlKR4jyg\\n\\n#BTS #SpringDay\",\n",
       "  '2020-03-24T14:00:00.000Z',\n",
       "  40452,\n",
       "  4011.0,\n",
       "  441.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCsEyRJbJl6lhRFCaAY_ehKA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Jaby's commentary on American cinema and video games.\",\n",
       "  34300,\n",
       "  6524223,\n",
       "  49,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=T0Uy6qy_--c',\n",
       "  'BTS | Boy With Luv Ft.  Halsey | Music Video Reaction | Jaby Koay',\n",
       "  \"Hey guys! I know it's been ages since we last posted here. Sorry about that. This one's an oldie but still find it super uplifting and positive for this time. Sending you all lots of love! \\n___________________________________________________\\n\\nOriginal Link:\\r\\n\\rhttps://www.youtube.com/watch?v=XsX3ATc3FbA\\n\\r\\n___________________________________________________\\r\\n\\r\\nSOCIAL MEDIA:\\r\\n~DONNA LEE~\\nInstagram: @Dann2.L\\n\\n~ACHARA KIRK~\\r\\nTwitter & Instagram: @AcharaKirk\\r\\nhttp://youtube.com/Achara\\r\\n\\r\\n~JABY KOAY~\\r\\nYouTube, Twitter, Instagram: @jabykoay\\r\\nFacebook: http://www.facebook.com/followjaby\\r\\n\\r\\n___________________________________________________\\r\\n\\r\\nJaby WEST:\\r\\nhttps://youtube.com/GETJaby\\r\\n\\r\\nJaby INDIA:\\r\\nhttps://youtube.com/JabYKoay\\r\\n\\r\\nJABY KOAY'S SHORT FILMS PLAYLIST:\\r\\nhttps://www.youtube.com/playlist?list=PL34B19BA788E18384\\r\\n\\r\\nClick here to subscribe and know when the next video drops:\\r\\nhttp://www.youtube.com/subscription_center?add_user=jabykoay\\r\\n\\r\\nThanks for watching!!!\\r\\n\\r\\n__________________________________________________\\r\\n\\r\\n#BTS #BTSArmy #Halsey\",\n",
       "  '2020-03-25T02:30:05.000Z',\n",
       "  48046,\n",
       "  2346.0,\n",
       "  432.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCoFjfJdQkpF23pTLahzog-A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Subscribe My Channel MAHA REACTION For Watching Latest Reaction Videos🎥🎬',\n",
       "  34000,\n",
       "  426331,\n",
       "  391,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=UkfjUMPECxE',\n",
       "  'Pogaru - Karabuu | 4K Video Song | REACTION & REVIEW | Dhruva Sarja | Rashmika Mandanna | Maha React',\n",
       "  'Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the \\nbalance in favour of fair us.\\n\\n\\nOriginal Video Link: https://youtu.be/Ysf4QRrcLGM\\n\\n#MahaReaction #AnandAudio #KarabuuSongReaction karbuu, karbuu pogaru song, karbi song, karabu song kannada, karabu songs, karabuyu movie, karabu kannada movie, karbi new song, karabu kannada',\n",
       "  '2020-04-02T13:10:19.000Z',\n",
       "  3492,\n",
       "  234.0,\n",
       "  18.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCWJkKit5f4w43szZWlcUVYQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  'dillonjackson546@gmail.com',\n",
       "  nan,\n",
       "  'It’s DillonJacksonTv. I talk about music and yell a lot . Subscribe before I get mad',\n",
       "  32900,\n",
       "  4530247,\n",
       "  764,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=bqNqHQV8cC0',\n",
       "  'EMINEM - \"MUSIC TO BE MURDERED BY\" FIRST REACTION/REVIEW!!!',\n",
       "  'in todays video, I give my reaction to Eminem\\'s new album, \"MUSIC TO BE MURDERED BY\" What are your thoughts?\\n\\nALBUM RANKING: Trash/10\\n\\nThis is just my opinion.\\n\\nBUY SOME DJTV MERCH BEFORE I GET MAD: https://teespring.com/djtv-merch?qqs98#pid=212&cid=5819&sid=front\\n\\nFollow Me On Social Media Before I Get Mad:\\n\\nTwitter: DillonJacksonTv\\n\\nInstagram: dillonjacksontv\\n\\nTwitch : https://www.twitch.tv/djtvgames\\n\\nSnapchat: mrjackson234\\n\\nBusiness Email: dillonjackson546@gmail.com\\n\\nMAKE SURE TO SUBSCRIBE!!: https://www.youtube.com/channel/UCWJkKit5f4w43szZWlcUVYQ?view_as=subscriber',\n",
       "  '2020-01-17T19:15:01.000Z',\n",
       "  35407,\n",
       "  589.0,\n",
       "  2086.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCP9ekdlFTe0TDMFRPavu7_w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@_heyymari_',\n",
       "  \"✰W E L C O M E  T O  M Y  C H A N N E L✰\\n\\n►Here you'll find:\\n►Reactions \\n►Dance covers\\n►Unboxings \\n    and moooore.\\n\\nHope you enjoy!! \\n♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡♡\",\n",
       "  32400,\n",
       "  5176497,\n",
       "  144,\n",
       "  'EC',\n",
       "  'https://www.youtube.com/watch?v=o4cAo43SA5s',\n",
       "  \"BTS (방탄소년단) 'ON' Kinetic Manifesto Film : Come Prima l REACTION VIDEO (GONE WRONG!!)\",\n",
       "  \"I'm sh SHOOOOOOOOOOOOOOOOOOOOK\\nWATCH TILL THE END!!\\n\\nIt's been a while since I had my bestfriend in my channel, and I'm sooo happy she's back! Hope you enjoyed this video c: don't forget to share it.\\n\\n:D Support my Patreon!: https://www.patreon.com/Marig1\\n\\nM Y   S O C I A L   M E D I A! \\n\\n📷 Instagram: https://www.instagram.com/_heyymari_/\\n\\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \\xad- - - - - - - - -\\n\\n°Thanks for watching, don't forget to suscribe, like and leave a comment!! \\n\\n°Thank youuu 💕\\n\\n\\n° No copyright infringement intended\",\n",
       "  '2020-02-21T19:46:27.000Z',\n",
       "  139081,\n",
       "  3643.0,\n",
       "  328.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCIPSesVSMazXzqv9UXO4ERA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@rice_stop',\n",
       "  'Welcome to RICE STOP and the RICEFAMILY we do reactions, challenges and more! Make sure to SUBSCRIBE and turn on NOTIFICATIONS and join the journey.',\n",
       "  29900,\n",
       "  2727292,\n",
       "  57,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=POZYtfB0oF0',\n",
       "  'CANADIAN FIRST REACTION TO MORISSETTE AMON SECRET LOVE SONG !!',\n",
       "  'CANADIAN FIRST REACTION TO MORISSETTE AMON SECRET LOVE SONG !! \\n\\n\\nHi, guys, this is our reaction to #MORISSETTEAMON #MORISSETTEREACTION #MORISSETTEAMONREACTION\\n\\nOriginal video: https://www.youtube.com/watch?v=y3BeB...\\n\\nFollow us on instagram:  \\n@rice_stop https://www.instagram.com/rice_stop/\\n@ktmketa_ https://www.instagram.com/ktmketa_/ *Chandan\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-02-15T01:49:22.000Z',\n",
       "  109232,\n",
       "  4278.0,\n",
       "  519.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCyCOQKwtlotlZpfsbM-IQMw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Rap & Grime, IAMCHAZZA',\n",
       "  29200,\n",
       "  5324868,\n",
       "  650,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=rbhSWAuGu8E',\n",
       "  'BROTHERS - Run A Muck (Official Music Video) UK Reaction & Thoughts',\n",
       "  'Original Video: https://www.youtube.com/watch?v=_uO8scQE2es\\n\\nNew Single Pennies OUT NOW!!\\nYouTube: https://www.youtube.com/watch?v=ZVoqgYtXc7o\\nSpotify: https://distrokid.com/hyperfollow/chazza/pennies-2\\n\\nInstagram: https://www.instagram.com/chazza_mcqueen\\nSpotify: https://open.spotify.com/artist/773dolD1X3Ahz49sz7RVaa\\n\\n-------------------------------------------------------------------------------------------------------------\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-03-10T22:26:16.000Z',\n",
       "  49389,\n",
       "  1405.0,\n",
       "  294.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCvJLpN1sadXxyCer2SwpUNw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@novjae',\n",
       "  'i talk about whatever i feel like lol join the litty gang and subscribe',\n",
       "  27900,\n",
       "  7062825,\n",
       "  774,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=RLTMztpToi8',\n",
       "  'Doja Cat - Say So (Official Video) REACTION',\n",
       "  'check out Doja Cat - Say So (Official Video) REACTION\\n#DojaCat #SaySo \\nCheck Out My Second Channel For More Reaction Videos : https://www.youtube.com/channel/UCL3y2cfNQU67fb7Oo0twaeA\\n\\nGet 15% Off With Coupon Code LITTYGANG Check The New Merch Here: https://teespring.com/stores/litty-factz\\n\\nFollow Me On Instagram: https://www.instagram.com/novjae/\\n\\nFollow Me on Twitter: https://twitter.com/NovJae\\n\\nALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS\\nIf you want to see more Reaction videos like\\nlet me know \\nLike, comment And Subscribe\\nKeep In Touch With Me At\\nInstagram:@NovJae @Littyfactz\\nTwitter:@NovJae @LittyFactz\\nBig Ups To Dre_OG Dee Shanell',\n",
       "  '2020-02-28T23:00:24.000Z',\n",
       "  59759,\n",
       "  2030.0,\n",
       "  150.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCChdqzdYawI43gnJNnucHfQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to the world of K1d Z1m. Here we do Gaming videos, Nerd Rants &  reactions mainly funny skits, gaming videos, dancing videos, Movie Trailers, and other pop culture things.',\n",
       "  27000,\n",
       "  3777900,\n",
       "  279,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=AtPnpqp-hik',\n",
       "  'DANCER REACTS TO Jackson Wang - 100 Ways (Official Music Video) REACTION',\n",
       "  'Keep up with me on all social media @K1dZ1m\\nJoin the Alien Mob HQ Discord: https://discord.gg/beVWCG',\n",
       "  '2020-03-26T17:30:00.000Z',\n",
       "  37830,\n",
       "  3034.0,\n",
       "  184.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCTaIT0dstKKbfIeVoK2Fp_Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Vybz Entertainment Tv. \\n Give you the Lastest in Reggae And Dancehall Music & Also Keep you update With the Lastest going on in Jamaica.\\n\\nThanks for watching all my video i appreciate it. Please don't forget to Like,Share,comment,Subscribe  and click the notification bell for updates\\nFOR BUSINESS ENQUIRER/CONTENT REMOVAL\\n》Call R whatsapp (18768133762 )\",\n",
       "  26800,\n",
       "  2876481,\n",
       "  514,\n",
       "  'JM',\n",
       "  'https://www.youtube.com/watch?v=pUnhfwWUSag',\n",
       "  'Alkaline DlSS Vybz Kartel And TeeJay lN New Song (Alkaline - Nah Fi Like Honest Review)',\n",
       "  '#Alkaline ##VybzKartel #TeeJay\\n\\nIF YOU LOVE MY CONTENT, FEEL FREE TO CONTRIBUTE https://www.paypal.me/vybzentertainmenttv\\n\\nVybz Vlog And Comedy \\nhttps://youtu.be/lo-IJac8bs4\\n\\nFollow Me & Facebook 👇\\nhttps://www.facebook.com/Vybz-Entertainment-Tv-104584121145600/\\n\\nFollow me & Instagram https://instagram.com/vybzentertainmentt?igshid=19lkn3mao5ynd\\n\\nFOR BUSINESS ENQUIRER/CONTENT REMOVAL\\n》Call R whatsapp (18768133762 )',\n",
       "  '2020-04-20T18:14:59.000Z',\n",
       "  2485,\n",
       "  137.0,\n",
       "  86.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCNdKCy6DTlVRtAiXbcpPg9g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Laugh, Relax, Dance, Think and Enjoy :) :) \\n\\nLink of my REACTIONS Channel : www.youtube.com/c/mrearphones\\n\\nSUBSCRIBE, Stay tuned & Support.. Take care.. Peace !!',\n",
       "  25700,\n",
       "  3599545,\n",
       "  426,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=aSOkEXCPfdw',\n",
       "  'M.O.U | MAADEVA Reaction | Mr Earphones BC_BotM | Song | Popcorn Monkey Tiger',\n",
       "  \"BIKE RIDE Song \\n\\nLyrical Video : https://youtu.be/ITFtrN9KPGI\\n\\nApple Music : https://music.apple.com/in/album/bike-ride-single/1497194486\\n\\nGoogle Play : http://bit.ly/392A3rD\\n\\niTunes : https://apple.co/2UmChOa\\n\\nSpotify : https://spoti.fi/37Rs408\\n\\nMaadeva Song Reaction : https://youtu.be/aSOkEXCPfdw\\n\\nPopcorn Monkey Tiger Teaser Reaction : https://youtu.be/DR1Ij43N8PA\\n\\nRobert Motion Poster 1 Reaction : https://youtu.be/n-j_DefA8bk\\n\\nASN Trailer Reaction : https://youtu.be/ksFOWyPFZoU\\n\\nPogaru Trailer Reaction : https://youtu.be/3iHjQZ3MHGc\\n\\nPogaru Teaser Reaction : https://youtu.be/Y2qFeskLZbg\\n\\nLit Song Reaction : https://youtu.be/w_uF8azARys\\n\\nRocky Bhai Song Reaction : https://youtu.be/kPuH-38n7NQ\\n\\nGuess Who's back Reaction : https://youtu.be/FexYbOZcaQU\\n\\nGirmit Teaser Reaction : https://youtu.be/PNJaH-dQB-8\\n\\nGirmit Dubbing Trailer Reaction : https://youtu.be/H3jAaPFiafc\\n\\nVaruvaaya ( ABDUL KALAM Song ) : https://www.youtube.com/watch?v=6tZTA9SSlmQ\\n\\nMiNDVOiCE Episode 5 : https://www.youtube.com/watch?v=mcsOrxiRgvo&t=66s\\n\\nBharjari Soundu Reaction : https://youtu.be/CykAnYKSsWo\\n\\nK.G.F PLAYLIST : https://www.youtube.com/playlist?list=PLrgiAY7K23pKYTpeUaQoNApZ8DTE3-RTZ\\n\\nM.O.U stands for My Opinion & Understanding. Its a series of videos where I speak from my heart about any topic I choose for that particular video without hurting anyone's feelings.\\n\\n#MOU #PopcornMonkeyTiger #Maadeva\",\n",
       "  '2020-01-20T10:30:00.000Z',\n",
       "  69784,\n",
       "  2669.0,\n",
       "  158.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCvAR-HVbkwSn4BaCbkum6Hg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Everything Entertainment -  Movie reactions, Travel Vlogs',\n",
       "  24800,\n",
       "  3561635,\n",
       "  147,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=2Nk-jHByt7o',\n",
       "  'TIBEYAN DA PUTT Song Reaction | Sidhu Moose Wala | Latest Punjabi Song 2020',\n",
       "  'Sidhu kills it with this heart touching number \"Tibeyan da putt\". Let us know how did you like it\\n\\nFollow us on Social Media\\n- Instagram @roameotrendz \\n\\n- Youtube travel channel (Roameotrendz) https://www.youtube.com/channel/UCaFICl-cOGL8CDJ4Rhr6UVw',\n",
       "  '2020-03-17T08:07:16.000Z',\n",
       "  135920,\n",
       "  8957.0,\n",
       "  794.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCzhjaI19MoL6GosmaQZKQCA',\n",
       "  'rapstaruniverse@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hello!! Hip Hop Listeners Toh Kya Haal Hai Yaar. \\n\\nWelcome To Rapstar Universe\\n\\n- DESI Hip Hop News (Daily)\\n- Latest Rap Songs Updates\\n- Rappers Controversies \\n               THAT'S IT🤙\\n\\nDESI HIP HOP.\\n\\n| LIKE | SHARE | COMMENT |\\nDon't Forget To SUBSCRIBE Our Channel.\\n\\nFor Business inquiries : rapstaruniverse@gmail.com\",\n",
       "  23500,\n",
       "  3709742,\n",
       "  264,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=AVbR1qUZOpw',\n",
       "  \"CHEN K REPLY TO KR$NA IN HIS NEW SONG | EMIWAY 'FIRSE MACHAYENGE' REVIEW\",\n",
       "  \"DESI HIP HOP NEWS #201\\n\\nMy Instagram ID - @vizzanofficial\\n\\n'Don't spam in comment box ,send your song links on my instagram Handle' \\n\\n►SONGS LINK\\n\\nDrame Na De (Girish Nakod Ft.Muhfaad) - https://youtu.be/Fa4XlUXZbDM\\n\\nI Choose You (Shetty Saa Ft.Deepak Poojary) - https://youtu.be/48ZSehf6RXQ\\n\\nRCR Interview (Raaj Jones) - https://youtu.be/0KfcwqyaI44\\n\\nFirse Machayenge (Emiway) - https://youtu.be/zaCbuB3w0kg\\n\\nAjnabi (Chen K) - https://youtu.be/oqVyGmA9scg\\n\\nBindis And Bangles (Raja Kumari) - https://youtu.be/LzRpisE3wuI\\n\\n►DISCLAIMER\\nI respect all Rappers and their content.In case you feel your rights are violated, kindly email me and I will be quite eager to take down my video.\\n\\n#rapstaruniverse #hiphopnews #firsemachayenge #chenkvskrsna #karma #locahoneysingh #emiwaybantai\\n\\nLIKE | COMMENT | SHARE | SUBSCRIBE\\n\\nBackground Music - https://youtu.be/1sSASll2E5M\\nhttps://youtu.be/A8ri9nw6LA4\\n\\nThe Channel And Don't Forget To Press Bell Icon For Latest Updates Of My New Videos.\\n\\nTHANKS FOR WATCHING\",\n",
       "  '2020-02-15T13:33:10.000Z',\n",
       "  20283,\n",
       "  977.0,\n",
       "  101.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCgV_i-XHrdvcOOeb613cXcw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"It's your boy Fabian and welcome to my channel where you will see me predominantly react to the latest music from around the world. Countries include Albania, Serbia, Croatia, Slovenia, Bosnia, Morocco, India and many more!! \\n\\nSince thousands of people have seen that i am a fun, charming, bubbly, authentic and a brutally honest character, i will also be making the the odd video on my gym routines, Social media experiments such as Tinder dating and also what i get up to on holidays. \\n\\nThis channel is for all ages and backgrounds as my aim is to put a smile on the viewers faces with my antics and make them all join in with the fun! \\n\\nThere's only so much i can say on a description box so i suggest you join in the fun and watch my videos (i upload daily) in order to get a better understanding of me and my character!!\\n\\nWe have grown in such a short space of time (such as appearing in worldwide media) so subscribe in order to grow this channel even more! \\n\\nInstagram - Fab55ss\",\n",
       "  23000,\n",
       "  4976812,\n",
       "  295,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=FddnbTXlBb8',\n",
       "  'Noizy - Rapstar (Albanian Music Reaction) Ft Selena Marianova',\n",
       "  \"Welcome to my new Albanian music reaction! Today we checked out Noizy's new song 'Rapstar'. Hope you guys enjoyed mine and Selena's reaction.\\n\\nOriginal video - https://www.youtube.com/watch?v=HD0-tyh2BfE\\n\\nBALKAN REACTION ON SELENA'S CHANNEL - https://www.youtube.com/watch?v=iC4g8v8eOWg&t=738s\\n\\nSelena's channel - https://www.youtube.com/channel/UCmPxR_pAVeuwOj285TXbGuQ\\n\\nLike, share, comment and subscribe!!\\n\\nMy Instagram - Fab55ss\\nSnapchat - FabianJYT\\nSelena's Insta - Selenamarianova\",\n",
       "  '2020-01-19T14:50:00.000Z',\n",
       "  56389,\n",
       "  1091.0,\n",
       "  128.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCd9D__vBLcv7gOJrezwbqRw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@janasunar_',\n",
       "  nan,\n",
       "  22800,\n",
       "  1625918,\n",
       "  49,\n",
       "  'AU',\n",
       "  'https://www.youtube.com/watch?v=obWjvp9kp9Q',\n",
       "  'VTEN - Yatra \"SUPERSTAR 2020\" | Reaction video',\n",
       "  'Hey guys!! Thank you for tuning in!! This Yatra song was upto 6:22 but since the last few minutes were of some footages from behind the scene, we decided not to include it in our reaction video. Hope you enjoy it. Thank you all for showing love and support!!\\n\\nCheck out the official music video on:\\nhttps://www.youtube.com/watch?v=7RN8gYxHW54\\n\\nWatch \\'Sarin Tamang\\'s\\' latest song called \"TABAH\"\\nhttps://youtu.be/sFRuDi22TO0\\n\\nFind us on:\\nJharna sunar - https://www.instagram.com/janasunar_/\\nAnjana Rai - https://www.instagram.com/anjanaiar/\\nChoki Tamang - https://www.instagram.com/chokidolma_/\\nZimmy Tamang - https://www.instagram.com/wangmotmg_/',\n",
       "  '2020-03-28T15:39:31.000Z',\n",
       "  177474,\n",
       "  8380.0,\n",
       "  518.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCrGrzrY5du5eG9AAu8vzXYg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"We are just 2 sisters with a love for reaction videos and we also love to do vlogs check out our vlog channel 'Jenny & Liseli' ! \\n\\nSubscribe to our channel, follow our journey and see what’s in store for you \\U0001f90d❤️ WE LOVE YOU LJ SQUAD!!\\n\\nMuch love, \\nJ&L xxo\",\n",
       "  22600,\n",
       "  4585105,\n",
       "  118,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=JoQCrNtPRSs',\n",
       "  'GF BF SONG (REACTION) | Sooraj Pancholi, Jacqueline Fernandez',\n",
       "  'HEY guys this is our reaction to the song GF BF official video starring Sooraj Pancholi & Jacqueline Fernandez ft. Gurinder Seagal. Hope you enjoyed this.\\n\\n♡ SUBSCRIBE AND HELP THE FAMILY GROW ♡\\nInstagram: JenxLise\\n\\nMuch Love,\\nJ&L xxo\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*\\n\\n#GFBFSong #JaquelineFernandez #SoorajPancholi #GurinderSeagal',\n",
       "  '2020-03-11T15:28:00.000Z',\n",
       "  94075,\n",
       "  3186.0,\n",
       "  153.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCHKoUFkbdX2LnWXGcbkC3jA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'amv.mar913@gmail.com',\n",
       "  '@amv.mar913',\n",
       "  'Hey everyone, We are Drew Nation. Come have fun with us. We are a silly family of 4. We enjoy having fun with family mom (Delicia), dad (Kim) and brothers (Michael) and (Drew). Drew LOVES reading. Mike LOVES sports. We do pranks, challenges, vlogs, product reviews, cooking and much, much more. WE LOVE MAKING FRIENDS ALL OVER THE WORLD. WE LOVE COMMUNICATING WITH YOU VIA COMMENTS. IF YOU HAVE A YouTube CHANNEL WE WILL JOIN YOUR FAMILY TOO. Come join the drewNation crew. We want you to join our FUN! \\n\\n\\nWe post new videos every Monday, and Thursdays. We post extra every now and then on weekends. Please look out for our new vids on these days!\\n===============================================\\n\\nFOLLOW US: SOCIAL MEDIA\\n➡️On Instagram: drew_nation5\\n➡️facebook: Drews Clues-Drew Nation\\n➡️On twitter: DrewNation5\\n===============================================\\n\\nWOULD YOU LIKE TO SEND MAIL:\\ndrewNation (dN)\\nPO Box 11275\\nHuntsville , AL 35814-1275',\n",
       "  21900,\n",
       "  2023639,\n",
       "  166,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=nZZOAAHX49Y',\n",
       "  'Angelina Jordan- REACTION VIDEO!! | Angelina Jordan - I Put A Spell On You! | Drew Nation',\n",
       "  'ANGELINA JORDON IS AMAZING! WOW, I am so super impressed with this talented young lady. She was only 9-in this video. I have never seen power like this! A superstar of her generation...with a BIG heart of gold! An Angelina Jordan 2019 \"I put a spell on you\" reaction!\\n(A Drew Nation Production)\\n\\nSubscribe to join the #dNATIONFAM 🔔 Make sure to enable ALL push notifications! 🔔 \\n\\nThank you, friend\\nPlease subscribe\\n\\n\\nSUBTITLES AVAILABLE IN 9-LANGUAGES\\n=================================\\nIF ANY CONTENT VIOLATES YOUR COPYRIGHT, PLEASE CONTACT (amv.mar913@gmail.com)  AND IT WILL BE DELETED IMMEDIATELY. THERE IS NEVER A NEED TO STRIKE A VIDEO DOWN. CONTENT USED ARE UNDER “FAIR USE” LAW, ALL RIGHTS RESERVED TO THEIR RESPECTIVE OWNERS.\\n*********************************************************************************************\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*\\n*********************************************************************************************\\n\\n\\nANGELINA JORDAN REACTIONS\\nAngelina Jordan- I put a spell on you- https://youtu.be/jRSuBI8RMcI\\n\\n\\n\\n\\n\\nSUBSCRIBE\\n==========\\nhttps://www.youtube.com/channel/UCHKo...\\n\\n\\n\\n=======================================\\nFOLLOW US ON ALL OF OUR SOCIAL MEDIAS \\nWE WILL FOLLOW AND SUPPORT YOU TOO\\n========================================\\n\\n\\nWE LOVE INTERACTING WITH YOU! \\nFOLLOW US=https://www.instagram.com/amv.mar913/\\nFOLLOW US=https://twitter.com/DrewNation5\\nFOLLOW US=https://www.facebook.com/drewnation91...\\n\\n\\n\\n====================================================\\nA company interested in working with us? Want us to review your product?  Email us at \\namv.mar913@gmail.com\\n====================================================\\n\\n\\n\\n======================================\\nIF YOU WOULD LIKE TO SEND US SOMETHING:\\nP.O. Box 11275\\nHuntsville, AL 35814\\n======================================\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n#DrewNation\\n#AngelinaJordan\\n#PutASpellOnYou\\n#AngelinaJordanreaction\\nangelina jordan reaction\\nBohemian Rhapsody \\nangelina jordan america\\'s got talent\\nangelina jordan i put a spell on you reaction\\ndrews\\n2020\\nNorway\\n安吉麗娜·約旦美國有才華\\n波西米亞狂想曲\\n美國達人秀\\nMay talento si angelina jordan America\\nle talent de angelina jordan America\\nRhapsodie bohémienne\\nL\\'Amérique a du talent\\nАнгелина Джордан Американың таланты бар\\nбогемалық рапсодия\\nАмериканың таланты\\n안젤리나 요르단 미국 재능있어\\n보헤미안 랩소디\\n미국의 재능\\nAmerika har talent\\nАнджелина Джордан Америка получила талант\\nБогемская рапсодия\\nУ Америки есть талант\\nangelina jordan america tiene talent\\nRapsodia Bohemia\\nAmérica tiene talento\\nspell on you\\n\\n\\n\\nSUBTITLES AVAILABLE IN Chinese/Russina/French/Korean/Kazakh/Spanish/Filipino/Norwegian and English\\n*********************************************************************************************\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*\\n**************************************************************************************',\n",
       "  '2020-02-01T05:00:08.000Z',\n",
       "  49312,\n",
       "  1450.0,\n",
       "  184.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCZlzvvje6JQNBe70EQpamIw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hey! 👋🏼☺️ Let’s react and enjoy a variety of songs and trailers - sit back, relax and react! ☕️. Khushbu has grown up loving Bollywood songs and movies, but we take it a step further and go outside Bollywood too (she is also a Bollywood dancer!). 💕',\n",
       "  21800,\n",
       "  3362519,\n",
       "  86,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=JhWYSOqeR2M',\n",
       "  '#AlaVaikunthapurramuloo - ButtaBomma Video Song || Allu Arjun || Trivikram | Thaman | REACTION',\n",
       "  'This is our reaction to #AlaVaikunthapurramuloo - ButtaBomma \\n\\n#AlaVaikunthapurramuloo #ButtaBomma #ButtaBommaReaction #ReactionButaBomma #ReactionAlaVaikunthapurramuloo #AlluArjun #Trivikram #Thaman #PoojaHegde \\n\\n\\n******************************************************************************\\nLink to original video: https://www.youtube.com/watch?v=zXWJLEE7LeI\\n\\nDisclaimer: No Copyright intended. All rights belong to the rightful owner. The video is solely for the purposes of this reaction and review.\\n\\n\\nInstagram:\\n@BollywoodBritsReact\\n@Khhushbu_\\n@Ashreactshd',\n",
       "  '2020-03-09T15:00:04.000Z',\n",
       "  105060,\n",
       "  3438.0,\n",
       "  153.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC_sF7sZUl9o2CTtCWrHFa3g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@theofficialzuhair',\n",
       "  \"Making content hoping I can make at least one person smile a day! \\n\\nANWHOOO I will see you guys tomorrow the day after and the day after that! Were we upload every single day, haven't missed a day yet. SOOOOOOWOOOOP\",\n",
       "  21600,\n",
       "  3341022,\n",
       "  735,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=wLM6n4p1ncY',\n",
       "  '5 Seconds of Summer - Wildflower REACTION !!! (Lyric Video)',\n",
       "  '5 Seconds of Summer are literally out this world because this is a whole BOP!! I cant wait to see a video or a new release! If you enjoyed please leave a like, comment, and SUBSCRIBE!!!\\n\\nInstagram- https://www.instagram.com/theofficialzuhair/\\nTwitter- https://twitter.com/zoovlog123\\nSnapchat- Z_ironman\\nTik Tok- ZooGoat\\n#ZooReacts123 #Reaction #5SOS\\n\\nOriginal Link: https://www.youtube.com/watch?v=07RHI4MDQ-U&list=WL&index=13&t=0s',\n",
       "  '2020-03-29T18:23:14.000Z',\n",
       "  997,\n",
       "  105.0,\n",
       "  19.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCPAz3hWHiBC-c1x4K0-atsg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@wlsk15',\n",
       "  nan,\n",
       "  21600,\n",
       "  5521537,\n",
       "  506,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=QidMElvSPdo',\n",
       "  \"Latinos react to BLACKPINK'S LILI's FILM #3 - LISA Dance Performance Video REACTION |FEATURE FRIDAY✌\",\n",
       "  \"Sup people!\\nHere's what we think about BLACKPINK's LISA on her new performance video! The HOTTNESS in this video is REAL!🔥👏\\n\\n\\n If you haven't seen this Week's episode of FEATURE FRIDAY just click the link below!!!\\n\\nhttps://www.youtube.com/watch?v=ekFEoPfq2WY\\n\\n\\n Wlsk xoxo & Efra :) \\nhttps://www.instagram.com/wlsk15/\\nhttps://www.instagram.com/realefraherrera/\\n\\n\\n#LISA #LILIFILM3 #BLACKPINK\",\n",
       "  '2020-04-21T19:12:07.000Z',\n",
       "  110618,\n",
       "  5696.0,\n",
       "  210.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC-WkUcAkOH9dcQhjdg0_Wig',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  21600,\n",
       "  1660672,\n",
       "  76,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=XZKVOSb4AQI',\n",
       "  'SIDHU MOOSE WALA FEATURED US! | Reaction to \"Tibeyan Da Putt\" | PUNJABI SONGS 2020',\n",
       "  'This is crazy! No words\\n\\nSidhu Moose Wala never disappoints especially in this one!\\n\\nIf you enjoyed this video, leave a thumbs up and Subscribe to our channel for more content\\n\\nOriginal Music Video: https://www.youtube.com/watch?v=twCHVhk8iMU\\n\\nFollow us on Instagram:\\n@geetnation\\n\\nBIG SHOUTOUT to Gold Media & Sidhu Moose Wala',\n",
       "  '2020-03-18T01:42:27.000Z',\n",
       "  446061,\n",
       "  28973.0,\n",
       "  1034.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCAuqWIgwBnySAiGSV4Xf1hw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  21500,\n",
       "  1785119,\n",
       "  26,\n",
       "  'JP',\n",
       "  'https://www.youtube.com/watch?v=eP66UCXXF34',\n",
       "  'Japanese girls (Tamakake) watch and react on Nagada Nagada Full Video Song HD | Jab We Met |',\n",
       "  \"How are you guys holding up on these days?!\\nWe haven't meet since March...\\nBut we hope our video makes you relax and good your home time!\\nDon't forget to subscribe!\\n\\nLOT's OF LOVE! by Tamakake\",\n",
       "  '2020-04-18T13:12:44.000Z',\n",
       "  56880,\n",
       "  2490.0,\n",
       "  435.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCpYs9L4BfpV_-2Bfwpe5lNQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@mrmunis',\n",
       "  'Pasakoju istorijas, kuriu filmus, skečus, podkastus, vlogus.',\n",
       "  21400,\n",
       "  2431841,\n",
       "  129,\n",
       "  'LT',\n",
       "  'https://www.youtube.com/watch?v=MGi5UA2119c',\n",
       "  'Eurovision 2020 Reaction Video | Lithuania | The Roop - On Fire',\n",
       "  'This is my first reaction to The Roop - On Fire song. Let me know how I was doing and what to do next. For your information, it is parody of format of reaction videos not the song itself. I honestly like this song. Best wishes to Lithuanian.\\n\\n\\nYou can follow me on social media for more very good content if you want:\\n\\n✅ https://www.instagram.com/mrmunis/\\n✅ https://www.facebook.com/mrmunis\\n\\nYou can support my feature film:\\n✅https://www.patreon.com/munis\\n\\n\\n\\xa0#Eurovision2020 #reaction #Lithuania #theroop',\n",
       "  '2020-02-27T18:03:40.000Z',\n",
       "  134384,\n",
       "  7115.0,\n",
       "  602.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCWyPfWj0XpchLD5m77Cerpw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '𝙃𝙚𝙮 𝙂𝙪𝙮𝙨.. 𝙒𝙚𝙡𝙘𝙤𝙢𝙚 𝙩𝙤 𝙤𝙪𝙧 𝙘𝙝𝙖𝙣𝙣𝙚𝙡.... \"𝘼𝙫𝙖𝙡𝙪𝙢 𝙉𝙖𝙖𝙣𝙪𝙢\"\\n\\n🅰🆅🅰🅻🆄🅼 🅽🅰🅰🅽🆄🅼 🅸🆂 🆃🅷🅴 🅲🅷🅰🅽🅽🅴🅻 🆃🅷🅰🆃 🅿🅾🆁🆃🆁🅰🆈🆂 🅰🅽🅳 🅳🅾🅲🆄🅼🅴🅽🆃 🅾🆄🆁 🅳🅰🅸🅻🆈 🅻🅸🅵🅴, 🅾🆄🆁 🆅🅸🅴🆆🆂 🅾🅽 🅲🅾🅾🅺🅸🅽🅶 ,🅵🅾🅾🅳 🅰🅽🅳 🆃🆁🅰🆅🅴🅻 🆅🅻🅾🅶🆂, 🆁🅴🆂🆃🅰🆄🆁🅰🅽🆃🆂, 🅳🅴🆂🆃🅸🅽🅰🆃🅸🅾🅽🆂, 🅳🅸🆂🅲🆄🆂🆂🅸🅾🅽 🅾🅽 🅼🅾🆅🅸🅴🆂 🅰🅽🅳 🆁🅴🅰🅲🆃🅸🅾🅽🆂 🆃🅾 🆃🅴🅰🆂🅴🆁🆂 & 🆃🆁🅰🅸🅻🅴🆁🆂, 🆂🅾🅽🅶🆂, 🆂🅲🅴🅽🅴🆂,🅴🆃🅲\\n\\n\\n𝕎𝕖 𝕒𝕣𝕖 𝕘𝕠𝕚𝕟𝕘 𝕥𝕠 𝕖𝕩𝕡𝕝𝕠𝕣𝕖 𝕞𝕒𝕟𝕪 𝕥𝕙𝕚𝕟𝕘𝕤 𝕒𝕟𝕕 𝕤𝕙𝕒𝕣𝕖 𝕚𝕥 𝕨𝕚𝕥𝕙 𝕪𝕠𝕦 𝕥𝕙𝕖𝕟 𝕒𝕟𝕕 𝕥𝕙𝕖𝕣𝕖 !!!\\n\\n░T░h░a░n░k░ ░y░o░u░ ░f░o░r░ ░v░i░s░i░t░i░n░g░ ░o░u░r░ ░p░a░g░e░ ░\\n\\n  A&A\\n\\n\\n••.•´¯`•.••   🎀  𝐿𝐼𝒦𝐸.. 𝒮𝐻𝒜𝑅𝐸..𝒮𝒰𝐵𝒮𝒞𝑅𝐼𝐵𝐸.  🎀   ••.•`¯´•.••\\n\\n𝓒𝓞𝓝𝓝𝓔𝓒𝓣 𝓦𝓘𝓣𝓗 𝓤𝓢 𝓞𝓝 :\\n\\nGmail : 𝐚𝐯𝐚𝐥𝐮𝐦𝐧𝐚𝐚𝐧𝐮𝐦𝟐𝟕𝟏𝟐@𝐠𝐦𝐚𝐢𝐥.𝐜𝐨𝐦\\n\\nInstagram:  𝖍𝖙𝖙𝖕𝖘://𝖜𝖜𝖜.𝖎𝖓𝖘𝖙𝖆𝖌𝖗𝖆𝖒.𝖈𝖔𝖒/𝖆𝖛𝖆𝖑𝖚𝖒.𝖓𝖆𝖆𝖓𝖚𝖒𝖞𝖙𝖈/',\n",
       "  21400,\n",
       "  3010930,\n",
       "  281,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=XnKRtahfKOg',\n",
       "  'Kadirangi oodi song reaction | CID Moosa | Dileepettan| Laughter riot',\n",
       "  '#CIDMoosa #Kadirangioodi #Dileepettan\\n\\nUnaradi Nee Song Reaction- My Boss Movie:\\nhttps://youtu.be/a1CBQLqAAYE\\n\\nLIKE.. SHARE..SUBSCRIBE.\\n=================+==========================+========\\n\\n••.•´¯`•.••   🎀  𝐿𝐼𝒦𝐸.. 𝒮𝐻𝒜𝑅𝐸..𝒮𝒰𝐵𝒮𝒞𝑅𝐼𝐵𝐸.  🎀   ••.•`¯´•.••\\n\\n𝓒𝓞𝓝𝓝𝓔𝓒𝓣 𝓦𝓘𝓣𝓗 𝓤𝓢 𝓞𝓝 :\\nGmail : 𝐚𝐯𝐚𝐥𝐮𝐦𝐧𝐚𝐚𝐧𝐮𝐦𝟐𝟕𝟏𝟐@𝐠𝐦𝐚𝐢𝐥.𝐜𝐨𝐦\\nInstagram:  𝖍𝖙𝖙𝖕𝖘://𝖜𝖜𝖜.𝖎𝖓𝖘𝖙𝖆𝖌𝖗𝖆𝖒.𝖈𝖔𝖒/𝖆𝖛𝖆𝖑𝖚𝖒.𝖓𝖆𝖆𝖓𝖚𝖒𝖞𝖙𝖈/\\n\\n#kadirangioodireaction\\n#kadirangioodisongreaction\\n#kadirangivideosongreaction',\n",
       "  '2020-03-16T13:51:52.000Z',\n",
       "  68200,\n",
       "  3473.0,\n",
       "  260.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCWkxNq64I4kFwvoFqyN7hyQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  21400,\n",
       "  4068895,\n",
       "  454,\n",
       "  'PL',\n",
       "  'https://www.youtube.com/watch?v=hIZGi1WCti4',\n",
       "  \"REACTING TO SABYAN - AL WABAA' (Official Music Video) Covid 19  (POLISH REACTION)\",\n",
       "  'SABYAN - AL WABAA\\' (Official Music Video) Virus Corona  reaction \\nSABYAN AISYAH COVER reaction\\nReacting to SABYAN - AL WABAA\\' covid 19 big problem \\nReacting to SABYAN AISYAH COVER reaction\\nSABYAN | Cover | ATOUNA EL TOUFOULE |  REACTION\\nREACTING TO ATOUNA EL TOUFOULE Cover by SABYAN\\nReact to ATOUNA EL TOUFOULE Cover by SABYAN | INDONESIAN SONGS\\nCATHOLIC REACTS TO ATOUNA EL TOUFOULE Cover by SABYAN\\nATOUNA EL TOUFOULE Cover by SABYAN || REACTION\\nReaksi Deddy Corbuzier Melihat Video Nissa Sabyan \"Atouna El Toufoule\"\\nReacting To DEEN ASSALAM - Cover by SABYAN\\nReacting To DEEN ASSALAM - Cover by SABYAN\\nYA ASYIQOL MUSTHOFA - Cover by SABYAN Reaction',\n",
       "  '2020-04-05T19:59:29.000Z',\n",
       "  45659,\n",
       "  1554.0,\n",
       "  165.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCON4BTewzjvpefnamx6-RIg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  21100,\n",
       "  4124226,\n",
       "  186,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=gRcpvtPZHMM',\n",
       "  'ButtaBomma | Ala Vaikunthapurramuloo | Allu Arjun | Trivikram | Thaman S | Music REACTION',\n",
       "  'Our reaction to ButtaBomma Music Video!!!\\n\\nWe own no rights to the video.\\nPlease check out the original song link below: \\nhttps://www.youtube.com/watch?v=2mDCVzruYzQ\\n\\n~\\n\\nCheck out our Social Media pages:\\nGunz - Instagram: @gunz_k\\nKimmy - Instagram: @imc2k\\n\\n__\\n\\nLIKE AND SUBSCRIBE FOR MORE CONTENT!\\n\\nThanks for watching :)\\n\\n__\\n\\nDisclaimer: No Copyright intended in this video. All rights belong to the rightful owner\\n\\nCopyright Disclaimer : Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-03-02T08:24:04.000Z',\n",
       "  121182,\n",
       "  3428.0,\n",
       "  118.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCVpzg66aBxv9kUjHTN5WWVw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"The epic battle between a Greek bro VS an Armenian bro...ok...I'm trying to type, but Greek bro is constantly asking me what size of blade should he use to trim his beard sooo this is what I came up with. Hope you guys enjoy our videos...Don't forget to hit that notii...peace!\",\n",
       "  21000,\n",
       "  1863617,\n",
       "  430,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=rt_n06XCMIc',\n",
       "  \"IT'S EMZILLA BROO !!! Music Reaction | Eminem - Godzilla (Feat. Juice WRLD)\",\n",
       "  'IT\\'S EMZILLA BROO !!! Music Reaction | Eminem - Godzilla (Feat. Juice WRLD)\\n\\nEminem’s new album MUSIC TO BE MURDERED BY http://smarturl.it/MTBMB\\n\\nThank you for watching!! \\n\\nJoin the family by subscribing and to make sure to always get updated with our newest videos, just hit that notification bell, this way you will not miss any of our shenanigans on camera. \\n\\nFollow Us\\nInstagram|  @TheRealJKBros | www.instagram.com/therealjkbros\\nFacebook| TheRealJKBros | www.facebook.com/therealjkbros\\nTwitter| @TheRealJKros | www.twitter.com/therealjkbros\\n\\nCopyright\\nMusic in this video\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*\\n\\n#Godzilla #Eminem #JuiceWRLD',\n",
       "  '2020-01-18T07:15:00.000Z',\n",
       "  62208,\n",
       "  3138.0,\n",
       "  363.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCVIQLXXFN5k4OnrsRhCeECg',\n",
       "  nan,\n",
       "  nan,\n",
       "  'sixshades6@gmail.com',\n",
       "  '@nanette.walters66',\n",
       "  \"Group from London! If you enjoy music videos, Challenge, Skits or just top quality banter we're your guys! Subscribe for new videos every week!!\",\n",
       "  20700,\n",
       "  4082517,\n",
       "  252,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=2GllI-wKnBQ',\n",
       "  'POP SMOKE - CHRISTOPHER WALKING (OFFICIAL VIDEO) (REACTION)',\n",
       "  'SSixShades back with another video! \\n\\nTHE NEW KING OF NEW YORK? \\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.\\n\\n\\nSubscribe to our channel! https://www.youtube.com/channel/UCVIQLXXFN5k4OnrsRhCeECg\\n\\nArt Instagram - https://www.instagram.com/nanette.walters66/\\n\\nThanks For Watching, And Don\\'t Forget To Like, Comment and subscribe.\\n\\nAnd Check Out Our Other Videos\\n\\nVideo  –https://www.youtube.com/watch?v=oib2gIA0W4k\\nTwitter- https://twitter.com/Six_Shades\\nSnapchat- https://www.snapchat.com/add/six_shades\\nInstagram- https://www.instagram.com/six_shades/?hl=en\\nG +- https://plus.google.com/u/0/102197030871783045255/posts\\n\\n\\nPERSONAL SOCIAL MEDIAS\\n\\n►  Antoine- antz_vh10 https://www.instagram.com/antz_vh10/\\n►  Dickson- official_appz https://www.instagram.com/official_appz/\\n►  Mubz- mubaraq5 https://www.instagram.com/mubaraq5/\\n \\n\\nBUSINESS INQUIRIES- sixshades6@gmail.com',\n",
       "  '2020-01-20T20:08:52.000Z',\n",
       "  13338,\n",
       "  309.0,\n",
       "  22.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCY1tfhkJ2Q2CPncI_VXEAbw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Bienvenidos :) instagram: leocantro',\n",
       "  20700,\n",
       "  5054198,\n",
       "  215,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=NUmXDCihS2w',\n",
       "  'NEW SONG DIMASH - VIDEO REACTION - ACROSS ENDLESS DIMENSIONS - VIDEO REACCIÓN - DIMASH SUB ENG',\n",
       "  'Amigos aquí una nueva reacción del gran Dimash en donde colaboró con su voz en una película llama CREATORS! y bueno el resultado fue BRUTAL!!!! \\n\\nvideo:https://youtu.be/URzRV4b7GlA\\n\\nvisita el canal oficial de Dimash:https://www.youtube.com/channel/UCGBxbj_RMKB22rhJnK9qReg\\n\\n#dimash #videoreaction #videoreaccion #creators #acrossendlessdimensionslove',\n",
       "  '2020-04-04T02:43:12.000Z',\n",
       "  62139,\n",
       "  5812.0,\n",
       "  765.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCrG013Mjfuq7Y-7uKNQATnQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Your favorite Eurovision Channel. News, Reaction Videos, Interviews and Vlogs. Join Matt and his team as they guide you through the Eurovision Song Contest 2020 season. That includes the National Finals, the lead up to the contest, as well as live coverage from the Netherlands.\\n\\nJoin us every Saturday for our Mattitude Live Stream where we discuss the Eurovision News of the week and answer your questions. \\n\\nWe also attend the Eurovision event every year as well as many of the Pre-Parties so make sure to follow us to stay on top of everything.',\n",
       "  20200,\n",
       "  10148955,\n",
       "  1440,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=0aGvL0r_m2U',\n",
       "  'Eurovision 2020: REACTION to all 41 songs',\n",
       "  'It\\'s time for another Eurovision Reaction video. Let\\'s watch and react to all 41 songs that are taking part in the Eurovision Song Contest 2020. Just a few seconds to comment on everything, not an easy task. \\n\\nAlbania- Arilena Ara - Fall From The Sky\\nArmenia - Athena Manoukian - Chains On You\\nAustralia - Montaigne - Don\\'t Break Me\\nAustria - Vincent Bueno - Alive\\nAzerbaijan - Samira Efendi - Cleopatra\\nBelarus - VAL - Da vidna\\nBelgium - Hooverphonic - Release Me\\nBulgaria - Victoria - Tears Getting Sober\\nCroatia - Damir Kedžo - Divlji vjetre\\nCyprus - Sandro - Running\\nRepublic Czech Republic - Benny Cristo - Kemama\\nDenmark- Ben & Tan - Yes\\nEstonia - Uku Suviste - What Love Is\\nFinland - Aksel Kankaanranta - Looking Back\\nFrance - Tom Leeb - The Best In Me\\nGeorgia - Tornike Kipiani - Take Me As I Am\\nGermany - Ben Dolic - Violent Thing\\nGreece - Stefania - Supergirl\\nIceland - Daði & Gagnamagnið - Think About Things\\nIreland - Lesley Roy - Story of My Life\\nIsrael - Eden Alene - Feker Libi\\nItaly - Diodato - Fai rumore\\nLatvia - Samanta Tīna - Still Breathing\\nLithuania - The Roop - On Fire\\nMalta - Destiny Chukunyere - All of My Love\\nMoldova - Natalia Gordienko - Prison\\nNorth Macedonia - Vasil Garvanilev - You\\nNorway - Ulrikke - Attention\\nPoland - Alicja Szemplińska - Empires\\nPortugal - Elisa - Medo de sentir\\nRomania - Roxen - Alcohol You\\nRussia - Little Big - Uno\\nMarino San Marino[32] - Senit - Freaky!\\nSerbia - Hurricane - Hasta la Vista\\nSlovenia - Ana Soklič - Voda\\nSpain - Blas Cantó - Universo\\nSweden - The Mamas - Move\\nSwitzerland - Gjon\\'s Tears - Répondez-moi\\nUnited Kingdom - James Newman - My Last Breath\\nUkraine - Go-A - Solovey\\nThe Netherlands(Host) - Jeangu Macrooy - Grow\\n\\nPlease support us on Patreon\" https://www.patreon.com/escunited\\r\\nJoin our ESC Forum: http://escunited.com/forum\\r\\n\\r\\nFollow Matt on Twitter: twitter.com/MattESCunited\\r\\nFollow ESCunited on Twitter: twitter.com/escunited\\r\\nFollow us on Facebook: https://www.facebook.com/EscUnited\\r\\nFollow us on Instagram: http://www.instagram.com/escunited\\r\\n\\r\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.',\n",
       "  '2020-03-15T18:27:07.000Z',\n",
       "  46492,\n",
       "  1166.0,\n",
       "  374.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UC9PZIPt3hILHcs6iKWNudjw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"My name is Ray, and I am a guitar player on Youtube. I am living my dream of doing music full time, thanks to my dedicated and loyal subscribers. If you want to join my friends and family here on Youtube, I'd really appreciate it!\\n\\nStay Metal \\\\m/\\n\\n-Ray\",\n",
       "  19800,\n",
       "  2894406,\n",
       "  501,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=A31GHyjpWgE',\n",
       "  'LAMB OF GOD - CHECKMATE SONG REVIEW!',\n",
       "  \"#lambofgod #markmorton #checkmate\\n\\nThis video is a review of Lamb of God's new song: Checkmate!\\n\\nWant to support me and my channel? Become a Patron!\\nhttps://www.patreon.com/staymetalray\\n\\nMy Facebook page: https://www.facebook.com/staymetalraychannel/\\n\\nMy Merch Store!: https://teespring.com/stores/stay-metal-ray\\n\\nMy Second Album: https://www.youtube.com/watch?v=B1-ycV9udqw&t=1397s\\n\\nMy First Album!: https://www.youtube.com/watch?v=_4pTO4Dbx9s\\n\\nLuna Muerta Five Years Gone By EP: https://www.youtube.com/watch?v=j4krDNz3YPI\\n\\nLuna Muerta Starlit Cavern EP: https://www.youtube.com/watch?v=hSyLFCA07N4&t=61s\\n\\nInstagram: staymetalray\",\n",
       "  '2020-02-06T14:16:01.000Z',\n",
       "  1663,\n",
       "  100.0,\n",
       "  80.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCyfxz9guQi3lDWMZ76Y5fMA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@grey_wolfgaming',\n",
       "  'Welcome all to \"Greywolf TV\" .This Channel is dedicated to Music & TV Reactions and Reviews of some of the best TV Sci-Fi & Drama series over the last 20 years. Most of which will be series Ive never watched previously whether they be new or old. Come and take a ride along with me as we take on the hundreds of shows that changed the way we watch television, and for the music side of things, ill be reacting and reviewing some of the newest bands and vocalists out there.\\n\\nIf you are interested in any of these shows. Check out my Youtube Channel Playlists or for exclusive content on Patreon. These are tv shows Im either currently reacting to, or upcoming shows that will be on both platforms in the near future.\\n\\n• The Boys\\n• Chernobyl\\n• Oprhan Black\\n• Battlestar Galactica (Reimagined)\\n• The Haunting Of Hill House\\n• Stranger Things\\n• The 100\\n• Fringe\\n• Dark\\n• Travelers\\n• Breaking Bad\\n• Designated Survivor\\n• The Umbrella Academy\\n• Mad Men\\n• The Expanse\\n• Mindhunter\\n• The X-Files\\n• Homeland',\n",
       "  19600,\n",
       "  3733434,\n",
       "  264,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=DfthIkqxgY0',\n",
       "  'EVERGLOW (에버글로우) - DUN DUN MV  | REACTION & REVIEW',\n",
       "  'EVERGLOW (에버글로우) - DUN DUN MV Reaction & Review \\n\\nMy first reaction to Everglow with their new release from the album reminiscence. This had some sick bass drops and an unexpected chorus which swaps around throughout the track. Theres a message in the video from the stunning visuals but im damned if ive figuered it out yet!\\n\\nIf you like Everglow please subscribe to GreyWolfTV for more reactions and reviews.\\n\\nOriginal Video: https://www.youtube.com/watch?v=NoYKBAajoyo\\n\\nYou can help support me and the channel here:\\nhttp://cash.app/%C2%A3GreywolfTV\\nhttps://ko-fi.com/greywolftv \\nhttps://streamelements.com/greywolftv/tip\\n\\n*JOIN MY DISCORD*\\n\\nYou can join my personal discord where you can discuss TV & Music reactions, chat with fellow viewers and subscribers and post reaction requests. Click the link to add the server:\\n\\nhttps://discord.me/thegreywolfpack\\n\\n► Royalty Free Music Credit: \\nMusic provided by HearWeGo\\nArtist: 4lienetic \\nTitle: Medkit\\nListen on YouTube: https://youtu.be/X0-AvRA7kB0\\n• https://soundcloud.com/4lienetic\\n• https://facebook.com/4lienetic\\n• https://www.youtube.com/channel/UCUZig788vzmYdzMphveBp8g\\n• https://twitter.com/4lienetic\\nis under a Creative Commons license (CC-BY)\\n\\nUnder a \"Public Attribution Agreement - Creative Commons Attribution 3.0 \\nhttps://creativecommons.org/licenses/by/3.0/legalcode\\n\\n\\nFollow me: \\nhttps://www.patreon.com/GreyWolfTV\\nhttps://twitter.com/GreyWolfTV1\\nhttp://https://www.facebook.com/GreyWolfTV/\\nhttps://www.reddit.com/r/greywolfreacts/\\nhttps://www.instagram.com/grey_wolfgaming/\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. \\n\\nNo copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*\\n\\n#EVERGLOW #reminiscence #DUNDUN',\n",
       "  '2020-02-14T13:00:03.000Z',\n",
       "  2640,\n",
       "  191.0,\n",
       "  27.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCA4kBBTseNqyndNwPeykt6g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'FILIPINO VLOGGER LIVING IN LONDON.\\n\\nFollow me on my other social media account:\\n✖ Instagram: @camzlondon\\n✖ Facebook page: Camz London',\n",
       "  18900,\n",
       "  1284554,\n",
       "  79,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=SbA6pOuESXk',\n",
       "  'MICHAEL PANGILINAN RAINBOW REACTION VIDEO (LIVE PERFORMANCE ON WISH)',\n",
       "  'MICHAEL PANGILINAN RAINBOW REACTION VIDEO (LIVE PERFORMANCE ON WISH)\\nMichael Pangilinan performs \"Rainbow\" (South Border) LIVE on Wish \\nMichael Pangilinan performs \"Rainbow\" LIVE on Wish Bus [REACTION]\\n\\nCAMZ LONDON REACTION VIDEO PLAYLIST: https://www.youtube.com/playlist?list=PLzFgpWI9rDN_THtHc7ivytBeMggOqUHiS\\n\\nOla! My name is Camille Shern,  a Filipino vlogger living in London and married to my British husband, John. I am also a mother of a teenager, Gwen. I make family vlogs, hauls, challenges and would like to share with you all our life experiences about living in the UK as a Filipina British Family. If you like these kind of videos, please do stick around and watch our other videos. Salamat po.\\n\\nFILIPINA BRITISH FAMILY LIFE IN UK VLOGS:\\nHow to get your family/Child Visa UK with no solicitor - \\nhttps://youtu.be/3wL7NprXq2E\\nBasic Monthly Expenses in England / Cost of Living in England 2020 - https://youtu.be/hAtKft5jq-g\\nBudget Grocery Haul - How much are food prices in England - https://youtu.be/_nR_9N58jzo\\n\\nOther family vlogs:\\nHOW I MET MY BRITISH HUSBAND - https://youtu.be/g_q4DP4mNJo\\nMY DAUGHTER DID MY MAKEUP - ANSWERING QUESTIONS ON INTERNET ABOUT ME - https://youtu.be/vCCXSHAnUsA\\nFILIPINO DAUGHTER TEACHES BRITISH DAD TAGALOG TONGUE TWISTER - https://youtu.be/Fb3TOT63koc\\n\\nI hope you like this video. \\n\\nIf you like our videos/vlogs, please don’t forget to click like, subscribe and click the bell button beside to be updated on my new videos.\\n\\nThank you so much for watching!\\n\\nLove,\\nCamille xxx\\n\\nFollow me on my other social media account:\\n✖ Instagram: @camzlondon\\n✖ Facebook page: Camz London\\n✖ TikTok: Camz London\\n\\nMusic Intro/Outro:\\nFree by LiQWYD https://soundcloud.com/liqwyd\\nCreative Commons — Attribution 3.0 Unported — CC BY 3.0\\nFree Download / Stream: https://bit.ly/free-liqwyd\\nMusic promoted by Audio Library https://youtu.be/V1lNZRTyDNY\\n\\nDisclaimer:\\n✖ No music copyright infringement intended. Music used will be removed if requested by the copyright owner.\\n✖ Any or all paid up products or video endorsements will be tagged accordingly as ADS.\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.\\n\\n#michaelpangilinanrainbow #michaelpangilinan #reactionvideo #filipinovlogger #camzlondon #khelpangilinan #wishbus #southborder #liveperformance #wish',\n",
       "  '2020-03-31T19:00:15.000Z',\n",
       "  161367,\n",
       "  3266.0,\n",
       "  404.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCek3Of4VBfZgLw-LOgRga6g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'The Goal on this channel is to make you laugh and brighten your day with some of the best content . So if you enjoy this channel please be sure to subscribe and turn on notifications \\n\\n\\nFollow me : \\n\\nTwitter : OkayRickk \\n\\nInstagram: OkayRickk \\n\\nSnapchat: OkayRickk',\n",
       "  18300,\n",
       "  1847939,\n",
       "  218,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=FCHUteRQQqQ',\n",
       "  'ONE GUY 54 VOICES (With Music!) Famous Singer Impressions | NO WAY!!😱🔥REACTION!!',\n",
       "  'ONE GUY, 54 VOICES With Music! Drake, TØP, P!ATD, Puth, MCR, Queen Famous Singer Impressions Reaction.\\n\\nOriginal Video: https://www.youtube.com/watch?v=ZNFsk...\\n\\nRoad to 10k.. subscribe\\n\\n Follow my Social to stay updated:\\n\\nTwitter: OkayRickk\\n\\nInstagram: OkayRickk\\n\\nSnapchat: OkayRickk',\n",
       "  '2020-02-20T17:14:03.000Z',\n",
       "  78965,\n",
       "  3703.0,\n",
       "  177.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC02tE92WmZopzmUTnAXFOfA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'bremhbusiness@hotmail.com',\n",
       "  nan,\n",
       "  '𝐇𝐄𝐋𝐋𝐎! 𝐖𝐇𝐀𝐓’𝐒 𝐆𝐎𝐎𝐃𝐈𝐄?!?\\nit’s ya girl, bremh. \\n\\nwelcome to my channel where i’ll be posting a lil bit of everything. \\nhope you stick around to watch!\\n\\nthank you sososososo much for checking out my channel!\\n\\nROAD TO 20,000 SUBSCRIBERS. join the team, lets gooooo',\n",
       "  18300,\n",
       "  1332592,\n",
       "  85,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=LDCAkK5F9Ac',\n",
       "  'FRENCH MUSIC REACTION 🇫🇷 | TAYC, SOOLKING, DIDDI TRIX & MORE',\n",
       "  '𝐇𝐄𝐋𝐋𝐎! 𝐖𝐇𝐀𝐓’𝐒 𝐆𝐎𝐎𝐃𝐈𝐄?!?\\n\\n♡my social media♡ \\ninstagram - @bremh\\ntwitter - @weirdheaux \\nsnapchat - bremhxx\\ndepop - weirdheaux\\n\\nfor business inquiries - bremhbusiness@hotmail.com\\n\\n𝐃𝐎𝐍’𝐓 𝐅𝐎𝐑𝐆𝐄𝐓 𝐓𝐎 𝐒𝐔𝐁𝐒𝐂𝐑𝐈𝐁𝐄!',\n",
       "  '2020-04-05T12:18:19.000Z',\n",
       "  107743,\n",
       "  5099.0,\n",
       "  850.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC4HgeHs-xOZHlOPFEvsVLrg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '모든 2차 가공, 편집과 재업로드 금지합니다. \\nDo not crop, editing, reupload. \\nGIF 움짤만 출처표기시 허용하고 있습니다.',\n",
       "  18100,\n",
       "  8806067,\n",
       "  142,\n",
       "  'KR',\n",
       "  'https://www.youtube.com/watch?v=wI1LU5Nlc9s',\n",
       "  'Reaction to BTS 2019 MAMA Song of year & Artist of year win - twice itzy chungha heize wayv ENG sub',\n",
       "  nan,\n",
       "  '2020-01-28T15:21:14.000Z',\n",
       "  177699,\n",
       "  5093.0,\n",
       "  146.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCm9jygQknXND4fXSmK8aNPg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'This channel is about jamaican music reviews and daily news information for the person who missed the local news on live tv. We will be reading news articles and be doing daily upload and making creative contents. Remember to like, share and subscribe.',\n",
       "  17900,\n",
       "  37572,\n",
       "  34,\n",
       "  'JM',\n",
       "  'https://www.youtube.com/watch?v=KIDAB42IDtk',\n",
       "  'Chronic law -Bad Girl (New Song)',\n",
       "  'Full song link \\nhttps://youtu.be/57MfBYkVTbc',\n",
       "  '2020-01-27T19:01:42.000Z',\n",
       "  556,\n",
       "  17.0,\n",
       "  1.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCXJw9NqbKe1x1Vr5XHa2KPw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Heeeyy selam Ben Nalan!! Kanalıma Hoşgeldin! \\nUmarım samimiyetin ve sevginin hakim olduğu faydalı bir kanal olur\\n\\n\\nheey guys! Its Nalan!! Welcome to my Channel!\\nI hope we love each other so much! Thank you',\n",
       "  16800,\n",
       "  690572,\n",
       "  14,\n",
       "  'TR',\n",
       "  'https://www.youtube.com/watch?v=gYTQ9fdmKnU',\n",
       "  'SABYAN - EL WABAA [MUSIC VİDEO] | REACTION VİDEO FROM TURKEY',\n",
       "  'HELLO EVERYONE! \\nIm back! I want to do more reaction video pls comment for new videos! Love you so so much thanks for your support! \\n\\nSEE YOU IN THE NEXT VİDEO',\n",
       "  '2020-04-06T16:27:29.000Z',\n",
       "  149948,\n",
       "  6428.0,\n",
       "  726.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCOgMftT-tK5QbzN7LfVqEkA',\n",
       "  'syntesas@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Selamat datang di youtube channel Kami\\nSupport Kami dengan cara \\nSUBSCRIBE,LIKE,COMMENT dan SHARE\\nAgar tidak ketinggalan Video Cover Terbaru Dari Kami. Terimakasih.\\n\\nFor business please contact :\\n\\nEmail : syntesas@gmail.com\\nCall/WA : +62-81285-100-300 Job only\\n\\n© Please review is channel Subscribe, like, and share. Thanks you so much',\n",
       "  16400,\n",
       "  2281481,\n",
       "  19,\n",
       "  'ID',\n",
       "  'https://www.youtube.com/watch?v=ZW62WqZBBXU',\n",
       "  'Alip_ba_ta no Saat terakhir yes Num linkin park - Reaction videos',\n",
       "  'Videos  link alip_ba_ta :https://youtu.be/IvaiZ12o2vM\\n\\nViews video\\n\\n1.https://youtu.be/pbOOnZX9y6I alip_ba_ta \\n\\n2.https://youtu.be/DJZRqIH7CRo reaction\\n\\n3.https://youtu.be/xHx27ZEeAkE alifbata \\n\\n4.https://youtu.be/UTN-gPvSTcc react\\n\\nalif ba ta reaction terbaru, alip_ba_ta gitar reaction, Saat terakhir reac alip_ba_ta, alipbata reaction saat terakhir, Numb reaction alif ba ta, linkin park alip_ba_ta numb, \\n#Share #Alip_ba_ta #alipbata',\n",
       "  '2020-01-07T16:09:02.000Z',\n",
       "  572141,\n",
       "  3895.0,\n",
       "  nan],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCQsZ34afPF76CVyemK50hWw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@hanmoi91',\n",
       "  nan,\n",
       "  16300,\n",
       "  2396103,\n",
       "  137,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=hdZobwgmcMQ',\n",
       "  \"BTS (방탄소년단) 'ON' Kinetic Manifesto Film : Come Prima - Reaction Video 방탄소년단 리액션 영상\",\n",
       "  '#bts #on #reaction #방탄소년단 #리액션 #방탄소년단on #btson #btsonreaction\\n\\nHANMOI Instagram: https://www.instagram.com/hanmoi91/\\n\\n안녕하세요 여러분 한모이입니다! 오늘 드디어 방탄소년단의 정규앨범이 공개가 되어서 공개된 영상을 보며 저희 학생들과 학원 매니져님과 같이 리액션 영상을 찍게 되었는데! 역시나 이번도 상상치도 못한 컨셉으로 컴백을해서 정말 영상을 보는 내내 놀라울 따름이였습니다. 춤이면 춤 노래면 노래 표정, 퍼포먼스 정말 모든것을 다 가진 방탄이네요😭 여러분들도 리액션 영상 재밌게 보셨다면 좋아요와 구독 알림설정까지 부탁드립니다! 영상 봐주셔서 감사합니다❤️',\n",
       "  '2020-02-21T11:24:30.000Z',\n",
       "  327427,\n",
       "  10559.0,\n",
       "  254.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCQZYX1fpYEpSTxs9qZ02adA',\n",
       "  'sallinaahdego@gmail.com',\n",
       "  nan,\n",
       "  'sallinaahdego@gmail.com',\n",
       "  nan,\n",
       "  'Hello! My name is Sallina I’m Eritrean Canadian and love creating content!! On this channel I will be featuring everything Africa from culture, music, dance and everything in between!!! So subscribe and join the ride!\\nInstagram:Sallinaxo\\n\\nIf you like to inquiries regarding sponsorship/ reaction sponsors , PR’s, collaborations and anything else feel free to please contact me at : sallinaahdego@gmail.com.',\n",
       "  16000,\n",
       "  1166891,\n",
       "  148,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=jEXYORLwqSE',\n",
       "  'GULLED SIMBA - JANNA DUNIA OFFICIAL MUSIC VIDEO 2020| REACTION!',\n",
       "  'MUTED INTRO ONLY!\\nHeyyyy!! Well this was a overdue video with my girl Rebecca in Florida! We loved this new Somali tune and definitely recommend you to listen to the song for yourself. I hope you enjoyed this video, if you did subscribe and share the video!!! Also make sure to buy your My black clothing merch below and support black companies!!\\nShop and support me at: https://www.shopstyle.com/shop/itsselu\\n\\n#Somalimusic2020 #SomaliReaction #Somalia \\n\\nOther channel: https://www.youtube.com/channel/UCWM1XDRvDntD0O1QvejjrKA\\n\\nMy Black Clothing apparel: https://www.myblackclothing.com\\n\\nOriginal: https://www.youtube.com/watch?v=k6N_6nuvVe0\\n\\nFor Business Inquiries Email Me: (Sallina) sallinaahdego@gmail.com\\nInstagram: Sallinaxo \\n \\nDisclaimer: All opinions are my own and true.\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS.',\n",
       "  '2020-02-29T03:00:13.000Z',\n",
       "  47667,\n",
       "  1786.0,\n",
       "  286.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCVL5MZBbPlbtvFGjztMBoIQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@tasteof5ive',\n",
       "  nan,\n",
       "  15400,\n",
       "  1156297,\n",
       "  35,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=YPPH_MMvEx8',\n",
       "  'DDG - Escape (Official Music Video) | REACTION',\n",
       "  \"THANK YOU FOR WATCHING\\n- \\nCOMMENT MORE REACTIONS YOU WANT TO SEE !!\\n-\\nDON'T FORGET TO SUBSCRIBE \\n\\n\\n\\nFOLLOW OUR INSTAGRAMS: \\n\\n@OG.BRIT https://instagram.com/og.brit?igshid=f5p8pz45mxjn \\n\\n@TATIYANA_LOVE https://instagram.com/tatiyana_love?igshid=1y0sh6h54l424\\n\\n@OG.JEN https://instagram.com/og.jen?igshid=4qduk5age0lw\\n\\n@MAKAYLA.ALICIA https://instagram.com/makayla.alicia?igshid=1gylinx520ffa\\n\\n@A.BLUE.VISUAL https://instagram.com/a.blue.visual?igshid=1ek68t1nxgdpv\\n\\n\\n@TASTEOF5IVE https://www.instagram.com/tasteof5ive/?igshid=bzftmabg58pzTHANK YOU FOR WATCHING\\n-\",\n",
       "  '2020-03-23T19:03:44.000Z',\n",
       "  71863,\n",
       "  2421.0,\n",
       "  137.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCJh-70C6hHBoJqfeIl4NXww',\n",
       "  nan,\n",
       "  nan,\n",
       "  'drummer.roby@gmail.com',\n",
       "  nan,\n",
       "  'Hello Royal Family.. \\n                            Thank you for your continued support from Day one, You have been viewing and commenting on the TPN content we are laughing and growing together..\\n\\n                            Stayed tuned for new updates where i will share some of the new addition to my channel. This channel is all about Fashion, Music, Laughter and Lifestyle\\n\\n\\n\\nThank you for your support in advance\\n\\nhttps://www.paypal.me/ThePrinceNetworkTPN\\n\\nhttps://www.instagram.com/theprincernetwork',\n",
       "  15000,\n",
       "  2008131,\n",
       "  249,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=51X_rHAvT7Q',\n",
       "  \"@ Dimash Kudaibergen - SOS d'un terrien en détresse (REACTION VIDEO). MUST WATCH... AMAZING\",\n",
       "  '#REACTIONVIDEOS #DIMASHKUDAIBERGENOV #THEPRINCENETWORK\\n\\n\\nINSTAGRAM: THEPRINCERNETWORK\\r\\nhttps://www.instagram.com/theprincernetwork\\r\\n\\r\\nhttps://www.paypal.me/ThePrinceNetworkTPN\\r\\n\\r\\nFor Business please email me at drummer.roby@gmail.com\\r\\n\\r\\n***Copyright disclaimer under section 107 of copyright Act 1976, allowance is made for fair use for purposes such criticism, comment, news reporting, teaching, scholarship and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.\\r\\nNo copyright intended.',\n",
       "  '2020-02-27T00:00:10.000Z',\n",
       "  59348,\n",
       "  3716.0,\n",
       "  243.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCxhpVZ0t76my1EMfZMKW6ug',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '\"If the driver has the courage to create his own conditions, then the rain is simply rain\"',\n",
       "  14900,\n",
       "  2077937,\n",
       "  188,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=bEYqCWqpoJ8',\n",
       "  '(FILMMAKER REACTION) Joji - Gimme Love (Official Video)',\n",
       "  'Original Video:\\nhttps://www.youtube.com/watch?v=jPan651rVMs\\n\\nJoin our Discord chat! Reaction recommendations, movies, music, etc...\\nhttps://discord.gg/7SGe82f\\n\\nOriginal content:\\nhttps://youtu.be/e4bk8wuzBsc\\n\\nMy Spotify playlists updated every week:\\nhttps://open.spotify.com/user/falcomfan7?si=LFYLfUlbTqqNGWbIy6ocgA\\n\\nInstagram: @david.piersaul\\nWebsite: theevesproductions.com\\n\\nMusic in my videos: @Nate Rose \\n\\nLIST OF ALL OF MY GEAR: (I will get a small commission) \\nBlackmagic Pocket Cinema Camera 4k: https://amzn.to/367fKIk\\nCamera Cage: https://amzn.to/2F0XfcR\\nLens Adapter: https://amzn.to/2Q8zRjS\\nCool Versatile Lens: https://amzn.to/2sw66R2\\nFavorite Lens for Pro Work: https://amzn.to/2SEBqaS\\nCheaper High-Quality Lights: https://amzn.to/37gxWPO\\nPro Lights (I have two of these): https://amzn.to/2QyPjVx\\nMy Lightsaber Type Light (Must Have): https://amzn.to/357nDfx\\nPro Hi-hat (Small Tripod, great for desktops): https://amzn.to/2tVSRt8\\nCheaper Monopod/Tripod (favorite purchase): https://amzn.to/2QwiatC\\nAudio Recorder: https://amzn.to/37jxaBH\\nMedia Storage: https://amzn.to/2ZBwtBl\\nLaptop for travel editing!: https://amzn.to/37gzole',\n",
       "  '2020-04-17T21:36:19.000Z',\n",
       "  43151,\n",
       "  2268.0,\n",
       "  145.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC7YDg5mT6ZTpuNxK-RZOSWA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'thecultureshock01@gmail.com',\n",
       "  '@thecultureshock01',\n",
       "  'The Culture Shock explores the pure joy of learning and reacting to various cultures around the world , culture is defined as \"the arts and other manifestations of human intellectual achievement regarded collectively\" we try to live up to the definition .\\n\\nChannel Journey/Milestones\\n\\nFirst Video Drop - March 31st 2020\\n1K Subscribers - April 4th 2020\\n10K Subscribers - April 18th 2020\\n100K Subscribers -\\n1 Million Subscribers -\\n\\nMail us at \\n\\nPO BOX 36576\\nCincinnati OH , USA - 45236',\n",
       "  14900,\n",
       "  1360209,\n",
       "  21,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=tXtW44VZlhI',\n",
       "  'AMERICAN GIRLS react to GHUNGROO Song WAR Movie | Hrithik Roshan | Vaani Kapoor | Vishal & Shekhar',\n",
       "  'Hope you enjoyed our reaction , please support us so we can keep making more reactions and videos\\n\\nORIGINAL LINK\\nhttps://www.youtube.com/watch?v=qFkNATtc3mc\\n\\nFor Business & Collaborations - thecultureshock01@gmail.com\\n\\nSupport us on PATREON\\nhttps://www.patreon.com/thecultureshock\\n\\nFollow us on SOCIAL MEDIA\\nTWITTER:  https://twitter.com/TheCultureShoc1\\nFACEBOOK: https://www.facebook.com/thecultureshockyoutubechannel\\nINSTAGRAM: https://www.instagram.com/thecultureshock01',\n",
       "  '2020-04-15T05:34:37.000Z',\n",
       "  182521,\n",
       "  5467.0,\n",
       "  486.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCQxR35HOSZLRAHDJtMUBGSw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Welcome to the Official YouTube Channel of Color Frames Movies! Simply Indian's Hottest and leading Media and Entertainment Company.\\n\\nFollow Color Frames Movies for Exclusive Celebrity Interview, Tollywood News, Bollywood News, Entertainment News, Breaking News, Sports Coverage, Science & Technology related news, & much more in short and crispy manner!\\n\\nDo follow and stay connected with us!!!\\n\\n►Subscribe: https://www.youtube.com/colorframesmovies\\n\\n►Facebook: https://www.facebook.com/colorframesmovies\\n\\n►Twitter: https://twitter.com/colorframesmov\\n\\n►Instagram: https://www.instagram.com/colorframesmovies\\n\\n►Latest News & Reviews: https://www.colorframes.com\",\n",
       "  14800,\n",
       "  2253211,\n",
       "  863,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=9kuG5eW8Q_s',\n",
       "  'Vakeel Saab First Single Release | Maguva Maguva Song  Review | Pawan Kalyan | #PSPK26 | CF MOVIES',\n",
       "  'Vakeel Saab First Single Release | Maguva Maguva Song  Review | Pawan Kalyan | #PSPK26 | CF MOVIES\\n\\n#Maguvamaguva #VakeelSaabFirstSingleRelease  #VakeelSaabFirstSong #PawanKalyan #PSPK26 #CFMovies\\n\\n\\n\\nFollow Color Frames Movies Channel for Exclusive Celebrity Interview, Tollywood News, Bollywood News, Entertainment News, and much more in a short and crispy manner!\\n\\nDo follow and stay connected with us!!!',\n",
       "  '2020-03-08T04:40:42.000Z',\n",
       "  108505,\n",
       "  3174.0,\n",
       "  56.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCZZ_wwTsootAj1JAkvglscg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'welcome to great white international. take a dive.',\n",
       "  14300,\n",
       "  1443784,\n",
       "  148,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=5WC_sulR6IQ',\n",
       "  'BUTTA BOMMA Full Video Song Reaction | Allu Arjun | Trivikram | Thaman S |#AA19',\n",
       "  '#AlexaReacts to #ButtaBomma Full Video Song from #AlaVaikunthapurramuloo // Leave a LIKE if you enjoyed! \\r\\n\\r\\nGREAT WHITE & CO. MERCH\\r\\n• http://store.greatwhiteandco.com\\r\\n\\r\\nGREAT WHITE & CO. SITE\\r\\n• https://greatwhiteandco.com/\\r\\n\\r\\nGREAT WHITE & CO CHANNELS\\r\\n• http://watch.greatwhiteandco.com\\r\\n• http://games.greatwhiteandco.com\\r\\n\\r\\nCONNECT WITH US\\r\\n• https://www.twitch.tv/greatwhiteandco\\r\\n• https://www.instagram.com/greatwhiteandco\\r\\n• https://twitter.com/greatwhite_co\\r\\n• https://www.facebook.com/greatwhiteandco\\r\\n• https://www.reddit.com/r/GreatWhiteAndCo/\\r\\n\\r\\nWATCH THE FULL VIDEO HERE:\\r\\n• https://youtu.be/2mDCVzruYzQ\\n\\r\\nvideo produced by:\\r\\nGREAT WHITE & CO\\n#GWInternational',\n",
       "  '2020-02-27T05:00:01.000Z',\n",
       "  79162,\n",
       "  2636.0,\n",
       "  157.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCeKuV1OXgK8UAvEpZZ9JDjQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  14300,\n",
       "  1898173,\n",
       "  38,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=vy-7nlB3wjY',\n",
       "  '#AlaVaikunthapurramuloo - ButtaBomma Full Video Song (4K) | Allu Arjun | PAKISTAN REACTION',\n",
       "  '#AlaVaikunthapurramuloo - ButtaBomma Full Video Song (4K) | Allu Arjun | Trivikram | Thaman S |#AA19\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nala vaikunta puram lo songs,AlaVaikunthapurramuloo,ala vaikunthapurramuloo songs,allu arjun new song,allu arjun,ala vaikunta puram lo,ala vaikuntapuramulo,ala vaikuntapuramlo,ButtaBomma,butta bomma song teaser,butta bomma song promo,butta bomma song,thaman songs,Armaan Malik,ala vaikunta puram lo song,Ramajogayya Sastry,latest songs,avpl Full Video Songs,Ala Vaikunthapurramuloo Full Video Songs,buttabomma video song,buttabomma full video song',\n",
       "  '2020-03-04T05:10:18.000Z',\n",
       "  384981,\n",
       "  9318.0,\n",
       "  699.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC6_nCCBOJX_PTepol3phHuw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'tyrinandrasheyd@gmail.com',\n",
       "  '@kingrasheyd',\n",
       "  'Best Reaction and Q & A Videos\\nROAD TO 50K SUBSCRIBERS',\n",
       "  14200,\n",
       "  1435426,\n",
       "  218,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=DhMnnpw33nQ',\n",
       "  'Logan Paul - GOING BROKE (Antonio Brown Diss Track) (REACTION VIDEO) (MUST WATCH!!!!)',\n",
       "  'SUBSCRIBE!!!!!\\n#LoganPaul #GOINGBROKE #RoadTo50k\\nRasheyd’s Instagram:https://www.instagram.com/kingrasheyd/\\n\\nTyrin’s Instagram:https://www.instagram.com/shelovetrizzy/\\n\\nTyrin And Rasheyd’s Instagram:https://www.instagram.com/tyrinandrasheyd/\\nOur twitter: @Rasheydtyrin\\nIntro creds: @trex_effex\\n\\nBusiness Inquires:tyrinandrasheyd@gmail.com',\n",
       "  '2020-02-09T20:30:34.000Z',\n",
       "  467157,\n",
       "  18050.0,\n",
       "  959.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCN201OgwtrF81LY28EX8Avg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@isiahcozy',\n",
       "  'If you like Music, anime, cartoons, memes, trolling, and staying COZY then join COZYGANG we stay cozy around here',\n",
       "  14000,\n",
       "  1601086,\n",
       "  272,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=pvz2XNiavhM',\n",
       "  '@DripReport - Skechers REACTION | HIS FIRST ORIGINAL SONG ISSA HIT |',\n",
       "  'checckout drip: https://www.youtube.com/watch?v=feq6MOg3qpA\\n\\nDISCORD\\nhttps://discord.gg/prpmW3X\\n\\nTWITCH \\nhttps://www.twitch.tv/IsiahCozy\\n\\nPATREON\\nhttps://www.patreon.com/IsiahCozy\\n\\nWant to be friends on my social media?\\nInstagram : @IsiahCozy - https://www.instagram.com/isiahcozy/\\nTwitter: @IsiahCozy - https://twitter.com/IsiahCozy\\nTikTok: @IsiahCozy\\nSocialClub: @IsiahCozy \\n\\nINTRO SONG: https://soundcloud.com/lilriskii/movie-prodgriskey\\nANIME INTRO SONG: https://www.youtube.com/watch?v=LfDfb-87F_s\\n\\nIf you want to support the channel right now my cashapp is\\n$SendmeCashporfavor\\n\\nPayPal\\npaypal.me/IsiahJoseph28\\n\\nor stream-labs\\nhttps://streamlabs.com/isiahcozy\\n\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n\\n#Dripreport #IsiahCozy #skechersTiktok',\n",
       "  '2020-02-09T21:51:49.000Z',\n",
       "  429854,\n",
       "  11194.0,\n",
       "  624.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC0485ds6zNaQyFcA5byx1bQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@afreen_ahmed23',\n",
       "  'Movie, series reactions, reviews and discussion!\\n\\n|SWAB Reactions|\\n\\nInstagram - https://www.instagram.com/swabreactions',\n",
       "  14000,\n",
       "  2107624,\n",
       "  180,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=ZEH_3_Ra4qo',\n",
       "  'BUTTA BOMMA REACTION FULL SONG | #AlaVaikunthapurramuloo | SWAB REACTIONS with Stalin & Afreen #AA19',\n",
       "  'Presenting #ButtaBomma Full Video Song Reaction From The Telugu Movie Ala Vaikunthapurramuloo by SWAB REACTIONS\\n\\n|SWAB Reactions | \\nClick here to Subscribe: https://bit.ly/2lVw3WB\\n\\nSOCIAL MEDIA:\\n\\n~SWAB REACTIONS~\\nFacebook: facebook.com/swabreactions\\nInstagram: instagram.com/swabreactions\\nTwitter: twitter.com/swabreactions\\n\\n~AFREEN B~\\nInstagram: https://www.instagram.com/afreen_ahmed23/\\nTwitter: https://twitter.com/afreen_ahmed23\\n\\n\\n~STALIN WESLEY~\\nInstagram: https://www.instagram.com/stalin_wesley\\nTwitter: https://twitter.com/stalin_wesley\\nFacebook: http://www.facebook.com/iamstalinwesley\\n\\n======================================================',\n",
       "  '2020-03-22T04:50:27.000Z',\n",
       "  42450,\n",
       "  1807.0,\n",
       "  111.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC9xED6BL_sGAmJ14c4khzyg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hey guys! My name is Shazne aka Man Of Steel ;) Ive made this channel to share my thoughts and opinion on one of my biggest passions: Movies & Video Games! Thanks for visiting my channel! Hope you enjoy the content that I post and if you did, definitely hit that thumbs up button, comment, share and most importantly subscribe for more! SALUT! :)\\n\\nFollow me on Twitter & Instagram: @a_shazne',\n",
       "  13200,\n",
       "  2056395,\n",
       "  416,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=dzNqMNOy42Q',\n",
       "  'Master - Vaathi Raid Lyric Video Song Reaction & Review | Thalapathy Vijay | Anirudh | Lokesh',\n",
       "  'THANKS FOR WATCHING! If you guys enjoyed it, make sure to hit that Like Button, Comment, Share & Subscribe for more!!\\n\\nHELP YOUR ME REACH 25 000 SUBS! :)\\n\\nSubscribe To My 2nd Channel: https://www.youtube.com/channel/UCPyo78225prDF1oSb3CAmNA\\n\\n#Master #VaathiRaid #VaathiComing #KuttiStory #ThalapathyVijay #MasterAudioLaunch\\n\\nYou Guys Can Follow Me On:\\nTWITTER: https://twitter.com/a_shazne\\nINSTAGRAM : http://instagram.com/a_shazne\\n\\nOnce agn,\\nTHANKS FOR WATCHING, SALUTE! :)\\n\\n\"Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\"',\n",
       "  '2020-03-14T16:19:03.000Z',\n",
       "  54355,\n",
       "  4092.0,\n",
       "  248.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCcHsiDU-9BDkEOR26G87CJA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hey whatsup party people!! I'm Xavier and I do reactions! Sincere and honest! Please Like, comment and subscribe! And hopefully we can get to 1k soon! I upload videos almost everyday! \\n\\n#Roadto1k\",\n",
       "  12500,\n",
       "  3000912,\n",
       "  422,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=7jGgvThdLAU',\n",
       "  'Eurovision 2020: RUSSIA 🇷🇺 - Little Big “Uno” | Official Music Video | REACTION',\n",
       "  'Eurovision 2020: RUSSIA 🇷🇺 - Little Big “Uno” | Official Music Video | REACTION \\n\\nHEY GUYS! I’M SOOO BACK! \\n\\nToday I reacted to Eurovision 2020 Russia 🇷🇺 Little Big - Uno Official Music Video!They absolutely NAILED this song! It was a great performance!\\n\\nLETS GO GET THIS VIDEO TO 100 LIKES!!\\n\\n~~\\n✔️SUBSCRIBE: https://www.youtube.com/channel/UCcHsiDU-9BDkEOR26G87CJA\\n\\n~~\\n\\n📱👍LET\\'S BE FRIENDS! \\n\\n✔️Instagram: @xavierestallo\\n\\n✔️Facebook: Xavier Kent\\n\\n~~\\n\\n🎥ORIGINAL VIDEO: \\nhttps://youtu.be/L_dWvTCdDQ4\\n\\n~~\\n\\n📋COPYRIGHT DISCLAIMER:\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act of 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, research etc. Fair use is a use permitted by copyright statue that might otherwise be infringing. Non profit, educational or personal use tips the balance in favour of fair use.',\n",
       "  '2020-03-16T15:49:49.000Z',\n",
       "  110993,\n",
       "  4681.0,\n",
       "  372.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UC89NfFZfGZSIGo6mKSsrc2g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Xin chào các bạn. Mình là Young woo. Mình đang học tiếng Việt. \\n\\nHello guys~~~~ I'm Young woo. Now I'm studying Vietnamese Language. \\n\\n안녕하세요 영우입니다. 저는 지금 베트남어를 배우고 있어요.\",\n",
       "  12300,\n",
       "  132823,\n",
       "  28,\n",
       "  'KR',\n",
       "  'https://www.youtube.com/watch?v=otCJH73vwDw',\n",
       "  'Người Hàn Reaction Ghen cô vy (Vietnamese Corona song)',\n",
       "  'Xin chào các bạn. Hôm nay mình sẽ react Ghen cô vy \\nChúng ta có thể quyết thắng bệnh dịch đấy!!! \\n\\nOriginal MV \"Ghen cô vy\" : https://youtu.be/BtulL3oArQw\\n\\n#Reaction #ghencovy #코로나송\\r\\n[FACEBOOK] \\r\\n https://www.facebook.com/Wooban1\\r\\n\\r\\n[Insta]\\r\\n@nha_woo\\r\\n\\r\\n*Music\\r\\n[Art List]\\r\\n\\n===\\nCOPYRIGHT 2019. Wooban 우반. ALL RIGHTS RESERVED.\\n===\\n\\r\\nXin chào các bạn. Mình là Young woo. Mình đang học tiếng Việt.',\n",
       "  '2020-03-07T14:29:16.000Z',\n",
       "  59024,\n",
       "  1050.0,\n",
       "  93.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCZ09PsNtFscPXI-5IcRWVRw',\n",
       "  'jp.sajanjareda@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'You will  watch here Bollywood, hollywood, movies review, trailer reaction,  teaser reaction,  Bollywood spy, latest Bollywood movie,  upcoming Bollywood movie review,  entertainment,  please subscribe and like My you tube channel .\\nyou can aslo follow us on instagram and printerest .\\nAny help mail me - jp.sajanjareda@gmail.com \\n.........🙏Thank you 🙏.....',\n",
       "  10300,\n",
       "  953141,\n",
       "  204,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=szYrXDhjZ0c',\n",
       "  \"swag se solo song | public reaction | Salman  Khan new song | Remo D'suza, celebrity reaction, krk\",\n",
       "  \"dosto aaj me review karunga salman Khan's sawg se solo pepsi song, this song is dedicated for Valentin day, this song is sung by tanishk bagchi, \\nsalman Khan,  salman khan new song, salman khan new movies,  salman khan,salman khan songs,salman khan movies\\nSong Name- Swag Se Solo Singer- Sachet Tandon Lyrics-Vayu Music- Tanishk Bagchi Starcast- Salman khan Year- 2020\\n\\nbaaghi 3 first song,baaghi 3 song,salman khan pepsi song,sanremo 2020,swag se solo salman khan,tiger shroff\\nswag se solo by salman khan, \\nswag se solo song,\\nswag se solo status,\\nswag se solo reaction,\\nswag se solo whatsapp status,\\nswag se solo song reaction,\\nswag se solo pepsi,\\nswag se solo dance,\\nswag se solo full song,\\nswag se solo by salman khan,\\nsolo dance on swag se swagat,\\nbest dance on swag se swagat,\\ndance on swag se swagat,\\nswag se swagat solo dance performance,\\nswag se solo, \\nkrk review swag se solo song,  \\nswag se solo krk, krk swag se solo song, \\nswag se solo song reaction,  swag se solo teaser, swag se solo song reaction,  swag se solo in kannad, swag se solo in Tamil, \\nBollywood - Topic,\\nMusic of Bollywood - Musical genre,\\nItem Number - Topic, Bollywood Hungama - Website, Hungama Digital Media Entertainment - Company, bollywood songs, bollywood movie, bollywood movies, bollywood song, new bollywood movie, bollywood new song, bollywood hindi movie, bollywood movies 2019 full movies, movies 2019 full movies, new bollywood movies, bollywood songs 2019, new bollywood songs, bollywood mashup, bollywood movie 2020, bollywood movies 2020, hindi bollywood song, latest bollywood songs, new bollywood movies 2019, latest bollywood movies, new bollywood songs 2019, bollywood film, old bollywood songs,\\nsubscribe our\\xa0 YouTube channel-\\xa0 https://www.youtube.com/channel/jagpaljaredareviews\\n\\nFollow me on Twitter\\xa0 - https://twitter.com/sajanjareda?s=08\\n\\nFollow me on Instagram- https://Instagram.com/jagpaljaredareviews\\n\\n#swagsesolopublicreaction   #Remodsuza #swagsesoloreaction\",\n",
       "  '2020-02-10T15:40:08.000Z',\n",
       "  33501,\n",
       "  1322.0,\n",
       "  86.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCK5G-rUDSKKUXeMkrL7Bs1w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to the Charismatic Voice, a scientific and practical guide for all-things-vocal. We answer common questions, dispel common myths, and we help people like you learn how to use their speaking and singing voice better. Questions? Connect with us at www.thecharismaticvoice.com. You can also sign-up for our weekly e-blast, for free vocal tips & tricks.\\n\\nMeet the vocal expert, Elizabeth Zharoff. Ms. Zharoff has performed 17 languages, throughout major venues in Europe, Asia, Canada, and the United States. She has degrees in music and voice from Oberlin Conservatory, Berklee College of Music, and the Curtis Institute of Music. Ms. Zharoff has a uniquely modern career, bridging the gap between voice and technology. She has directed an album and lent her voice to over 50 titles in video game music, in addition to defining the speaking voice for an emotionally complex AI assistant. You can learn more about her at http://elizabethzharoff.com.',\n",
       "  9920,\n",
       "  1257126,\n",
       "  70,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=jtgtMFZzEXo',\n",
       "  'Voice Coach/Opera Singer REACTION & ANALYSIS of OGNI PIETRA (Dimash Kudaibergen)',\n",
       "  \"Join Elizabeth Zharoff as she listens to Dimash Kudaibergen wow and astound yet again, in this performance spanning over 3 octaves!\\n\\nOgni Pietra was originally written for Dimash by Russian composer Igor Krutoy (lyrics by Lilia Vinogradova), and it was premiered in 2019 in Minsk, Belarus.\\n\\nWant to watch the two videos shown without pauses? Here are links:\\nhttps://www.youtube.com/watch?v=8k1AHMxq-0g&feature=youtu.be\\nhttps://www.youtube.com/watch?v=dkPS6t84qg4\\n\\nWant more Dimash reaction videos?\\nhttps://www.youtube.com/watch?v=_wJJ2XK8azE&lc=z22hw3ho3migerfai04t1aokgxyol1f0wvdznyo42mknrk0h00410\\n\\nTwo great articles on vocal registration:\\nhttp://www.ncvs.org/pas/2004/pres/thurman/ThurmanPaper.htm\\nhttp://www.singwise.com/cgi-bin/main.pl?section=articles&doc=UnderstandingVocalRangeRegistersAndType\\n\\nOn-the-road to 10,000 subscribers! I have tons of videos about vocal technique and science. Here's a few I recommend:\\nThe Countertenor: https://www.youtube.com/watch?v=A7dCyqvzUn0\\nThe Ugliest Sound in the World (and how to make it): https://www.youtube.com/watch?v=e7TDac1D94Q\\n\\n--------\\n\\nElizabeth Zharoff is an international opera singer and voice coach, with 3 degrees in voice, opera, and music production. Currently based somewhere between Los Angeles and Tucson, Arizona, Elizabeth spends her days researching voice, singing, teaching, writing music, and recording TONS. She also plays Diablo and Dungeons & Dragons.\\n\\nLearn more at http://thecharismaticvoice.com\\nFollow me on instagram at: @thecharismaticvoice\\n\\nWant a free voice lesson? Sign-up to WIN at http://bit.ly/freevocalcoaching\",\n",
       "  '2020-03-16T15:00:12.000Z',\n",
       "  156210,\n",
       "  7258.0,\n",
       "  831.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCTOgK9qw_1qfMSYi6m1omvg',\n",
       "  nan,\n",
       "  nan,\n",
       "  'culturry@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  9700,\n",
       "  720163,\n",
       "  23,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=2pndocPmze8',\n",
       "  'Khoya hain Song Reaction | Dhivara | Baahubali | Prabhas | Tamannaah',\n",
       "  'We react to Baahubali 1 song Khoya Hai (Dhivara). It was really a wonderful song and we loved it! Looking forward to watch the part 2 trailer.\\n\\nOriginal Video Link - https://youtu.be/_2clW8Zxq88\\n\\nFollow us on: \\n\\nInstagram - CultureCurryReaction\\nTwitter - @CurryReactions\\n\\nBusiness Enquiries - culturry@gmail.com\\n\\n#Baahubali, #Prabhas, #India, #Dhivara, #khoyahain\\n\\nFAIR-USE COPYRIGHT DISCLAIMER\\n\\n* Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, commenting, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.\\n\\n-This video has no negative impact on the original works (It would actually be positive for them)\\n-It is not transformative in nature.\\n\\nWe do not own the clips and music we use in most cases. Our understanding is that it is in correlation to Fair Right Use, however given that it is open to interpretation, if any owners of the content clips would like us to remove the video, we have no problem with that and will do so as fast as possible. Please message us on YouTube/Twitter/Instagram if you have any concerns.\\n\\nWe believe these videos are fair use because we do not wish to  decrease the market value of the original content, if anything we hope to promote the content so that people can reach out and subsequently increase the market value. \\n\\nLastly these videos are to educate people in an entertaining fashion. Given these are very short videos, the short parts we use within them act as a catalyst to further reading',\n",
       "  '2020-03-19T08:25:48.000Z',\n",
       "  122355,\n",
       "  4597.0,\n",
       "  216.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCVI7i6xM2MkdWTTMJcMTDCw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'hi, i react to music and other things.',\n",
       "  9320,\n",
       "  639320,\n",
       "  172,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=1BgoYPEVSu8',\n",
       "  'KESHA: High Road Reaction (ALBUM review)',\n",
       "  'Hey guys! KESHA is BACK with a new album named High Road - and I was so excited to hear it! I have heard 2 of the singles already, “My Own Dance” and “Raising Hell”, and I loved the vibe she has in her new era. What do you guys think of the album? Let me know in the comments below!\\n\\nFeel free to suggest new music to me every week! \\n\\n#Kesha #HighRoad #Reaction\\n\\nSongs Used In This Video: \\nKesha - High Road (the entire album)\\n\\nStream “High Road” here: \\n\\nApple Music - https://music.apple.com/us/album/high-road/1484385866\\n\\nSpotify - https://open.spotify.com/album/4HZ195qaMlhiKebUtF36ni\\n\\nWatch my “My Own Dance” reaction here: https://youtu.be/iSE5r6-fgsA\\n\\nI do not own the rights to these songs, and I am able to use them under the Fair Use doctrine. \\n\\n----------\\nInstagram: https://bit.ly/2IZpmOi | (@stochie)\\nTwitter: https://bit.ly/2IXhywC | (@stochie)\\nFacebook: https://bit.ly/2ulwHxE | (@landonmarkYT)',\n",
       "  '2020-01-31T19:29:53.000Z',\n",
       "  2206,\n",
       "  149.0,\n",
       "  42.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCGXFUo0BRlnf1rfFuJfW4rA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Novateur Films aims to produce video mainly not only to entertain but to educate the viewers in a creative way.\\nWe have a plenty of genres here be it Pranks,portraits,short films and a bunch of videos for you all to watch.\\nPlease Support us and help us grow..\\n\\n\\nInsta-https://www.instagram.com/roland_j_lulam\\nhttps://www.Instagram.com/novateur_films_official\\n\\nInsta-https://www.instagram.com/ji_young_forever',\n",
       "  8810,\n",
       "  549215,\n",
       "  88,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=alUusmspcz0',\n",
       "  '\"Sahara\" Tribal Rain New Song/ Sara and Priscilla Cover / Reaction',\n",
       "  'Sahara is a New Release Song of Tribal Rain which was released about 6 months ago in the loving memory of Late Rahul Rai.\\n\\nSara and Priscilla\\'s Channel-https://youtu.be/yqRxswPkWOI\\n\\nOfficial \"Sahara\"-Tribal Rain Link-\\nhttps://youtu.be/86ic_oHp47E\\n\\n\\nLyrics- Late Rahul Rai \\nVocal: Late Rahul rai \\nMusic Composition - Late Rahul Rai\\n Guitar: Pravesh \\nBass: Nitesh \\nMusic Production - Live and Loud Records Video Credits: Video Production - Fuzz Factory Produced by - Cafe Live and Loud Actor: Aagaman Kc and Achaean Kc \\nDirector: Prajual Bhattarai and Barkha Mukhtiyar Cinematography : Prajual Bhattarai \\nEditor:Barkha Mukhiya\\n VFX: Raywot Shrestha\\n Creative Producer :Rohit shakya \\nArt Director :Nidhal Bajracharya\\n Art Assistant : Bisesh Timilsina \\nProduction manager:Prabeshpiya \\nProduction assistant Sanjay\\n MUA: Sukriti \\nLights : Deependra Thapaliya\\n\\n Special thanks to Manjit lama and Sabrina Dangol Prasanna Bijukchhe and his friends for Venue, Godawari Botanical garden, Sradeep Pradhan,Prateek gauche and Srijana regmiry For many of us this may come as a painful reminder of our loss , and yet it is also as much a celebration of what we had, and what we still have and will forever remain. Our brother Late Rahul Rai the front man of Tribal Rain , a local band from Namchi, Sikkim, was not only an artist but an inspiration for many musicians around the world , especially in Sikkim, North Bengal, and Nepal. We believe there are many lives touched by Rahul\\'s music , influencing them to make great music compositions.His music truly speaks for itself and we acknowledge his contribution as one of the best from Sikkim. We at Cafe Live and Loud and The Live and Loud Records take the pleasure of releasing this Song and the Music Video in the loving memory of our brother Rahul Rai. We do this as a mark of respect for our super talented brother, and also to encourage many other Rahul\\'s from Sikkim , that maybe simply waiting to bloom. Hope you enjoy this video and the soulful music .\\n\\nNovateur Films Official..\\n\\nOur Most Popular Videos.\\n\\nXorem,Gracy,Ana and Xoyean\\'s portrait.\\nhttps://youtu.be/1lFSHHPcDLQ\\n\\nPrank(Khelney Ho)+110kviews.\\nhttps://youtu.be/OUyb4Gvro8E\\nhttps://youtu.be/7bcxvixifvg\\n\\nMusic Videos-\\nhttps://youtu.be/DFe0sZA3VSo (Made in Darjeeling ft TWk Lets talk about Love)\\nhttps://youtu.be/sgqA0sjjrOo (Runaway ft TWk.Love in Darjeeling).\\n\\nXorem\\'s Portrait .\\nhttps://youtu.be/C2zJGKuyKhk\\nhttps://youtu.be/zbhPNEvhcXY\\n\\nBest Reaction Video.\\nhttps://youtu.be/OwV-wYsRQa8\\nhttps://youtu.be/xFtMDyolq5M\\n\\nJr Alli Inspired(Cinematic).\\nhttps://youtu.be/pAVx1FKpBfA\\nhttps://youtu.be/buWWUMAJJE8\\nhttps://youtu.be/mrM1oWkcaJ4\\nhttps://youtu.be/PSP6GZo6GNw\\n\\nOur Official pages:-\\nhttps://www.Instagram.com/Roland_j_lulam_rai\\n\\nNovateur Films Official insta Page.\\nhttps://www.Instagram.com/novateur_films_official\\nPlease Share and Subscribe the Channel and help us grow..',\n",
       "  '2020-04-16T12:11:01.000Z',\n",
       "  369,\n",
       "  58.0,\n",
       "  6.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCUzY5Bs90kiHC9hafd82rIw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"नमस्ते !\\nHello ~ I'm Dong from south Korea , Seoul !\",\n",
       "  8710,\n",
       "  1157811,\n",
       "  41,\n",
       "  'KR',\n",
       "  'https://www.youtube.com/watch?v=MOvCEltmPsY',\n",
       "  \"'Hook up song' Reaction by Korean Men｜Tiger Shroff & Alia｜Student Of The Year 2｜Neha Kakkar｜Eng sub\",\n",
       "  \"Hook Up Song - Student Of The Year 2 | Tiger Shroff & Alia | Vishal and Shekhar |Neha Kakkar|Kumaar|Reaction by foreigners\\n\\nHi I'm Dong \\nThis time, I showed my sister 'Hook up song' music video :)\\n\\nWe always read all of your comments.👍\\n➡️Instagram : Korean_menv\\n https://www.instagram.com/korean_menv\\n\\n#Tigershroff #aliabhatt #hookupsong #studentoftheyear2 #koreanreaction\",\n",
       "  '2020-03-06T11:50:03.000Z',\n",
       "  139596,\n",
       "  3631.0,\n",
       "  133.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCTFQg81p8ohwLIwq-icmDMQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@rahulbhat21',\n",
       "  'Follow me and Nitika in our travels.',\n",
       "  8600,\n",
       "  623937,\n",
       "  92,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=RB4UWGCuvgg',\n",
       "  'TIBEYAN DA PUTT Reaction | Sidhu Moose Wala | Latest Punjabi Song 2020',\n",
       "  'Connect with us on Instagram \\n\\nhttps://www.instagram.com/rahulbhat21/\\nhttps://www.instagram.com/nitikabakhshi/\\nhttps://www.instagram.com/rambaho21/\\n\\n\\nAfter the Success of \"Old Skool\"  Sidhu Moose Wala Presents \"TIBEYAN DA PUTT\"\\n\\nVideo link - https://youtu.be/twCHVhk8iMU\\n\\nSinger & Lyrics/Composer - Sidhu Moose Wala\\nMusic - The Kidd\\nDirected by - HUNNY SINGH AND PULKIT SETIA PK\\nOnline Promotions - Gold Media\\nSpecial Thanks - MAND \\n\\n\\nTeam TIBEYAN DA PUTT :-\\n\\nAsst Dir - Shavvy & Bhart Sharma\\nDOP - Pulkit Setia PK\\nEdit & DI - Vicky Kamboz\\nVideo Coordinator - Jaspreet Singh\\nSubtitle (english) - Surinder Narula\\nPhotography - J Singh\\nDirected by - HUNNY SINGH AND PULKIT SETIA PK\\n\\nDigital Distribution Partner : Sky Digital\\n#SidhuMooseWala #NewPunjabiSong #TibeyanDaPutt',\n",
       "  '2020-03-17T11:34:14.000Z',\n",
       "  175775,\n",
       "  11292.0,\n",
       "  1076.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCPg-RbwDNtsRIFHrzIx0cfw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"I am Simply K.Simone !\\n\\nMy Channel is simply ME ! From attempted mukbangs, reaction videos, cooking, how too's,  Asmr and motivational and inspirational videos it's one stop shop!\",\n",
       "  8180,\n",
       "  1244369,\n",
       "  379,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=l8WO3o7L8a4',\n",
       "  'My First Time Listening To Elvis Presley - In The Ghetto Reaction Video',\n",
       "  '#elvisPresley #intheghetto #simplyksimone #elvisPresleyreactionvideo #reactingtoelvis #elvispresleyintheghetto #elvispresleyintheghetto #elvispresleyintheghettolive #firsttimelisteningtoelvis #elvispreslylive #elvispresleyperformaces #Elvislive #Elvisintheghetto\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, commenting, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use. No Copyright infringement intended',\n",
       "  '2020-01-11T17:30:00.000Z',\n",
       "  76983,\n",
       "  2420.0,\n",
       "  nan],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCB9b0XD1WtK73vBZ563p2iw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'allkpop | Breaking K-pop news, videos, photos and celebrity gossip',\n",
       "  7350,\n",
       "  7972581,\n",
       "  16633,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=Qr4p4SnB4V8',\n",
       "  'Oli London Drops A Teaser For New Music Video, And Reactions Are Already Scathing',\n",
       "  'Oli London Drops A Teaser For New Music Video, And Reactions Are Already Scathing\\r\\nSelf-proclaimed K-Pop star and reality TV personality Oli London has long been a topic of debate among K-pop fans.He’s most well-known for his apparent obsession with BTS‘s Jimin and his desire to look like him, and has spent over $150,000 on surgery to meet this goal. He has gone through at least 15 fairly drastic surgeries, and has appeared on a variety of TV shows such as E! Botched, Dr. Phil, and Today Show Australia to talk about himself and his aspirations.London also, however, seems to desire to follow after his idol’s career goals and has released a couple of music videos, with this newest release, “Mirror Mirror”, being his fourth.\\xa0 He recently came out with the teaser for the upcoming single.Oli’s desire to break into the K-Pop industry has been heavily criticized since his first release, “Perfection”, in 2019, though the song hit #31 on the iTunes K-Pop chart and the music video received over 1.2 million views.\\xa0 His second and third releases – “Butterfly” and “Heart of Korea” – peaked at #8 on the chart.The message behind his new song addresses his haters and tells them to turn the mirror towards themselves and examine their own reflection. If it’s anything like his past three music videos, it’s sure to cause a stir in the K-Pop community – though likely not a positive one, given the massive amount of dislikes and scathing comments already posted on the teaser.\\xa0 “Mirror Mirror” is set to release on March 1.\\r\\n***************************************************************************\\r\\n••••INFORMATION\\r\\n\\r\\n---------------------------------------------------------------------------\\r\\n\\r\\nVideos can use content-based copyright law contains reasonable use Fair Use (https://www.youtube.com/yt/copyright/)\\r\\nVery excited to partner with other electronic newspaper pages.\\r\\nPlease send me an email\\r\\nThanks you for watching',\n",
       "  '2020-02-18T04:35:10.000Z',\n",
       "  56,\n",
       "  0.0,\n",
       "  0.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCQr0tDr2QaVQtDk24qYDMGQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@djgohamonem',\n",
       "  'I go ham in the AM',\n",
       "  7170,\n",
       "  475328,\n",
       "  254,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=6ISPQeomJyc',\n",
       "  'LIL DARKIE - RAP MUSIC (PROD. WENDIGO) REACTION',\n",
       "  'WHY IS THIS SONG CALLED RAP MUSIC WHEN ITS WESTERN MUSIC?\\nhttps://www.instagram.com/djgohamonem/',\n",
       "  '2020-03-17T03:25:22.000Z',\n",
       "  80380,\n",
       "  4289.0,\n",
       "  278.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCCcvSvHckzXkxVkVISVyAGA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'The Grind Never Stops',\n",
       "  7170,\n",
       "  1268125,\n",
       "  110,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=xWml0QOA_B4',\n",
       "  'The Weeknd - Blinding Lights (Official Video) REACTION',\n",
       "  'Thanks for all the love and support make sure you Like, Subscribe, and share this video road to 10000 Thanks for 100,000 views and 5000 subscribers.\\n\\nWE DO NOT OWN THE COPYRIGHTS TO THE MUSIC IN THIS VIDEO.\\n\\nHit The Bell To Get Notification When I Post Also Don’t Forget To Subscribe To My Channel-https://www.youtube.com/channel/UCCcvSvHckzXkxVkVISVyAGA\\n\\nOriginal Video-https://youtu.be/4NRXx6U8ABQ\\n\\nPrevious Video-https://youtu.be/nF4Gg3k7BnQ\\n\\nRoddy Ricch - Bacc Seat (Instrumental) Prod by OG GENIUS-https://youtu.be/HZ1pqlb3M1k\\n\\nFunnyboi Stef-https://www.youtube.com/channel/UCzTvxDZHShetRA6NFT94n1Q\\n\\nInstagram-DaveThatUglyBoi\\nSnapchat-real_niggadave\\nTwitter-Dkjay81\\n\\nJontae-https://instagram.com/jontaepeterson?igshid=7nwm8jlksuqv\\n\\nStef’s socials- https://instagram.com/funnyboi_stef?igshid=1dj67zmgedvrf\\n\\nDre-https://instagram.com/_.dre._314?igshid=akd646bwf3ca\\n\\nKB-https://instagram.com/_kinno?igshid=1mhtv5og1g66r\\n\\nIntro Song- 2K20- “Sada Baby”\\n\\nSong: Blinding Lights - The Weeknd \\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-01-22T17:07:27.000Z',\n",
       "  70687,\n",
       "  1329.0,\n",
       "  80.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCr6LATFHynG-69U26ZHb7sQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@kingjames313',\n",
       "  'Everything I do is LIT 🔥',\n",
       "  7110,\n",
       "  552404,\n",
       "  65,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=kKHOthfjrVM',\n",
       "  '1st Time Hearing Doja Cat - Say So (Official Video) | Reaction',\n",
       "  '#dojacat #sayso #hotpink\\n\\nThanks for watching.. Let’s get to 2k SUBS !!!! \\n\\nFollow me on Instagram:\\nhttps://www.instagram.com/kingjames313/?hl=en\\n\\nLetsssss Goooooo!',\n",
       "  '2020-02-27T20:35:27.000Z',\n",
       "  228713,\n",
       "  8974.0,\n",
       "  831.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCaj_DGcv_k4RvCA16aMaRYA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'timeoutwithsavioandjonathan@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  7030,\n",
       "  1127510,\n",
       "  122,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=JWBDO1NVMeY',\n",
       "  '#AlaVaikunthapurramuloo - ButtaBomma Full Video Song Reaction (4K) | Allu Arjun | Trivikram | Thaman',\n",
       "  '#AlaVaikunthapurramuloo #ButtaBomma #AlluArjun\\r\\n\\r\\n#AlaVaikunthapurramuloo - ButtaBomma Full Video Song Reaction (4K) | Allu Arjun | Trivikram | Thaman S\\r\\n\\r\\nSocial Media:\\r\\n\\r\\nEmail: Timeoutwithsavioandjonathan@gmail.com\\r\\n\\r\\nInstagram:\\r\\n\\r\\nSavio Jose : @OfficialSavioJose ( https://www.instagram.com/OfficialSavioJose  )\\r\\n\\r\\nMegan Rauch : @Fit.KingsFan8 (https://www.instagram.com/fit.kingsfan8)\\r\\n\\r\\nJonathan Bosco : @JonathanBoscoJB ( https://www.instagram.com/JonathanBoscoJB  )\\r\\n\\r\\nTime Out With Savio And Jonathan : @TimeOutWithSavioAndJonathan  (https://www.instagram.com/TimeOutWithSavioAndJonathan  )\\r\\n\\r\\nFacebook: www.facebook.com/timeoutwithsavioandjonathan \\r\\n\\r\\n\\r\\n\\r\\nWE DO NOT OWN THE VIDEO OR THE SONG!\\r\\n\\r\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-03-02T04:52:14.000Z',\n",
       "  234838,\n",
       "  5626.0,\n",
       "  186.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCo0fGPCMXv41mOF-w7Z4b1A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@jeanettedraeger',\n",
       "  \"Hi, I am Jeanette. Thank you for coming by. Why don't you stick around a little. I would love for you to become a part of my youtube family:) Subscribe it's free\",\n",
       "  6990,\n",
       "  407916,\n",
       "  26,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=9Zp8IN47Y-U',\n",
       "  'Jai Jai Shivshankar | Music Video | Reaction | German Girl | Jeanette Draeger',\n",
       "  'Follow me on Social Media:\\nInstagram: https://www.instagram.com/jeanettedraeger/\\nTwitter:       https://twitter.com/jeanettedraeger\\n\\nOriginal Video: https://www.youtube.com/watch?v=oGneAab3e88\\n\\nHi everyone, as so many of you wanted me to do more reaction videos I decided to do a reaction on Jai Jai Shivshankar from the movie War, a song that was highly requested from you guys. Thank you so much for suggesting this song to me, I really really enjoyed it! \\nThank you so much for all your support❤️',\n",
       "  '2020-03-14T09:32:49.000Z',\n",
       "  64140,\n",
       "  2503.0,\n",
       "  169.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCzOsiN8bfkrmHG6quy7a3UA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@_n3xtup_',\n",
       "  '\"Next Up\" was established in 2018 by M.O and Dr3am. Our vision is to give underground artists a platform to grow and develop into the artist they want to become. We also have a strong passion for shining a spotlight on unrecognized talent. Not only is our content for promoting and helping underground artists, but we also cover mainstream artists and trending topics in music. We also from time to time will do song and music video reactions.   \\n  \\nM.O and Dr3am are both music influencers that are very passionate about helping underground artists grow, expand their brand, and become the best artist they can be.\\n\"Next Up\" is not only a platform, but we are a community & family!\\n\\nGOALS*\\n- Become one of the Biggest Music Plaforms/Brands on the Planet.\\n- Discover your Next Favorite Artist\\n- Help Artists Build their Brand, and Grow a Following.\\n- Give the World a NEW Outlook on the Underground Music Scene\\n- As of right now (10k Subscribers)',\n",
       "  6960,\n",
       "  373981,\n",
       "  151,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=OgMiBv_7chQ',\n",
       "  'DRAKE - When To Say When & Chicago Freestyle REACTION *NEW Song*',\n",
       "  'Drake - When To Say When & Chicago Freestyle Reaction\\n\\nToday we\\'re doing a reaction on Drake and his brand new song \"When To Say When & Chicago Freestyle\". As Drake gears up his brand new album dropping in 2020 he gives us a teaser and builds even more buzz to what he has in store for us this year.\\n\\nLet us know in the comment section if you like Drake\\'s new single \"When To Say When & Chicago Freestyle\", and give us your opinion on it.\\n\\nFull Song & Video Link: https://www.youtube.com/watch?v=0jz0GAFNNIo\\n\\nFollow \"Next Up\" on all our social media accounts:\\n\\nFollow us on Instagram: https://www.instagram.com/_n3xtup_/\\nFollow us on Twitter: https://twitter.com/n3xtup_\\nFollow us on Soundcloud: https://soundcloud.com/n3xtup\\nFollow on Twitch: https://www.twitch.tv/nextupsoundcloud\\nLike on Facebook: https://www.facebook.com/n3xtupShow/\\n\\nDr3am\\'s official instagram: https://www.instagram.com/skeetboicarti/\\n\\nColdmelo\\'s official Instagram: https://www.instagram.com/coldm3lo',\n",
       "  '2020-03-02T07:58:45.000Z',\n",
       "  1182,\n",
       "  47.0,\n",
       "  16.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCHW17Wyvf5ORIV8-Gi3U0Pg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  6510,\n",
       "  999130,\n",
       "  86,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=kSnY88cZG24',\n",
       "  'VAATHI COMING Song Reaction | MASTER | Thalapathy Vijay | Anirudh',\n",
       "  \"FFP is here with the highly awaited VAATHI COMING lyric song reaction! A mass thara local number from our kuthu specialist Anirudh! We cannot even comprehend just how amazing Thalapathy's dance steps are going to be for this track, but we are beyond waiting for the movie more than ever after this song! Enjoy!\\n\\n#ThalapathyKuthu! #VaathiComing #Thalapathy #ThalapathyVijay #Master #LokeshKanagaraj #Anirudh #ThalapathyKuthu #TharaLocal\",\n",
       "  '2020-03-11T04:38:19.000Z',\n",
       "  59997,\n",
       "  3466.0,\n",
       "  69.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCorQfGO-0TMALxiDMEMjWdg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"NicksMyName | Welcome to my channel! If you're new here, be sure to check it out, I make all kinds of different videos. Sometimes I make tech videos, sometimes I make food videos, and sometimes I just make weird videos with my friends! Feel free to hit SUBSCRIBE if you're down to join in on the random stuff that goes on in my life - I post new videos every week!\",\n",
       "  6190,\n",
       "  639571,\n",
       "  152,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=AAbdfHDyNUw',\n",
       "  'Selena Gomez - Rare (ALBUM REACTION)',\n",
       "  'Selena Gomez Rare (ALBUM REACTION) | Selena Gomez just released her new studio album titled \\'Rare\\' so in today\\'s video we\\'re doing a Selena Gomez RARE REACTION! Following her lead single \\'Lose You To Love Me\\', THE ALBUM IS HERE! I\\'ve been waiting for Selena Gomez to drop a new album for years now so I\\'m so excited it\\'s finally here!! SPOILER: It\\'s honestly so good, and might be Selena\\'s best album yet idk. Selena released her last album \\'Revival\\' almost 4 years ago and finally made a return. During her break from music she did release singles such as Wolves, Bad Liar, Back to You, and more, but I\\'ve been ready for a new Selena Gomez Album I WAS READY FOR THE WHOLE DANG THING and she DELIVEREDDDD! Selena\\'s break really paid off! #SelenaGomez #Rare #SelenaGomezRare\\n\\nLET ME KNOW WHAT YOUR FAVORITE TRACK IS IN THE COMMENTS BELOW! \\n\\nSelena Gomez \\'Rare\\' ALBUM: https://smarturl.it/RareSG\\nTRACKLIST: \\nSelena Gomez - Rare\\nSelena Gomez - Dance Again\\nSelena Gomez - Look At Her Now\\nSelena Gomez - Lose You To Love Me\\nSelena Gomez - Ring\\nSelena Gomez - Vulnerable\\nSelena Gomez - People You Know \\nSelena Gomez - Let Me Get Me \\nSelena Gomez - Crowded Room (feat. 6LACK)\\nSelena Gomez - Kinda Crazy \\nSelena Gomez - Fun \\nSelena Gomez - Cut You Off\\nSelena Gomez - A Sweeter Place (feat. Kid Cudi)\\n\\nDon\\'t forget to Subscribe for more & give the video a THUMBS UPPPPPPPP! \\n\\nFollow my social media accounts: \\nINSTAGRAM: instagram.com/nickpalmai \\nTWITTER: twitter.com/palmainick \\nSpotify: https://open.spotify.com/user/fakl09xk860rhissmmuvmpzm1/playlist/4bFNLNZxfuj5wMBKqW4QP2?si=PRCiibsVSoKXFHjeTJNQFA\\n\\nSAVE$$: \\nUse code 15NICK for a Casetify DISCOUNT: http://bit.ly/2LDeZjx \\nWildflower Cases Discount: http://rwrd.io/fz4594g\\nVibeSZN 50%OFF CODE: NICKP https://www.vibeszn.com \\n\\nMore Videos to watch: \\n\\niPhone 11 Pro Max UNBOXING: https://youtu.be/V2_9J4p9iaA\\n\\niPhone 11 Pro Max Casetify Haul UNBOXING & REVIEW: https://youtu.be/rBeIMmQFukg\\n\\nTopics in this video: Selena Gomez rare, Selena Gomez Rare Reaction, Selena Gomez rare album, Selena Gomez rare album reaction, Selena Gomez rare official video, Selena Gomez rare lyrics, Selena Gomez new album, Selena Gomez new song, Selena Gomez reaction, lose you to love me, look at her now, Selena Gomez new music, Selena Gomez album 2020, Selena Gomez songs, Selena Gomez alas 2019, Selena Gomez cut you off, Selena Gomez a sweeter place, Selena Gomez, Selena Gomez Justin bieber, Selena Gomez and Justin bieber, & MORE!\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS',\n",
       "  '2020-01-10T05:33:40.000Z',\n",
       "  18111,\n",
       "  1377.0,\n",
       "  130.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCHvqROWwom7DR_dmm_po_ag',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'I react to all kinds of K-Pop. This is my second channel after the first one got deleted in May 2019.',\n",
       "  6120,\n",
       "  1305540,\n",
       "  261,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=PhVSjotorFU',\n",
       "  \"LILI's FILM #3 Lisa Dance Performance Video REACTION | Blackpink Reaction\",\n",
       "  \"Oh wow, Lili' Film #3 is finally here & Lalisa has done it again...Blinks how are we doing after watching this? \\n\\nTwitter: @ReactsSasko \\n\\n\\n#LISA #LilisFilm #Lalisa #Blackpink #dance #performance #cover #reaction #Blink #kpop #LalisaManoban\",\n",
       "  '2020-04-20T10:09:28.000Z',\n",
       "  65370,\n",
       "  4101.0,\n",
       "  161.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCteZyz-Gw15J_SzVHx0ZnYw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@mymineogaming',\n",
       "  \"Welcome to MyMineo!\\nMyMineo brings you the latest game reviews, previews, and inside scoop on what's hot in the world of Gaming Life.\",\n",
       "  5990,\n",
       "  1066469,\n",
       "  48,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=sAaZpqpj3uc',\n",
       "  'Non-League of Legends Players React to K/DA - Pop/Stars Music Video',\n",
       "  \"WHAT'S GOING ON LEGENDS!!\\n\\nToday Your favorite crew of clueless gamers at G-Mineo are back at it again with another REACTION VIDEO!! We are reacting to the K/DA - Pop Stars Music Video, so sit back relax and enjoy 2 newbies and a league player have their minds blown!!\\n\\nWhich Cinematic trailer is your favorite??\\nLet Us Know In The Comments Below!!\\n\\nSubscribe to the YouTube Channel!!\\nhttps://www.youtube.com/channel/UCteZ... ✅\\n\\nFollow us on Instagram for Gaming News and Updates!!\\nhttps://www.instagram.com/mymineogaming/ ✅\\n\\n#leagueoflegends #cinematic #KDA\",\n",
       "  '2020-03-15T00:04:31.000Z',\n",
       "  43514,\n",
       "  1664.0,\n",
       "  110.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCa-MQ0EeoYXYL1pDElOFNTw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'isaiahpacheco85@gmail.com',\n",
       "  '@zay.ny',\n",
       "  \"What's Good ZayNY Supporters Its Your Boy Isaiah If you love my videos make sure you SUBSCRIBE, LIKE, AND COMMENT & show some love! If you have any video requests comment down below on our videos or and follow me on Twitter or Instagram! Thanks for being loyal!\",\n",
       "  5880,\n",
       "  1086380,\n",
       "  352,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=6esUBPlmo7E',\n",
       "  'DripReport - Skechers (Official Music Video) Prod. OUHBOY REACTION!!!',\n",
       "  \"SUBSCRIBE FOR MORE VIDEOS THANKS FOR WATCHING 👇🏼 \\r\\n\\n@DripReport #skechers \\n\\r\\nMAKE SURE YOU TURN ALL NOTIFICATION ON SO YOU WON'T MISS ANY NEW VIDEOS !!!!! \\r\\n\\r\\nNEW ZayNY Merch!\\r\\n▶️Store - https://teespring.com/stores/zayny-store\\r\\n\\r\\nMAKE SURE YOU SMASHH THE LIKE BUTTON !!! \\r\\n\\r\\nFollow Me On These Socia media - 👇🏼 \\r\\n▶Subscribe: https://www.youtube.com/channel/UCa-MQ0EeoYXYL1pDElOFNTw?view_as=subscriber\\r\\n▶Twitter: https://twitter.com/ZayyNY?lang=en\\r\\n▶Snapchat: https://www.snapchat.com/add/papichulo10271\\r\\n▶️Instagram: https://www.instagram.com/zay.ny/\\r\\n\\r\\n\\r\\n\\r\\nbusiness inquiries - \\r\\nIsaiahpacheco85@gmail.com\",\n",
       "  '2020-03-23T23:20:17.000Z',\n",
       "  50261,\n",
       "  1208.0,\n",
       "  85.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC-t8chTxE8IPrSorhMKb4qw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  5850,\n",
       "  1313489,\n",
       "  21,\n",
       "  'PH',\n",
       "  'https://www.youtube.com/watch?v=rvdidWacSPk',\n",
       "  'BTS MV ON [ Reaction Video]',\n",
       "  'Hello\\n\\nThis is ARMY BTS DAVAO- please stream ON',\n",
       "  '2020-03-01T07:43:06.000Z',\n",
       "  296614,\n",
       "  9085.0,\n",
       "  1501.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCkZtjo7yVnS5fr00P9wpspw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"We all share a common ancestral linguistic heritage from the Proto-Indo-European language. So as descendants of a common heritage, we thought it'll be amazing to start exploring each other's cultures!\",\n",
       "  5840,\n",
       "  693090,\n",
       "  11,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=ZEeGy85LaD0',\n",
       "  'Spanish & Italians react to Senorita | Foreigners react to Hrithik | Proto Indo Europeans',\n",
       "  'Hello friends, since Cristina mentioned about Zindagi Na Milegi Dobara, we are back with another reaction video with The Hrithik Roshan in it! Sit back and enjoy the reaction and spread the love :)\\n\\n#foreignersreacttohrithik #foreignersreacttosenorita #bollywoodreaction',\n",
       "  '2020-04-01T07:54:37.000Z',\n",
       "  317563,\n",
       "  7336.0,\n",
       "  325.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCS1fdnnESyBmkdfRcLQM7PA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Reactions To The Classics gives you unbiased reviews and reactions of classic albums from a variety of genres including Rock, Pop,  Hip Hop, Metal, Alternative, Country, Punk, and more! Join this father and son duo and occasional panel of guest reviewers will give our thoughts on how these classic albums hold up today, including our favorite tracks, lyrics, and we give an overall score of the album. \\n\\nThank you for stopping by, and if you ever have a suggestion for an album to review next please let us know in the comment section!\\n\\nHappy listening!',\n",
       "  5580,\n",
       "  756564,\n",
       "  243,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=jZHJvqvFTac',\n",
       "  'Mother and Son Reaction to 2Pac! Dear Mama Song Reaction!',\n",
       "  'Today we give our Reaction to 2Pac Dear Mama! What a fantastic song with outstanding lyrics and really enjoyed reacting to this with my actual MAMA!  Let us know what other song reactions by 2Pac we should do!\\n\\nBe sure to SUBSCRIBE to not miss out on our song reactions, album reviews and livestreams!\\n\\nSupport us on Patreon!: https://www.patreon.com/reactionstotheclassics\\n\\nJoin our Facebook Group!: https://www.facebook.com/groups/432430687517673/\\n\\nJoin our Discord!: https://discord.gg/2PY5bZM\\n\\n#Tupac #TupacReaction  #ReactionsToTheClassics #DearMama',\n",
       "  '2020-02-15T18:00:05.000Z',\n",
       "  44183,\n",
       "  1374.0,\n",
       "  367.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCz1PGQSTzWfHP6o6ZQT0aug',\n",
       "  'thelifestyleofjennys@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Am from Ghana, live in Spain, this channel is about \\n\\nUNBOXING, REACTION AND ALL THAT MATTERS \\n\\nVideo every week \\nDon't forget to subscribe    \\n\\n Check out my first channel search JENNY'S WORLD thanks \\n\\nFor collaboration and business contact these social media platforms \\n\\n\\nInstagram jenranson7 \\nFacebook  jennifer Ranson \\n\\nthelifestyleofjennys@gmail.com\",\n",
       "  4220,\n",
       "  821352,\n",
       "  320,\n",
       "  'ES',\n",
       "  'https://www.youtube.com/watch?v=0oAq3XGlDQg',\n",
       "  'LITTLE BIG - UNO - RUSSIA - OFFICIAL MUSIC VIDEO ( Eurovision 2020 ) REACTION',\n",
       "  'LITTLE BIG - UNO - RUSSIA - OFFICIAL MUSIC VIDEO ( Eurovision 2020 ) REACTION\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nSpain PayPal your SUPPORT will mean a LOT ❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤\\nhttps://www.paypal.me/Mawuenaranson\\n\\n\\n\\n\\n\\n\\n\\n\\n#reactionvideos #jennyreact #littlebig #uno #russia #officialmusicvideo #eurovision2020 #ESC2020',\n",
       "  '2020-03-13T20:21:14.000Z',\n",
       "  207576,\n",
       "  nan,\n",
       "  722.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCIT9H_1TYimoEaoThrB-ZZA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@alvarito_arguello',\n",
       "  'Entertainment and dance choreos .!',\n",
       "  3750,\n",
       "  877559,\n",
       "  17,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=RYqr3fPQdvQ',\n",
       "  'SHAKIRA & JLO -  SUPER BOWL 2020 - REACTION VIDEO',\n",
       "  'Thanks for watching! I hope you guys enjoyed it as much as we did.\\n\\nFollow me on IG: https://www.instagram.com/alvarito_arguello/\\n\\nI do not own any copyright or infringement.',\n",
       "  '2020-02-04T15:20:21.000Z',\n",
       "  835962,\n",
       "  20968.0,\n",
       "  2553.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCasn3ZRNlAFOmvtnUAqBErg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'snapchat - jhanshaw26 twitter - jen_hanshaw instagram - jenniferhanshaw',\n",
       "  3740,\n",
       "  1812701,\n",
       "  36,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=dmyxiHSoNDc',\n",
       "  'JUSTIN BIEBER \"YUMMY\" MUSIC VIDEO REACTION!!!',\n",
       "  'Go watch Justin Bieber\\'s music video for his new single \"Yummy\" here: JustinBieber.lnk.to/YummyVideo\\n\\n☆ follow me on all my social media ☆\\ninstagram: jenniferhanshaw\\ntwitter: jen_hanshaw\\nsnapchat: jhanshaw26',\n",
       "  '2020-01-04T21:31:24.000Z',\n",
       "  80523,\n",
       "  1904.0,\n",
       "  85.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCnyWGeaVSZ1WdQMpvm3MgbQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  3550,\n",
       "  3716339,\n",
       "  107,\n",
       "  'MY',\n",
       "  'https://www.youtube.com/watch?v=6QgSfGOgeUE',\n",
       "  'Idols reaction to Mamamoo performance at Seoul Music Awards 2020',\n",
       "  \"NCT Dream, Red velvet, ITZY, TXT, Ab6ix, Super Junior reaction to Mamamoo performance\\n\\n🔥SEOUL MUSIC AWARDS 2020 PLAYLIST \\nhttps://www.youtube.com/playlist?list=PLJi0EWpnpY6ns4ocoT8bnlYkAp9vh-aAG\\n\\n⭐Don't forget to like, share, comments my videos and subscribe my channel for more interesting KPOP video. Please support my channel 💚💙💜\\n\\n#SMA2020 #chungha #SEOULMUSICAWARDS\",\n",
       "  '2020-01-31T05:27:54.000Z',\n",
       "  64903,\n",
       "  996.0,\n",
       "  29.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCfH2aPc_y83ht8It3jbt1lA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  2980,\n",
       "  512513,\n",
       "  40,\n",
       "  'AE',\n",
       "  'https://www.youtube.com/watch?v=mYsSW1V7s_8',\n",
       "  'Marcelito Pomoy \"BEAUTY AND THE BEAST\" Reaction Video Compilation - Part 3',\n",
       "  '#TrendingPh\\n#AmazingSinger\\n#ViralPh\\n#MarcelitoPomoy\\n\\nThanks for watching, please like and subscribe!\\n\\n\\n📃 COPYRIGHT DISCLAIMER:\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. All of the content in this video belong to their respective owners. We do not own any of the footage shown or music used in this video.',\n",
       "  '2020-02-17T18:16:33.000Z',\n",
       "  118748,\n",
       "  1502.0,\n",
       "  20.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCi5u4BtwyMR6Q3PKQWXL79w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@jordan_f_hunt',\n",
       "  \"still learning sorry if you don't enjoy my content.\",\n",
       "  2770,\n",
       "  584856,\n",
       "  234,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=g5gTrGpwLQc',\n",
       "  'OH MY!!!😍  LILI’s FILM #3 - LISA Dance Performance Video -  (REACTION)',\n",
       "  'honestly this dance is insane lalisa is one of the best dancers and i will say this a million times she is truly amazing!!\\n\\n\\n#lilifilm3 #blackpinklisa #lalisa\\n\\n\\ninstagram - https://www.instagram.com/jordan_f_hunt/ @Lilifilm Official',\n",
       "  '2020-04-20T09:59:31.000Z',\n",
       "  42932,\n",
       "  3082.0,\n",
       "  113.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCCL3SNGTvLWkW4nYUAARs7g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'REACTION/BAR BREAKDOWN CHANNEL!! HOWEVER, THIS CHANNEL IS NOT LIMITED TO ANY SPECIFIC GENRE OF MUSIC!! I LOVE IT ALL!! MUSIC IS MY THERAPY!! I AM A 39 YEAR OLD SINGLE MOM OF ONE SON, A SCHOOL SHOOTING SURVIVOR WHERE, AT 15, I SAW MY BEST FRIEND GET SHOT & KILLED AT SCHOOL (he also shot 2 teachers...one died instantly & my Physical Science teacher miraculously survived, but never taught again), A RECOVERING ADDICT OF 8+ YEARS, A WRITER, & A NURSE FOR 20 YEARS. I AM CURRENTLY UNEMPLOYED due to medical & I need a mental/emotional break (maybe permanently) DUE TO LOSING BOTH OF MY BROTHERS (my only siblings). MY 21 YEAR OLD LITTLE BROTHER PASSED AWAY FROM BRAIN CANCER 5/24/15 & MY 46 YEAR OLD BIG BROTHER PASSED AWAY FROM LIVER FAILURE RELATED TO ALCOHOLISM 2/21/18 & IT HAS BEEN VERY DIFFICULT. I HAVE PTSD, DEPRESSION, ANXIETY, INSOMNIA, etc.... I HOPE & PRAY THAT MY CHANNEL GROWS SO I CAN PROVIDE FOR MY FAMILY WHILE DOING WHAT I LOVE: HELPING OTHERS & ENJOYING MUSIC! PLEASE SUBSCRIBE! 🙏🙏',\n",
       "  2580,\n",
       "  205683,\n",
       "  757,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=KWxY8AkdDKI',\n",
       "  'LIL WAYNE NEW 2020 ALBUM!! MAMA MIA!! NOTHING BUT BARS!! (REACTION)',\n",
       "  'PLEASE LIKE & SUBSCRIBE!!   #AprilGSquad   #LilWayneNewAlbum2020  #Funeral    \\n\\nFOLLOW ME ON:\\nTWITTER: https://twitter.com/AprilG_Showers\\n\\nDonations NOT required, but GREATLY appreciated!! http://www.paypal.me/aprilgshowers \\nhttps://cash.app/$AprilGShowers \\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-01-31T19:09:57.000Z',\n",
       "  664,\n",
       "  40.0,\n",
       "  16.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC1RYZkeINtnJCNSy-J7QBTQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  2490,\n",
       "  245245,\n",
       "  86,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=vr9P7KXLBk4',\n",
       "  \"Five Finger Death Punch 'Living The Dream' REACTION! | From NEW F8 Album | JW Reactions\",\n",
       "  \"The brand NEW song from Five Finger Death Punch 'Living The Dream' has just dropped it is so SICK!! This has set up for the release of their BRAND NEW 2020 album 'F8'. Let me know what you think of the song in the comment section below and let me know what should be the next JW reaction!\\n\\nAce of Dahlia Debut Track - https://www.youtube.com/watch?v=b37IPa2FlwI\\r\\n\\r\\nFind the track on: \\r\\nSpotify: spotify:album:6yEW5wE2hhIVJYa6bVfLNI\\r\\n\\r\\niTunes: https://itunes.apple.com/gb/album/believe-me-love-monsters-are-real-you-just-havent-hurt/1440239003\\r\\n\\r\\nDeezer: https://www.deezer.com/en/album/76788842\\r\\n\\r\\nGoogle Play:\\r\\nhttps://play.google.com/store/music/album/Ace_Of_Dahlia_Believe_Me_Love_Monsters_Are_Real_Yo?id=Bdlkxqrmjmvcm3z4xrgpvs2vmwe\\r\\n\\r\\nBe sure to Like and Subscribe to join the Journey! \\r\\nSocial Media's Below!!\\r\\n\\r\\nFollow my Instagram!\\r\\nJamie - @JamieFromAoD\\r\\n\\r\\nFollow on Twitter!\\r\\nJamie - @jamiefromaod\",\n",
       "  '2020-02-08T12:00:12.000Z',\n",
       "  3783,\n",
       "  95.0,\n",
       "  43.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCvLikAi4NF4T4FwyNBo4Waw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to the SUPERFOOD FOR THOUGHT CHANNEL with Yoga Y Yaya! \\nHere on our channel where we do Album Reviews, Weekly Podcast, Weekly Reactions, Vegan Beauty Videos, cooking videos, and Interviews of local artists.',\n",
       "  2470,\n",
       "  317007,\n",
       "  235,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=-ljTjaNp7UY',\n",
       "  'Tyga x Megan Thee Stallion \"Freak\" (Reaction Video)',\n",
       "  'WELCOME BACK! We are making sure to stay consistent with our content & keep ourselves occupied and active! For this reaction we decided to dive into the new release “FREAK” by Tyga x Megan Thee Stallion. This record is gonna slap in the clubs and definitely gonna be added to our playlist to keep our energy up! \\n\\nLet us know what you think in the comments below! \\n\\nDon’t forget to like & SUBSCRIBE so you never miss any new videos from us. We have a goal of hitting 10K subscribers on the channel by the end of 2020. \\n#MegtheeStallionxTyga #FREAK \\n\\n\\n@Megan Thee Stallion @TygaVEVO',\n",
       "  '2020-03-20T02:00:11.000Z',\n",
       "  899,\n",
       "  27.0,\n",
       "  3.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCcCK4rMvCKLRCZJN5SKJH3A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  2360,\n",
       "  199092,\n",
       "  168,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=VnivntaePZs',\n",
       "  'SHOOTER : Jayy Randhawa (Trailer) Releasing 21 Feb Pakistan Reaction | New Punjabi Movie 2020',\n",
       "  'Disclaimer : Our channel #FamousReaction is a channel which has been made for reactions on videos and it is just for entertainment .If you have any issues with the video then first contact us on our given email id and we\\'ll remove your videos if you do not find it acceptable.\\r\\n__\\r\\n\\r\\nCopyright Disclaimer : Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\r\\n\\r\\n____________________________________\\r\\nPakistani Girl And Boy Reacts On Indian Trailer | SHAMSHERA | Ranbir Kapoor in and as Shamshera\\r\\nhttps://youtu.be/VVvy7uHgHds\\r\\n\\r\\nIndian & Pakistani React On | LUST STORIES Official Trailer (2018) | Radhika Apte | Netflix\\r\\nhttps://youtu.be/-F3emejFjZ4\\r\\n\\r\\nPakistani reactions On | Dil Diyan Gallan | Tiger Zinda Hai | Salman Khan | Atif Aslam\\r\\nhttps://youtu.be/Ik-VwVDCBk8\\r\\n\\r\\nMuslim Pakistani & Indian reactions On | MOWGLI - Official Trailer | 2018 | The Jungle Book Movie\\r\\nhttps://youtu.be/X7E4uQvXOwU\\r\\n\\r\\nPakistani Reacts To | Mission: Impossible | Fallout (2018) - Official Trailer | Paramount Pictures\\r\\nhttps://youtu.be/c91Q1zYyVEw\\r\\n\\r\\nPakistani Girl And Boy Reacts On Indian Race 3 Trailer | Salman Khan | Remo Dsouza | #Race3ThisEID\\r\\nhttps://youtu.be/0e-VOpIM3Pw\\r\\n\\r\\nPakistani Girl And Boy Reacts On Indian Song | Heeriye Song Video - Race 3 | Salman Khan, Jacqueline\\r\\nhttps://youtu.be/zpOftV3Zxxk\\r\\n\\r\\n\\r\\n____________________________________ \\r\\nTags:\\r\\n\\r\\n\\r\\n#FamousReaction #TrailerReaction #PakistanReaction',\n",
       "  '2020-01-28T17:36:42.000Z',\n",
       "  3335,\n",
       "  176.0,\n",
       "  32.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCWaVZFbKW7A0CvV-nnciXfg',\n",
       "  'eros.bp95@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  '@actstory.ig',\n",
       "  \"Thank you all for coming to the channel. We'd like to thank all of you for your support. And we will always create content that is exciting, entertaining and beneficial. Thank you \\n\\nFrom Us : Act Story\\n\\n\\nJepara, Indonesia,Acoustic Guitar \\n\\nContact: eros.bp95@gmail.com\",\n",
       "  2350,\n",
       "  712023,\n",
       "  44,\n",
       "  'ID',\n",
       "  'https://www.youtube.com/watch?v=py-gOMzeOgY',\n",
       "  \"REACTION!! SLASH GNR SAAT MELIHAT VIDEO ALIPBATA | SWEET CHILD O'MINE (PARODY)\",\n",
       "  \"REACTION!! SLASH GNR SAAT MELIHAT VIDEO ALIPBATA | SWEET CHILD O'MINE (PARODY)\\n\\nIg:http://www.instagram.com/actstory.ig/\\n\\n#ALIPBATA #REACTION #SLASHGNR\",\n",
       "  '2020-02-20T08:55:24.000Z',\n",
       "  345165,\n",
       "  2778.0,\n",
       "  132.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCZrkDwsbBZRqHmeizQUrvmA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@thenautankiqueen',\n",
       "  nan,\n",
       "  2130,\n",
       "  177289,\n",
       "  60,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=enN34sUIFNc',\n",
       "  'Yo Yo Honey Singh : LOCA (Official Video) Song Reaction / Review',\n",
       "  '#Honeysingh #SongReaction #LocaSong\\n\\nHoney Singh Loca Song Reaction/ Review....\\n\\nSubscribe Our Channel For More Reaction / Reviews...\\nWatch and Enjoy the video without Getting offended. If you liked the video, don\\'t forget to leave a comment..\\nFollow me on instagram- https://www.instagram.com/thenautankiqueen/\\n\\nCopyright Disclaimer under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-03-03T13:08:34.000Z',\n",
       "  7814,\n",
       "  457.0,\n",
       "  30.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCEhj3njmHhqOf0JuaruSaWQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@simoncvercko',\n",
       "  'Yerrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr',\n",
       "  2000,\n",
       "  55792,\n",
       "  1,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=MIHxfFvk-8M',\n",
       "  'HIS BEST SONG?! | Playboi Carti - @MEH [Official Video] REACTION AND REVIEW! 🔥',\n",
       "  'TODAY YA BOI will be reacting to Playboi Carti - @ MEH [Official Video]\\n\\n#PlayboiCarti #WLR #MEH \\nMy Socials:\\nInstagram: https://www.instagram.com/simoncvercko/\\nSubscribe!: https://www.youtube.com/channel/UCEhj3njmHhqOf0JuaruSaWQ?view_as=subscriber\\n🔔Make sure to enable ALL notifications!🔔\\n\\nWatch This Video: https://www.youtube.com/watch?v=yUf0o7LC6HQ\\n\\nPlayboi Carti - @ MEH [Official Video]\\nhttps://www.youtube.com/watch?v=nMDOSLEVdBw',\n",
       "  '2020-04-16T18:37:50.000Z',\n",
       "  56277,\n",
       "  nan,\n",
       "  2247.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCIAyva54masrPsOwTvHTtoA',\n",
       "  'shellyupnext@gmail.com',\n",
       "  nan,\n",
       "  'shellyupnext@gmail.com',\n",
       "  nan,\n",
       "  'Twitter: @ShellyUpNext \\nInstagram: @ShellyUpNext\\nTwitch: ShellyUpNext\\n\\nNew Videos Every Week!!\\n\\nFor Sponsored Reaction Requests & All Business Inquiries Only:\\nshellyupnext@gmail.com',\n",
       "  1940,\n",
       "  226176,\n",
       "  69,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=GeqXAQZ9OjI',\n",
       "  \"FaZe Rug Can Rap??? 😯🔥 FaZe Rug - Goin' Live (Official Music Video) *REACTION*\",\n",
       "  'FaZe Rug - Goin\\' Live (Official Music Video) *REACTION*\\n\\nOriginal Video: https://www.youtube.com/watch?v=I5fmNdnPjpM\\n\\nHope Y’all Liked this Video, SMASH the LIKE Button!!\\nTap the Bell to Turn On Post Notifications So You Don\\'t Miss a Video!!\\n\\nFollow Me On Instagram: https://www.instagram.com/shellyupnext\\nFollow Me On Twitter: https://www.twitter.com/shellyupnext\\nFollow Me On Twitch: https://twitch.tv/shellyupnext\\n\\nFor Sponsored Reaction Requests & Business Inquiries Only:\\nshellyupnext@gmail.com\\n\\nSubscribe to My Channel: https://youtube.com/shellyupnext\\n\\nFair Use: https://www.copyright.gov/fair-use/more-info.html\\n\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS*',\n",
       "  '2020-01-27T23:07:06.000Z',\n",
       "  75218,\n",
       "  1463.0,\n",
       "  347.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCUMIHYpXVXdqq05KMngJi_Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  'zilliontalkies3@gmail.com',\n",
       "  nan,\n",
       "  'Hey Guys we started this Channel on 28th August 2019 and hope for a good Youtube Career. So Our Main Motive is Vlogging we do Food Vlogs, Market Vlogs, Event Vlogs & Social Topics Vlogs. We are 3 friends Shan, Rehman & Umair.\\n\\nVlogging is not that easy and we are learning day by day and getting better day by day..\\n\\nWe Need your Support to be good in all respective fields. Thank you for your support and Thanks Youtube for providing us such Opportunity :)',\n",
       "  1830,\n",
       "  124443,\n",
       "  136,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=7OfYqaSFP5M',\n",
       "  'Mela Loot Liya Public Reviews | Ali Zafar New Song | Bhai Hazir Hai | Ali Zafar | Cricket Anthem |',\n",
       "  '#melalootliyapublicreviews #melalootliya #alizafar\\n\\nthankyou soo much people for sending us your videos keep supporting both ali zafar and ali azmat both are our Pakistani Stars..\\n\\nThanks for your support\\n\\nMelaa Loot Liya Ali Zafar :)\\n\\nHere is thanks giving to bhaee ali zafar well done bro just in 6 days you have rocked the world stay blessed for such a great song...\\n\\nNote: All the Pictures are used for informational purpose.\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n\\nOur Facebook Link : https://www.facebook.com/ZillionTalkies/\\n\\nJoin us on Instagram: https://www.instagram.com/zilliontalkies\\n\\njoin us on facebook and instagram.\\n\\nPlease don\\'t forget to subscribe and like our channel we need your support\\n\\nNarrated & Video: Rehman\\nDialogues by : Rehman\\nVideo Edit: Rehman\\n\\nMusic Credits: Youtube Audio Library\\n\\nyour feedback will be appreciated contact us at zilliontalkies3@gmail.com\\n\\nLike and Subscribe us',\n",
       "  '2020-03-01T20:44:32.000Z',\n",
       "  729,\n",
       "  36.0,\n",
       "  5.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCwmWtZaD-LmIAhcnII1B0xw',\n",
       "  nan,\n",
       "  nan,\n",
       "  'robertroque434@gmail.com',\n",
       "  nan,\n",
       "  'Dagdag kaalaman sa buhay at Music :)',\n",
       "  1810,\n",
       "  42877,\n",
       "  149,\n",
       "  'PW',\n",
       "  'https://www.youtube.com/watch?v=hWjgcG4iz5I',\n",
       "  'Jireh Lim - Sabik (Official Music Video) Reaction Video',\n",
       "  '#Jireh Lim - Sabik (Official Music Video) \\n#Jireh Lim - Sabik (Official Music Video) \\n#Jireh Lim - Sabik (Official Music Video) Reaction video\\n#SabikSayo\\n#ZeinabHarake\\n#JirehLim\\n#Minamahalkita\\n#JirehLimOfficialMusicVideo\\n#SabikOfficialMusicVideo\\n#JirehLim2020\\n#ReactionVideo\\n#VideoReaction\\n\\nJireh Lim 2020 New Release Original Song \"Sabik\" Official Music Video🇵🇭💓 , and this is my reaction video of this sOngs,💓\\nDont Forget To Subscribe and Hit the Notification Bell💓\\n\\nCredits to my Intro and Outro Music Background,\\n\\nPandaRevolution - https://www.youtube.com/user/PandaRev...\\nTwitter - https://twitter.com/Panda_Rev\\nSoundcloud - https://soundcloud.com/pandarevolution\\nLatest Uploads - https://www.youtube.com/user/PandaRev...\\nMore Tracks - https://www.youtube.com/user/PandaRev...\\n\\nSupport Epique:\\nhttp://soundcloud.com/epique-music\\nhttp://www.facebook.com/EPIQUEmusic\\nhttps://twitter.com/epiquemusic\\n\\nSupport MS MR:\\nhttps://soundcloud.com/msmrsounds\\nhttps://www.facebook.com/msmrsounds\\nhttp://www.youtube.com/user/msmrsounds\\nhttp://msmrsounds.com/Ms_Mr/MS_MR.html\\n\\nHalvorsen - Wouldn\\'t Change It [NCS Release]\\nConnect with NCS\\n• http://soundcloud.com/nocopyrightsounds\\n• http://instagram.com/nocopyrightsounds_\\n• http://facebook.com/NoCopyrightSounds\\n• http://twitter.com/NCSounds\\n• http://spoti.fi/NCS\\n\\nHalvorsen\\n• https://soundcloud.com/jakobhalvorsen\\n• https://twitter.com/halvorsenmusic\\n\\nOriginal Video,\\nhttps://youtu.be/cryFndta0tk\\n\\n#Tags,\\nThis is my reaction video of Sabik (Official Music Video) by Jireh Lim, True Reaction💓\\n\\n\\nDisclaimer , All of Content in this video is belong to their representative owners, I do not own this video or music used in this video.\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such us criticism, comment , news, reporting, teaching, scholarship and research, Fair Use is use permitted by a copyright statute that might otherwise be infringing.\\n\\nThis video is not associated with any company or products mentioned on the video, Video is not sponsored or paid for promotion.\\n\\nIf there\\'s a problem please email me on robertroque434@gmail.com,\\nThank you for your kind.',\n",
       "  '2020-02-19T11:10:59.000Z',\n",
       "  66,\n",
       "  4.0,\n",
       "  3.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCjBdhNlhIG9uN9cMQPLnElA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@vast_rhymes',\n",
       "  nan,\n",
       "  1740,\n",
       "  176335,\n",
       "  23,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=oMTEXF7jlrs',\n",
       "  'Eminem - Music To Be Murdered By - FULL ALBUM REACTION',\n",
       "  'Follow us!\\ninstagram- https://www.instagram.com/vast_rhymes/\\nTwitter- https://twitter.com/Vastrhymes\\n\\nBeccas IG-- https://www.instagram.com/becca.lyons20/\\n\\nI also make music!\\nSTRANGE- https://www.youtube.com/watch?v=uU0owPiL3Ms\\nFOCUS EP- https://www.youtube.com/watch?v=E4DibnV78z0',\n",
       "  '2020-01-20T01:36:35.000Z',\n",
       "  39787,\n",
       "  1559.0,\n",
       "  377.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCgMHJx2SAJbyfGUpDsyyCCA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Welcome To My Channel Lovelies\\n~ I make videos related to Lifestyles, Beauty, Challenges & Tags, Fashion, Vlogs and many other  random fun stuff. \\n Don't FORGET to SUBSCRIBE to this channel and come along with me through this journey. I'm so excited where this journey gonna take us. \\n\\nPosted my 1st Vid: 23/11/18\\nStay Kind & Humble. \\nLove, Summer. 💚\",\n",
       "  1620,\n",
       "  71594,\n",
       "  92,\n",
       "  'MY',\n",
       "  'https://www.youtube.com/watch?v=C17q3LepPxA',\n",
       "  'DIMASH KUDAIBERGEN - YOUR LOVE FIRST #REACTION | Summer Ann',\n",
       "  \"DIMASH'S NEW RELEASE SONG- YOUR LOVE. LOST MY BREATH WATCHING THIS.. AMAZINGGG!!!!...\\n\\nBe My Friend (IG): summer_mj17\\n\\n\\nIF YOU LOVE THIS REACTION VIDEO, PLEASE LIKE, COMMENTS AND SUBSCRIBE. THANK YOU \\n\\n\\nLove, Summer.\\n\\n\\n#Dimash #First #Reaction\",\n",
       "  '2020-03-10T00:29:11.000Z',\n",
       "  14930,\n",
       "  1074.0,\n",
       "  125.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCGidda5wObWWn_sbX7bTCbg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Koi Kisi Ka Nhi H \\n\\n\\n\\nYouTube Calao Reaction Dekho \\n\\n\\n\\n\\nSubscribe  Karo Sabko.  KARNE ME KYA JATA H\\n\\n\\nKARO🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏💜💜💜💜🙏💜💜💜💜💜💜💜💜💜💜💜💜💜💥💥💥💥💥💥💥💥',\n",
       "  1560,\n",
       "  311284,\n",
       "  115,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=kD4nPP3UOMo',\n",
       "  'Krsna - Maharani Reaction || Maharani KR$NA Song Reaction || KR$NA NEW SONG MAHARANI REACTION REVIEW',\n",
       "  'Reaction || Maharani KR$NA Song Reaction || KR$NA NEW SONG MAHARANI REACTION REVIEW',\n",
       "  '2020-01-29T08:30:27.000Z',\n",
       "  7483,\n",
       "  nan,\n",
       "  nan],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCky-8SR2VvTvaDExoSR8Rzg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@wynnbastianelli',\n",
       "  \"Heyoooo!! My name is Wynn and I am SUPER EXCITED to discover new music with you!! I am a full time musician, love hearing the music you love, and sharing the music I make with you. I am out to inspire the world and make you laugh! If you want to be part of this bright new world, you know what to do! Click SUBSCRIBE and follow me on Instagram, Twitter, and don't forget TIKTOK!!!\",\n",
       "  1470,\n",
       "  109693,\n",
       "  38,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=OyspBZ-uNJM',\n",
       "  'Reaction to BEFORE LOVE CAME TO KILL US (new album from Jessie Reyez) PART 1',\n",
       "  '#JessieReyez #BeforeLoveCameToKillUs  Jessie Reyez just dropped BEFORE LOVE CAME TO KILL US!! I want to get her music HEARD as well as experience other amazing music. Consider funding the journey on Patreon!!! https://www.patreon.com/wynnbastianelli \\n\\nWATCH PART TWO Before Love Came to Kill Us PART TWO!! https://www.youtube.com/watch?v=BaPa4Dh-jYU !!  \\n\\nLet us know what you think and SUBSCRIBE!! \\n\\nCheck out/SUBSCRIBE to Jason’s HILAROUS channel “JOKING, SERIOUSLY!” https://tinyurl.com/r4gjcyf\\nBefore Love Came to Kill Us TRACKLIST below!\\nSelect Before Love Came to Kill us LYRICS below!\\n\\nFOLLOW our Instas! \\nWYNN: https://www.instagram.com/wynnbastianelli/?hl=en\\nJASON: https://www.instagram.com/jasoncorn45/\\nAnd shoutout to Timmy 2Dope for the snack suggestion!!  https://www.youtube.com/user/RealFalah72\\nBefore Love Came to Kill Us TRACKLIST below!\\n\\nDon\\'t forget to SUBSCRIBE, BABY!!! (every sub counts ;) thank you!)\\n\\nMy favorite things! \\nCanon Rebel t7i Camera: https://amzn.to/34KPvG3  \\nJOBY Tripod: https://amzn.to/2ro2P5Q \\nBadAss Book!!!: https://amzn.to/3a10crd\\nGreat Networking Book!: https://amzn.to/2JC8s5C\\nNEW LAPTOP WOOO (MSI)!:  https://amzn.to/3a95kdC \\n\\nDon\\'t forget to subscribe!!\\n\\nTracklist: Before Love Came to Kill Us\\n\\n1. DO YOU LOVE HER (Jessie Reyez)\\n2. DEAF (who are you) (Jessie Reyez)\\n3. INTRUDERS (Jessie Reyez)\\n4. COFFIN (feat. Eminem) (Jessie Reyez)\\n5. ANKLES (Jessie Reyez)\\n6. IMPORTED (Jessie Reyez)\\n7. LA MEMORIA (Jessie Reyez)\\n8. SAME SIDE (Jessie Reyez)\\n9. ROOF (Jessie Reyez)\\n10. DOPE (Jessie Reyez)\\n11. KILLS US (Jessie Reyez)\\n12. LOVE IN THE DARK (Jessie Reyez)\\n13. I DO (Jessie Reyez)\\n14. FIGURES (Jessie Reyez)\\n\\nTHANKS AGAIN for tuning into this video, “Reaction to BEFORE LOVE CAME TO KILL US (new album from Jessie Reyez) PART 1”. What is your favorite song on the new Jessie Reyez album, BEFORE LOVE CAME TO KILL US? My favorite new Jessie Reyez song is DOPE. But you won\\'t see our DOPE Reaction until Reaction to BEFORE LOVE CAME TO KILL US (new album from Jessie Reyez) PART 2. \\n\\ndo you love her jessie reyez (lyrics)\\nI should\\'ve *** your friends\\nIt would\\'ve been the best revenge for the fire that you started\\nI\\'m trying to heal, but it\\'s a process\\nThey told me I should cut my losses\\nBut there\\'s a stranger where my heart is\\n\\nAnd I\\'m sick with feeling like I deserved better\\nAnd you\\'re sick for everything you did to me, it was a setup\\nAnd I should Goodfella you, call me Karen, waking up to my Beretta\\nIf I blow your brains out I, I can guarantee that you\\'ll forget her\\nIf I blow your brains out, I could kiss it better\\nKiss me I\\'m the monster that you made, yeah you made me\\nNow I\\'m just like you so don\\'t complain, yeah you made me\\nDo the things you like hoping you\\'d stay, okay\\nKiss me I\\'m the monster that you made, you made me\\n\\nGames, you don\\'t want me unless I\\'m someone else\\'s\\nYou don\\'t even know you\\'re being selfish\\nYou must see me only when I\\'m melted\\nDown to my tears only when I\\'m helpless\\nThat\\'s when you get off and you can\\'t help it\\nAll your bullets they feel like velvet\\nAnd I let you do it, I let you do it\\nI loaded too much, I let you shoot it\\n\\nAnd I\\'m with feeling like deserved better\\nAnd you dead me, left my heartbeat, left **** on a cappella\\nAnd I should Goodfella you, call me Karen, waking up to my Beretta\\nAnd if I blow your brains out, I can guarantee that you\\'ll forget her\\nIf I blow your brains out, I could kiss it better\\nKiss me I\\'m the monster that you made, yeah you made me\\nNow, I\\'m just like you so don\\'t complain, yeah you made me\\nDo the things you like hoping you\\'d stay, okay\\nKiss me, I\\'m the monster that you made, you made me\\n\\n\\n\\n\\nCollaboration on new Jessie Reyez album Before Love Came to Kill Us: Eminem\\nWriter on Before Love Came to Kill Us (Jessie Reyez): Fredrik Ball, Jessie Reyez, Rui Afonso, Tim Suby, Akil King, Darius Ginn Jr, John Thomas Roach, Mario Jefferson, Andre Robertson, Marshall Mathers, Tobias Frelin, Andre Davidson, Alexander Delicata, Andrew Harr, Audrey Ducasse, Jermaine Jackson, Maria-Cecilia Simone Kelly, Sean Davidson, Henrik Bryid Wolsing, Jaramye Daniels, Ricardo Valentine, Richard Isong, Alexander Crossan, Tobias Relin, Bjorn Djupstrom, Andre Harris, Darius Ginn Jr, Jaramye Daniels, and Shy Carter\\n\\n\\nDISCLAIMERS: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS\\n\\nLinks included in this description might be affiliate links. If you purchase a product or service with the links that I provide I may receive a small commission. There is no additional charge to you! Thank you for supporting me so I can continue to provide you with your daily dose of positivity!',\n",
       "  '2020-03-27T11:54:46.000Z',\n",
       "  2476,\n",
       "  75.0,\n",
       "  55.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCQ4TL3f3ZBSLHvhAsTkmEEw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'A dude who reacts to music videos...\\n\\n06/02/2018 - 100 Subscribers\\n07/13/2018 - 300 Subscribers\\n08/11/2018 - 500 Subscribers\\n02/16/2019 - 700 Subscribers\\n05/02/2019 - 800 Subscribers\\n10/13/2019 - 1,000 Subscribers',\n",
       "  1300,\n",
       "  142607,\n",
       "  243,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=apiCWIs3C64',\n",
       "  'NEW ALBUM OTW!! Drake - When To Say When & Chicago Freestyle (REACTION)',\n",
       "  'This is my reaction to Drake - When To Say When & Chicago Freestyle\\n\\nPlease support me and the original video. \\n\\nTwitter:\\nhttps://twitter.com/nizzyyt\\n\\nTwitch:\\nhttps://www.twitch.tv/nizzy_\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.\\n\\nOriginal Video:\\nDrake - When To Say When & Chicago Freestyle\\nhttps://youtu.be/0jz0GAFNNIo',\n",
       "  '2020-03-01T05:49:37.000Z',\n",
       "  536,\n",
       "  10.0,\n",
       "  18.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC9vp4RMwJgwgj1cIzp9atAA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hey we're Lin and Chan! We've been BFF since FOREVER, we have so much fun together and just want to share it with the world!\\n\\nStick around to check out our adventures, meeting new friends, eating new food, and plenty of laughs along the way.\\nBe sure to subscribe and become a bestie... to our future “dynamites” 💣\\n\\n-Dynamic Duo XO\",\n",
       "  1060,\n",
       "  177260,\n",
       "  21,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=RwhGmSMZphQ',\n",
       "  'Justin Bieber Ft. Quavo - INTENTIONS (Official Music Video) REACTION',\n",
       "  'DDXO reacts to Justin Bieber - Intentions\\nLike, Comment, Subscribe\\nFollow us on IG @DynamicDuoXO\\nxoxo Lin & Chan',\n",
       "  '2020-02-07T21:03:48.000Z',\n",
       "  45610,\n",
       "  1411.0,\n",
       "  67.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCH8M41qqSFg_PwPwgbADeAw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  1060,\n",
       "  517395,\n",
       "  21,\n",
       "  'AU',\n",
       "  'https://www.youtube.com/watch?v=Cc8WaO2LOYM',\n",
       "  'Tim Henson of Polyphia Reacts to Fan Music and Plays New Song',\n",
       "  \"Tim Henson of Polyphia Reacts to Fan Music and Plays New Song\\n\\nTim Henson listens to, and reviews, music submitted by fans on his discord server, and then plays a song of his own that he is working on live on twitch.\\n\\nTo submit your own music, find the Discord server here: https://discordapp.com/invite/dbscV53\\n\\nFind Tim's Twitch Channel Here: https://www.twitch.tv/thew6rst\",\n",
       "  '2020-03-30T03:34:48.000Z',\n",
       "  34586,\n",
       "  564.0,\n",
       "  108.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCgJfXhMQsq2Mw3INgEo4JRQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '19 year old singer :) \\nInstagram: faditerro :)\\nSnapchat: faditerro :)',\n",
       "  1040,\n",
       "  29579,\n",
       "  9,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=aC-z7eNskLs',\n",
       "  'JUSTIN BIEBER NEW ALBUM CHANGES REACTION VIDEO',\n",
       "  'FIRST ONE TO DO FULL REACTION YAYYYY. First time ever doing a reaction video stayed up all night waiting for it cuz it released 7 am i hope you enjoy it all the way through and i hope justin see’s it and enjoys it aswell. Please comment and like the video so he can see it :)❤️ 5 years, 5 looooong years but it’s finally here and it’s beautiful and amazing. God bless justin and his amazing wife Hailey. Just belieber things😭😭😭❤️❤️❤️STREAM CHANGES \\nFollow me on instagram @faditerro ❤️🦋\\nand add me on snapchat @faditerro ❤️❤️🦋🦋\\n\\n*all rights to the songs in this video go to Justin Bieber and his team*\\n\\nIgnore tags// justinbieber justinbieberchanges changesalbum justinbieberreaction reactionvideo justinbieberyummy justinbiebergetme justinbieberchanges justinbiebernewalbum justinbieberreactionvideo\\nJustinbieberforever justinbiebersecondemotion justinbieberallaroundme justinbieberhabitual justinbiebercomearoundme justinbieberintentionsquavo justinbieberrunningoverlildicky justinbiebereta justinbiebernewsong justinbieberthatswhatloveis justinbieberconfirmation justinbieberatleastfornow\\nJustinbiebernewalbum justinbieberreaction justinbieberfanreaction',\n",
       "  '2020-02-14T05:54:35.000Z',\n",
       "  679,\n",
       "  50.0,\n",
       "  24.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UCSrPCG-b-yLsY8DzvURo09A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'I am an average guy living in the UK and who is now the wrong side of 50.  From time to time, I look for a new challenge and this time it is to learn the electric guitar.  This YouTube channel will be used to share my journey with other mature people, offer some incentive for others taking on a challenge and to provide me with a video diary of my progress.\\n\\nWhen I was younger, I was often told that I \"could try harder, but won\\'t amount to much in life\".  This discouraged me and I have missed so many opportunities in life.  Now that I am older and a little wiser, I know that we can all do things \\'if\\' we put our minds to it, remain dedicated and sometimes, just sometimes, we get a little encouragement from those around us.\\n\\nWhen times get difficult, I\\'ll look back on here to remind myself that with a little more practice and hard work, I will prevail.  I also hope that this channel will encourage other older people to take up new challenges and to continue to educate and test themselves.',\n",
       "  1030,\n",
       "  225468,\n",
       "  69,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=6qOQcmQDDgg',\n",
       "  'Electric Guitar Lesson 17 Review - NEW SONG Everybody Hurts and NEW TECHNIQUE - (With tabs).',\n",
       "  \"In this video, I review my most recent professional guitar lesson.  The main point of interest is a brand new song to learn and we begin with the into to R.E.M.s Everybody Hurts.\\n\\nWe look at a new G Chord fingering and mostly moving between the D and G Chords whilst picking individual strings.  It is fun but I am finding it really hard to start with.\\n\\n❤️ If you find my content interesting and/or helpful, please hit the Subscribe button.\\n\\n🔔 To make sure that you don't miss a lesson review, please make sure to hit the bell when subscribing.\\n\\n🎵 Please visit the link below to download the lesson resource for this lesson.  This resource consists of the music score for the exercise shown in the video.\\n\\n       https://tinyurl.com/whrr8wf\\n\\n\\n✅ Recommended playlists:\\n\\n       My Guitar Lessons.\\n       https://tinyurl.com/vl9dne7\\n\\n       Guitar Gear and other item reviews.\\n       https://tinyurl.com/uol22y6\\n\\n\\nDisclaimer: I am not a professional guitar teacher and this channel and the content herein is simply my journey whilst learning to play the guitar.  Professional services should always be sought when learning anything new and playing the guitar is no different.\",\n",
       "  '2020-03-25T20:26:28.000Z',\n",
       "  162,\n",
       "  15.0,\n",
       "  18.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UC3_-m50MOO-IBiyYFJT2Acg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'GOING FOR 1,000,000 VIDEO POST\\n\\nInstagram Star Post, Wrestling News, Reviews / Openings, Pokemon Go, Gaming, Family & Fun\\n\\nhttps://www.youtube.com/channel/UC3_-m50MOO-IBiyYFJT2Acg\\n\\n***Facebook Page - FREE Giveaways, Lots Of Deals / Things I Sell, Plus Family \\n\\nhttps://www.facebook.com/dannythemanparker2014\\n\\nThanks #dtmp\\n\\n#entertainment #media #news #instagram #actor #lifestyle #hollywood #trending #actress #celebrity',\n",
       "  1020,\n",
       "  321523,\n",
       "  11433,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=jySmJSeemro',\n",
       "  'Grace Vanderwaal New Song Today And Tomorrow Review - Danny the Man Parker',\n",
       "  'Instagram Star Post, Wrestling News, Reviews / Openings, Family & Fun\\n\\nhttps://www.youtube.com/channel/UC3_-m50MOO-IBiyYFJT2Acg\\n\\nPokemon Go, Games, Family, & Fun \\nhttps://www.youtube.com/channel/UCA7CsaXx3IcUgfkydncUc7Q\\n\\n***Facebook Page - FREE Giveaways, Lots Of Deals / Things I Sell, Plus Family \\n\\nhttps://www.facebook.com/dannythemanparker2014\\n\\nThanks #dtmp\\n\\n#entertainment #media #news #instagram #actor #lifestyle #hollywood #trending #actress #celebrity',\n",
       "  '2020-03-06T21:03:24.000Z',\n",
       "  320,\n",
       "  14.0,\n",
       "  5.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC_yWZb0Jekhxw3YW8jpDf-A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to the his and her habits youtube channel! Where laughs are had, conflict ensues, and Gus snoofs.\\n\\nInstagram: @hisandherhabits',\n",
       "  929,\n",
       "  99826,\n",
       "  48,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=S9cqMBp2jhs',\n",
       "  'New Justin Bieber: Seasons (documentary series) - TRAILER REACTION',\n",
       "  \"His and her habits present their first video of 2020... a Justin Bieber: Seasons trailer reaction. Neither of them had heard about the new docuseries until the trailer appeared in their notifications. Will they be convinced to tune in? What will the trailer reveal about Justin and Hailey? Tune in now to find out in our new Justin Bieber documentary series trailer reaction! #Bieber2020 #JustinBieber\\n\\nJUSTIN BIEBER SEASONS REACTIONS PLAYLIST👇\\nhttps://www.youtube.com/playlist?list=PL20Nkw84bjoZ1XUqhsGBCf20SE2F4RpJq\\n\\nChallenges Playlist👇\\nhttps://www.youtube.com/playlist?list=PL20Nkw84bjobpa3SzVMyuaQvnXtbQ9wH7\\n\\nVIDEO SOURCES:\\n\\nJustin Bieber: Seasons | Official Trailer Ft. Yummy | YouTube Originals\\nhttps://www.youtube.com/watch?v=jFuOoAFJlOg\\n\\nGunther - Ding Dong Song Gunther Video (You Touch My Tralala)\\nhttps://www.youtube.com/watch?v=z13qnzUQwuI\\n\\nClassic Sesame Street - Herry and John John Count to 20 (John Grown from child to adult)\\nhttps://www.youtube.com/watch?v=NuYPj29z6Ko\\n\\n100 LAYERS OF BEANIES\\nhttps://www.youtube.com/watch?v=TwArZLW3wbQ\\n\\nARTICLES:\\n\\nhttps://www.independent.co.uk/arts-entertainment/music/news/justin-bieber-new-album-single-yummy-release-date-when-instagram-a9259916.html\\n\\nhttps://www.cbc.ca/news/entertainment/justin-bieber-opens-up-mental-health-1.5268549\\n\\nJustin Bieber's Clothing Line\\nhttps://thehouseofdrew.com/collections/shop\\n\\nhttps://www.huffpost.com/entry/carl-lentz-justin-bieber-baptism_n_57fec80fe4b05eff55817389\\n\\nSUBSCRIBE HERE AND TURN ON NOTIFICATIONS 🔔\\nhttps://www.youtube.com/channel/UC_yWZb0Jekhxw3YW8jpDf-A?sub_confirmation=1\\n\\nPLEASE LEAVE A COMMENT BEFORE YOU GO!!! 😁\",\n",
       "  '2020-01-02T09:07:39.000Z',\n",
       "  5994,\n",
       "  183.0,\n",
       "  33.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCKX_jjdbIGZGX6Mn-IKDkiQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome to SomeGuyFromLouisville (SGFL) Channel! We gone have some fun here, so enjoy your stay! Expect alot of Video Reactions, Reviews and Conversation!',\n",
       "  863,\n",
       "  84825,\n",
       "  75,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=xbU9Ul3Oonc',\n",
       "  \"🔥TORY LANEZ'S THE NEW TORONTO 3 ALBUM!!🔥| REACTION!!\",\n",
       "  'SGFL takes a listen to the first 30secs of each of Tory Lanez tracks off his latest album release \"The New Toronto 3\"\\n#ToryLanez #NewToronto3 #NewRelease\\n▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬\\n▶️ROAD TO 10K SUBS! Like, comment, and subscribe! Tell a friend to tell a friend about ya boy SGFL! Turn post notifications on so you don\\'t miss an upload. \\n▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬\\n⬇️FOLLOW ME!\\nINSTAGRAM: https://www.instagram.com/SomeGuyFromLouisville\\nFACEBOOK: http://www.facebook.com/SomeGuyFromLouisville\\nTWITCH: https://www.twitch.tv/SomeGuyFromLouisville\\nTWITTER: https://www.twitter.com/iRamsey13\\n▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬\\n⬇️BUY A BRACELET, JOIN THE BEAR\\'ARMY!\\n➡️ http://www.BearArmsBracelets.com ⬅️\\n▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬\\nMUSIC BY RYAN LITTLE -\\n(intro) Take It Easy - https://thmatc.co/?l=5B806299\\n▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬\\nFair Use:  https://www.copyright.gov/fair-use/more-info.html\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. No copyright infringement intended. ALL RIGHTS BELONG TO THEIR RESPECTIVE OWNERS!',\n",
       "  '2020-04-10T05:59:05.000Z',\n",
       "  3186,\n",
       "  89.0,\n",
       "  41.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC_IwfAnnLEr7c8g708CxdfQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hi , I Hope You Are Good .\\n\\nEMINEM 30sec is Only a Channel Who Updated Eminem video, WhatsApp Status, performance , memes, etc\\nPlz Subscribe & Share\\n\\nIf You are Fan Of Eminem ...\\n\\nThank You',\n",
       "  823,\n",
       "  279176,\n",
       "  898,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=K2Li0z5KoHc',\n",
       "  'When Eminem Sir, Release His New Album My Reaction !!😁😁😁',\n",
       "  '#eminem #muisctobemurdered',\n",
       "  '2020-01-18T15:22:03.000Z',\n",
       "  106,\n",
       "  7.0,\n",
       "  1.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCficyWo6r5_krwUYswfh3-w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  609,\n",
       "  360720,\n",
       "  14,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=Awhk96_3_HM',\n",
       "  \"Shakira & Jlo's Super Bowl LIV Halftime Show Video Reaction - Las Caderas México\",\n",
       "  'Vídeo reacción del mejor club de #Shakira: #LasCaderasMéxico #SuperBowl2020',\n",
       "  '2020-02-11T02:44:51.000Z',\n",
       "  357866,\n",
       "  7901.0,\n",
       "  1722.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC9st1IUip_Bc7ThepZNdPig',\n",
       "  nan,\n",
       "  nan,\n",
       "  'calicoxreacts@gmail.com',\n",
       "  '@calico.reacts',\n",
       "  \"Hey guys! Welcome to 'Calico Reacts', an online space brought to you by Alice and Charlie, where we react to pop culture and all your musical faves! We have been best friends for as long as we can remember, and one thing that we have always bonded over is our love for music and pop culture. All of our reactions on this channel are authentic, and we want to create a discussion in the comments about your musical opinions - after all, that's what makes music so exciting! Expect to see reactions to all of the main pop girls (Beyonce, Rihanna, Ariana), as well as diving deep into our love for k-pop, and so much more.\",\n",
       "  520,\n",
       "  54137,\n",
       "  21,\n",
       "  'GB',\n",
       "  'https://www.youtube.com/watch?v=Mqeed5w7GQ0',\n",
       "  \"The Weeknd 'After Hours' Full Album Reaction\",\n",
       "  \"The Weeknd 'After Hours' album reaction/review \\n\\nA journey of pain, heartbreak & loss - the Weeknd put all his feelings out on the table in his new-80s-inspired album 'After Hours'. \\n\\nCharlie & I had mixed feelings about this one - Charlie really loves The Weeknds pop sound, his 80s influence & how the album really told a story. His favourites are:\\n\\n1. Hardest To Love\\n2. Escape from LA\\n3. Faith\\n4. Blinding Lights\\n5. In Your Eyes\\n6. After Hours\\n\\nI personally found it hard adjusting to The Weeknds new sound - I found the backing tracks distracting and that they masqued the deeper lyrics. I would love for The Weeknd to tap into his darker music like he did in 'Trilogy', that music really made me like him as an artist and I do think that era suited him the best. \\n\\nRegardless, we both agree he is very talented & has SO much potential! 🖤\\n\\nWhat did you think of the album, we would love to hear your thoughts in the comments below ⬇️ don't forget to like & subscribe and we will see you in the next one! Lots of love, Charlie + Alice (Calico Reacts) xoxo\\n\\nConnect with us on: \\nTwitter: https://twitter.com/calicoreacts/ \\nInstagram: https://www.instagram.com/calico.reacts/ \\nEmail: calicoxreacts@gmail.com\\n\\n❁ Links ❁\\nListen to 'After Hours' now: \\nhttps://www.youtube.com/playlist?list=OLAK5uy_lwaD8UXRautA8W9eWT4zZOvwf5Ktxpax8 \\n\\nStarboy: https://www.youtube.com/playlist?list=PLxKHVMqMZqUTXwWek7iES3yDdb8yUp_Ag\\n\\nTrilogy: https://www.youtube.com/watch?v=xrKa5d1it3c&list=PL_ZnCc_3LyhmvIAZoY80JbgNkMyWivEOq\\n\\n❁ Timestamps ❁\\n1. Alone Again 0:59\\n2. Too Late 1:52\\n3. Hardest To Love 3:23\\n4. Scared To Live 4:47 \\n5. Snowchild 6:09\\n6. Escape From L.A. 7:29\\n7. Heartless 8:43\\n8. Faith 9:17\\n9. Blinding Lights 10:24\\n10. In Your Eyes 11:11\\n11. Save Your Tears 12:10\\n12. Repeat After Me (Interlude) 12:56 \\n13. After Hours 13:52\\n14. Until I Bleed Out 15:41\\nFinal Thoughts 16:27\\n\\nAbout:\\nHey guys! Welcome to 'Calico Reacts', an online space brought to you by Alice and Charlie, where we react to pop culture and all your musical faves! We have been best friends for as long as we can remember, and one thing that we have always bonded over is our love for music and pop culture. All of our reactions on this channel are authentic, and we want to create a discussion in the comments about your musical opinions - after all, that's what makes music so exciting! Expect to see reactions to all of the main pop girls (Beyonce, Rihanna, Ariana), as well as diving deep into our love for k-pop, and so much more.\\n \\nContent Featured:\\n\\nCheck out more from The Weeknd:\\nhttps://www.youtube.com/user/xoxxxoooxo\\n\\nMusic:\\n\\n🎵 Track Info:\\n\\nTitle: High [NCS Release] by JPB\\nGenre and Mood: Dance & Electronic + Bright\\n\\n———\\n\\n🎧 Available on: \\n\\nSpotify: https://open.spotify.com/album/7wVvGD...\\niTunes: https://music.apple.com/us/album/high...\\nYouTube: https://youtube.com/watch?v=Tv6WImqSuxA\\nSoundCloud: https://soundcloud.com/jpb/high-ncs-r...\\n\\n———\\n\\n😊 Contact the Artist:\\n\\nhttps://jpbofficial.com\\nhttps://soundcloud.com/jpb\\nhttps://facebook.com/jpbmusic\\nhttps://open.spotify.com/artist/0t5H8...\\nhttps://youtube.com/c/JPBofficial\\nhttps://instagram.com/jpbofficial\\nhttps://twitter.com/jpbofficial_\\n\\nDisclaimer: All opinions expressed are our own and we mean no ill intent with our views.\\n\\n#TheWeeknd #AfterHours\",\n",
       "  '2020-03-22T20:30:02.000Z',\n",
       "  2700,\n",
       "  59.0,\n",
       "  23.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UChN4zB76diLTITeHYGCVJ-g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'This channel is based solely on uncut, first reactions on the things that happen daily around us. Completely raw and honest so you get to see our original reaction. Enjoy. \\n\\n...and Please Subscribe so we can know who you are. Thank you  :-)\\n\\n***Fair Use Act Disclaimer. ... Copyright Disclaimer under section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.\\n\\nReaction Reaction',\n",
       "  379,\n",
       "  45137,\n",
       "  45,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=IoL-B_IZR8c',\n",
       "  'Reaction LIL WAYNE MAHOGANY (FLAMES) From the new album FUNERAL Release 01/31/2020 Action Reaction',\n",
       "  \"Doing a reaction to Lil Wayne's highly anticipated album FUNERAL released on January 31, 2020. We are very excited to listen to the album due to being  long time Lil Wayne fans. We will continue our reaction to the song MAHOGANY...Is he talking about the wood??Or the Color?? Or what??. Join us on your next video.\\n\\n***Fair Use Act Disclaimer. ... Copyright Disclaimer under section 107 of the Copyright Act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing.\\n\\nAction Reaction\",\n",
       "  '2020-02-01T15:00:12.000Z',\n",
       "  4404,\n",
       "  145.0,\n",
       "  28.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCMTYk0W7jorppgsZJ2glZ8A',\n",
       "  nan,\n",
       "  '@scott_free973',\n",
       "  nan,\n",
       "  nan,\n",
       "  \"What's up everyone??  My name is Scotty Eaton aka Scott Free and I'm currently working on getting my channel going with more content along with my music and other general nonsense.  \\n\\nCheck out my music on all platforms:\\n\\nhttps://www.iheart.com/artist/scott-free-112502/albums/rodeo-84215177/\\nhttps://open.spotify.com/album/7sETY4vKXyNLTAcbOts3w1\\nhttps://music.apple.com/us/album/feelings-concealed-single/1436936644\\nhttp://www.mndigital.com/content-experience/music_content/albums/476330991/Scott_Free/Rodeo/\\n\\nPlease feel free to follow me on my other social media pages:\\n\\nhttps://soundcloud.com/scott_free973\\nhttps://www.instagram.com/scott_free973/\\nhttps://twitter.com/Scott_Free973\\nhttps://www.facebook.com/scottfreenj973/\\nhttps://www.facebook.com/ScottFree973\\n\\nThank you for any views, likes, comments, or subscribing!  I'll be posting a lot more so stay tuned!\",\n",
       "  368,\n",
       "  14734,\n",
       "  54,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=B2auAXIWWvY',\n",
       "  'EMINEM’S NEW ALBUM MUSIC TO BE MURDERED BY REACTION/REVIEW‼️',\n",
       "  'YOOOO what’s going on everybody?!  I am HYPED right now after hearing my fav artist of all time Eminem just dropped a new surprise album MUSIC TO BE MURDERED BY‼️  I listened to it once all the way though so this is my first honest initial reaction and review, I love it and without being biased I give it an 8 out of 10.  The features on it are solid and nothing felt forced like some say it was on Revival, I just love how he dropped this the same way as Kamikaze as a total surprise without any warning or promo.  The track with Young MA not only surprised me the most but maybe one of my fav songs on the album, the other features are mostly artists he’s worked with before besides Juice WRLD (RIP) and it flows well from start to finish.  Definitely give this a listen and try to tell me your fav rapper can come close to out rapping Marshall Mathers!!  Let me know what you think in the comments....\\n\\nThanks for watching and subscribing‼️🙏🏼 \\n\\nFollow me on Spotify: \\n\\nhttps://open.spotify.com/track/3sKOzGDy7QLneyrkGSPjBg \\n\\nFollow me on SoundCloud and check out my new Stay Schemin freestyle:\\n\\nhttps://soundcloud.com/scott_free973/stay-schemin-freestyle\\n\\nInstagram and Twitter:\\n\\n@scott_free973',\n",
       "  '2020-01-17T12:05:51.000Z',\n",
       "  154,\n",
       "  8.0,\n",
       "  19.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCH9n5oWEgEy4uWcQVE41Vhw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  317,\n",
       "  147154,\n",
       "  20,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=ZgKTJiI2SHc',\n",
       "  'Reaction to Resident at La Academia #OT2020 (video in Spanish)',\n",
       "  \"His #Twitter official :\\nResident\\n@Resident\\nFeb 27\\nOne night I felt very bad, I was in Mexico, the stadium waiting for me, and I didn't want to leave the hotel. I called Mommy because she wanted to throw me off the balcony and I didn't know why. That night a friend arrived and stayed with me. The next day I started writing this topic.\\nSu oficial #Twitter:\\nResidente\\n@Residente\\n27 de febrero\\nUna noche me sentí muy mal, estaba en México, el estadio me esperaba, y no quería salir del hotel. Llamé a mamá porque quería tirarme del balcón y no sabía por qué. Esa noche llegó un amigo y se quedó conmigo. Al día siguiente comencé a escribir este tema.\",\n",
       "  '2020-03-03T06:30:00.000Z',\n",
       "  146015,\n",
       "  4226.0,\n",
       "  0.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCrzNxv3KoU4sRg-2OUl08Yg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'YOOOOO !! YOUTUBE WHAT DO THEY DO ITS YA BOYY !! LOWKEYYNOEL IN DA CUT !! Yessir I’m gonna be posting Entertaining Content, Vlogs , Pranks , Reactions And much more as my Channel Grows Without y’all there is no me , Were are A family the Lowkeyysquad We here for the laughs and entertainment So let’s run it up Together we’ll achieve greatness 💯',\n",
       "  299,\n",
       "  9601,\n",
       "  47,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=_Y2Y0ynNiY0',\n",
       "  'Pop Smoke - Shake The Room ( Official Video) ft Quavo | Reaction Video !!',\n",
       "  'If your new to the channel please make sure to subscribe!! \\n\\nToday I will be reacting to the new pop smoke and quavo song called Shake the room \\n\\n*No copyright \\n\\nAll rights belong to the respectful owner \\n\\n\\noriginal link:  https://youtu.be/WoHaaOpOjqo\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for ”fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use  is a use permitted by copyright statute that might otherwise be infringing\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n#lowkeyynoel #popsmoke #reaction',\n",
       "  '2020-03-30T19:32:23.000Z',\n",
       "  58,\n",
       "  5.0,\n",
       "  7.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCaJ2-w9mMENKOyZVWAo8KJg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"'Nah? Wie geht's ?' ( Translation; 'Hey, how are you doing?' ;-) ) \\n\\nThank you for watching. \\nHave fun with the video's and please be kind. \\n\\n- Subscibe for more Trebuchet26 video's\\n- Twitter: https://twitter.com/Trebuchet_26 \\n- Trebby on Twitch: https://www.twitch.tv/trebuchet26\\n\\nThis channel is mostly dedicated to 'The Last of Us'.\\nI might do some other fun stuff now and then... \\nIf you want to play together 'NOOB-Level 999-style' \\nor if you want to contact me, leave a comment \\nor go to my Twitter page: https://twitter.com/Trebuchet_26\\n\\n ---------------------------------- \\n\\nTrebuchet26 on Youtube: \\n\\n- Silly TLOU Songs ;)\\n- Fun 'The Last of Us'-gameplay \\n- Terrible TLOU Tributes (T.T.T) \\n- Other Tlou Stuff and lots of Experimenting .... ;)\\n\\n---------------------------------- \\n\\nThe Last Of Us / The Last Of Us II\",\n",
       "  229,\n",
       "  12709,\n",
       "  67,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=s3IDVQRv-Dw',\n",
       "  'Reaction to: LEAKED TRAILER!!! The Last of Us Part II – New trailer | PS4',\n",
       "  \"'Nah? Wie geht's ?'     ( Translation; 'Hey, how are you doing?' ;-) )\\n\\nLast time I did a Reaction-video to the Ghost of Tsushima Trailer. Now it is time to react to the Release Trailer for The Last of Us 2 ??? ... ;) \\n\\nOr not: it was obviously an April Fools joke by Leonico86 :)\\nHere is the Original video:\\nhttps://www.youtube.com/watch?v=RcM_pZjdAK0&feature=em-uploademail\\n\\nThank you for watching.\\nHave fun with the video's and please be kind.\\n#TLOU2 #Trailer #Reaction\\n\\n- Subscibe for more Trebuchet26 video's: https://www.youtube.com/channel/UCaJ2...\\n- Twitter: https://twitter.com/Trebuchet_26\\n- Twitch: https://www.twitch.tv/trebuchet26\\n\\nThis channel is mostly dedicated to 'The Last of Us'.\\nI might do some other fun stuff now and then...\\n\\nIf you want to play together 'NOOB-Level 999-style'\\nor if you want to contact me, leave a comment or \\ngo to my Twitter page:\\n\\nhttps://twitter.com/Trebuchet_26\\n\\n----------------------------------------------------------------------------------\\nVideo used: https://www.youtube.com/watch?v=RcM_pZjdAK0&feature=em-uploademail\\nUsed for a reaction-video, Fair use for Comedy reasons ;)\\n----------------------------------------------------------------------------------\",\n",
       "  '2020-04-01T16:54:30.000Z',\n",
       "  269,\n",
       "  23.0,\n",
       "  26.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCN0wkSWbrGy08ii6fVTjupA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'If your up late on Thursday nights waiting for your favorite music to drop at 12am your part of the club \\nSo go ahead and hit the subscribe button!!!  \\nHere to share my opinions on the music I love and see what you guys are thinking as well!\\n\\nIG:12amdropclub',\n",
       "  210,\n",
       "  72726,\n",
       "  98,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=wEUi_rUbSjc',\n",
       "  'Lil Wayne  \"Funeral\" Album | First Reaction/Review | Favorite Tracks!',\n",
       "  'Lil Wayne drops his new album \"Funeral\" after years of being delayed. The album follows Lil Wayne\\'s Carter 5. Wayne doesn\\'t disappoints on  this new album. Features from 2 Chainz, Big Sean, Jay Rock, Takeoff and XXXTENTACION, and others. This my reaction to \"Funeral\" by Lil Wayne\\n\\nSub to the channel!  \\n\\nLil Wayne \"Funeral\" Full Album Tracklist: \\n\\n1. Funeral\\n2. Mahogany\\n3. Mama Mia\\n4. I Do It f. Big Sean & Lil Baby\\n5. Dreams\\n6. Stop Playin With Me\\n7. Clap For Em\\n8. Bing James f. Jay Rock\\n9. Not Me\\n10. Trust Nobody f. Adam Levine\\n11. Know You Know f. 2 Chainz\\n12. Wild Dogs\\n13. Harden\\n14. I Don’t Sleep f. Takeoff\\n15. Sights And Silencers f. The-Dream\\n16. Ball Hard f. Lil Twist\\n17. Bastard (Satan’s Kid)\\n18. Get Outta My Head f. XXXTENTACION\\n19. Piano Trap\\n20. Line Em Up\\n21. Darkside\\n22. Never Mind\\n23. T.O. f. O.T. Genasis\\n24. Wayne’s World\\n\\n\\n#lilwayne #funeral \\n\\nLike& Subscribe\\n\\nIG:12amdropclub \\nTwitter: Kidd_Shadyy',\n",
       "  '2020-01-31T21:26:11.000Z',\n",
       "  623,\n",
       "  20.0,\n",
       "  7.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC6DIf5zzkpHGNNVfPG6jQZw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'H A T E R S - HAVING ANGER TOWARDS EVERYONES REACHING SUCCESS || So Are You H A T E R S',\n",
       "  192,\n",
       "  2105,\n",
       "  62,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=DdPmN-rbe1M',\n",
       "  'ZINDAGI || Carry Minati New Song Zindagi || Before Release || Amezing Reaction by Fans',\n",
       "  'Zindagi By CarryMinati \\nBefore Release \\n\\n#carryminati \\n#zindagi',\n",
       "  '2020-01-17T08:01:20.000Z',\n",
       "  280,\n",
       "  10.0,\n",
       "  2.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCf4VM27KOmCxuggkAm67SWA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Wassup Gang!! Loud Beast Productions revolves around reactions, skits, challenges and more. Stay tuned for all the new content we have coming, Thanks we appreciate the support.',\n",
       "  188,\n",
       "  13105,\n",
       "  33,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=fVmJsB4suR8',\n",
       "  'MEG THEE STALLION - B.I.T.C.H REACTION & REVIEW!!',\n",
       "  'Today we react to Megan Thee Stallion\\'s new release B.I.T.C.H and give some insight about it. Enjoy, like and subscribe!!\\n\\n\\nInstagram:\\njmairrr\\n__2xduece\\n\\n\\nMr. Cloak\\'s Gaming Channel:\\nhttps://www.youtube.com/channel/UCYfU7xMRFG3_p_1nJY5jsLw\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, \\nallowance is made for \"fair use\" for purposes such as criticism, commenting, \\nnews reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-01-28T21:16:15.000Z',\n",
       "  381,\n",
       "  9.0,\n",
       "  3.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC5RcnKlvN25totbtvDSjBHA',\n",
       "  nan,\n",
       "  '@tyrell_bonney',\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hai! i'm Tyrell Bonney (: just so you know, i write songs:)\\n\\nGO CHECK OUT MY NEW ALBUM 'The Risperidone Club'' \\nAlso I do like posting video content As well:)\\n\\n╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗\\n║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣:SUBSCRIBE:\\n╠╗║╚╝║║╠╗║╚╣║║║║║═╣\\n╚═╩══╩═╩═╩═╩╝╚╩═╩═╝\\n\\nWEBSITE: https://tyrellbonney.site123.me/\\nINSTAGRAM: https://www.instagram.com/tyrell_bonney/?hl=en\\n\\nI'm probably never going to get popular on youtube, but if i DO... then i thank all of you Beautiful PEOPLE!!\\nPEACE, I'M OUT\",\n",
       "  167,\n",
       "  8895,\n",
       "  86,\n",
       "  'AU',\n",
       "  'https://www.youtube.com/watch?v=te60IHeXOHo',\n",
       "  'TWENTY ONE PILOTS - Level Of Concern | REACTION and REVIEW. and new album theory',\n",
       "  'HEYYYY plz subscribe for more and also like and comment and tell what other top stuff i should do\\nand also go check out my own music on this channel and spotify',\n",
       "  '2020-04-09T16:14:30.000Z',\n",
       "  1149,\n",
       "  28.0,\n",
       "  6.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UC8CuEmAfEdU-QeO4-Gs780A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'We revue reviews',\n",
       "  159,\n",
       "  39363,\n",
       "  55,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=1ue55tDTP7A',\n",
       "  'Bob Dylan \"Murder Most Foul\" REVIEW | REACTION | NEW SONG | 2020 | FULL OFFICIAL MUSIC VIDEO FANTANO',\n",
       "  'In this amazing #BobDylan #Reaction , Nick Ross performs an incredible response to #MurderMostFoul \\n\\nAnthony Fantano',\n",
       "  '2020-03-28T01:37:41.000Z',\n",
       "  2805,\n",
       "  29.0,\n",
       "  115.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCqc9KP9nwbyZnj2aNGpOJQw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'உழைத்திடு💪🏻\\nஉயர்ந்திடு 👍\\nஉன்னால் முடியும் 🙏🏻\\n\\n*Social Issues\\n\\n*அரசியல் பேசுவோம்\\n\\n*நாட்டு நடப்பு\\n\\n*திரை விமர்சனம்\\n\\nSupport   Thani Oruvan\\n\\n_____________________________',\n",
       "  139,\n",
       "  4402,\n",
       "  33,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=LSuB3mRZjlU',\n",
       "  \"Official:Master Release Update Announced😍|Thalapathy's New Images Reaction & Review|\",\n",
       "  \"Official:Master Release Update Announced😍|Thalapathy's New Images Reaction & Review|\\n\\n\\nMy Referral Code - gWgt60\\n\\nInstall Indian Music Player\\n\\nClick to Install from Google Play - https://play.google.com/store/apps/details?id=com.trueindianapps.musicplayer \\n\\nReferral Code : gWgt60\\n\\n*Play Music Earn Money*🤑💸💵💴💶💰💳\\n\\n\\n\\n#Master_Release_Update_Announced😍\\n#Thani_Oruvan\\n\\n\\n\\n\\nTAGS: MasterUpdates, MasterlatestUpdates, MasterSongs, IlayathalapathyVijay, ThalapathyVijay, Kollywood, AndhaKannaPaathakaLyricalVideo, TamilCinemaNews, Thani Oruvan, MasterReleaseDate\\n\\n_________________________________________________\\n [YOU CAN FOLLOW ME ON] *Follow Me On \\n\\nMy Facebook page : https://www.facebook.com/profile.php?id=100004579248855\\n\\nMy Instagram Page:\\nhttps://www.instagram.com/rk___arun?r=nametag\\n\\nMy Twitter page : https://twitter.com/593c8e5d2917467?s=09\\n _________________________________________________\\n\\n [THIS CHANNEL DOESN'T SUPPORT PIRACY] Make Sure To Like Comment And Subscribe. keep Spreading Love To The Channel For More Videos!!! _________________________________________________\\n ©Thani Oruvan..\",\n",
       "  '2020-03-23T10:05:24.000Z',\n",
       "  117,\n",
       "  4.0,\n",
       "  1.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCRoiR2ZpewI0wZXULH5t4pQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Здесь вы можете увидеть видео, смонтированное мной и поржать х) Видео носит чисто развлекательный характер. Все реакции бесплатные, деньги за них получают только правообладатели.',\n",
       "  122,\n",
       "  17082,\n",
       "  198,\n",
       "  'RU',\n",
       "  'https://www.youtube.com/watch?v=oavNDwxm3vI',\n",
       "  'REACTION ON Happy new year 2016 from NINETY ONE Q-POP',\n",
       "  'https://www.youtube.com/watch?v=4a7Z4piIHgs',\n",
       "  '2020-04-21T10:59:48.000Z',\n",
       "  162,\n",
       "  28.0,\n",
       "  10.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCMnah-jp1e1mWHnrbnooU8w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Ka pogi💛Ka ganda🥀ka tropa👨\\u200d👧\\u200d👦Ka mandag🦂',\n",
       "  92,\n",
       "  69,\n",
       "  6,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=phYxGkQgb2I',\n",
       "  'Wiz Khalifa-Something New feat.Dolla Sign Netizens Acting Reaction Video',\n",
       "  '#ReactionVideo\\n#Wizkhalifa',\n",
       "  '2020-04-21T13:20:28.000Z',\n",
       "  11,\n",
       "  4.0,\n",
       "  6.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UC5wZmkOP2KEzpPU6AHtbiIg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'A channel all about Music, lyrics, The Stories Behind Music I have grown to love through out my life\\nlyrical breakdowns, Music Related Discussions,\\n\\nI love all music of many different genres classical, 50\\'s, 60\\'s, 70\\'s, 80\\'s 90\\'s up to the present time\\nThe music i love most that has become my go to on a regular basis is the poetical stylings and wordplay that is only found in rap music\\n\\nI have never liked most mainstream music, sure it is catchy but when i listen to music i want something deeper, with lyrics that make me think.\\n\\nI have searched for new music all my life to find those certain songs that give me an amazing feeling like a drug, these are the types of music i will be displaying to you and hopefully giving you new music you have never heard before but will become a part of your listening experience for the rest of your life\\n\\nsome hear music, I listen to music so come with me, let\\'s \"listen\" and discuss what we like, love, or dislike',\n",
       "  86,\n",
       "  2124,\n",
       "  28,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=Ga2rE8yYYoc',\n",
       "  'Music Review New Deep Thoughts Song Lyrics Analysis Eminem Darkness Music to be Murdered by',\n",
       "  \"Beats of The Heart Lyrics of The Soul\\n\\n\\nvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv\\nIf you liked this review click this playlist to see more https://www.youtube.com/watch?v=ZuYOQQXMcjY&list=PLmckXsvOMAo0jEuNJiMJHiWrpjV9RWbxc\\n\\n\\n\\nMusic Reviews and Lyrical analysis of the songs, music that I love\\nMusic information, music discussion, all music, all genres\\nlets expose each other to new music\\n\\nLike and Subscribe\\n\\n\\nYoutube channels I love listed at bottom of description\\n\\n\\n\\n\\xa0link to artist video\\n\\n\\nhttps://www.youtube.com/watch?v=RHQC4fAhcbU\\n\\n\\n\\n\\xa0link to lyric video \\n\\n\\n\\nhttps://www.youtube.com/watch?v=5zOCu1hnEKQ\\n\\n\\nis this New Music to you?\\n\\n\\ncome sit back and enjoy some music for the love of music\\ntoday's Beats of The heart and Lyrics of The Soul are brought to you by\\n\\nLet me know in the comments if this song is new to you, and what you think about it.\\n\\n\\n\\nYoutube Channels I love\\n\\nArtofKickz\\nlove his music reactions and discussion he brings to the table\\nhttps://www.youtube.com/channel/UCb2h-vtXFd5I-g8TFyOTXRA\\n\\nNickNimmin\\nfor all your Youtube creator needs\\n\\nBrian G Johnson TV\\nfor all your Youtube creator needs\\nhttps://www.youtube.com/user/NickNimmin\\n\\nVSauce\\nlayman science explanations, very entertaining videos, has a science show on YoutubeRed Mindfield which is amazing, VSauce 2 and 3 are science related videos also with different creators\\nhttps://www.youtube.com/user/Vsauce\\nVSauce2\\nhttps://www.youtube.com/user/Vsauce2\\nVSauce3\\nhttps://www.youtube.com/user/Vsauce3\\n\\nVeritasium\\nawesome creator great science related explanations and videos\\nhttps://www.youtube.com/user/1veritasium\\n\\nThe Action Lab\\ncool science experiments that can blow your mind\\nhttps://www.youtube.com/channel/UC1VLQPn9cYSqx8plbk9RxxQ\\n\\nIt's okay to be smart\\nScience channel with a great host and very entertaining explanations\\nhttps://www.youtube.com/user/itsokaytobesmart\\n\\nPBS Eons\\nfor all the explanations and stories of findings in science having to do with the evolution of life\\nhttps://www.youtube.com/channel/UCzR-rom72PHN9Zg7RML9EbA\",\n",
       "  '2020-01-19T14:27:39.000Z',\n",
       "  96,\n",
       "  5.0,\n",
       "  2.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UC0jttiQ9fyua-kN8fapAZUA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hi, Welcome to my channel 'Spill Reviews'. \\n\\nHere I put my efforts into making a better entertaining experience by neutral and unbiased reviews and analyses of anything that is trending in the Internet world.\\nI also do breakdown and in detail discussion with analysis.  \\n\\nSupport me as I target to get 1k subs this year!\\n\\nBe a part of the journey cause we can create something better out of it!\",\n",
       "  76,\n",
       "  11494,\n",
       "  58,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=cd_nJ8lKhZc',\n",
       "  'Bollywood Copy Song ( Old VS New ) | Original VS Remake #4 | Spill Reviews',\n",
       "  'Original VS Remake #4 | Bollywood Copy Song ( Old VS New ) | Spill Reviews\\n\\nHello, Spill Reviews here again with the montage of the latest songs that are being remade or copied from the previous original version!\\n\\nThese lists include old songs remade into new versions :\\nWhich One Do You Like Most? Tell us in the comment section below!\\n\\nFollow my Facebook fan page here :\\nFacebook: http://bit.ly/2piqiEc\\n\\n\\n#OriginalVSRemake #spillreviews',\n",
       "  '2020-02-14T16:32:09.000Z',\n",
       "  29,\n",
       "  8.0,\n",
       "  2.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCQ5Emr_H_8_Es0iLl5W7UaQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@vespertinepk',\n",
       "  'The Premium Platform for Capturing the Art of Pakistan.\\n\\nThe Entertainment Industry in Pakistan has been neglected throughout the decades. Our Mission is to Highlight & Explore the Hidden talent, Creating an Authentic platform, Vespertine.\\n\\nCapturing & Exploring Films, Drama Serials, Music & Style is our main purpose.',\n",
       "  64,\n",
       "  1589,\n",
       "  22,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=cO77EemL-h8',\n",
       "  'Farishta Song Hilarious Reaction | Tahir Shah New Song 2020',\n",
       "  'Farishta Song Hilarious Reaction | Tahir Shah New Song 2020\\nWould you like to commit suicide after watching the Farishta song by Tahir Shah? If yes then go for it...!\\n\\nTahir Shah a Pakistani singer had released his first song \"Eye to Eye\" in 2013 that got viral, then he released \"Angel\" song in 2016 which became a very famous meme material & now, as usual, he didn\\'t surprise us by releasing the Farishta song for kids although kids are crying after listening to this.\\n\\nSo here is what I am sharing my experience after listening to the Farishta song.\\n\\n\\nComment your views about this song....!! \\n\\nSubscribe: https://www.youtube.com/channel/UCQ5Emr_H_8_Es0iLl5W7UaQ?sub_confirmation=1\\n\\n\\n____________\\nWatch my other videos:\\nWaar Pakistani Movie Reaction: https://youtu.be/JIuL6vE1bWs\\nZarrar Movie Release Date: https://youtu.be/OjTm_wBIbEA\\n\\n\\nSay hi on social:Facebook: https://www.facebook.com/VespertinePK/\\nInstagram: http://www.instagram.com/vespertinepk/\\nSnapchat: https://www.snapchat.com/add/vesperti...\\nTwitter: https://twitter.com/vespertinepk\\n\\n\\n#TahirShah  #Farishta  #FarishtaSongReaction',\n",
       "  '2020-04-13T14:04:45.000Z',\n",
       "  82,\n",
       "  3.0,\n",
       "  1.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC9QUjJDqfF3qAWMEqqzRISA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  52,\n",
       "  29507,\n",
       "  275,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=cK9bysT3CB8',\n",
       "  'My Reaction That Scoob! Gets A New Release Date Comes Next Week!',\n",
       "  'YES! Finally! Scoob! Comes out in October 23rd, 2020, Yay!, I Can’t Wait for that Film in October Thank you Warner Bros.\\n\\nNote: I Like Finding Nemo',\n",
       "  '2020-04-06T12:44:20.000Z',\n",
       "  57,\n",
       "  0.0,\n",
       "  2.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UC0jRTKTOiTi9ZRpAYu1ezyA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '#RRR WORLD\\n\\nReactions** Reviews** Roast\\nIn this channel people can watch RRR on alot of already seen videos with a fun side and  transparent reviews on these videos.\\n\\nAnyone csn ask me to make reaction on any videos with there comments and names mentioned in that particular video.\\n\\nSubscribe my channel for more entertaining videos and hit the bell icon for notifications.\\n\\nThanks\\n\\nTALHA WARSI\\n\\nRRR WORLD 😎✌🏻😎',\n",
       "  46,\n",
       "  452,\n",
       "  4,\n",
       "  'AE',\n",
       "  'https://www.youtube.com/watch?v=HJpCwes1VFU',\n",
       "  'TAHIR SHAH New Song Farishta Review',\n",
       "  'Friends, presenting the reaction on the \"FARISHTA\" SONG BY TAHER SHAH\\n\\n\\nTaher Shah released the new song on YouTube. Farishta (Angel) comes after his last song... you guessed it right - Angel, which he released in 2016.\\n\\nHowever, for the first time, Shah was missing from the visuals of his song, and honestly, we think that is the only best thing about it. Instead, the song features animated visuals of a young boy, a floating mermaid, and a fairy.\\n\\n\\nI try to make this review entertaining with fun hopefully everybody like it.\\n\\nTAHIR SHAH NEW SONG FARISHTA AFTER EYE TO EYE AND ANGEL (English version of Farishta)\\n\\n\\nSubscribe My Channel RRR WORLD for more entertaining reactions and reviews and comment below if You like this video.\\n\\nThanks.....\\n\\nRRR WORLD',\n",
       "  '2020-04-15T22:07:39.000Z',\n",
       "  117,\n",
       "  15.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UC_Rh-2YLDAD6cupGv4aBgcA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Our lives are defined by moments of expression! The simplest word or sentence can change ones life forever!  \\nMusic 🎶 Poetry 🖌and creative thoughts are diverse ways of growth and inspiration throughout my life.\\nI hope you enjoy and share my channel!',\n",
       "  42,\n",
       "  2326,\n",
       "  69,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=eLvD0JiwjfU',\n",
       "  'Megan Thee Stallion B.I.T.C.H video REACTION I Tune In Tuesdays New Music Reviews #LyfsLyrics',\n",
       "  'Hey #Pieces💙 Here  is my latest YouTube video about Megan Thee Stallions new video B.I.T.C.H.  This is the first video released of her new EP. “Suga”.   MTS is not playing with y’all. She coming for our necks from her hair to her lashes, frontals and TWERKING, lol. Let me know what you think?  \\n\\nSubscribe to my YouTube Channel @lyfs_lyrics For the latest music release updates and reviews!!      \\n#MasterJT #LyfsLyrics #Pieces💙 \\n\\nThis video is for entertainment purposes only, no copyrights are owned for music or video clips.\\n\\nAs always thanks for watching and please subscribe....... \\nBye #Pieces💙 until the next video.',\n",
       "  '2020-03-17T14:13:04.000Z',\n",
       "  19,\n",
       "  2.0,\n",
       "  0.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UCowi8FHNvi8TT6qARGMyjaw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '*Subscribe our channel for good an knowledgeable videos.\\n\\n*Funny videos👍\\n\\n*Knowledgeable videos👍\\n\\n*Kids videos👍\\n\\n*Family videos👍\\n\\n*Shayari videos👍\\n\\n*All unique videos in Punjabi available here.',\n",
       "  40,\n",
       "  2684,\n",
       "  10,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=ZfoqKGLojRM',\n",
       "  '|Dolchegabana by Karan Randhawa|New punjabi song|Tiktok reviews |#dolchegabana',\n",
       "  \"Dolchegabana by Karan Randhawa\\nNew punjabi song\\ntiktok reviews\\nKaran Randhawa's new Punjabi song\\nNew tiktok trends\\n561.4k tiktok views\\n#geetmp3\\n#karanrandhawa\\n#dolchegabana\\n#nirbhaygrewal\",\n",
       "  '2020-03-30T07:23:44.000Z',\n",
       "  43,\n",
       "  8.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCvCSH9oblz0S5r5FQtJTCIw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Atlanta based alternative, indie  rock band',\n",
       "  28,\n",
       "  3454,\n",
       "  4,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=a2HQEFkCadA',\n",
       "  'Ten Story Relapse - Attraction Reaction | Alternative Rock Video | New Indie Rock Artist',\n",
       "  'Category: Indie Rock | Indie Artist | Indie rock video | Alternative Rock | Alternative Artist |\\nAlternative Rock Video | Attraction Reaction\\nThe Atlanta-based Indie Rock band Ten Story Relapse has announced the release of their new\\nsingle and alternative rock video “Attraction Reaction”. The energetic new song has been long\\nawaited by the band’s fans and was released on www.tenstoryrelapse.band on February 11 th ,\\n2020.\\n‘It had been a while since we’d sat around and recorded anything new… We were all working\\non a variety of different projects after “Boxes” was released. Scott Patton was busy with his\\nongoing musical endeavors with Jennifer Nettles and Sugarland.\\xa0 Meanwhile Mark and I were\\nimmersed with Josh Golden working on another project called “The Mighty High Heels”. A\\ncasual gathering last summer grew into a yearning to do more,” says vocalist John Douglas.\\nAs far as the story behind the indie rock video goes, “Attraction Reaction” was created as a very\\nstraight ahead and energetic tune from some initial “The Mighty High Heels” sessions. John\\nshared that the song development occurred after Scott, Mark, and John rediscovered it and began\\nenvisioning the tune as more straight ahead and guitar driven track. The new vibe helped drive\\nthe energy and the lyrical content and resulted in the alternative rock video, directed by Austin\\nTaylor\\n\\xa0“It is a song that touches on anxiety, release, denial and frustration. The song recognizes, in a\\ntongue and cheek manner, that regardless of our diversions and impulses, we are all just atoms,\\nand matter, driven by chemical reactions. We’re just chaotically bouncing around and reacting\\noff one another,” explains John Douglas.\\nThe alternative rock / indie rock video and music can be found at:\\nYouTube - https://youtu.be/a2HQEFkCadA\\nApple Music\\nSpotify\\nPandora\\nAmazon\\n\\xa0 \\xa0 \\xa0\\nKey: Indie Rock | Indie Artist | Indie rock video | Alternative Rock | Alternative Artist |\\nAlternative Rock Video | Attraction Reaction\\nAll Rights Reserved 2019\\nVideo by Austin Taylor\\nAudio Engineer Bruce Bennett\\nMastering by Glenn Schick',\n",
       "  '2020-01-30T21:31:45.000Z',\n",
       "  761,\n",
       "  17.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCLLRLPbrukUUbFFRA2mnacw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Guitar videos and general metal music',\n",
       "  26,\n",
       "  5779,\n",
       "  24,\n",
       "  'FR',\n",
       "  'https://www.youtube.com/watch?v=q7dUFY88_TQ',\n",
       "  'What The Dead Men Say - Reaction',\n",
       "  \"Doing a little reaction on Trivium's new release : What The Dead Men Say from the upcoming album of the same name\",\n",
       "  '2020-04-03T22:04:07.000Z',\n",
       "  43,\n",
       "  0.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCwSKosMjWoCPm6FmgKPMT-A',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Synthologic is the the new project of Ioannis Kefalas (Psychotec) and Panagiotis Pournos (Dj Microstar) from Greece!\\nAfter many years  performing on parties and festivals they started to create a Psy Progressive style based on Psychotec's and Microstar's inspirations.\\nThe result was Synthologic and started its journey late 2018 on YSE records with the EP ''Magnetized Memories''.The second Ep, ''Psyence'' is out too by Transcape Records and our next release coming out from Dacru Records 18th of November..\\nThe rest on the dancefloors!\",\n",
       "  25,\n",
       "  212,\n",
       "  8,\n",
       "  'GR',\n",
       "  'https://www.youtube.com/watch?v=sDWY8-EvU08',\n",
       "  'Synthologic - Mind Reaction',\n",
       "  \"Artist: Synthologic\\nTrack: Mind Reaction\\nEP:  Magnetized Memories & VA Goa 2019 Vol2\\nRelease Date: December 2018\\nRecord Label: Yellow Sunshine Explosion\\n\\n-----------------------------------------------------------------------------\\n\\nFollow and support us here :\\nwww.facebook.com/synthologic\\nwww.soundcloud.com/synthologic\\nhttps://music.apple.com/gr/artist/syn...\\nhttps://www.beatport.com/artist/synth...\\nhttps://open.spotify.com/artist/1Q7lJ...\\n\\n\\n\\n\\nSynthologic is the project of Ioannis Kefalas aka Psychotec and Panagiotis Pournos aka Microstar!!\\nAfter many years acting & participating on parties and festivals around the earth, with their solo projects, they started to create a Psytrance Progressive style music based on Psychotec's and Microstar's inspirations and experiences!\\nSynthologic started its journey at the end of 2018 on YSE records with the EP ''Magnetized Memories''. A little later the EP reached No 64 on top Psytrance Ep's on Beatport and our track ''Magnetized Memories'' reached No 49 on New Psytrance Hype Tracks again on beatport!\\nAll the tracks of ''Magnetized Memories was later selected as part of the very famous GOA 2019 (Vol1 & Vol2) and GOA Trance (Vol 39) compilations!\\nSynthologic's second Ep, ''Psyence'' was out by Transcape Records on June 2019 inclunding their track ''Psyence'' that is still one of their most famous based on Beatport's statistics!\\nAt the end of 2019 & early 2020 Dacru Records released their next 2 tracks (Sunrise Attitude & Clockwise Dreams) under the famous UnCharted compilation (number XIV & XV) .\\n''Sunrise attitude'' is at the moment their most famous track (on Beatport) & ''Clockwise Dreams reached, on Psyshop's TOP 100 March 2020, No7!!\\nMay of 2020 their third EP ''Harmonized Particles'' will be out, inclunding 3 unique melodic tracks, by Progg n' Roll PNR !!\\nSo far Synthologic had shared the stage with well known projects as Vertical Mode,Lunatica, Dust, Tromo, Rezonant, Dark Elf and more on parties and was part of main stage's lineup at Own Spirit Festival 2019 in Spain.\\nStay tuned and follow Synthologic for new releases and gigs.\",\n",
       "  '2020-04-04T13:07:07.000Z',\n",
       "  22,\n",
       "  1.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCA_8e9mYzBgIAp5LwVhiMoA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  25,\n",
       "  179,\n",
       "  4,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=IG_SH7CIlEc',\n",
       "  'Reaction',\n",
       "  'This is a track from the new album release THE UPDATE 3 Coming April 25th 2020',\n",
       "  '2020-02-07T01:43:53.000Z',\n",
       "  6,\n",
       "  2.0,\n",
       "  1.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UCMigH8diSL-KHFRaZeuLXDg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  12,\n",
       "  1374,\n",
       "  8,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=P0z6AvQo8rQ',\n",
       "  'Genda phool song Review🔥| New Video | The Bong Guy | Your Bong Guy | Badshah | Kiran Dutta',\n",
       "  '#The Bong Guy\\n#Funny Video\\n#Latest Video\\n#Trending Song\\n#Rap Song\\n#Genda phool song\\n#Badshah\\n#Roast video\\nThe bong guy song reviews♥️♥️\\nBadshah new song \\nthe bong guy new video🔥🔥\\n#Genda phool\\n#Your Bong Guy\\n#Kiran Dutta New Video\\n# Genda phool song by Badshah',\n",
       "  '2020-03-27T15:47:22.000Z',\n",
       "  979,\n",
       "  56.0,\n",
       "  0.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCMr_yJXPO0MCYy_NMM4j1wQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '❤️K-pop ❤️',\n",
       "  10,\n",
       "  1438,\n",
       "  7,\n",
       "  'KR',\n",
       "  'https://www.youtube.com/watch?v=I2_SZ1D9vFI',\n",
       "  'My a new reaction to ATEEZ (에이 티즈) - WONDERLAND ✔',\n",
       "  '✌💖\\nMy Instagram- https://instagram.com/a.loyya?\\nMy reaction to ATEEZ (에이 티즈) - WONDERLAND\\n👍✔\\nSubscribe if you want to see new reactions to K-POP❤❤\\nATEEZ (에이 티즈)에 대한 나의 반응-WONDERLAND\\nK-POP❤❤에 대한 새로운 반응을 보려면 구독하십시오\\n👌✔\\nПервая реакция на групу ATEEZ (에이티즈) - WONDERLAND\\nПодписывайтесь если хотите видеть новые реакции на K-POP❤❤\\n\\n🧡\\nhttps://www.youtube.com/results?search_query=%23ATEEZ\\n\\n\\n#KPOP #ATEEZ #Korea #BTS #recommendation #reaction to ATEEZ',\n",
       "  '2020-01-29T19:54:25.000Z',\n",
       "  151,\n",
       "  9.0,\n",
       "  3.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCnPNEOHwIdRpgvTXEbkVPPA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@bartsjunior',\n",
       "  'Hi, my name is Justin and I post random videos!!!',\n",
       "  8,\n",
       "  275,\n",
       "  8,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=TGFDxdu7P-U',\n",
       "  'ITZY \"WANNABE\" M/V - REACTION! HYPE!',\n",
       "  \"ITZY is probably my fav girl kpop, so I just had to react to the new release! didn't even have time to get out of my work clothes XD\\n\\nFollow me on socials:\\nhttps://www.twitch.tv/bartsjr\\nhttps://www.facebook.com/BartsJrJB/\\nhttps://www.twitter.com/Bartsjr\\nhttps://www.instagram.com/bartsjunior/\",\n",
       "  '2020-03-09T21:54:03.000Z',\n",
       "  26,\n",
       "  4.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCnfImi8yKT0q4mPTWiu3Jnw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  2,\n",
       "  23,\n",
       "  2,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=XVX5iLcPKgM',\n",
       "  \"New BTS Release 'On' Kinetic Film Reaction\",\n",
       "  'This is my first bts reaction video \"On\" this channel. (Get it? \"On\"? The title of the new release mv?) Anyways, enjoy the video!',\n",
       "  '2020-02-21T10:24:54.000Z',\n",
       "  15,\n",
       "  0.0,\n",
       "  nan],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UCrXOOABtizrJ88b_vNbTcHQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  0,\n",
       "  5,\n",
       "  4,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=uGfyJ-jeMtM',\n",
       "  'Aashiqui  me Teri ja ja gii Meri funny video new reviews song',\n",
       "  'Súphál síñgh ñtr 🤘🤘',\n",
       "  '2020-01-14T12:12:26.000Z',\n",
       "  1,\n",
       "  1.0,\n",
       "  0.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCq4GUDEuIi1KZ3_MdbaRiBA',\n",
       "  'highratedbaba@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"😏Aap dekh rahe hain 'High Rated Baba'😉\\n👊👊Baat wahi, Andaaz naya👊👊\\nHii Friends!!! आपको इस चैनल पर Guru Randhawa  के साथ साथ Pollywood or Bollywood से जुड़ी हर News सबसे पहले मिलेगी, इसलिए चैनल को Subscribe करके ही जाएँ l\\n\\nFor business inquiries: highratedbaba@gmail.com\",\n",
       "  0,\n",
       "  4666669,\n",
       "  230,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=5fEdBCap1hk',\n",
       "  'Gulzaar Chhaniwala Reaction on BHAGAT song success 😲🤗',\n",
       "  'Gulzaar Chhaniwala Reaction on BHAGAT song success 😲🤗 । Latest New Song Video 2020 । High Rated Baba\\n\\n#GulzaarChhaniwala #Bhagat #Success',\n",
       "  '2020-04-15T12:20:22.000Z',\n",
       "  39316,\n",
       "  3043.0,\n",
       "  133.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCnFgtDzRPA1xnoBC6__QBdg',\n",
       "  'joshreacts95@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hi I am  Josh I love to hear new music! I have a completely open mind to any kind of music! So feel free to request and let the Journey begin!\\n\\nTwitter: josh_reacts\\n\\nbusiness inquires contact:  joshreacts95@gmail.com',\n",
       "  0,\n",
       "  6693648,\n",
       "  214,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=6X3HTU3ukSs',\n",
       "  \"LILI's FILM #3 -  BLACKPINK LISA Dance Performance Video REACTION!\",\n",
       "  \"#LILIFILM #LISA #BlackPink \\n\\nLILI's FILM #3 - LISA Dance Performance Video https://youtu.be/je_R3gEtDbw\\n\\nThanks so much for watching. What would you like for me to react to next? PATREON: @ https://www.patreon.com/joshreacts\\n ( BlackPink House, Twice TV, Hard Carry, Finding Stray Kids, RED VELVET LEVEL UP, EXO LADDER )\\n\\n\\nFIRST TIME LISTENING TO BLACKPINK 'Kill This Love' MV REACTION\\nhttps://youtu.be/hYEbQDEBLYY\\n\\nFIRST TIME REACTING TO BLACKPINK - ‘뚜두뚜두 (DDU-DU DDU-DU)’ M/V THEY ARE SAVAGES https://youtu.be/utQlKDj8kHM\\n\\nFIRST TIME REACTING TO BLACKPINK - '붐바야'(BOOMBAYAH) M/V\\nhttps://youtu.be/0yHZDczpNeI\\n\\nFIRST TIME REACTING TO A Beginner's Guide to Blackpink! (who is who?)\\nhttps://youtu.be/N1-RQ5X4VeE\\n\\nFIRST TIME REACTING TO BLACKPINK - '휘파람'(WHISTLE) M/V | THIS SONG GO HARD AF https://youtu.be/REUAhg6ZX94\\n\\nFIRST TIME REACTING TO BLACKPINK - '불장난 (PLAYING WITH FIRE)' M/V\\nhttps://youtu.be/71bzH_FoC6Y\\n\\nan (un)helpful guide to blackpink (2019 version) REACTION\\nhttps://youtu.be/bqy9mCFUXl8\\n\\nFIRST TIME REACTING TO BLACKPINK - '마지막처럼 (AS IF IT'S YOUR LAST)' M/V https://youtu.be/NhzoaIk_b4c\\n\\nFIRST TIME REACTING TO BLACKPINK STAY MV\\nhttps://youtu.be/yb4VCf70MNc\\n\\nFIRST TIME REACTING TO BLACKPINK JENNIE - 'SOLO' M/V\\nhttps://youtu.be/T49QmSaxCMc\\n\\nFIRST TIME REACTING TO BLACKPINK - 'SURE THING (Miguel)' COVER 0812 SBS PARTY PEOPLE https://youtu.be/Zt5ll8D9Kvs\\n\\nFIRST TIME REACTING TO BLACKPINK: Journey and Friendship\\nhttps://youtu.be/LhJ1Q3UbXFI\\n\\nFIRST TIME REACTING TO BLACKPINK - 'Don't Know What To Do' DANCE \\nPRACTICE VIDEO (MOVING VER.) https://youtu.be/1FvOw_hMTlw\\n\\n\\nBLACKPINK LISA舞台大秀 Stage Show of Dance Mentor LISA REACTION! AMAZED!! https://youtu.be/p3JAq_nT9Nk\\n\\nFIRST TIME REACTING TO BLACKPINK - 'SO HOT' (THEBLACKLABEL Remix) in 2017 SBS Gayodaejun https://youtu.be/CBiot2yz8no\\n\\nFIRST TIME REACTING TO BLACK PINK - Kill This Love - Live At Coachella 2019 https://youtu.be/UhtNgfekkGU\\n\\nFIRST TIME REACTING TO LILI's FILM #1 - LISA Dance Performance Video| HAPPY BIRTHDAY https://youtu.be/0pykjF42yUs\\n\\nFIRST TIME REACTING TO BLACKPINK - '휘파람(WHISTLE)' DANCE \\nPRACTICE VIDEO https://youtu.be/dWA3dfXtP1Y\\n\\nBLACKPINK LISA (Youth With You Clip 2)青春有你 LISA shared her \\nexperience to encourage trainees REACTION https://youtu.be/tcPWytCkV9E\\n\\nBLACKPINK LISA becomes a tough mentor LISA化身魔鬼导师 YouthWithYou 青春有你2 iQIYI Reaction https://youtu.be/rr4EACXhZro\\n\\nFIRST TIME REACTING TO BLACKPINK - Kick It & Don't Know What To Do (Color Coded Lyrics) https://youtu.be/yeBeJj_kAP0\\n\\nFIRST TIME REACTING TO BLACKPINK - 'Kill This Love' Live at Coachella 2019 https://youtu.be/LMu-Y2MFdq4\",\n",
       "  '2020-04-20T12:47:03.000Z',\n",
       "  90436,\n",
       "  5809.0,\n",
       "  320.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCd4TPyDdBs9gefjQwiM7x5g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hi To Everyone... Welcome to Celebrity Media. We are here to entertain You and give information from all corners of the world. Stay with us for the latest Tollywood updates, short films, comedy Videos, Movie Reviews, Latest Songs, Political News, Bhakti Videos, Festival Songs... \\n\\nWe Focused More On Entertainment... Top Hero's Updates, Chiranjeevi, Pawan Kalyan, Allu Arjun, Mahesh Babu, Prabhas, Jr Ntr, Nagarjuna, Venkatesh, Balakrishna...Actress Updates Also Rashmika Mandanna, Tamannah, Samantha, We Take Interviews From TV Actors, Jabardasth Comedians, Sudigali Sudheer, Hyper Aadi, Getup Srinu, Anasuya, Rashmi, Naga Babu...\\n\\nTelangana political news, Andhra Pradesh political news, ts political news, ap political news.\\nTelangana cm KCR news\\n\\nAndra Pradesh Political News On AP CM Ys Jagan Mohan Reddy, Chandrababu Naidu, Nara Lokesh\\n\\nSubscribe Our YouTube Channel\\nhttps://bit.ly/2Oa7KiZ\",\n",
       "  0,\n",
       "  23015626,\n",
       "  3194,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=YdsZEbZWYEc',\n",
       "  '#VakeelSaab - Maguva Maguva Song Review | Pawan Kalyan | Maguva Maguva Lyrics | PSPK26th | Celebrity',\n",
       "  '#VakeelSaab - Maguva Maguva Song Review | Pawan Kalyan | Maguva Maguva Lyrics | PSPK26th | Celebrity\\n\\n#VakeelSaab #MaguvaMaguvaSong #PawanKalyan\\n#pspk26thmoviesong\\n\\nmaguva maguva telugu song\\nmaguva maguva whatsapp status\\n\\nvakeel saab\\nmaguva maguva song\\npawan kalyan\\nmaguva maguva full song\\nmaguva maguva whatsapp status\\nMaguva Maguva Song Review\\nmaguva maguva song whatsapp status\\nmaguva maguva lyrics song\\nvakeel saab maguva song\\nvakeel saab songs\\npawan kalyan latest movie\\nvakeel saab new song\\npawan kalyan songs\\nvakil sahab\\npawan kalyan new moviea\\npspk 26th movie song\\npspk songs\\npawan kalyan new song\\nsid sriram maguva maguva\\nvakeel saab first song\\ncelebrity media\\nthaman s\\n\\nSong - Maguva Maguva\\nMusic - Thaman S\\nSinger - Sid Sriram\\nLyrics - Ramajogayya Sastry\\n\\nCast & Crew :\\nDirected By - Sriram Venu\\nProduced By - Raju - Shirish\\nCo-Producer - Harshith Reddy\\nDop - P S Vinod\\nProduction Design - Rajeevan\\nSri Venkateshwara Creations\\nPresents - Boney Kapoor\\nEditor - Prawin Pudi\\nDialogues Thiru\\nAction - Ravi Verma\\nVfx Supervisor - Yugandhar T\\nSketches - AJ\\nVideo Composition - Walls And Trends\\n\\nSong Credits:\\n\\nProgrammed & arranged by thaman S \\nLyrical supervision - Sri krishna \\nChennai string section \\nConducted by - Prabhakar & Ravi Raghav \\nMacedonian orchestra recorded at Skopje fames project Arranged by - Prassanna B \\nAdditional programming - SiDdhanth &Osho V \\nHyderabad harmony - Ramya , Gayathri Sruthi \\nAditi Yamini & Mohana \\nChennai harmony - Veena swagatha hari Priya Soumya \\nMandolin & strings - tapas toy & Ankur Mukherjee \\nFlute - Naveen & Kamalakar \\nRecorded at YRF & V studios & prasad labs \\nMixed & mastered by - shadab Rayeen \\nAt New edge Mumbai & NY \\nAssisted by - Dhanajey & Abhishek \\nMusicians co ordinator - Manigandan \\nStudio assistance - seenu kannan & Lingam\\n\\nThe Celebrity Media Channel will give you complete information about Latest Released Movies, Latest Trailers, Telugu News, celebrity news, latest songs.\\n\\n We Focus On Telugu Movie Updates, Celebrity Interviews,Movie Press Meets, Breaking News, Public Opinions, Some Special Pranks, Movie Reviews And Public Talks On Present Issues\\n\\nLatest News of Anchors and TV Artists such as Anasuya Bharadwaj, Rashmi Gautham, Ravi, Sreemukhi, Pradeep Machiraju, Suma Kanakala, Sudigali Sudheer, Hyper Aadi.\\n\\nOur Channel Top Videos Here...\\n\\nసుధీర్ నా హీరో,  Anchor Rashmi Goutam Propose To Sudigali Sudheer\\nhttps://bit.ly/2sHV3Eo\\n\\nఅమ్మ తోడు ఇంత మంది అభిమానుల..! Sudigali Sudheer Craze\\nhttps://bit.ly/30E9TIC\\n\\nTik Tok Uppal Balu Exclusive Rapidfire Questions\\nhttps://bit.ly/30DGY7s\\n\\nComedian Ali With His Mother Exclusive Video\\nhttps://bit.ly/2tC9yKs\\n\\nఅందరిని నవ్వించే ఉప్పల్ బాబు వెనక కన్నీటి కష్టాలు\\nhttps://bit.ly/2tr1P1T\\n\\nNaga Babu Emotional Words About Sudigali Sudheer\\nhttps://bit.ly/37n1JH3\\n\\nHari Teja Superb Burra Katha On Prati Roju Pandaage Sambaralu\\nhttps://bit.ly/30Uj8Vo\\n\\nథియోటర్లు లేవు అని గొడవ పెట్టుకున్న ఫాన్స్\\nhttps://bit.ly/37oDiJl\\n\\nDil Raju and Prabhas Rare Unseen Exclusive Video\\nhttps://bit.ly/2vjq8zj\\n\\nసుధీర్ కోసం రష్మీ కష్టాలు\\nhttps://bit.ly/2NUv3NC\\n\\nCelebrity Media is a Brand New YouTube channel dedicated to News, Live Reports, Exclusive Interviews, Breaking News, Sports, Weather Forecast, Movie Updates, Entertainment, Business Updates, Current Affairs, and Ladies Beauty tips.\\n\\nFor More Update Please Subscribe to Our YouTube Channel Celebrity Media.\\n http://bit.ly/CelebrityMedia',\n",
       "  '2020-03-08T08:21:02.000Z',\n",
       "  1804,\n",
       "  87.0,\n",
       "  6.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCZnspwv9qUFuHA5hBBYk_2g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'This channel is my wife and I doing Album Reviews (Yes, All Genres), Concert Reviews, TV Show Review/Predictions, and much more. \\n\\nI do not own the rights to any music I play on this channel.',\n",
       "  0,\n",
       "  12852,\n",
       "  64,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=4bXB1unSNVE',\n",
       "  'The Strokes - The New Abnormal | Album Review/Reaction (1-10 RATING)',\n",
       "  'Album Review of the new The Strokes - The New Abnormal album, . This is just my wife and I honest reaction to The Strokes - The New Abnormal. \\n\\nBrielle\\'s Favorite Songs:\\nSelfless\\nBad Decisions\\nThe Adults Are Talking\\n\\nSeth\\'s Favorite Songs:\\nThe Adults Are Talking\\nSelfless\\nBad Decisions\\nEternal Summer\\nAt The Door\\n\\nFinal Score 8.9/10\\n\\n___________________________________________________________________________\\n\\nBuy “Carol Did It” shirts\\nhttps://www.sample-surplus.com/\\n\\nDisclaimer : No Copyright Infringement Intended. All Visuals, Audio Belong To Their Proper Owner/s.\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use',\n",
       "  '2020-04-18T20:57:59.000Z',\n",
       "  1026,\n",
       "  23.0,\n",
       "  11.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UC8xVCtb8usp8TOPtqt9li8Q',\n",
       "  nan,\n",
       "  '@faraz_jutt_125',\n",
       "  nan,\n",
       "  '@shavatarkash',\n",
       "  'we are here to entairtain you,and our life style and we react and reaview on youtube video\\nthanks for watching\\nfaraz instagram https://www.instagram.com/faraz_jutt_125/?fbclid=IwAR1yiT82MCN7DM5ovmPjLt_lzwdAVNZ7lEPKOS7AqcoijGf_qvN7Z6kF4ro\\nhasan instagram https://www.instagram.com/bhati_hasan/?igshid=1ph0qnut2uanf&fbclid=IwAR1bkpAG_HekpYd9N5JsmsNhkIPICEcw1xlkbsjAbBBCPzAMQ7wTRUH_5RU\\nsheraz instagram https://www.instagram.com/shavatarkash/?igshid=1lmew5aysjvp7&fbclid=IwAR1_WYK4fI8yk4arivxXRBkfNAL4N071hOmSBbb4U9K7rnUSf_ZhfjxMPO8',\n",
       "  0,\n",
       "  74985,\n",
       "  36,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=9KlsBachdzM',\n",
       "  'PAKISTANI REACTION ON||FAISU AND JANNAT ZUBAIR NEW SONG||AEROPLANE||REVIEW.',\n",
       "  'PAKISTANI REACTION ON||FAISU AND JANNAT ZUBAIR NEW SONG||AEROPLANE||REVIEW.\\noriginal link https://www.youtube.com/watch?v=xCBF6mvSDZc\\nTitle : Aeroplane\\nSinger : Vibhor Parashar \\nMusic : Rajat Nagpal\\nLyrics: Sarmad Qadeer\\nRecorded @ Amv studio by Rahul Sharma assist by Samir Dharap\\n\\nStarring: Mr. Faisu & Jannat Zubair\\n#aeroplane  #faisu   #jannatzubair\\nsheraz instagram https://www.instagram.com/shavatarkash/?igshid=1lmew5aysjvp7&fbclid=IwAR1_WYK4fI8yk4arivxXRBkfNAL4N071hOmSBbb4U9K7rnUSf_ZhfjxMPO8\\nfaraz instagram https://www.instagram.com/faraz_jutt_125/?fbclid=IwAR1yiT82MCN7DM5ovmPjLt_lzwdAVNZ7lEPKOS7AqcoijGf_qvN7Z6kF4ro\\nhasan instagram https://www.instagram.com/bhati_hasan/?igshid=1ph0qnut2uanf&fbclid=IwAR1bkpAG_HekpYd9N5JsmsNhkIPICEcw1xlkbsjAbBBCPzAMQ7wTRUH_5RU\\nCopyright Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. educational or personal use tips the balance in favor of fair use....',\n",
       "  '2020-03-26T12:44:16.000Z',\n",
       "  2842,\n",
       "  194.0,\n",
       "  21.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCC8nfmH-j6p-8TZ_IBCNCAg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'TWICE FANCAM CHANNEL  please like and subscribe!!!',\n",
       "  0,\n",
       "  31484889,\n",
       "  383,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=TwMQJBCb18E',\n",
       "  \"TWICE(트와이스)  Idol Reaction to 'Feel Special' Seoul Music Awards 4K Fancam\",\n",
       "  '#TWICE #Reaction \\nTWICE 트와이스 Redvelvet 레드벨벳 TXT Ab6ix ITZY Reaction fancam',\n",
       "  '2020-02-01T12:53:36.000Z',\n",
       "  200087,\n",
       "  5092.0,\n",
       "  113.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCgpYOkK4oCMj7NYRMcPdVmw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Gurish Records is the International music Record Label.\\n\\nStay tuned with Gurish records and subscribe to this channel for more.\\n\\nhttps://bit.ly/gurishrecords',\n",
       "  0,\n",
       "  4743019,\n",
       "  363,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=uKiqOD4K2Ls',\n",
       "  'Chhapaak Title Track -  Deepika Padukone ¦ Vikrant Massey ¦ Arijit Singh New Song 2020',\n",
       "  'Chhapaak Title Track -  Deepika Padukone ¦ Vikrant Massey ¦ Arijit Singh New Song 2020\\n\\n\\n\\n\\n\\n\\nchhapaak title track, chhapaak song, arijit singh songs, arijit singh new song, deepika padukone, deepika padukone chhapaak song launch, nok jhok chhapaak song, nok jhok title track, arijit singh new songs, chhapaak song launch laxmi agarwal, Chhapaak Title Song Launch laxmi agarwal, Chhapaak Title Song Launch deepika padukone, laxmi agarwal crying at chhapaak song launch, akhiyan milavanga arijit singh, raanjhanaa song arijit singh, deepika padukone acid attack, Chhapaak Title track Launch, Chhapaak Song Launch deepika padukone, arijit singh new song 2019, deepika padukone at Chhapaak Title Song Launch, chhapaak title son, chhapaak trailer reaction, nok jhok chhapaak, chhapaak movie trailer, chhapaak song launch funny moments, latest bollywood song, deepika padukone songs, hindi bollywood songs, Chhapaak Title Track, deepika padukone meghna gulzar, Chhapaak Title Song Launch, chhapaak trailer, chhapaak tittle track reaction, chhapaak movie official trailer, Chhappak Title track acoustic Cover, chhapaak song arijit singh, ranjhana arijit singh, panga arijit singh, raanjhanaa arijit singh, chapaak acid attack, Chhapaak title track lyrics, arijit singh, arijit singh live performance, Chapak Title track cover, Chhappak Title track cover, chhapaak title song, bollywood news, gulzar new song, 2019 bollywood songs, deepika padukone new movie trailer, Chhapaak Title Track Video Review, laxmi agarwal on deepika padukone, chhapaak video song, chhapaak arijit singh, deepika padukone chhapaak, chhapaak movie poster, chhapaak movie reality, chhapaak movie song, chhapaak song lyrics, chhapaak full song, bollywood now, meghna gulzar, nok jhok deepika padukone, Arijit Singh Live 2019, Arijit Singh Live 2020, arijit singh songs 2020, arijit singh 2020 songs, best of arijit singh, arijit singh sad songs, Hindi Songs Bollywood Songs, New Hindi Song 2019, hindi songs 2019, 2019 Hindi Songs, New Hindi Song, chhapaak songs, chhapaak teaser, chhapaak poster, singh chhapaak title, Bollywood Songs, in chhapaak title song, track of chhapaak acid, title track of chhapaak, the title track of chhapaak, at chhapaak title song, the title track, padukone chhapaak title, trailer chhapaak title, acid attack chhapaak, chhapaak movie title, song chhapaak title, \" chhapaak title, watching chhapaak title, madam chhapaak title, chhapaak title, deepika padukone interview, vikrant massey movie, deepika padukone movies, vikrant massey, bollywood tashan, smile plz, bollywood latest news, latest bollywood news, good news, lakshmi agarwal, full movie, bollywood news hindi, latest bollywood movies, n news, upcoming movie teaser, upcoming movie trailer, new movie teaser, new movie trailer, chhapak guitar lesson, Chhapak guitar, Chapak guitar chords, bollywood songs, 2019 hindi songs, new hindi song, Arijit Music Sk, Arijit Singh Live, Arijit Singh, arijit singh collection, arijit singh live, zee music company, songs 2019, laxmi agarwal crying\\n\\nchhapaak movie trailer, chhapaak official trailer, chhapaak trailer, chhapaak release date, chhapaak real story, chhapaak movie, nok jhok chhapaak song, deepika padukone chhapaak, chhapaak trailer reaction, deepika padukone, chhapaak songs, chhapaak true story, chhapaak title son, nok jhok chhapaak, chhapaak title track, laxmi agarwal crying at chhapaak song launch, chhapaak song launch laxmi agarwal, deepika padukone chhapaak song launch, chhapaak song, chhapaak trailer public review, chhapaak trailer review hindi, chhapaak trailer vikrant massey, deepika padukone chhapaak movie, deepika padukone chhapaak trailer, chhapaak trailer review, chhapaak trailer official, chhapaak song launch funny moments, chhapaak real story in hindi, deepika padukone chhapaak movie trailer, laxmi agarwal chhapaak, chhapaak trailer discussion, chhapaak trailer launch, meghna gulzar chhapaak, vikrant massey chhapaak, deepika padukone acid attack, arijit singh songs, laxmi agarwal acid attack, nok jhok title track, akhiyan milavanga arijit singh, arijit singh new songs, raanjhanaa song arijit singh, chhapaak trailer youtube, chhapaak cast, chhapaak meaning, chhapaak story, chhapaak movie tickets, chhapaak full movie, chhapaak reviews, chhapaak poster, chhapaak Movie, deepika padukone songs, gulzar new song, hindi bollywood songs, 2019 Hindi Songs, ranjhana arijit singh, panga arijit singh, raanjhanaa arijit singh, chapaak acid attack, deepika padukone at Chhapaak Title Song Launch, deepika padukone meghna gulzar, Chhapaak Title track Launch, Chhapaak Title Song Launch, deepika padukone laxmi agarwal, meghna gulzar acid attack, arijit singh live performance, arijit singh new song, bollywood news, laxmi agarwal, meghna gulzar, Bollywood Songs,',\n",
       "  '2020-01-03T09:13:05.000Z',\n",
       "  31675,\n",
       "  703.0,\n",
       "  19.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UCVW1F6MzWTwqAjvj5InlWaQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Ghana Entertainment News, Music Updates and More',\n",
       "  0,\n",
       "  7035,\n",
       "  14,\n",
       "  'GH',\n",
       "  'https://www.youtube.com/watch?v=Wasc7e6RAjU',\n",
       "  'SHUT UP  ! Archipalago New Diss Song To Shatta Wale ,Reviews To Secrets',\n",
       "  'Archipalago - Shut Up (Shatta Wale Diss)',\n",
       "  '2020-04-09T13:40:38.000Z',\n",
       "  21,\n",
       "  0.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCk0qm5WGI5KPfq2M_L6AHLA',\n",
       "  'ssggang2020@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Welcome GTB GANG to my official GTB QUIET YouTube channel! I bring you pranks, story times, challenges, vlogs, and FREE giveaways and more! Do me and yourself a favor by subscribing and enabling ALL push notifications. For instant updates, check out my social media accounts below! Show me some love and I’ll do the same!\\n\\nNEW VIDEOS DAILY!!!\\n\\nInstagram: QuietKingTheOnly1\\nTwitter: Quiettheonly_1\\nSnapchat : gtb_quiet1                  \\nBusiness purposes: ssggang2020@gmail.com',\n",
       "  0,\n",
       "  2347,\n",
       "  44,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=aczL888kcTk',\n",
       "  '6IX9INE - NEW SONG (LEAKED ) JUST RELEASED REACTION!!!',\n",
       "  '6IX9INE TOOK A CORONAVIRUS PLEA TO GET OUT OF JAIL... THEN HE RELEASE THIS SONG (( MUST WATCH))\\n\\nTHANKS FOR WATCHING PLEASE HIT THE LIKE BUTTON AND SUBSCRIBE BUTTON!\\n\\nInstagram: quietkingtheonly1\\nTwitter: quiettheonly_1\\nSnapchat: gtb_quiet1\\nTik tok: gtb_quiet1\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.',\n",
       "  '2020-04-06T17:57:52.000Z',\n",
       "  35,\n",
       "  nan,\n",
       "  1.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCbBuAnvrEwZRqIdzs_xbq4g',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Channel Purpose\\n\\n1- Kashmir Beauty\\n2 - Topic/news which Pakistani Media Miss \\n\\nStart Work Jul - 2019\\n\\nچینل بنانے کا مقصد :- \\n1 ۔کشمیر کی خوبصورتی\\n2۔ تازہ خبریں جو اکشر میڈیا نظر انداز کرتا ہے',\n",
       "  0,\n",
       "  555400,\n",
       "  143,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=bbGT207JZiM',\n",
       "  'Farishta Taher Shah New Song And Fan Reaction | Farishta Farishta Tahir Shah',\n",
       "  '#farishtatahirshah #tahershah #fspknature\\n\\nCredit and full Song here https://youtu.be/dSJ7fFAWvWY\\n\\nAngel angel ke bad taher shah ne new gana farishta farishta Release kar diya ha\\n\\n\\nFarishta Taher Shah New Song And Fan Reaction | Farishta Farishta Tahir Shah\\n\\n\\n\\nCopyright Disclaimer: Under Section 57 of Pakistan Copyright Ordinance 2000, fair dealing with a literary, dramatic, musical or artistic work for the purpose of research,  study, criticism, review (cl. a) or reporting current events (cl. b) is allow',\n",
       "  '2020-04-11T08:51:30.000Z',\n",
       "  1037,\n",
       "  6.0,\n",
       "  2.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCGrvQ0scjgBJg_3FRN_C6pw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  0,\n",
       "  1590750,\n",
       "  97,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=8olk-09enT8',\n",
       "  'Reaction on Krish Gawali New Viral Tiktok Videos | Krish Gawali Transformations Videos | Crazy 4',\n",
       "  'PAKISTANI BOYS GROUP CRAZY 4 REACTION THE MOST POPULAR AN INDIAN TIKTOK STAR KRISH GAWALI NEW VIRAL TIKTOK VIDEOS.\\n\\n#KRISHGAWALI #REACTION #CRAZY4\\n\\nLIKE SHARE SUBSCRIBE AND COMMENTS DOWN BELOW FOR MORE NEW AND LATEST TIKTOK REACTION VIDEOS DAILY.',\n",
       "  '2020-03-04T15:12:41.000Z',\n",
       "  68723,\n",
       "  2678.0,\n",
       "  138.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UC6QLSkGrFb25WnyvRxtxHGA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Wlc Everyone To My Channel  King Ck Films & Vlogs 🎤🎬📸🎥',\n",
       "  0,\n",
       "  82616624,\n",
       "  876,\n",
       "  'AT',\n",
       "  'https://www.youtube.com/watch?v=ReWt9XUQsnQ',\n",
       "  'LIL BALIIL TIKTOK REACTION VIDEO',\n",
       "  'Kingck #Lilbaliil #Tiktok',\n",
       "  '2020-03-23T11:57:47.000Z',\n",
       "  227931,\n",
       "  12151.0,\n",
       "  1587.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UCo0iJsTrQqQZ4RQ5ZJOIn_w',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  0,\n",
       "  1,\n",
       "  1,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=F8g2SxDwYkQ',\n",
       "  'New himachali song 1 million reviews',\n",
       "  nan,\n",
       "  '2020-01-09T15:30:06.000Z',\n",
       "  1,\n",
       "  0.0,\n",
       "  0.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCwMmu_JcKv4rg6qe9ftJy1Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Assalamualikum Guys 💓💓\\nVarious Kinds of vedio \\n\\nPlease Subscribe My Channel 🙏🙏🙏🙏🙏\\n\\n\\nFacebook :https://www.facebook.com/profile.php?id=100050232345716',\n",
       "  0,\n",
       "  13342,\n",
       "  26,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=3epZVmGVG-w',\n",
       "  'Bangali Reaction  New Nepali Lok Pop Song 2020 Ft Avishek Khadka & Nagma Shrestha ||Soaib Islam||',\n",
       "  '🎧 AUDIO CREDIT🎧 __ Salla Gharima || Aavas Shrestha || New Nepali Lok Pop Song 2020 Ft Avishek Khadka & Nagma Shrestha Vocal :- Aavas Shrestha Lyrics :- Raj Kumar Samal Music :- Tanka Timilsina Arranger :- Tanka Timilsina Studio :- Maruni Mix/Mastering :- Kumar Rana Magar _\\n\\n_ 🎬VIDEO CREDIT 🎬__ Director :- Bikram Chauhan Cinematographer :- Prakash Khadka Edit/color :- Milan Bishowkarma Artist :- Avishek Khadka & Nagma Shrestha MUA :- Animesh/Sarita A Video by Tanka Timilsina Production. \\n\\n\\nDisclaimer: Our channel #SoaibIslam is a channel which is created for do reactions on videos it is just for entertain peoples .if you have any problem with the video then first contact with me through personal message we will delete your videos if you do not want to share on my channel Thanks:)\\n\\n\\nCopyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, commenting, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.\\n\\n\\norginal song :https://youtu.be/kyKeZ6Fk97w',\n",
       "  '2020-04-22T12:11:50.000Z',\n",
       "  30,\n",
       "  9.0,\n",
       "  2.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCWd-Ny-5AKhBiwDPsMgxpPQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@torontolingo',\n",
       "  nan,\n",
       "  0,\n",
       "  1264579,\n",
       "  176,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=51HeVI9epPY',\n",
       "  'BTS to release new album | FIRST REACTION!',\n",
       "  'BTS will come back with a new album, by February 2020, according to a Korean News Site, Xsports News. However, in a statement Big Hit Entertainment responded that they are still in the process of deciding when the exact date would be for the release. Watch this video, for more information.\\nPre-orders for the album will begin on this Thursday January 9th. \\n\\nThe official announcement on Weverse said quote, “Hello. BTS MAP OF THE SOUL: 7 will be released on Friday, Feb. 21. Pre-orders will begin on Thurs, Jan. 9. Additional details about the new release will be available on BTS Weverse and the Fan Cafe. We look forward to continued interest and support from all of our ARMY. Thank you!”\\n\\nAnd the announcement obviously caused an absolute frenzy on Twitter.\\n\\nARMY knew that BTS would be making even bigger waves in 2020, but now that we’ve got a confirmed date for the new album, fans are more excited than ever.\\n\\nAnd the tweets about BTS\\'s new album are actually extremely emotional. A lot of fans were talking about the significance of this 7th album.\\n\\nOne person tweeted saying quote, “Funny how\\n- BTS has 7 members \\n- They are 7 years together\\n- They released this on january 7\\n- this is their 7th comeback \\n- 7 in hangul sounds like “ee-go” \\n\"what a relief we are 7, what a relief we are together.\"  #7isComing #BTSIsComing @BTS_twt”\\n\\nAnother said quote, “7 members. 7 layers. We know that 7 has been a precious and important number in the Bangtan Universe. Only the near future will reveal what is to come. @BTS_twt #7isComing”\\n\\nAnd another wrote quote, “MOTS 7 is coming . They released it on 7 jan. There is almost 7 weeks to the cb . It has been 7 years since debut . BTS have 7 members”\\n\\nSo clearly, the number 7 has a lot of meaning to both BTS and ARMY.\\n\\nBut some fans will know that Map of the Soul: 7 is not the original name they thought the album would have.\\n\\nThe debate has been unfolding on Twitter for a while about whether the album would be called Ego or Shadow. Clearly we know now that it’s neither and fans are shook.\\n\\nOne person wrote quote, “we Have BEEN SLEEP DEPRIVED TRYING TO CONNECT DOTS BOUT WHAT THE ALBUM IS GON NAMED AND HERE IT IS MAP OF THE SOUL :7 NOT SOME EGO OR SHADOW i AM DONE”\\n\\nAnother fan said quote, “BTS MAP OF THE SOUL: 7. Ends all debate on whether Ego or Shadow.  It’s here and the world is shaking. @BTS_twt”\\n\\nThis fan made a funny meme and wrote quote, “Bighit: “MAP OF THE SOUL: 7” will be released on february 21. Armys who debated if it’s Ego or Shadow:”\\n\\nThen of course there were the conspiracy theorists. They took to Twitter with their own thoughts about the album name.\\nOne person wrote quote, “what if the album name was actually shadow but we found out and bighit saw so they changed it to ego and then we guessed it again and bighit found out Again and they had to come up with another album name last minute bc they didnt wanna be predictable so they changed it to... “7””\\n\\nHow excited are you for BTS’s new album? And do you think it’s a tour in April 2020 or is there another surprise coming too?\\nLet me know down in the comments below.\\nFollow us on Instagram for all your hip hop news with a SPLASH of #Toronto.\\nhttps://www.instagram.com/torontolingo/\\n\\nLet us know what you would like for us to react to and give us video recommendations! We do it all. Reviews, reactions, news, just tell us what you want and we got you!\\n\\nLeave a like, comment and don\\'t forget to subscribe for more!\\n\\nSubscribe to our channel:\\nhttps://www.youtube.com/channel/UCWd-Ny-5AKhBiwDPsMgxpPQ/featured?sub_confirmation=1\\n\\nCheck out ALL our reaction videos here:\\nhttps://www.youtube.com/watch?v=Kun_kh8vcjg&list=PL06s5IJsJVym03o4KH6YdTTBgTJTbYsU6&index=1\\n\\nCheck out our other news videos here:\\nhttps://www.youtube.com/watch?v=TwLIQzajJz0&list=PL06s5IJsJVykGfygi0Dm-vwTGPzMzyWG9\\n\\nCheck out our Kpop Reactions here:\\nhttps://www.youtube.com/watch?v=l27Cs6D7PYk&list=PL06s5IJsJVylnE3ofKFxhbKNtq_y-AOSM\\n\\nCheck out our Most Popular uploads here:\\nhttps://www.youtube.com/watch?v=dAwQMW0qgW8&list=PUWd-Ny-5AKhBiwDPsMgxpPQ\\n\\n\\nFollow Justes:\\nInstagram https://www.instagram.com/justes.tv/\\nTikTok http://vm.tiktok.com/UoahHc/\\nTwitter https://twitter.com/justesbaraheni\\n\\nFollow Koop:\\nInstagram https://www.instagram.com/ikroopk/\\n#BTS #BTSMOTS7 #mapofthesoul',\n",
       "  '2020-01-20T03:15:11.000Z',\n",
       "  1152,\n",
       "  39.0,\n",
       "  10.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UCyJtq5HB0GCx-XpJQWmjNbQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hey guys!  \\nWe are two genuine K-POP lovers😀\\nPlease subscribe to get notified when we upload a new video.',\n",
       "  0,\n",
       "  386972,\n",
       "  177,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=7FzwLtb_9vk',\n",
       "  'SB19 in a level up K Pop dance performance! REACTION',\n",
       "  'Hey Guys 😁 \\nPLEASE SUPPORT SB19!!!\\n\\nShow some support if you liked this video 🐼 \\nComment down below, SUBSCRIBE & LIKE 😍 \\n\\nAlso SUBSCRIBE to our new REACTION channel:\\nhttps://www.youtube.com/channel/UCpawpKOOK2AfYrsR_eS-SPw\\n\\n\\n#SB19\\n#BigBang\\n#SB19_on_ASAP\\n#SB19BigBang\\n#SB19BangBangBang\\n#SB19FantasticBaby\\n#KPOP_DANCE_PERFORMANCE\\n#COVER_DANCE\\n#REACTION  \\n#THEKPOPGENIUS\\n#kpopreaction',\n",
       "  '2020-02-25T15:08:05.000Z',\n",
       "  15805,\n",
       "  842.0,\n",
       "  95.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCX7pl0AzzfyvLTAEvutAHtQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  0,\n",
       "  43,\n",
       "  14,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=v0zVDoKCgI8',\n",
       "  'Azan by atif Aslam latest 2020 New Release | AZAN Reaction Atif Aslam | Asif voice',\n",
       "  nan,\n",
       "  '2020-04-07T06:59:36.000Z',\n",
       "  10,\n",
       "  4.0,\n",
       "  1.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UChZqdklLcL29GF9MNInMJYw',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Hello\\n   Thanks for visiting my channel😍😍\\n\\nI hope you like my all videos ♥️♥️\\nIf you like my all videos plz like share & comment \\n\\nEveryday I launched a new video for your WhatsApp status 🥰🥰\\nSo, Respectively \\nFollow me On INSTAGRAM\\nVisit my Facebook page\\nAnd plz subscribe my channel 🙏',\n",
       "  0,\n",
       "  24374,\n",
       "  91,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=GsWuErQHTAY',\n",
       "  'Genda Phool Review || Funny video || The bong guy Badshah New Song || Lal Genda Phool',\n",
       "  'Genda Phool Review\\nFunny video \\nThe bong guy Badshah New Song \\nLal Genda Phool\\n\\n#TheBongGuy\\n#Badshah\\n#GendaPhoolReview\\n\\nLike Share & Comment\\nPlease Subscribe Our Channel For More Videos 🙏',\n",
       "  '2020-03-28T10:57:14.000Z',\n",
       "  425,\n",
       "  27.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCj1Oo2YnNRVt1xgYJG1p7PQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Sanjay Khavas Movies Review\\nAll movie's and The information about celebrities will be the fastest of us.\",\n",
       "  0,\n",
       "  6332,\n",
       "  58,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=xD_l9DhB7Y0',\n",
       "  'Zindagi: Carryminati Rap Song Reaction _ Wily Frenzy New Song Zindagi song Reaction by Sanjay Khavas',\n",
       "  'Zindagi: Carryminati Rap Song Reaction _ Wily Frenzy New Song Zindagi song Reaction by Sanjay Khavas\\n#sanjaykhavas #Carryminati #zindagi #newsong \\n\\n\\n\\nzindagi carryminati song, carryminati zindagi song whatsapp status, carryminati zindagi song release date, carryminati zindagi song reaction, carryminati zindagi song lyrics, zindagi rap song carryminati, zindagi unreleased song, carryminati love, zindagi song carryminati, zindagi carryminati song, zindagi carryminati official video, zindagi carryminati status, zindagi carryminati release date, zindagi carryminati lyrics, zindagi carryminati whatsapp status, carryminati zindagi social nation carryminati, zindagi song release date, carryminati zindagi, rap carryminati zindagi song reaction, CARRYMINATI HIP HOP, CARRYMINATI RAP, TRIGGER BY CARRYMINATI, CARRYMINATI TRIGGER, CARRYMINATI NEW SONG, REALITY, POVERTY, CORRUPTION, POLITICS, ELECTION 2019, #CarryMinati, TRIGGER, youtuber roast, #ZINDAGI, ZINDAGI CarryMinati, Carry, Indian, wily frenzy new song, Zindagi new song Carryminati, Zindagi new music video, Zindagi Song Carry, Zindagi Song Carryminati, Carryminati New Song, Zindagi Carryminati, Wily Frenzy, Carry new song, trigger carryminati rap lyrics, carryminati trigger, carryminati new rap song, carryminati new rap, carryminati new song 2019 trigger, carryminati new song 2019 trigger lyrics, zindagi by Carryminati, zindagi song by Carryminati, zindagi song Carryminati, zindagi carryminati song, carryminati zindagi song whatsapp status, carryminati zindagi song release date, carryminati zindagi song reaction, carryminati zindagi song lyrics, zindagi rap song carryminati, zindagi unreleased song, carryminati love, zindagi song carryminati, zindagi carryminati song, zindagi carryminati official video, zindagi carryminati status, zindagi carryminati release date, zindagi carryminati lyrics, zindagi carryminati whatsapp status, carryminati zindagi social nation carryminati, zindagi song release date, carryminati zindagi, rap carryminati zindagi song reaction, CARRYMINATI HIP HOP, CARRYMINATI RAP, TRIGGER BY CARRYMINATI, CARRYMINATI TRIGGER, CARRYMINATI NEW SONG, REALITY, POVERTY, CORRUPTION, POLITICS, ELECTION 2019, #CarryMinati, TRIGGER, youtuber roast, #ZINDAGI, ZINDAGI CarryMinati, Carry, Indian, wily frenzy new song, Zindagi new song Carryminati, Zindagi new music video, Zindagi Song Carry, Zindagi Song Carryminati, Carryminati New Song, Zindagi Carryminati, Wily Frenzy, Carry new song, trigger carryminati rap lyrics, carryminati trigger, carryminati new rap song, carryminati new rap, carryminati new song 2019 trigger, carryminati new song 2019 trigger lyrics, zindagi by Carryminati, zindagi song by Carryminati, zindagi song Carryminati, zindagi carryminati song, carryminati zindagi song whatsapp status, carryminati zindagi song release date, carryminati zindagi song reaction, carryminati zindagi song lyrics, zindagi rap song carryminati, zindagi unreleased song, carryminati love, zindagi song carryminati, zindagi carryminati song, zindagi carryminati official video, zindagi carryminati status, zindagi carryminati release date, zindagi carryminati lyrics, zindagi carryminati whatsapp status, carryminati zindagi social nation carryminati, zindagi song release date, carryminati zindagi, rap carryminati zindagi song reaction, CARRYMINATI HIP HOP, CARRYMINATI RAP, TRIGGER BY CARRYMINATI, CARRYMINATI TRIGGER, CARRYMINATI NEW SONG, REALITY, POVERTY, CORRUPTION, POLITICS, ELECTION 2019, #CarryMinati, TRIGGER, youtuber roast, #ZINDAGI, ZINDAGI CarryMinati, Carry, Indian, wily frenzy new song, Zindagi new song Carryminati, Zindagi new music video, Zindagi Song Carry, Zindagi Song Carryminati, Carryminati New Song, Zindagi Carryminati, Wily Frenzy, Carry new song, trigger carryminati rap lyrics, carryminati trigger, carryminati new rap song, carryminati new rap, carryminati new song 2019 trigger, carryminati new song 2019 trigger lyrics, zindagi by Carryminati, zindagi song by Carryminati, zindagi song Carryminati, zindagi carryminati song, carryminati zindagi song whatsapp status, carryminati zindagi song release date, carryminati zindagi song reaction, carryminati zindagi song lyrics, zindagi rap song carryminati, zindagi unreleased song, carryminati love, zindagi song carryminati, zindagi carryminati song, zindagi carryminati official video, zindagi carryminati status, zindagi carryminati release date, zindagi carryminati lyrics, zindagi carryminati whatsapp status, carryminati zindagi social nation carryminati, zindagi song release date, carryminati zindagi, rap carryminati zindagi song reaction, CARRYMINATI HIP HOP, CARRYMINATI RAP, TRIGGER BY CARRYMINATI, CARRYMINATI TRIGGER, CARRYMINATI NEW SONG, REALITY, POVERTY, CORRUPTION, POLITICS, ELECTION 2019, #CarryMinati, TRIGGER, youtuber roast, #ZINDAGI, ZINDAGI CarryMinati, Carry, Indian, wily frenzy new song, Zindagi new song Carryminati, Zindagi new music video,',\n",
       "  '2020-01-18T15:33:44.000Z',\n",
       "  45,\n",
       "  2.0,\n",
       "  0.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCsPAdY3bSev1M7v9vrdBaPg',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Avi's World is world of cinemas!\\nHere we provide you latest informations, reviews, talks about movies. \\nHollywood,bollywood, south indian movies, tamil movies, telegu movies, bengali movies, malayalam movies, kannada movies and all industries!!\",\n",
       "  0,\n",
       "  1350804,\n",
       "  47,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=AKCgZ4GFHDc',\n",
       "  \"Soorarai Pottru Teaser Reaction Review | Surya's New South film, Hindi dubbed, avis world\",\n",
       "  \"Surya's new film #sooraraipottruteaser Reaction and Review...My thoughts..\\nTags:\\nSony Music South, Sony Music, Latest Song, Tamil song, Tamil Latest Song, Tamil Latest Songs 2018, Tamil Latest Songs 2019, Latest songs in Tamil, Songs in Tamil, Latest Tamil Movies, Tamil Movie Songs, Latest Video Songs Tamil, latest Tamil Love Songs, Latest Tamil Hit Songs, New Tamil Songs, tamil movies, kollywood, trailer, suriya 38 title, suriya biopic, kaappaan teaser, kaappan release date, jail teaser, Soorarai pottru, surya, title,2020\",\n",
       "  '2020-01-12T07:23:36.000Z',\n",
       "  61,\n",
       "  3.0,\n",
       "  0.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCT0IpiHRAArq7AunUjBlpYw',\n",
       "  nan,\n",
       "  '@rockjohnofficial',\n",
       "  'rockjohnofficial@gmail.com',\n",
       "  '@rockjohnofficial',\n",
       "  \"Hii Everyone,\\n  I Am Rock John....whenever I am asked to write about me. I am always confused because this is something no one yet predicted right..:P\\n How I Got Connected With Music. All credit goes to my Friends.\\n Secondly when it comes to guitar..I would completely blame my passion for it...I simply can't live without it as I said it is an extension of me. On the whole a small town Boy with The BIGGEST Dreams....  \\nWith Lots N Lots Of Luv from you people and will always expect the same from you... \\n Thanks To All..Luv Ya..  \\nCheers.. Keep Rockin.....\\n| Rock John official | Rock John | rockingrockjohn\\n_________________________\\nFacebook -Rock john official\\nhttps://www.facebook.com/Rockjohnofficial/\\nInstagram - Rock John\\nhttps://www.instagram.com/rockjohnofficial/\\n\\n___________________________\\nThank you so much guys for supporting me\",\n",
       "  0,\n",
       "  6980989,\n",
       "  26,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=M57bIhRyvs4',\n",
       "  'Singing Patriotic ( Desh Bhakti ) Songs On Valentine Day | Reaction | Experiment| Rock john Official',\n",
       "  \"Singing Patriotic ( Desh Bhakti ) Songs On Valentine Day | Reaction | Experiment| Rock john Official\\n---------------------------------------------------------------------------------\\nLove to make you Laugh and Happy\\nSpreading Love with music keep supporting keep blessing \\nDon't Forget To subscribe my Channel For more Video  \\n#Rockjohnofficial #singingprank #Prankinindia\\n -------------------------------------------------------------------------------------\\n\\n Mujh se baat karne aur Updates ke liye \\n Follow me on Instagram\\n INSTAGRAM :- https://www.instagram.com/rockjohnofficial/\\n \\nFOR BUSINESS ENQUIRY ONLY\\n rockjohnofficial@gmail.com\\n----------------------------------------------------------------------------------------------------------------------------------------\\n IMPORTANT NOTICE : Permission has been taken from all the people shown in this video to upload video.\",\n",
       "  '2020-02-15T12:15:00.000Z',\n",
       "  3530242,\n",
       "  181351.0,\n",
       "  5577.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCHo-Qy480b6LXeCIupzzSgA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  '@zeeshansonuu',\n",
       "  'HELLO EVERYONE!\\nWelcome on React on People\\nAbout: #Reactonpeople is the channel where you can find all the best videos, Reviews Songs,News,tik toker updates ,song Updates Songs News, All News And Reaction On Videos. Channel owner: #Zeeshan',\n",
       "  0,\n",
       "  64796,\n",
       "  206,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=Db6Ed1TpRg4',\n",
       "  'Finally Release Pari Doll And Asad Ray New Song  / Pari Doll And Asad Ray Full Music Video',\n",
       "  'origelnal Video\\nhttps://youtu.be/ZidNdmd9xMI\\n\\nhellodosto is video mein apko btaon ga k asad ray or pari doll ka song jo any wala tha soniye heeriye woh agya hy us k bary m btaon ga k yh song kesa hoga my kuch review donga k yh song kitna famous hoga...\\n\\n\\n#Asad #Asadray #PariDoll #Paridollnewsong #Mohsin #Asadraysong #Soniyeheeriye\\nSubscribe to my channel for more videos like this and to support my efforts.\\n\\nThanks and Love #Reactonpeople \\n\\nLIKE | COMMENT | SHARE | SUBSCRIBE\\n----------------------------------------------------------------------------------\\nFor all updates :\\n\\nSUBSCRIBE Us on Youtube\\n\\nReact on People \\n\\nhttps://www.youtube.com/channel/UCHo-Qy480b6LXeCIupzzSgA?view_as=subscriber\\n\\n\\nMy Instagram ❤️\\n\\nhttps://www.instagram.com/zeeshansonuu/\\n\\n\\n----------------------------------------------------------------------------------\\n\\nThis Channel DOES NOT Promote or encourage Any illegal activities , all contents provided by This Channel is meant for EDUCATIONAL PURPOSE only .\\n\\n\\n►Disclaimer : Please don\\'t go out of your way to or hate on anyone I talk about in my videos, this channel is to entertain people and I usually focus on joking about what the people are doing not the individual themselves, please don\\'t go spreading hate it\\'s all for laughs\\n\\n★Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.,\\n\\n----------------------------------------------------------------------------------\\n\\nAbout: #Reactonpeople is the channel where you can find all the best videos, Reviews Songs,News ,New Songs News, All News And Reaction On Videos. Channel owner: #Zeeshan',\n",
       "  '2020-01-05T16:20:43.000Z',\n",
       "  1930,\n",
       "  33.0,\n",
       "  0.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UC1jdrpr_fvCn6QXCOdTq-kA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'This is a channel on it i upload reaction and reviews videos. I  shall give you complete information about anythig.',\n",
       "  0,\n",
       "  1851,\n",
       "  18,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=hC2lybLJvN8',\n",
       "  'Pakistani Reaction On Moscow Suka Honey Singh New song | Pardasi Reviews',\n",
       "  'Pakistani Reaction On Moscow Suka Honey Singh New song. Best reaction ever.',\n",
       "  '2020-04-14T15:54:22.000Z',\n",
       "  88,\n",
       "  4.0,\n",
       "  4.0],\n",
       " ['new release reaction',\n",
       "  'https://www.youtube.com/channel/UCeMhKFolb_FQmoRMZj1PSmQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  0,\n",
       "  7035,\n",
       "  8,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=jShQbR9YrlQ',\n",
       "  \"Ali Zafar's Reaction on PSL new Anthem | PSL 2020 | PSL new Anthem\",\n",
       "  '#AliZafar #Reaction #PSL2020',\n",
       "  '2020-01-28T19:59:51.000Z',\n",
       "  5400,\n",
       "  111.0,\n",
       "  4.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UCc7zZJDeUNa1HBAxNJtRRAA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'xander.umale05@gmail.com',\n",
       "  nan,\n",
       "  'I love Giraffes. (:',\n",
       "  0,\n",
       "  1707556,\n",
       "  238,\n",
       "  'PH',\n",
       "  'https://www.youtube.com/watch?v=YQ6DaFZPKFE',\n",
       "  'Little Big - Uno - Russia - Official Music Video - Eurovision 2020 | REACTION!',\n",
       "  \"HAHAHAHAHA OMG GUYSS!!! I CAN'T BELIEVE LITTLE BIG WAS THE REPRESENTATIVE OF RUSSIA IN EUROVISION 2020!! HAHAHA OMG I WAS SO HAPPY AND EXCITED WHEN THIS VIDEO GOT UPLOADED! THE MUSIC VIDEO IS SO FUNNY HAHAHA I LOVE EVERY SINGLE SECOND OF IT! AND IM NOT EVEN LYING!! AND TO THE FAT GUY WHO SLAYED AND KILLED IT ON THE DANCING OMG! I LOVE HIM! HE CAN DANCE BETTER THAN ME! HAHA OVERALL I LOVE THIS I LOVE LITTLE BIG ITS SO ENJOYABLE AND ENTERTAINING!\\n\\nSupport me and my channel: https://goget.fund/2ZOidn8\\n\\nSocial Media:\\n\\nSnapchat: noremac05\\nInstagram/Twitter/TikTok: xanderst0rm \\nEmail: xander.umale05@gmail.com\\n\\n#Reaction #Eurovision2020 #LittleBig #Uno #LittleBigUno #Russia #ESC2020\",\n",
       "  '2020-03-16T13:12:01.000Z',\n",
       "  60993,\n",
       "  2947.0,\n",
       "  329.0],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCwmIp2wM3rK0jJsnwVlNEzQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  0,\n",
       "  4196406,\n",
       "  269,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=46ET9isD8qk',\n",
       "  'OLD SKOOL SIDHU MOOSE WALA PREM DHILLON NASEEB PUNJABI SONG ( PAKISTANI REACTION)',\n",
       "  'OLD SKOOL SIDHU MOOSE WALA PREM DHILLON NASEEB PUNJABI SONG ( PAKISTANI REACTION)\\n\\nSecond Channel: https://www.youtube.com/channel/UCF7R7qiFgUEDrxu0BIx6uGA\\n\\n#NkReaction #NkReactionPUNJABI',\n",
       "  '2020-01-11T15:12:09.000Z',\n",
       "  99040,\n",
       "  4787.0,\n",
       "  485.0],\n",
       " ['new cong reviews',\n",
       "  'https://www.youtube.com/channel/UCPlKOhgZkDK3YQgLd9Hrb9Q',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  'Don’t dislike or I’ll find your house give you a kiss',\n",
       "  0,\n",
       "  1143,\n",
       "  13,\n",
       "  'US',\n",
       "  'https://www.youtube.com/watch?v=u59f6AWnAww',\n",
       "  'Playboi carti reviews a new song!',\n",
       "  'Like the video and subscribe!!',\n",
       "  '2020-04-16T17:28:06.000Z',\n",
       "  42,\n",
       "  5.0,\n",
       "  10.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UC-p1_ZGYunSCpzRoknSW8ww',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  0,\n",
       "  37009031,\n",
       "  2932,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=MJwPe32lqcw',\n",
       "  'Ajaz Khan Shocking Reaction On Asim Riaz and Jacqueline New Song Mere Angne Mein',\n",
       "  'Ajaz Khan Shocking Reaction On Asim Riaz and Jacqueline New Song and Make Fun Of Karan Johar | Asim',\n",
       "  '2020-03-09T06:48:51.000Z',\n",
       "  39327,\n",
       "  2612.0,\n",
       "  153.0],\n",
       " ['music reaction',\n",
       "  'https://www.youtube.com/channel/UC177gwdLQMnesuSUXdTyWSA',\n",
       "  nan,\n",
       "  nan,\n",
       "  'mitchellreactsbusiness@gmail.com',\n",
       "  nan,\n",
       "  'Posting everyday REACTION VIDEOS!',\n",
       "  0,\n",
       "  10887357,\n",
       "  1395,\n",
       "  'CA',\n",
       "  'https://www.youtube.com/watch?v=oEI2DNy34xw',\n",
       "  'ONE GUY, 54 VOICES (With Music!) Famous Singer Impressions | REACTION',\n",
       "  'ONE GUY, 54 VOICES (With Music!) Drake, TØP, P!ATD, Puth, MCR, Queen - Famous Singer Impressions | Black Gryph0n Reaction\\n\\nMY MERCH https://teespring.com/stores/mitchellreacts\\n\\nPrevious Vid https://www.youtube.com/watch?v=OgoMZ0_abSY\\n\\nOriginal vid https://www.youtube.com/watch?v=ZNFskLKrhx4\\n\\nsubscribe to Meara https://www.youtube.com/watch?v=mYdnNsoXO9I\\n\\nTikTok @MitchTheLord\\n\\nTWITTER https://twitter.com/mitchthelord\\n\\nINSTAGRAM https://www.instagram.com/mitchell_hladchuk\\n\\nBUSINESS INQUIRIES Mitchellreactsbusiness@Gmail.com\\n\\nJungkook, BTS, Justin Bieber, Shawn Mendes, Snoop Dogg, Post Malone, Elvis, Eminem and much more\\n\\n#oneguy54voices #BlackGryph0n #FamousSingerImpressions',\n",
       "  '2020-02-06T22:45:00.000Z',\n",
       "  64952,\n",
       "  2535.0,\n",
       "  242.0],\n",
       " ['reaction videos',\n",
       "  'https://www.youtube.com/channel/UCEt50ZvC_CtHHWB3TZKv9bA',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  \"Hi guys and welcome to Verity and Chelsea's funny family channel!\\n\\nWe wants to share cool stuff, funny skits, challenges, short stories, pranks, slime tutorials, Tiktok viral food hacks and life hacks with you.\\n\\nIf you you want to have a laugh with Verity & Chelsea and join their family adventures just click on the subscribe button - it's 100% free.\\xa0\\n\\xa0\\n5 facts:\\n1. We speak English and French\\n2. We love cool Tiktok videos\\n3. Our favourite colours are neon pink and sky blue\\n4. We've been on the news in Switzerland and France\\n5. Life without McDonald's and Netflix would be impossible for us\\n\\nAddress:\\xa0\\nVerity & Chelsea\\nCase Postale 2345\\n1211 Geneve 2\\nSwitzerland🇨🇭\\n\\nInstagram: verity_and_chelsea\\n\\n*Channel managed by Chelsea*\\n\\nCome and join the fun!\",\n",
       "  0,\n",
       "  113858006,\n",
       "  231,\n",
       "  'CH',\n",
       "  'https://www.youtube.com/watch?v=Sr4uiM_25Z8',\n",
       "  'REACTION Aux Pires #TIKTOK Videos 2020 !! - Ne Pas Dire WOW Challenge !!',\n",
       "  'Les pires TikTok de début d\\'année 2020 !! Voici ce que vous devez voir pour bien commencer cette nouvelle année avec ce challenge Ne Pas Dire WOW entre Verity et Chelsea !! \\n\\nCe challenge ne ressemble pas au \"ESSAYEZ DE NE PAS RIRE\", il consiste à regarder le plus de vidéos Tik Tok sans dire WOW ou Hihihi...\\n\\n#tiktok #trynottolaugh #Wowchallenge',\n",
       "  '2020-01-03T06:00:15.000Z',\n",
       "  844347,\n",
       "  nan,\n",
       "  nan],\n",
       " ['song reaction',\n",
       "  'https://www.youtube.com/channel/UCRqbWmXhlIaiJFtp6qtLl1w',\n",
       "  'brosreaction9@gmail.com',\n",
       "  nan,\n",
       "  nan,\n",
       "  '@aounrizvi',\n",
       "  'We Are From Pakistan And love to Explore India By doing Reaction Videos \\n\\nIf you have any questions or want to suggest a new video topic, feel free to email us at:   brosreaction9@gmail.com',\n",
       "  0,\n",
       "  9522689,\n",
       "  371,\n",
       "  'PK',\n",
       "  'https://www.youtube.com/watch?v=fItZcOGXttU',\n",
       "  'Pakistani Reaction on Shehnaz Gill Song VEHAM | Laddi gill | Punjabi Songs 2020 | Bigg Boss 13',\n",
       "  'Follow Us on Instagram \\nhttps://www.instagram.com/Aounrizvi/ \\nhttps://www.instagram.com/thekazimnayyer/\\n https://www.instagram.com/saqlain_ali_/ \\n\\nSend your suggestions on Instagram or Facebook\\nLike us \\u200bhttps://facebook.com/brosreactions\\n\\nPlease watch New channel Saayaa the horror show (subscribe) watch promo https://www.youtube.com/channel/UCiFU2HpySQm2Voqqpm5ExHg\\n\\nDisclaimer : Our channel Bros Reactions is a channel which is created to do reaction on videos it is just for entertain peoples  .if you have any problem with the video then first contact with us through personal message we will delete your videos if you not want to share on Our channel Thanks #ShehnazGill #Sidnaz #VehamSongReaction',\n",
       "  '2020-01-15T07:00:08.000Z',\n",
       "  359623,\n",
       "  14998.0,\n",
       "  729.0],\n",
       " ['new song reviews',\n",
       "  'https://www.youtube.com/channel/UCSyninPH06Eq8fA41TN1fxg',\n",
       "  nan,\n",
       "  nan,\n",
       "  '7.look8me.6@gmail.com',\n",
       "  '@look4ashi',\n",
       "  'Warm Greeting everyone,\\n\\nWelcome to Look4Ashi Channel, \\nOn this channel you can expect Trailer/Movie Reaction and reviews and vlogs / Fun / Masti / Entertainment.\\n\\nDo Drop in your Recommendations for Reactions and Review in the Video Comments or you can email.\\n\\nSuggestions for Our channel improvement are Most welcome and we would be glad to look into them and Implements where feasible.\\n\\nYou can follow me on my Instagram: https://www.instagram.com/Look4Ashi\\n\\nDo Support us by Subscribing to our Youtube Channel : https://www.youtube.com/c/Look4Ashi\\nAnd Like, Comment and Share our Videos\\n\\n\\nFor Product Reviews / Unboxing / DIY / Makeup and Beauty Product Video Content:\\nSubscribe to our another GlamNMe Channel https://www.youtube.com/channel/UCdkF23tdCQ1bSZf3ijkOIyg \\n\\n\\nFor Kids Related Video Content:\\nSubscribe to our another KidTales Channel https://www.youtube.com/channel/UC-F4eJRIylu-JetuS2Gp3QQ\\n\\nLots of love,\\nLook4Ashi Team',\n",
       "  0,\n",
       "  620706,\n",
       "  182,\n",
       "  'IN',\n",
       "  'https://www.youtube.com/watch?v=sQiQKulIm1Q',\n",
       "  'Bhula Dunga | Song Reaction | Darshan Raval | Sidharth Shukla | Shehnaaz Gill | #SIDNAAZ | Look4Ashi',\n",
       "  'Check out our reaction and review for Bhula Dunga.\\nLet us know what you think about the Song and our review in the comments below.\\n\\nOfficial Link: https://www.youtube.com/watch?v=3fSlGG_qnzs\\n\\n\\nIf you do like this video Kindly: Like | Comment | Share\\nAnd Support us and Join our Fast Growing channel by Subscribing to our Youtube Channel : https://www.youtube.com/c/Look4Ashi\\nThank you for watching this video.\\n\\nFollow Look4Ashi on:\\nInstagram: https://www.instagram.com/Look4Ashi/\\nTwitter: https://twitter.com/Look4Ashi\\n\\n++++++++++++\\n\\nSong Credits:\\nTitle : Bhula Dunga\\nSinger - Darshan Raval\\nComposer - Darshan Raval \\nLyrics - Gurpreet Saini & Gautam Sharma\\nMusic Production - Anmol Daniel\\n\\nVideo Credits\\nProducer : Kaushal Joshi\\nDirector : Punit J Pathak\\nCast : Sidharth Shukla, Shehnaaz Gill\\nD.O.P : Dhruwal Patel\\n\\n\\n#bhuladunga #darshanraval #sidnaaz #SidharthShukla #ShehnaazGill #SidnaazFans #bhuladungaSongReaction #bhuladungaSongReview #Bollywood #DarshanRavalSongs #SongReview #Hindi #NewSong #NewSong2020 #NewMovie #NewBollywoodSong #Songreaction #SongReview #Look4Ashi #Look4AshiReaction #Look4AshiReview\\n\\n\\nBhula Dunga,\\nBhula Dunga Song,\\nBhula Dunga reaction,\\nBhula Dunga Song Review,\\nBhula Dunga SIDNAAZ,\\nBhula Dunga Song Reaction,\\nBhula Dunga Song Reaction Look4Ashi,\\nBhula Dunga Video Song,\\nBhula Dunga Darshan Raval,\\nBhula Dunga Sidharth Shukla & Shehnaaz Gill,\\nDarshan Raval new Song,\\nDarshan Raval Bhula Dunga,\\nSidnaaz Song,\\nSidharth Shukla & Shehnaaz Gill new Song,\\nSidnaaz Bhula Dunga,\\nDarshan Raval songs,\\nNew Song 2020,\\nIndie Music Label Song,\\nBhula Dunga full song,\\nBhula Dunga full video song,\\nBhula Dunga full video song reaction,\\nBhula Dunga - Darshan Raval | Official Video | Sidharth Shukla | Shehnaaz Gill | Indie Music Label,\\n\\n\\n\\n++++++++++++\\n\\nNote: For Shoutout on our Look4Ashi Channel Videos please comment below with #Look4AshiShoutOut\\n\\n+++++++++++++\\n\\nDisclaimer : No Copyright intended in this video for the Images.  All rights belong to rightful owner.\\n*Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \"fair use\" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.*',\n",
       "  '2020-03-24T11:15:00.000Z',\n",
       "  26005,\n",
       "  2017.0,\n",
       "  305.0],\n",
       " ['new pop reactions',\n",
       "  'https://www.youtube.com/channel/UC5Mnhp0I7Djjn-KMcnqAOrQ',\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  nan,\n",
       "  0,\n",
       "  436002,\n",
       "  63,\n",
       "  nan,\n",
       "  'https://www.youtube.com/watch?v=6cy38CAfHtw',\n",
       "  'SB19 \"K-POP DANCE REACTION\" by Daniel Baek',\n",
       "  'ANNYEONG! ✨\\nSB19 \"K-POP DANCE REACTION\" by Daniel Baek\\n\\nFollow them on their Social Media Acc:\\n\\n*Daniel Baek\\n-FB : https://www.facebook.com/danielbaek.official/\\n-Youtube : https://www.youtube.com/channel/UC2v9vlHZFQyU_K5OkbUlrmQ\\n\\nThank you for watching! Don\\'t forget to click LIKE, SUBSCRIBE and TURN ON THE NOTIFICATION BELL FOR MORE UPDATES.\\n\\n✰ CONNECT WITH ME ✰\\n\\n► [Modoo Music] :\\nhttps://www.youtube.com/channel/UC5Mnhp0I7Djjn-KMcnqAOrQ\\n\\n► [Modoo Fun] :\\nhttps://www.youtube.com/channel/UCkwFvFQ5eIoqsTU7ixK_fqg\\n\\n► [Modoo Studio] :\\nhttps://www.youtube.com/channel/UCYtlTjzE1h9oIX1yFZK3LnA\\n\\n► [facebook] : https://www.facebook.com/MoDooStudio\\n► [Instagram] : https://www.instagram.com/modoostudiotv\\n► [twitter] : https://twitter.com/modoostudiotv',\n",
       "  '2020-03-09T09:00:01.000Z',\n",
       "  15863,\n",
       "  1229.0,\n",
       "  106.0]]"
      ]
     },
     "execution_count": 140,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "fullcsv"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 145,
   "metadata": {},
   "outputs": [],
   "source": [
    "SPREAD_ID = '19O0YqF0ab9M10N0yFG1H0pQIo42eAdbAllX3QR36JHA'"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 128,
   "metadata": {},
   "outputs": [],
   "source": [
    "sh = sheet.Sheet()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 148,
   "metadata": {},
   "outputs": [],
   "source": [
    "#spr = sh.client.create('YouTube Channels for MiMi')\n",
    "#spr = sh.client.open_by_url('https://docs.google.com/spreadsheets/d/17WWrrGtwy4yALX7i0ut6e-eR_6VgMnPzpu7ElIuq0H4')\n",
    "spr = sh.client.open_by_key(SPREAD_ID)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 130,
   "metadata": {},
   "outputs": [],
   "source": [
    "#spr.share('joel@whtlst.in', perm_type='user', role='writer', notify=False)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 153,
   "metadata": {},
   "outputs": [],
   "source": [
    "newtab = query_to_sheet.csv_to_sheet(csv=fullcsv, spreadsheet=spr)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 155,
   "metadata": {},
   "outputs": [],
   "source": [
    "sheetId = newtab.id"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 157,
   "metadata": {},
   "outputs": [],
   "source": [
    "# set row and column dims\n",
    "body = {\n",
    "  \"requests\": [\n",
    "    {\n",
    "      \"updateDimensionProperties\": {\n",
    "        \"range\": {\n",
    "          \"sheetId\": sheetId,\n",
    "          \"dimension\": \"COLUMNS\",\n",
    "#           \"startIndex\": 0,\n",
    "#           \"endIndex\": 1\n",
    "        },\n",
    "        \"properties\": {\n",
    "          \"pixelSize\": 160\n",
    "        },\n",
    "        \"fields\": \"pixelSize\"\n",
    "      }\n",
    "    },\n",
    "    {\n",
    "      \"updateDimensionProperties\": {\n",
    "        \"range\": {\n",
    "          \"sheetId\": sheetId,\n",
    "          \"dimension\": \"ROWS\",\n",
    "#           \"startIndex\": 0,\n",
    "#           \"endIndex\": 3\n",
    "        },\n",
    "        \"properties\": {\n",
    "          \"pixelSize\": 60\n",
    "        },\n",
    "        \"fields\": \"pixelSize\"\n",
    "      }\n",
    "    }\n",
    "  ]\n",
    "}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 158,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'spreadsheetId': '19O0YqF0ab9M10N0yFG1H0pQIo42eAdbAllX3QR36JHA',\n",
       " 'replies': [{}, {}]}"
      ]
     },
     "execution_count": 158,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "newtab.spreadsheet.batch_update(body)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 87,
   "metadata": {},
   "outputs": [],
   "source": [
    "s1 = {1,2,3}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 90,
   "metadata": {},
   "outputs": [],
   "source": [
    "s1 |= set([1,3,4])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 93,
   "metadata": {},
   "outputs": [],
   "source": [
    "s1.update([5,6])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 94,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{1, 2, 3, 4, 5, 6}"
      ]
     },
     "execution_count": 94,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "s1"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.7.1"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}
