{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 50,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2916657\n"
     ]
    }
   ],
   "source": [
    "# can we intersect this with the discogs subset metas\n",
    "from suno_utils.utils.text import read_jsonl, write_jsonl\n",
    "\n",
    "discogs_subset_metas_filepath = \"/home/christian/code/christian/metadata/v4/discogs_subset_metas_raw.jsonl\"\n",
    "discogs_subset_metas = read_jsonl(discogs_subset_metas_filepath)\n",
    "print(len(discogs_subset_metas))\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 46,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2090009\n"
     ]
    }
   ],
   "source": [
    "genius_metas_filepath = \"/home/christian/code/christian/metadata/genius_hq_metas.jsonl\"\n",
    "genius_metas = read_jsonl(genius_metas_filepath)\n",
    "print(len(genius_metas))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 36,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2101712\n"
     ]
    }
   ],
   "source": [
    "youtube_music_metas_filepath = \"/home/christian/code/christian/metadata/youtube_music_metas.jsonl\"\n",
    "youtube_music_metas = read_jsonl(youtube_music_metas_filepath)\n",
    "print(len(youtube_music_metas))\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "# can we intersect this with the discogs subset metas\n",
    "from suno_utils.utils.text import read_jsonl, write_jsonl"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 42,
   "metadata": {},
   "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>chart_week</th>\n",
       "      <th>current_week</th>\n",
       "      <th>title</th>\n",
       "      <th>performer</th>\n",
       "      <th>last_week</th>\n",
       "      <th>peak_pos</th>\n",
       "      <th>wks_on_chart</th>\n",
       "      <th>source</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>34866</th>\n",
       "      <td>2024-05-04</td>\n",
       "      <td>67</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>0.0</td>\n",
       "      <td>1</td>\n",
       "      <td>990</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>34553</th>\n",
       "      <td>2024-04-20</td>\n",
       "      <td>154</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>0.0</td>\n",
       "      <td>1</td>\n",
       "      <td>989</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>31554</th>\n",
       "      <td>2024-01-06</td>\n",
       "      <td>155</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>114.0</td>\n",
       "      <td>1</td>\n",
       "      <td>988</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>31313</th>\n",
       "      <td>2023-12-30</td>\n",
       "      <td>114</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>149.0</td>\n",
       "      <td>1</td>\n",
       "      <td>987</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>31148</th>\n",
       "      <td>2023-12-23</td>\n",
       "      <td>149</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>0.0</td>\n",
       "      <td>1</td>\n",
       "      <td>986</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>30792</th>\n",
       "      <td>2023-12-09</td>\n",
       "      <td>193</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>0.0</td>\n",
       "      <td>1</td>\n",
       "      <td>985</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>29994</th>\n",
       "      <td>2023-11-11</td>\n",
       "      <td>195</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>145.0</td>\n",
       "      <td>1</td>\n",
       "      <td>984</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>29744</th>\n",
       "      <td>2023-11-04</td>\n",
       "      <td>145</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>54.0</td>\n",
       "      <td>1</td>\n",
       "      <td>983</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>29453</th>\n",
       "      <td>2023-10-28</td>\n",
       "      <td>54</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>0.0</td>\n",
       "      <td>1</td>\n",
       "      <td>982</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>24590</th>\n",
       "      <td>2023-05-06</td>\n",
       "      <td>191</td>\n",
       "      <td>The Dark Side Of The Moon</td>\n",
       "      <td>Pink Floyd</td>\n",
       "      <td>200.0</td>\n",
       "      <td>1</td>\n",
       "      <td>981</td>\n",
       "      <td>Billboard 200</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "       chart_week  current_week                      title   performer  \\\n",
       "34866  2024-05-04            67  The Dark Side Of The Moon  Pink Floyd   \n",
       "34553  2024-04-20           154  The Dark Side Of The Moon  Pink Floyd   \n",
       "31554  2024-01-06           155  The Dark Side Of The Moon  Pink Floyd   \n",
       "31313  2023-12-30           114  The Dark Side Of The Moon  Pink Floyd   \n",
       "31148  2023-12-23           149  The Dark Side Of The Moon  Pink Floyd   \n",
       "30792  2023-12-09           193  The Dark Side Of The Moon  Pink Floyd   \n",
       "29994  2023-11-11           195  The Dark Side Of The Moon  Pink Floyd   \n",
       "29744  2023-11-04           145  The Dark Side Of The Moon  Pink Floyd   \n",
       "29453  2023-10-28            54  The Dark Side Of The Moon  Pink Floyd   \n",
       "24590  2023-05-06           191  The Dark Side Of The Moon  Pink Floyd   \n",
       "\n",
       "       last_week  peak_pos  wks_on_chart         source  \n",
       "34866        0.0         1           990  Billboard 200  \n",
       "34553        0.0         1           989  Billboard 200  \n",
       "31554      114.0         1           988  Billboard 200  \n",
       "31313      149.0         1           987  Billboard 200  \n",
       "31148        0.0         1           986  Billboard 200  \n",
       "30792        0.0         1           985  Billboard 200  \n",
       "29994      145.0         1           984  Billboard 200  \n",
       "29744       54.0         1           983  Billboard 200  \n",
       "29453        0.0         1           982  Billboard 200  \n",
       "24590      200.0         1           981  Billboard 200  "
      ]
     },
     "execution_count": 42,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "import pandas as pd\n",
    "import numpy as np\n",
    "\n",
    "billboard_filepaths = [\n",
    "    (\"/home/christian/code/christian/metadata/popularity/billboard-200-current.csv\", \"Billboard 200\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/hot-100-current.csv\", \"Hot 100\"),\n",
    "]\n",
    "\n",
    "billboard_dfs = []\n",
    "for filepath, name in billboard_filepaths:\n",
    "    df = pd.read_csv(filepath)\n",
    "    df[\"source\"] = name\n",
    "    billboard_dfs.append(df)\n",
    "\n",
    "billboard_df = pd.concat(billboard_dfs)\n",
    "# sort by wks_on_chart\n",
    "billboard_df = billboard_df.sort_values(by=\"wks_on_chart\", ascending=False)\n",
    "billboard_df.head(10)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 43,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Unique artists: 16932\n",
      "Unique songs: 56862\n"
     ]
    }
   ],
   "source": [
    "\n",
    "# lets count unique artists (\"performer\")\n",
    "unique_artists = billboard_df[\"performer\"].nunique()\n",
    "print(f\"Unique artists: {unique_artists}\")\n",
    "\n",
    "# lets count unique songs (\"song\")\n",
    "unique_songs = billboard_df[\"title\"].nunique()\n",
    "print(f\"Unique songs: {unique_songs}\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'id': 'UldJ9AnalEY', 'title': 'Ee Janumave Ahaa', 'artists': [{'name': 'Kailash Kher', 'id': 'UCNeP2HGGg3xquVicp-lUbsg'}], 'album': 'Oggarane', 's3_filepath': 's3://suno-data/shared/nfdg/UldJ9AnalEY/artists/songs/audio/UldJ9AnalEY/audio.webm', 'keywords': ['Prakash Rai', 'Prakash Raj', 'Sneha', 'Oggarane', 'Video songs', '2013 top songs', '2014 top songs', 'junglee music', 'Times music', 'love is cooking', 'Sneha (Award Winner)', 'Ilaiyaraaja (Composer)'], 'lyrics': 'ಈ ಜನುಮವೇ ಆಹಾ! ದೊರಕಿದೆ ರುಚಿ ಸವಿಯಲು\\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ಈ ಜನುಮವೇ ಆಹಾ! ದೊರಕಿದೆ ರುಚಿ ಸವಿಯಲು, ಸವಿಯಲು, ಸವಿಯಲು', 'duration_s': 216, 'views': 860294, 'playlist_ids': ['PLzmeBYOsjwtm6wlMu99kWX9Jpr6ahZAjh', 'PLbgY1FtaABEJNvDGX2YZenXpP6XEi2pmj', 'PLbCAObZ2pUfIODCidDHfjMD_ATVBcyVEy']}\n"
     ]
    }
   ],
   "source": [
    "print(discogs_subset_metas[0])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 44,
   "metadata": {},
   "outputs": [
    {
     "ename": "NameError",
     "evalue": "name 'billboard_df' is not defined",
     "output_type": "error",
     "traceback": [
      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
      "\u001b[0;31mNameError\u001b[0m                                 Traceback (most recent call last)",
      "Cell \u001b[0;32mIn[44], line 39\u001b[0m\n\u001b[1;32m     36\u001b[0m     \u001b[38;5;28;01mreturn\u001b[39;00m matches\n\u001b[1;32m     38\u001b[0m \u001b[38;5;66;03m# first collopse billboard df to remove duplicated artist and title\u001b[39;00m\n\u001b[0;32m---> 39\u001b[0m billboard_df \u001b[38;5;241m=\u001b[39m \u001b[43mbillboard_df\u001b[49m\u001b[38;5;241m.\u001b[39mgroupby([\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mtitle\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mperformer\u001b[39m\u001b[38;5;124m'\u001b[39m])\u001b[38;5;241m.\u001b[39magg({\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mwks_on_chart\u001b[39m\u001b[38;5;124m'\u001b[39m: \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mfirst\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124msource\u001b[39m\u001b[38;5;124m'\u001b[39m: \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mfirst\u001b[39m\u001b[38;5;124m'\u001b[39m})\u001b[38;5;241m.\u001b[39mreset_index()\n\u001b[1;32m     40\u001b[0m \u001b[38;5;66;03m# convert the billboard df to a list of dicts\u001b[39;00m\n\u001b[1;32m     41\u001b[0m billboard_df_list \u001b[38;5;241m=\u001b[39m billboard_df\u001b[38;5;241m.\u001b[39mto_dict(orient\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrecords\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n",
      "\u001b[0;31mNameError\u001b[0m: name 'billboard_df' is not defined"
     ]
    }
   ],
   "source": [
    "from rapidfuzz import process, fuzz\n",
    "from tqdm import tqdm\n",
    "\n",
    "def create_song_lookups(metas):\n",
    "    combined = {}\n",
    "    for meta in metas:\n",
    "        # Skip if title or artists is missing/empty\n",
    "        if not meta.get('title') or not meta.get('artists'):\n",
    "            continue\n",
    "        # Skip if artists is empty list\n",
    "        if len(meta['artists']) == 0:\n",
    "            continue\n",
    "        # Create combined string and add to lookup\n",
    "        combined[f\"{str(meta['title'])} {str(meta['artists'][0]['name'])}\".lower().strip()] = meta\n",
    "    return {'combined': combined}\n",
    "\n",
    "def find_matches(chart_songs, library_songs, threshold=85):\n",
    "    library_lookups = create_song_lookups(library_songs)\n",
    "    matches = []\n",
    "    \n",
    "    for chart_song in tqdm(chart_songs):\n",
    "        search_string = f\"{str(chart_song['title'])} {str(chart_song['performer'])}\".lower().strip()\n",
    "        combined_matches = process.extract(search_string,\n",
    "                                        library_lookups['combined'].keys(),\n",
    "                                        scorer=fuzz.ratio,\n",
    "                                        score_cutoff=threshold,\n",
    "                                        limit=3)\n",
    "        \n",
    "        for match_str, score, _ in combined_matches:\n",
    "            matches.append({\n",
    "                'chart_song': chart_song,\n",
    "                'library_song': library_lookups['combined'][match_str],\n",
    "                'match_score': score\n",
    "            })\n",
    "    \n",
    "    return matches\n",
    "\n",
    "# first collopse billboard df to remove duplicated artist and title\n",
    "billboard_df = billboard_df.groupby(['title', 'performer']).agg({'wks_on_chart': 'first', 'source': 'first'}).reset_index()\n",
    "# convert the billboard df to a list of dicts\n",
    "billboard_df_list = billboard_df.to_dict(orient=\"records\")\n",
    "print(len(billboard_df_list))\n",
    "\n",
    "billboard_metas = []\n",
    "matches = find_matches(billboard_df_list, discogs_subset_metas)\n",
    "print(len(matches))\n",
    "for match in matches:\n",
    "    print(match)\n",
    "    billboard_meta = {\n",
    "        \"id\": match[\"library_song\"][\"id\"],\n",
    "        \"title\": match[\"library_song\"][\"title\"],\n",
    "        \"artist\": match[\"library_song\"][\"artists\"][0][\"name\"],\n",
    "        \"source\": match[\"chart_song\"][\"source\"],\n",
    "        \"match_score\": match[\"match_score\"]\n",
    "    }\n",
    "    billboard_metas.append(billboard_meta)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 42,
   "metadata": {},
   "outputs": [],
   "source": [
    "from rapidfuzz import process, fuzz\n",
    "from rapidfuzz.process import cdist\n",
    "from multiprocessing import Pool\n",
    "import numpy as np\n",
    "from tqdm import tqdm\n",
    "\n",
    "def create_song_lookups(metas, dataset=\"discogs\"):\n",
    "    song_lookups = {}\n",
    "    if dataset == \"discogs\":\n",
    "        song_lookups['combined'] = {\n",
    "            f\"{meta['title']} - {meta['artists'][0]['name']}\".lower().strip(): meta \n",
    "            for meta in metas \n",
    "            if meta.get('title') and meta.get('artists') and meta['artists']\n",
    "        }\n",
    "    elif dataset == \"youtube\":\n",
    "        song_lookups['combined'] = {\n",
    "            f\"{meta['title']} - {meta['artists']}\".lower().strip(): meta \n",
    "            for meta in metas \n",
    "            if meta.get('title') and meta.get('artists') and meta['artists']\n",
    "        }\n",
    "    elif dataset == \"genius\":\n",
    "        song_lookups['combined'] = {\n",
    "            f\"{meta['youtube_title']}\".lower().strip(): meta \n",
    "            for meta in metas \n",
    "            if meta.get('youtube_title')\n",
    "        }\n",
    "\n",
    "    # remove any songs that have \"cover\" in the title\n",
    "    song_lookups['combined'] = {k: v for k, v in song_lookups['combined'].items() if \"cover\" not in k.lower()}\n",
    "\n",
    "    return song_lookups\n",
    "\n",
    "def process_chunk(args):\n",
    "    chunk, library_keys, threshold = args\n",
    "    return process.extract(chunk, library_keys, scorer=fuzz.ratio, \n",
    "                         score_cutoff=threshold, limit=3)\n",
    "\n",
    "def find_matches_parallel(chart_songs, library_songs, threshold=85, dataset=\"genius\"):\n",
    "    library_lookups = create_song_lookups(library_songs)\n",
    "    library_keys = list(library_lookups['combined'].keys())\n",
    "    \n",
    "    search_strings = [f\"{song['title']} - {song['performer']}\".lower().strip() \n",
    "                        for song in chart_songs]\n",
    "\n",
    "    chunks = [(s, library_keys, threshold) for s in search_strings]\n",
    "    \n",
    "    matches = []\n",
    "    with Pool() as pool:\n",
    "        for i, combined_matches in enumerate(tqdm(\n",
    "            pool.imap(process_chunk, chunks), \n",
    "            total=len(chunks)\n",
    "        )):\n",
    "            for match_str, score, _ in combined_matches:\n",
    "                matches.append({\n",
    "                    'chart_song': chart_songs[i],\n",
    "                    'library_song': library_lookups['combined'][match_str],\n",
    "                    'match_score': score\n",
    "                })\n",
    "    return matches\n",
    "\n",
    "def find_matches_vectorized(chart_songs, library_songs, threshold=90, dataset=\"discogs\"):\n",
    "    library_lookups = create_song_lookups(library_songs, dataset=dataset)\n",
    "    library_keys = list(library_lookups['combined'].keys())\n",
    "    \n",
    "    search_strings = [f\"{song['title']} - {song['performer']}\".lower().strip() \n",
    "                        for song in chart_songs]\n",
    "\n",
    "    distances = cdist(search_strings, library_keys, scorer=fuzz.ratio, workers=128)\n",
    "    \n",
    "    matches = []\n",
    "    for i, row in enumerate(distances):\n",
    "        match_indices = np.where(row >= threshold)[0][:3]\n",
    "        \n",
    "        for idx in match_indices:\n",
    "            match_str = library_keys[idx]\n",
    "            matches.append({\n",
    "                'chart_song': chart_songs[i],\n",
    "                'library_song': library_lookups['combined'][match_str],\n",
    "                'match_score': row[idx]\n",
    "            })\n",
    "    \n",
    "    return matches\n",
    "\n",
    "# Usage example:\n",
    "def process_billboard_matches(billboard_df, subset_metas, method='vectorized', dataset=\"discogs\"):    \n",
    "    billboard_df_list = billboard_df.to_dict(orient=\"records\")\n",
    "    \n",
    "    if method == 'parallel':\n",
    "        matches = find_matches_parallel(billboard_df_list, subset_metas, dataset=dataset)\n",
    "    else:\n",
    "        matches = find_matches_vectorized(billboard_df_list, subset_metas, dataset=dataset)\n",
    "    \n",
    "    billboard_metas = []\n",
    "    for match in matches:\n",
    "        source = match[\"chart_song\"][\"source\"]\n",
    "        source_artist = match[\"chart_song\"][\"performer\"]\n",
    "        source_title = match[\"chart_song\"][\"title\"]\n",
    "        if isinstance(source, list):\n",
    "            source = source[0]\n",
    "        elif isinstance(source, np.ndarray):\n",
    "            source = source[0]\n",
    "        billboard_meta = {\n",
    "            \"id\": match[\"library_song\"][\"id\"],\n",
    "            \"title\": match[\"library_song\"].get(\"title\", \"\"),\n",
    "            \"artist\": match[\"library_song\"].get(\"artists\", [{}]),\n",
    "            \"youtube_title\": match[\"library_song\"].get(\"youtube_title\", \"\"),\n",
    "            \"source\": source,\n",
    "            \"match_score\": match[\"match_score\"],\n",
    "            \"source_artist\": source_artist,\n",
    "            \"source_title\": source_title,\n",
    "        }\n",
    "\n",
    "\n",
    "        # add tags\n",
    "        billboard_meta[\"tags\"] = [\"Billboard\"]\n",
    "        #billboard_meta[\"tags\"].append(source)\n",
    "        if \"chart_dates\" in match[\"chart_song\"]:\n",
    "            chart_date_tag = f\"{source}\"\n",
    "            for chart_date in match[\"chart_song\"][\"chart_dates\"]:\n",
    "                chart_date_tag += f\" {chart_date}\"\n",
    "            billboard_meta[\"tags\"].append(chart_date_tag)\n",
    "        if \"source\" in match[\"chart_song\"]:\n",
    "            #for source in match[\"chart_song\"][\"source\"]:\n",
    "            billboard_meta[\"tags\"].append(source)\n",
    "        billboard_metas.append(billboard_meta)\n",
    "    \n",
    "    return billboard_metas"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 92,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "15\n"
     ]
    }
   ],
   "source": [
    "billboard_df = billboard_df.groupby(['title', 'performer']).agg({\n",
    "    'wks_on_chart': 'first', \n",
    "    'source': 'first'\n",
    "}).reset_index()\n",
    "billboard_metas = process_billboard_matches(billboard_df, discogs_subset_metas[:1000])\n",
    "print(len(billboard_metas))\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 93,
   "metadata": {},
   "outputs": [],
   "source": [
    "for billboard_meta in billboard_metas:\n",
    "    billboard_meta[\"match_score\"] = float(billboard_meta[\"match_score\"])\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 94,
   "metadata": {},
   "outputs": [],
   "source": [
    "write_jsonl(billboard_metas, \"/home/christian/code/christian/metadata/popularity/discogs_subset_billboard_metas.jsonl\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Empty DataFrame\n",
      "Columns: [title, performer, year, source]\n",
      "Index: []\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>title</th>\n",
       "      <th>performer</th>\n",
       "      <th>source</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>264</th>\n",
       "      <td>Blinding Lights</td>\n",
       "      <td>The Weeknd</td>\n",
       "      <td>[Gen Z, TikTok, Workout, Viral, Audiophile]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>164</th>\n",
       "      <td>Bad Guy</td>\n",
       "      <td>Billie Eilish</td>\n",
       "      <td>[Workout, Reddit, Viral, Audiophile]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1717</th>\n",
       "      <td>Something Just Like This</td>\n",
       "      <td>The Chainsmokers &amp; Coldplay</td>\n",
       "      <td>[Reddit, Viral, Duet, Audiophile]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1567</th>\n",
       "      <td>Rolling in the Deep</td>\n",
       "      <td>Adele</td>\n",
       "      <td>[Workout, Reddit, Viral, Audiophile]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>917</th>\n",
       "      <td>In My Feelings</td>\n",
       "      <td>Drake</td>\n",
       "      <td>[Gen Z, Meme Song, Viral, Audiophile]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>747</th>\n",
       "      <td>God's Plan</td>\n",
       "      <td>Drake</td>\n",
       "      <td>[Gen Z, Reddit, Viral, Audiophile]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1196</th>\n",
       "      <td>Midnight City</td>\n",
       "      <td>M83</td>\n",
       "      <td>[Gen Z, TikTok, Audiophile]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>549</th>\n",
       "      <td>Dynamite</td>\n",
       "      <td>BTS</td>\n",
       "      <td>[Gen Z, TikTok, Viral]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1137</th>\n",
       "      <td>Lucid Dreams</td>\n",
       "      <td>Juice WRLD</td>\n",
       "      <td>[Gen Z, Viral, Audiophile]</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>282</th>\n",
       "      <td>Body</td>\n",
       "      <td>Megan Thee Stallion</td>\n",
       "      <td>[Gen Z, TikTok, Viral]</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "                         title                    performer  \\\n",
       "264            Blinding Lights                   The Weeknd   \n",
       "164                    Bad Guy                Billie Eilish   \n",
       "1717  Something Just Like This  The Chainsmokers & Coldplay   \n",
       "1567       Rolling in the Deep                        Adele   \n",
       "917             In My Feelings                        Drake   \n",
       "747                 God's Plan                        Drake   \n",
       "1196             Midnight City                          M83   \n",
       "549                   Dynamite                          BTS   \n",
       "1137              Lucid Dreams                   Juice WRLD   \n",
       "282                       Body          Megan Thee Stallion   \n",
       "\n",
       "                                           source  \n",
       "264   [Gen Z, TikTok, Workout, Viral, Audiophile]  \n",
       "164          [Workout, Reddit, Viral, Audiophile]  \n",
       "1717            [Reddit, Viral, Duet, Audiophile]  \n",
       "1567         [Workout, Reddit, Viral, Audiophile]  \n",
       "917         [Gen Z, Meme Song, Viral, Audiophile]  \n",
       "747            [Gen Z, Reddit, Viral, Audiophile]  \n",
       "1196                  [Gen Z, TikTok, Audiophile]  \n",
       "549                        [Gen Z, TikTok, Viral]  \n",
       "1137                   [Gen Z, Viral, Audiophile]  \n",
       "282                        [Gen Z, TikTok, Viral]  "
      ]
     },
     "execution_count": 2,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "import pandas as pd\n",
    "gpt_df = pd.read_csv(\"/home/christian/code/christian/metadata/popularity/chatgpt.csv\")\n",
    "\n",
    "# check for rows with NaN in the source column\n",
    "print(gpt_df[gpt_df[\"source\"].isna()])\n",
    "\n",
    "# count the number of songs with \"Audiophile\" in the Source column\n",
    "audiophile_count = gpt_df[gpt_df[\"source\"].str.contains(\"Audiophile\")].shape[0]\n",
    "\n",
    "# look for repeated rows with the same title and performer, take all the sources and merge them into a list\n",
    "gpt_df = gpt_df.groupby([\"title\", \"performer\"]).agg({\"source\": \"unique\"}).reset_index()\n",
    "\n",
    "# sort by the length of the sources\n",
    "gpt_df = gpt_df.sort_values(by=\"source\", key=lambda x: x.str.len(), ascending=False)\n",
    "\n",
    "\n",
    "gpt_df.head(10)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 75,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1455\n"
     ]
    }
   ],
   "source": [
    "# find matches\n",
    "gpt_metas = process_billboard_matches(gpt_df, discogs_subset_metas[:3_000_000])\n",
    "print(len(gpt_metas))\n",
    "\n",
    "for gpt_meta in gpt_metas:\n",
    "    gpt_meta[\"match_score\"] = float(gpt_meta[\"match_score\"])\n",
    "\n",
    "write_jsonl(gpt_metas, \"/home/christian/code/christian/metadata/popularity/discogs_subset_gpt_metas.jsonl\")\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "169909\n",
      "id                       6KbQ3uYMLKb5jDxLF7wYDD\n",
      "name                Singende Bataillone 1. Teil\n",
      "artists                     ['Carl Woitschach']\n",
      "duration_ms                              158648\n",
      "release_date                               1928\n",
      "year                                       1928\n",
      "acousticness                              0.995\n",
      "danceability                              0.708\n",
      "energy                                    0.195\n",
      "instrumentalness                          0.563\n",
      "liveness                                  0.151\n",
      "loudness                                -12.428\n",
      "speechiness                              0.0506\n",
      "tempo                                   118.469\n",
      "valence                                   0.779\n",
      "mode                                          1\n",
      "key                                          10\n",
      "popularity                                    0\n",
      "explicit                                      0\n",
      "source                               Popularity\n",
      "chart_dates                                 {0}\n",
      "title               Singende Bataillone 1. Teil\n",
      "performer                   ['Carl Woitschach']\n",
      "Name: 0, dtype: object\n"
     ]
    }
   ],
   "source": [
    "import pandas as pd\n",
    "# spotify data\n",
    "spotify_df = pd.read_csv(\"/home/christian/code/christian/metadata/popularity/spotify-data.csv\")\n",
    "spotify_df.sort_values(by=\"popularity\", ascending=False).head(10)\n",
    "\n",
    "# add source to the df\n",
    "spotify_df[\"source\"] = \"Popularity\"\n",
    "\n",
    "# add chart_dates to the df using the popularity column\n",
    "spotify_df[\"chart_dates\"] = spotify_df[\"popularity\"].apply(lambda x: set([str(x)]))\n",
    "\n",
    "# add title and performer to the df\n",
    "spotify_df[\"title\"] = spotify_df[\"name\"]\n",
    "spotify_df[\"performer\"] = spotify_df[\"artists\"]\n",
    "\n",
    "# can use for popularity values\n",
    "print(len(spotify_df))\n",
    "print(spotify_df.iloc[0])\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "performer              ['Carl Woitschach']\n",
       "title          Singende Bataillone 1. Teil\n",
       "source                          Popularity\n",
       "chart_dates                            {0}\n",
       "Name: 0, dtype: object"
      ]
     },
     "execution_count": 7,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "spotify_df.iloc[0][[\"performer\", \"title\", \"source\", \"chart_dates\"]]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {},
   "outputs": [
    {
     "ename": "",
     "evalue": "",
     "output_type": "error",
     "traceback": [
      "\u001b[1;31mThe Kernel crashed while executing code in the current cell or a previous cell. \n",
      "\u001b[1;31mPlease review the code in the cell(s) to identify a possible cause of the failure. \n",
      "\u001b[1;31mClick <a href='https://aka.ms/vscodeJupyterKernelCrash'>here</a> for more info. \n",
      "\u001b[1;31mView Jupyter <a href='command:jupyter.viewOutput'>log</a> for further details."
     ]
    }
   ],
   "source": [
    "# find matches\n",
    "spotify_metas = process_billboard_matches(spotify_df, discogs_subset_metas)\n",
    "print(len(spotify_metas))\n",
    "\n",
    "for spotify_meta in spotify_metas:\n",
    "    spotify_meta[\"match_score\"] = float(spotify_meta[\"match_score\"])\n",
    "\n",
    "write_jsonl(spotify_metas, \"/home/christian/code/christian/metadata/popularity/discogs_subset_spotify_metas.jsonl\")\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Billboard Hot Country Songs before merge: 151593, after merge: 12436\n",
      "Billboard Hot Dance/Electronic Songs before merge: 15500, after merge: 1499\n",
      "Billboard Hot R&B/Hip-Hop Songs before merge: 150990, after merge: 14361\n",
      "Billboard Hot 100 before merge: 315185, after merge: 27940\n",
      "Billboard Japan Hot 100 before merge: 38690, after merge: 10575\n",
      "Billboard Hot Latin Songs before merge: 77496, after merge: 6272\n",
      "Billboard Hot Pop Songs before merge: 54800, after merge: 3610\n",
      "Billboard Hot Rock Songs before merge: 24900, after merge: 2280\n",
      "Billboard YouTube Music Charts before merge: 9600, after merge: 864\n",
      "Total rows: 79837\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>title</th>\n",
       "      <th>performer</th>\n",
       "      <th>chart_dates</th>\n",
       "      <th>source</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>\"Never More\" Quote The Raven</td>\n",
       "      <td>Stonewall Jackson</td>\n",
       "      <td>{1969}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>\"You've Got\" The Touch</td>\n",
       "      <td>Alabama</td>\n",
       "      <td>{1987}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>'57 Chevrolet</td>\n",
       "      <td>Billie Jo Spears</td>\n",
       "      <td>{1978}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>'Cause I Have You</td>\n",
       "      <td>Wynn Stewart</td>\n",
       "      <td>{1967}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>'Fore She Was Mama</td>\n",
       "      <td>Clay Walker</td>\n",
       "      <td>{2006, 2007}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>5</th>\n",
       "      <td>'Gator Hollow</td>\n",
       "      <td>Lefty Frizzell</td>\n",
       "      <td>{1965}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>6</th>\n",
       "      <td>'Round Here</td>\n",
       "      <td>Sawyer Brown</td>\n",
       "      <td>{1995, 1996}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>7</th>\n",
       "      <td>'Tater Raisin' Man</td>\n",
       "      <td>Dick Curless</td>\n",
       "      <td>{1965}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>8</th>\n",
       "      <td>'Til A Tear Becomes A Rose</td>\n",
       "      <td>Keith Whitley &amp; Lorrie Morgan</td>\n",
       "      <td>{1990}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>9</th>\n",
       "      <td>'Til A Tear Becomes A Rose</td>\n",
       "      <td>Leon Everette</td>\n",
       "      <td>{1985}</td>\n",
       "      <td>Billboard Hot Country Songs</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "                          title                      performer   chart_dates  \\\n",
       "0  \"Never More\" Quote The Raven              Stonewall Jackson        {1969}   \n",
       "1        \"You've Got\" The Touch                        Alabama        {1987}   \n",
       "2                 '57 Chevrolet               Billie Jo Spears        {1978}   \n",
       "3             'Cause I Have You                   Wynn Stewart        {1967}   \n",
       "4            'Fore She Was Mama                    Clay Walker  {2006, 2007}   \n",
       "5                 'Gator Hollow                 Lefty Frizzell        {1965}   \n",
       "6                   'Round Here                   Sawyer Brown  {1995, 1996}   \n",
       "7            'Tater Raisin' Man                   Dick Curless        {1965}   \n",
       "8    'Til A Tear Becomes A Rose  Keith Whitley & Lorrie Morgan        {1990}   \n",
       "9    'Til A Tear Becomes A Rose                  Leon Everette        {1985}   \n",
       "\n",
       "                        source  \n",
       "0  Billboard Hot Country Songs  \n",
       "1  Billboard Hot Country Songs  \n",
       "2  Billboard Hot Country Songs  \n",
       "3  Billboard Hot Country Songs  \n",
       "4  Billboard Hot Country Songs  \n",
       "5  Billboard Hot Country Songs  \n",
       "6  Billboard Hot Country Songs  \n",
       "7  Billboard Hot Country Songs  \n",
       "8  Billboard Hot Country Songs  \n",
       "9  Billboard Hot Country Songs  "
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "import pandas as pd\n",
    "\n",
    "# other charts\n",
    "chart_filepaths = [\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_Country_Songs_from_2011-04-09_to_2018-12-31.csv\", \"Billboard Hot Country Songs\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_Dance_Electronic_Songs_from_2013-01-26_to_2018-12-31.csv\", \"Billboard Hot Dance/Electronic Songs\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_Hip_Hop_Songs_from_1958-10-20_to_2018-12-31.csv\", \"Billboard Hot R&B/Hip-Hop Songs\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_Hot_100_from_1958-08-04_to_2018-12-31.csv\", \"Billboard Hot 100\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_Japan_Hot_100_from_2011-04-09_to_2018-12-31.csv\", \"Billboard Japan Hot 100\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_Latin_Songs_from_1986-09-20_to_2018-12-31.csv\", \"Billboard Hot Latin Songs\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_Pop_Songs_from_1992-10-03_to_2018-12-31.csv\", \"Billboard Hot Pop Songs\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_Rock_Songs_from_2009-06-20_to_2018-12-31.csv\", \"Billboard Hot Rock Songs\"),\n",
    "    (\"/home/christian/code/christian/metadata/popularity/All_YouTube_chart_from_2011-08-27_to_2018-12-31.csv\", \"Billboard YouTube Music Charts\"),\n",
    "]\n",
    "\n",
    "chart_dfs = []\n",
    "for filepath, name in chart_filepaths:\n",
    "    df = pd.read_csv(filepath)\n",
    "    before_merge = len(df)\n",
    "    df_merged = df.groupby(['title', 'artist'])['chart_date'].agg(list).reset_index()\n",
    "\n",
    "    # If you need the dates as strings, split on \"-\" in each string and take the first part    \n",
    "    df_merged['chart_dates'] = df_merged['chart_date'].apply(lambda x: set([str(date).split(\"-\")[0] for date in x]))\n",
    "    after_merge = len(df_merged)\n",
    "\n",
    "    # drop chart_date\n",
    "    df_merged.drop(columns=[\"chart_date\"], inplace=True)\n",
    "\n",
    "    print(f\"{name} before merge: {before_merge}, after merge: {after_merge}\")\n",
    "    # add source to the df\n",
    "    df_merged[\"source\"] = name\n",
    "\n",
    "\n",
    "    # rename artist to performer\n",
    "    df_merged.rename(columns={\"artist\": \"performer\"}, inplace=True)\n",
    "    chart_dfs.append(df_merged)\n",
    "\n",
    "\n",
    "chart_df = pd.concat(chart_dfs)\n",
    "chart_df.head(10)\n",
    "total_rows = len(chart_df)\n",
    "print(f\"Total rows: {total_rows}\")\n",
    "chart_df.head(10)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "\"You'll Accomp'ny Me\""
      ]
     },
     "execution_count": 15,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "genius_metas[0][\"youtube_title\"]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 52,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "41028\n"
     ]
    }
   ],
   "source": [
    "\n",
    "chart_metas = process_billboard_matches(chart_df, discogs_subset_metas, dataset=\"discogs\")\n",
    "print(len(chart_metas))\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 48,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'id': '89719ef9-c93c-472f-9d1f-f233009b52c2', 'title': '', 'artist': [{}], 'youtube_title': \"'Til I Gain Control Again - Crystal Gayle\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': \"'til I Gain Control Again\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1983 1982', 'Billboard Hot Country Songs']}\n",
      "{'id': '8bd9be23-2b38-4247-97dc-01bedae1608e', 'title': '', 'artist': [{}], 'youtube_title': '15 Minutes - Rodney Atkins', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Rodney Atkins', 'source_title': '15 Minutes', 'tags': ['Billboard', 'Billboard Hot Country Songs 2009', 'Billboard Hot Country Songs']}\n",
      "{'id': '94583033-631d-4932-9859-f077025dc366', 'title': '', 'artist': [{}], 'youtube_title': '8th of November - Big & Rich', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Big & Rich', 'source_title': '8th Of November', 'tags': ['Billboard', 'Billboard Hot Country Songs 2006', 'Billboard Hot Country Songs']}\n",
      "{'id': 'ce0d066a-0871-4bf1-805a-e9c61a1c4337', 'title': '', 'artist': [{}], 'youtube_title': 'A LONG and LASTING LOVE - CRYSTAL GAYLE', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'A Long And Lasting Love', 'tags': ['Billboard', 'Billboard Hot Country Songs 1985', 'Billboard Hot Country Songs']}\n",
      "{'id': '7cb0d7d7-2c14-46dd-a988-84a66ee9e87c', 'title': '', 'artist': [{}], 'youtube_title': 'a man holding on (to a woman letting go) - Ty Herndon', 'source': 'Billboard Hot Country Songs', 'match_score': 96.22642, 'source_artist': 'Ty Herndon', 'source_title': \"A Man Holdin' On (To A Woman Lettin' Go)\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1998', 'Billboard Hot Country Songs']}\n",
      "{'id': '5f5404ae-42d0-4ba2-bbcf-fe86e9945137', 'title': '', 'artist': [{}], 'youtube_title': 'Ala-Freakin-Bama By Trace Adkins', 'source': 'Billboard Hot Country Songs', 'match_score': 95.2381, 'source_artist': 'Trace Adkins', 'source_title': 'Ala-Freakin-Bama', 'tags': ['Billboard', 'Billboard Hot Country Songs 2010', 'Billboard Hot Country Songs']}\n",
      "{'id': 'bf648b11-6e3a-4be8-809e-fdfae8845ca9', 'title': '', 'artist': [{}], 'youtube_title': 'All I Can Do - Dolly Parton', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Dolly Parton', 'source_title': 'All I Can Do', 'tags': ['Billboard', 'Billboard Hot Country Songs 1976', 'Billboard Hot Country Songs']}\n",
      "{'id': 'b7acd627-b025-4f07-9d3a-8d985b36b667', 'title': '', 'artist': [{}], 'youtube_title': 'America Will Survive - Hank Williams Jr', 'source': 'Billboard Hot Country Songs', 'match_score': 98.73418, 'source_artist': 'Hank Williams Jr.', 'source_title': 'America Will Survive', 'tags': ['Billboard', 'Billboard Hot Country Songs 2001', 'Billboard Hot Country Songs']}\n",
      "{'id': 'd5dc1fa6-1c65-4402-94c4-c4a16ac0fa59', 'title': '', 'artist': [{}], 'youtube_title': 'another world-crystal gayle and gary morris', 'source': 'Billboard Hot Country Songs', 'match_score': 97.72727, 'source_artist': 'Crystal Gayle And Gary Morris', 'source_title': 'Another World', 'tags': ['Billboard', 'Billboard Hot Country Songs 1987', 'Billboard Hot Country Songs']}\n",
      "{'id': '8eb31cbd-5b84-44c8-9994-9da50a37bbc3', 'title': '', 'artist': [{}], 'youtube_title': 'Any Way You Want Me (Gene Watson)', 'source': 'Billboard Hot Country Songs', 'match_score': 93.93939, 'source_artist': 'Gene Watson', 'source_title': 'Any Way You Want Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 1981', 'Billboard Hot Country Songs']}\n",
      "{'id': '9197f979-8961-46fd-bdac-3a03c6c95b51', 'title': '', 'artist': [{}], 'youtube_title': 'Are You Ever Gonna Love Me - Holly Dunn', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Holly Dunn', 'source_title': 'Are You Ever Gonna Love Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 1989', 'Billboard Hot Country Songs']}\n",
      "{'id': '9783c2c2-26ba-4c37-8bc8-afe2e585a51a', 'title': '', 'artist': [{}], 'youtube_title': 'Baby Blue - George Strait', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'George Strait', 'source_title': 'Baby Blue', 'tags': ['Billboard', 'Billboard Hot Country Songs 1988', 'Billboard Hot Country Songs']}\n",
      "{'id': 'c4c2bfff-754b-4713-9971-e856c8567be6', 'title': '', 'artist': [{}], 'youtube_title': 'Back In My Arms Again-Kenny Chesney', 'source': 'Billboard Hot Country Songs', 'match_score': 97.22222, 'source_artist': 'Kenny Chesney', 'source_title': 'Back In My Arms Again', 'tags': ['Billboard', 'Billboard Hot Country Songs 1996', 'Billboard Hot Country Songs']}\n",
      "{'id': '62be6725-4d57-4e81-a191-4f6be31d7a85', 'title': '', 'artist': [{}], 'youtube_title': 'Back Seat of a Greyhound Bus - Sara Evans', 'source': 'Billboard Hot Country Songs', 'match_score': 98.765434, 'source_artist': 'Sara Evans', 'source_title': 'Backseat Of A Greyhound Bus', 'tags': ['Billboard', 'Billboard Hot Country Songs 2003', 'Billboard Hot Country Songs']}\n",
      "{'id': '62e0eb76-d0d7-4eda-8094-9a096591b7b3', 'title': '', 'artist': [{}], 'youtube_title': 'Better In A Black Dress (Katie Armiger)', 'source': 'Billboard Hot Country Songs', 'match_score': 94.871796, 'source_artist': 'Katie Armiger', 'source_title': 'Better In A Black Dress', 'tags': ['Billboard', 'Billboard Hot Country Songs 2012', 'Billboard Hot Country Songs']}\n",
      "{'id': '1f8614d1-1173-4c24-b90f-8864e6c3f95c', 'title': '', 'artist': [{}], 'youtube_title': 'Big Deal-LeAnn Rimes', 'source': 'Billboard Hot Country Songs', 'match_score': 95.2381, 'source_artist': 'LeAnn Rimes', 'source_title': 'Big Deal', 'tags': ['Billboard', 'Billboard Hot Country Songs 2000 1999', 'Billboard Hot Country Songs']}\n",
      "{'id': '90600d54-98c9-41dc-af2d-407b33e70945', 'title': '', 'artist': [{}], 'youtube_title': 'Born To Run - Emmylou Harris', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Emmylou Harris', 'source_title': 'Born To Run', 'tags': ['Billboard', 'Billboard Hot Country Songs 1982', 'Billboard Hot Country Songs']}\n",
      "{'id': '8018b7d6-2cb6-4a58-8c00-f99811461463', 'title': '', 'artist': [{}], 'youtube_title': 'Broken - Lindsey Haun', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Lindsey Haun', 'source_title': 'Broken', 'tags': ['Billboard', 'Billboard Hot Country Songs 2006', 'Billboard Hot Country Songs']}\n",
      "{'id': '5d92b5da-fb37-430a-8196-dfce6f5b6dc5', 'title': '', 'artist': [{}], 'youtube_title': 'Candy Cane Christmas- Darius Rucker', 'source': 'Billboard Hot Country Songs', 'match_score': 98.59155, 'source_artist': 'Darius Rucker', 'source_title': 'Candy Cane Christmas', 'tags': ['Billboard', 'Billboard Hot Country Songs 2009 2010', 'Billboard Hot Country Songs']}\n",
      "{'id': '0424664b-a670-41b8-bd67-92d88bb377c1', 'title': '', 'artist': [{}], 'youtube_title': 'Changes In Latitudes, Changes In Attitudes - Jimmy Buffett', 'source': 'Billboard Hot Country Songs', 'match_score': 96.61017, 'source_artist': 'Jimmy Buffett', 'source_title': 'Changes In Latitudes... Changes In Attitudes', 'tags': ['Billboard', 'Billboard Hot Country Songs 1977', 'Billboard Hot Country Songs']}\n",
      "{'id': '02415721-40fe-4d5e-93f5-0a96c88fa3ae', 'title': '', 'artist': [{}], 'youtube_title': \"Chasin' Girls - Rodney Atkins\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Rodney Atkins', 'source_title': \"Chasin' Girls\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2009', 'Billboard Hot Country Songs']}\n",
      "{'id': 'e5cf4f81-0552-4b92-b801-b8ecec76ad6f', 'title': '', 'artist': [{}], 'youtube_title': 'Chrome by trace adkins', 'source': 'Billboard Hot Country Songs', 'match_score': 93.023254, 'source_artist': 'Trace Adkins', 'source_title': 'Chrome', 'tags': ['Billboard', 'Billboard Hot Country Songs 2002 2003', 'Billboard Hot Country Songs']}\n",
      "{'id': '19fcffe2-9a8a-4665-9a66-7f78ff0d52af', 'title': '', 'artist': [{}], 'youtube_title': 'Chug-a-lug ~ Roger Miller', 'source': 'Billboard Hot Country Songs', 'match_score': 96.0, 'source_artist': 'Roger Miller', 'source_title': 'Chug-A-Lug', 'tags': ['Billboard', 'Billboard Hot Country Songs 1965 1964', 'Billboard Hot Country Songs']}\n",
      "{'id': '5783f823-fbb6-4adb-a9da-3f5983178bae', 'title': '', 'artist': [{}], 'youtube_title': 'Clyde - Waylon Jennings', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Waylon Jennings', 'source_title': 'Clyde', 'tags': ['Billboard', 'Billboard Hot Country Songs 1980', 'Billboard Hot Country Songs']}\n",
      "{'id': '7ab85c45-2e9e-4d45-8d9d-4cb5068cddb6', 'title': '', 'artist': [{}], 'youtube_title': 'Crazy Ex-Girlfriend-Miranda Lambert', 'source': 'Billboard Hot Country Songs', 'match_score': 97.22222, 'source_artist': 'Miranda Lambert', 'source_title': 'Crazy Ex-Girlfriend', 'tags': ['Billboard', 'Billboard Hot Country Songs 2007', 'Billboard Hot Country Songs']}\n",
      "{'id': '94ad40b1-2b1f-4511-a878-635126470b45', 'title': '', 'artist': [{}], 'youtube_title': 'Cry - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Cry', 'tags': ['Billboard', 'Billboard Hot Country Songs 1986', 'Billboard Hot Country Songs']}\n",
      "{'id': 'd7e6367b-e0e2-4892-8887-091b84729663', 'title': '', 'artist': [{}], 'youtube_title': 'CRY MYSELF TO SLEEP-----THE JUDDS', 'source': 'Billboard Hot Country Songs', 'match_score': 90.625, 'source_artist': 'The Judds', 'source_title': 'Cry Myself To Sleep', 'tags': ['Billboard', 'Billboard Hot Country Songs 1986 1987', 'Billboard Hot Country Songs']}\n",
      "{'id': 'f95078f7-8970-4553-a53c-f3dd31fd2b0b', 'title': '', 'artist': [{}], 'youtube_title': \"daddy's money - Ricochet\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Ricochet', 'source_title': \"Daddy's Money\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1996', 'Billboard Hot Country Songs']}\n",
      "{'id': '993e88e7-f313-44e7-a281-0742d53715f9', 'title': '', 'artist': [{}], 'youtube_title': 'Dim Lights, Thick Smoke (And Loud, Loud Music)~Vern Gosdin.wmv', 'source': 'Billboard Hot Country Songs', 'match_score': 92.56198, 'source_artist': 'Vern Gosdin', 'source_title': 'Dim Lights, Thick Smoke (And Loud Loud Music)', 'tags': ['Billboard', 'Billboard Hot Country Songs 1985', 'Billboard Hot Country Songs']}\n",
      "{'id': 'c9990477-cb04-4e6e-ae6f-954c3446a9b0', 'title': '', 'artist': [{}], 'youtube_title': 'Dirt Road Diary - Luke Bryan', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Luke Bryan', 'source_title': 'Dirt Road Diary', 'tags': ['Billboard', 'Billboard Hot Country Songs 2013', 'Billboard Hot Country Songs']}\n",
      "{'id': 'a904ab59-1aea-496e-ae9c-99218193324d', 'title': '', 'artist': [{}], 'youtube_title': \"Doin' It Right by Steve Azar\", 'source': 'Billboard Hot Country Songs', 'match_score': 94.545456, 'source_artist': 'Steve Azar', 'source_title': \"Doin' It Right\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2005', 'Billboard Hot Country Songs']}\n",
      "{'id': '5e3da118-a2e2-4bd9-963f-3bdf9b1005ba', 'title': '', 'artist': [{}], 'youtube_title': \"Don't Take It Away-  Conway Twitty\", 'source': 'Billboard Hot Country Songs', 'match_score': 97.05882, 'source_artist': 'Conway Twitty', 'source_title': \"Don't Take It Away\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1979', 'Billboard Hot Country Songs']}\n",
      "{'id': '8c909e4e-5af1-406f-a40a-d69f3e858642', 'title': '', 'artist': [{}], 'youtube_title': \"Don't The Girls All Get Prettier At Closing Time , Mickey Gilley , 1976\", 'source': 'Billboard Hot Country Songs', 'match_score': 93.333336, 'source_artist': 'Mickey Gilley', 'source_title': \"Don't The Girls All Get Prettier At Closing Time\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1976', 'Billboard Hot Country Songs']}\n",
      "{'id': '3232adc5-a2ee-4f82-ba36-064b19e41203', 'title': '', 'artist': [{}], 'youtube_title': \"Don't Wake Me, I'm Dreaming Warner Mack\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.20253, 'source_artist': 'Warner Mack', 'source_title': \"Don't Wake Me I'm Dreaming\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1969 1968', 'Billboard Hot Country Songs']}\n",
      "{'id': '98d6a968-68e5-4e46-a8af-81d44902e075', 'title': '', 'artist': [{}], 'youtube_title': 'Downtime Jo Dee Messina', 'source': 'Billboard Hot Country Songs', 'match_score': 95.833336, 'source_artist': 'Jo Dee Messina', 'source_title': 'Downtime', 'tags': ['Billboard', 'Billboard Hot Country Songs 2001', 'Billboard Hot Country Songs']}\n",
      "{'id': 'f6fe7718-9b0e-4a15-8b83-010f777d7cb0', 'title': '', 'artist': [{}], 'youtube_title': 'Drinking Bone By Tracy Byrd', 'source': 'Billboard Hot Country Songs', 'match_score': 90.56604, 'source_artist': 'Tracy Byrd', 'source_title': \"Drinkin' Bone\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2004 2003', 'Billboard Hot Country Songs']}\n",
      "{'id': '9f0fbf0d-b26b-417d-afaa-f6ec5fa486ac', 'title': '', 'artist': [{}], 'youtube_title': 'Drinking Champagne - George Strait', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'George Strait', 'source_title': 'Drinking Champagne', 'tags': ['Billboard', 'Billboard Hot Country Songs 1990', 'Billboard Hot Country Songs']}\n",
      "{'id': 'c05dd3a0-cce3-45d7-bf2f-68c0e6ba35c2', 'title': '', 'artist': [{}], 'youtube_title': 'Drugs or Jesus  By Tim McGraw', 'source': 'Billboard Hot Country Songs', 'match_score': 92.85714, 'source_artist': 'Tim McGraw', 'source_title': 'Drugs Or Jesus', 'tags': ['Billboard', 'Billboard Hot Country Songs 2005', 'Billboard Hot Country Songs']}\n",
      "{'id': 'b70b9ad9-0697-4914-802e-6c5ba8041010', 'title': '', 'artist': [{}], 'youtube_title': 'Easy Does it by Hot Apple Pie', 'source': 'Billboard Hot Country Songs', 'match_score': 94.73684, 'source_artist': 'Hot Apple Pie', 'source_title': 'Easy Does It', 'tags': ['Billboard', 'Billboard Hot Country Songs 2006', 'Billboard Hot Country Songs']}\n",
      "{'id': 'c21c318a-8ae2-426a-8326-c8cffb3e92a1', 'title': '', 'artist': [{}], 'youtube_title': 'Easy from Now On. Emmylou Harris.', 'source': 'Billboard Hot Country Songs', 'match_score': 93.93939, 'source_artist': 'Emmylou Harris', 'source_title': 'Easy From Now On', 'tags': ['Billboard', 'Billboard Hot Country Songs 1978', 'Billboard Hot Country Songs']}\n",
      "{'id': '4707ed88-0afd-4598-86f7-f37c0297a652', 'title': '', 'artist': [{}], 'youtube_title': 'Eighteen Inches - Lauren Alaina', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Lauren Alaina', 'source_title': 'Eighteen Inches', 'tags': ['Billboard', 'Billboard Hot Country Songs 2012', 'Billboard Hot Country Songs']}\n",
      "{'id': '386513dd-bc92-46a1-b647-8269e6903417', 'title': '', 'artist': [{}], 'youtube_title': 'Elizabeth \"By\" The Statler Brothers', 'source': 'Billboard Hot Country Songs', 'match_score': 92.537315, 'source_artist': 'The Statler Brothers', 'source_title': 'Elizabeth', 'tags': ['Billboard', 'Billboard Hot Country Songs 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': '85dad848-8d4b-4afe-84b6-e76449a70b7e', 'title': '', 'artist': [{}], 'youtube_title': 'Every Dog Has Its Day lyrics Toby Keith', 'source': 'Billboard Hot Country Songs', 'match_score': 90.41096, 'source_artist': 'Toby Keith', 'source_title': 'Every Dog Has Its Day', 'tags': ['Billboard', 'Billboard Hot Country Songs 2010', 'Billboard Hot Country Songs']}\n",
      "{'id': '0357f420-797a-43e8-8e88-9dc35a5e10df', 'title': '', 'artist': [{}], 'youtube_title': 'Forever-by John Michael Montgomery', 'source': 'Billboard Hot Country Songs', 'match_score': 95.522385, 'source_artist': 'John Michael Montgomery', 'source_title': 'Forever', 'tags': ['Billboard', 'Billboard Hot Country Songs 2009 2008', 'Billboard Hot Country Songs']}\n",
      "{'id': '0dafe95f-7a27-4b4d-bfb1-f15ea3e54ae5', 'title': '', 'artist': [{}], 'youtube_title': 'Friends in low places lyrics Garth Brooks', 'source': 'Billboard Hot Country Songs', 'match_score': 90.90909, 'source_artist': 'Garth Brooks', 'source_title': 'Friends In Low Places', 'tags': ['Billboard', 'Billboard Hot Country Songs 1990', 'Billboard Hot Country Songs']}\n",
      "{'id': 'ce7927f7-1e77-4933-a15f-ccd75d73806f', 'title': '', 'artist': [{}], 'youtube_title': 'From Levis To Calvin Klein Jeans , Brenda Lee', 'source': 'Billboard Hot Country Songs', 'match_score': 96.7033, 'source_artist': 'Brenda Lee', 'source_title': \"From Levi's To Calvin Klein Jeans\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1982', 'Billboard Hot Country Songs']}\n",
      "{'id': '66927eb2-e146-40be-ad35-619f01c62172', 'title': '', 'artist': [{}], 'youtube_title': 'Get Back To The Country - Neil Young', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Neil Young', 'source_title': 'Get Back To The Country', 'tags': ['Billboard', 'Billboard Hot Country Songs 1985', 'Billboard Hot Country Songs']}\n",
      "{'id': '2515e768-d82f-4a3f-a97a-7ef6f9396a56', 'title': '', 'artist': [{}], 'youtube_title': '06 Go Back - Chalee Tennison', 'source': 'Billboard Hot Country Songs', 'match_score': 94.33962, 'source_artist': 'Chalee Tennison', 'source_title': 'Go Back', 'tags': ['Billboard', 'Billboard Hot Country Songs 2001 2000', 'Billboard Hot Country Songs']}\n",
      "{'id': 'd0362e3d-2e1b-4344-983d-ab2d687efc67', 'title': '', 'artist': [{}], 'youtube_title': 'God must be busy - Brooks & Dunn', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Brooks & Dunn', 'source_title': 'God Must Be Busy', 'tags': ['Billboard', 'Billboard Hot Country Songs 2008 2007', 'Billboard Hot Country Songs']}\n",
      "{'id': 'bfcb113d-6553-4afd-b795-185e612c9ffc', 'title': '', 'artist': [{}], 'youtube_title': 'Half The Way - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Half The Way', 'tags': ['Billboard', 'Billboard Hot Country Songs 1979', 'Billboard Hot Country Songs']}\n",
      "{'id': '467b1c32-8b85-45ca-a068-8dd84d750291', 'title': '', 'artist': [{}], 'youtube_title': 'Heaven Only Knows. Emmylou Harris.', 'source': 'Billboard Hot Country Songs', 'match_score': 94.117645, 'source_artist': 'Emmylou Harris', 'source_title': 'Heaven Only Knows', 'tags': ['Billboard', 'Billboard Hot Country Songs 1989', 'Billboard Hot Country Songs']}\n",
      "{'id': '0074da5f-90d8-42f7-b763-e6a58eb7fcd9', 'title': '', 'artist': [{}], 'youtube_title': 'Heavenly Bodies - Earl Thomas Conley', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Earl Thomas Conley', 'source_title': 'Heavenly Bodies', 'tags': ['Billboard', 'Billboard Hot Country Songs 1982', 'Billboard Hot Country Songs']}\n",
      "{'id': '5bfc03f5-0efa-4a0d-bb3b-7eb56197604d', 'title': '', 'artist': [{}], 'youtube_title': 'Help me hold on   Travis Tritt', 'source': 'Billboard Hot Country Songs', 'match_score': 96.666664, 'source_artist': 'Travis Tritt', 'source_title': 'Help Me Hold On', 'tags': ['Billboard', 'Billboard Hot Country Songs 1990', 'Billboard Hot Country Songs']}\n",
      "{'id': '305cff93-2e77-4614-9ac8-7aebd051197d', 'title': '', 'artist': [{}], 'youtube_title': 'Hillbilly Heart \"By\" Johnny Rodriguez', 'source': 'Billboard Hot Country Songs', 'match_score': 92.95775, 'source_artist': 'Johnny Rodriguez', 'source_title': 'Hillbilly Heart', 'tags': ['Billboard', 'Billboard Hot Country Songs 1976', 'Billboard Hot Country Songs']}\n",
      "{'id': '8c0bfaca-bfb3-49dc-abde-6c5873cc1221', 'title': '', 'artist': [{}], 'youtube_title': 'Homebreaker - Skeeter Davis', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Skeeter Davis', 'source_title': 'Homebreaker', 'tags': ['Billboard', 'Billboard Hot Country Songs 1959 1960', 'Billboard Hot Country Songs']}\n",
      "{'id': '29d87453-51db-446f-836c-99a0b112720d', 'title': '', 'artist': [{}], 'youtube_title': 'Honey Come Back - Glen Campbell', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Glen Campbell', 'source_title': 'Honey Come Back', 'tags': ['Billboard', 'Billboard Hot Country Songs 1970', 'Billboard Hot Country Songs']}\n",
      "{'id': '726813a2-b60b-4f84-aa89-0b5da4c22826', 'title': '', 'artist': [{}], 'youtube_title': 'How Can I Help You Say Goodbye -- Patty Loveless', 'source': 'Billboard Hot Country Songs', 'match_score': 98.947365, 'source_artist': 'Patty Loveless', 'source_title': 'How Can I Help You Say Goodbye', 'tags': ['Billboard', 'Billboard Hot Country Songs 1994', 'Billboard Hot Country Songs']}\n",
      "{'id': '020555cb-844c-4ec8-85a6-abe347212d4b', 'title': '', 'artist': [{}], 'youtube_title': 'I Can Help by Billy Swan', 'source': 'Billboard Hot Country Songs', 'match_score': 93.61702, 'source_artist': 'Billy Swan', 'source_title': 'I Can Help', 'tags': ['Billboard', 'Billboard Hot Country Songs 1975 1974', 'Billboard Hot Country Songs']}\n",
      "{'id': '546f61c4-2c1e-4d47-be2d-072860372361', 'title': '', 'artist': [{}], 'youtube_title': 'I Can See Forever In Your Eyes- Reba McEntire', 'source': 'Billboard Hot Country Songs', 'match_score': 98.9011, 'source_artist': 'Reba McEntire', 'source_title': 'I Can See Forever In Your Eyes', 'tags': ['Billboard', 'Billboard Hot Country Songs 1980', 'Billboard Hot Country Songs']}\n",
      "{'id': '210b6413-1aa3-45d4-bb62-903497beccca', 'title': '', 'artist': [{}], 'youtube_title': 'I go to pieces, Southern Pacific', 'source': 'Billboard Hot Country Songs', 'match_score': 95.38461, 'source_artist': 'Southern Pacific', 'source_title': 'I Go To Pieces', 'tags': ['Billboard', 'Billboard Hot Country Songs 1990', 'Billboard Hot Country Songs']}\n",
      "{'id': '3231c407-875b-4a26-8aa7-9b75d3422235', 'title': '', 'artist': [{}], 'youtube_title': \"I May Be Used (But Baby I Ain't Used Up) - Waylon Jennings\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Waylon Jennings', 'source_title': \"I May Be Used (but Baby I Ain't Used Up)\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': 'be093a33-31a2-49fb-af2a-fcc5d3eba3bc', 'title': '', 'artist': [{}], 'youtube_title': '\"I Meant Every Word He Said\" ~Ricky Van Shelton~', 'source': 'Billboard Hot Country Songs', 'match_score': 93.61702, 'source_artist': 'Ricky Van Shelton', 'source_title': 'I Meant Every Word He Said', 'tags': ['Billboard', 'Billboard Hot Country Songs 1990', 'Billboard Hot Country Songs']}\n",
      "{'id': '3cc2f4ca-d414-40f0-b464-c5f0eb93be9c', 'title': '', 'artist': [{}], 'youtube_title': 'I Need More Of You - Bellamy Brothers', 'source': 'Billboard Hot Country Songs', 'match_score': 94.871796, 'source_artist': 'The Bellamy Brothers', 'source_title': 'I Need More Of You', 'tags': ['Billboard', 'Billboard Hot Country Songs 1985', 'Billboard Hot Country Songs']}\n",
      "{'id': 'dc1fb6bb-9e4c-4d81-93f1-1a97ae3dff15', 'title': '', 'artist': [{}], 'youtube_title': 'I Never Go Around Mirrors by Lefty Frizzell', 'source': 'Billboard Hot Country Songs', 'match_score': 96.47059, 'source_artist': 'Lefty Frizzell', 'source_title': 'I Never Go Around Mirrors', 'tags': ['Billboard', 'Billboard Hot Country Songs 1974', 'Billboard Hot Country Songs']}\n",
      "{'id': '37183705-c20e-4d90-834f-270157277a6f', 'title': '', 'artist': [{}], 'youtube_title': 'I Sang Dixie Dwight Yoakam', 'source': 'Billboard Hot Country Songs', 'match_score': 96.296295, 'source_artist': 'Dwight Yoakam', 'source_title': 'I Sang Dixie', 'tags': ['Billboard', 'Billboard Hot Country Songs 1989 1988', 'Billboard Hot Country Songs']}\n",
      "{'id': '6a368e80-670a-4c1f-bd4d-5ceb4d8338ed', 'title': '', 'artist': [{}], 'youtube_title': 'I Still Believe In Fairy Tales - Tammy Wynette', 'source': 'Billboard Hot Country Songs', 'match_score': 98.9011, 'source_artist': 'Tammy Wynette', 'source_title': 'I Still Believe In Fairytales', 'tags': ['Billboard', 'Billboard Hot Country Songs 1975', 'Billboard Hot Country Songs']}\n",
      "{'id': '60e695c5-0727-45ce-b113-d13998255472', 'title': '', 'artist': [{}], 'youtube_title': 'I Want To Hold You In My Dreams Tonight , Stella Parton , 1975', 'source': 'Billboard Hot Country Songs', 'match_score': 92.30769, 'source_artist': 'Stella Parton', 'source_title': 'I Want To Hold You In My Dreams Tonight', 'tags': ['Billboard', 'Billboard Hot Country Songs 1975', 'Billboard Hot Country Songs']}\n",
      "{'id': '7d9a448f-0b35-4cc1-a894-dfc805305506', 'title': '', 'artist': [{}], 'youtube_title': \"I Was Country When Country Wasn't Cool - Lyrics - Barbara Mandrell\", 'source': 'Billboard Hot Country Songs', 'match_score': 92.68293, 'source_artist': 'Barbara Mandrell', 'source_title': \"I Was Country When Country Wasn't Cool\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1981', 'Billboard Hot Country Songs']}\n",
      "{'id': 'cec6ad2d-ee8a-4867-a6ff-8b4729c71083', 'title': '', 'artist': [{}], 'youtube_title': 'I Wish I Loved Somebody Else~Tom T  Hall', 'source': 'Billboard Hot Country Songs', 'match_score': 92.68293, 'source_artist': 'Tom T. Hall', 'source_title': 'I Wish I Loved Somebody Else', 'tags': ['Billboard', 'Billboard Hot Country Songs 1978', 'Billboard Hot Country Songs']}\n",
      "{'id': '98770eca-69b2-499c-bb62-74d76b5f93d2', 'title': '', 'artist': [{}], 'youtube_title': 'I Wonder Do You Think of Me -Keith Whitley', 'source': 'Billboard Hot Country Songs', 'match_score': 98.82353, 'source_artist': 'Keith Whitley', 'source_title': 'I Wonder Do You Think Of Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 1989', 'Billboard Hot Country Songs']}\n",
      "{'id': '54cf24ef-2986-4a50-b8cb-9aa736976151', 'title': '', 'artist': [{}], 'youtube_title': \"I'll Wake You Up When I Get Home (Charlie Rich)\", 'source': 'Billboard Hot Country Songs', 'match_score': 95.74468, 'source_artist': 'Charlie Rich', 'source_title': \"I'll Wake You Up When I Get Home\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1979', 'Billboard Hot Country Songs']}\n",
      "{'id': '33d4fd8d-8dea-47d4-ae00-f6e4efee94a5', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Alive - Kenny Chesney with Dave Matthews\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Kenny Chesney With Dave Matthews', 'source_title': \"I'm Alive\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2009', 'Billboard Hot Country Songs']}\n",
      "{'id': '9b5fadaa-29f6-4365-9258-2dfc5629b56f', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Into The Bottle (To Get You Out Of My Mind) , Dean Dillon , 1979\", 'source': 'Billboard Hot Country Songs', 'match_score': 92.1875, 'source_artist': 'Dean Dillon', 'source_title': \"I'm Into The Bottle(to Get You Out Of My Mind)\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1980', 'Billboard Hot Country Songs']}\n",
      "{'id': '64ec8e0d-a36a-4fa0-8b69-2e2dd64c3b3a', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Saving My Love - Skeeter Davis\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Skeeter Davis', 'source_title': \"I'm Saving My Love\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1963', 'Billboard Hot Country Songs']}\n",
      "{'id': '2eab7893-dce3-457c-b989-94810d6677d2', 'title': '', 'artist': [{}], 'youtube_title': \"I've Come To Expect It From You - George Strait\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'George Strait', 'source_title': \"I've Come To Expect It From You\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1990 1991', 'Billboard Hot Country Songs']}\n",
      "{'id': '1f2b7429-3858-44ae-9a92-eb4136ab4856', 'title': '', 'artist': [{}], 'youtube_title': \"I've Got Friends That Do - Tim McGraw Lyrics\", 'source': 'Billboard Hot Country Songs', 'match_score': 91.358025, 'source_artist': 'Tim McGraw', 'source_title': \"I've Got Friends That Do\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2006', 'Billboard Hot Country Songs']}\n",
      "{'id': '4eb3d607-dcf3-481f-840b-3d2c34d3300f', 'title': '', 'artist': [{}], 'youtube_title': 'If My Heart Had Windows - Patty Loveless', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Patty Loveless', 'source_title': 'If My Heart Had Windows', 'tags': ['Billboard', 'Billboard Hot Country Songs 1988', 'Billboard Hot Country Songs']}\n",
      "{'id': 'de9df214-67d3-48c1-8042-60f8f82b0f3d', 'title': '', 'artist': [{}], 'youtube_title': 'If Were Not Back In Love By Monday- Merle Haggard', 'source': 'Billboard Hot Country Songs', 'match_score': 98.0, 'source_artist': 'Merle Haggard', 'source_title': \"If We're Not Back In Love By Monday\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1977', 'Billboard Hot Country Songs']}\n",
      "{'id': '93f38eea-66df-4f21-9082-2a5c6e631d64', 'title': '', 'artist': [{}], 'youtube_title': \"If You Ain't Here To Party by Luke Bryan\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.20253, 'source_artist': 'Luke Bryan', 'source_title': \"If You Ain't Here To Party\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2013', 'Billboard Hot Country Songs']}\n",
      "{'id': '30524ee9-55b7-4d04-b7da-db08a7c215f5', 'title': '', 'artist': [{}], 'youtube_title': \"If You're Gonna Play In Texas By Alabama\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.20253, 'source_artist': 'Alabama', 'source_title': \"If You're Gonna Play In Texas\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': '52937a27-d22d-45c1-a126-b20c8b187ae1', 'title': '', 'artist': [{}], 'youtube_title': \"It's All In The Movies Merle Haggard\", 'source': 'Billboard Hot Country Songs', 'match_score': 97.297295, 'source_artist': 'Merle Haggard', 'source_title': \"It's All In The Movies\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1975 1976', 'Billboard Hot Country Songs']}\n",
      "{'id': '52e7f3c6-61aa-483a-bf74-939a37f2c524', 'title': '', 'artist': [{}], 'youtube_title': \"It's Midnight - Elvis Presley\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Elvis Presley', 'source_title': \"It's Midnight\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1974', 'Billboard Hot Country Songs']}\n",
      "{'id': '8288a4ed-9c78-4c55-8b9c-ef22a1d8b2a0', 'title': '', 'artist': [{}], 'youtube_title': 'Just In Case by Ronnie Milsap', 'source': 'Billboard Hot Country Songs', 'match_score': 94.73684, 'source_artist': 'Ronnie Milsap', 'source_title': 'Just In Case', 'tags': ['Billboard', 'Billboard Hot Country Songs 1975 1976', 'Billboard Hot Country Songs']}\n",
      "{'id': '3be6b7a5-ac98-44b9-b7b2-a9f2a0b23be5', 'title': '', 'artist': [{}], 'youtube_title': \"Just Wanna Rock N' Roll by Rodney Atkins\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.20253, 'source_artist': 'Rodney Atkins', 'source_title': \"Just Wanna Rock N' Roll\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2012', 'Billboard Hot Country Songs']}\n",
      "{'id': '45715cfe-ccd3-47a3-a417-11933628369b', 'title': '', 'artist': [{}], 'youtube_title': 'Just What I Do- Trick Pony', 'source': 'Billboard Hot Country Songs', 'match_score': 98.113205, 'source_artist': 'Trick Pony', 'source_title': 'Just What I Do', 'tags': ['Billboard', 'Billboard Hot Country Songs 2002', 'Billboard Hot Country Songs']}\n",
      "{'id': 'cb902f3a-1e79-4e52-995d-2f9e0ef81279', 'title': '', 'artist': [{}], 'youtube_title': \"Keepin' Power - Crystal Gayle\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': \"Keepin' Power\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1983', 'Billboard Hot Country Songs']}\n",
      "{'id': '6ec1ac8c-8153-4479-983d-e7cb79fa422e', 'title': '', 'artist': [{}], 'youtube_title': 'Lady - Kenny Rogers', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Kenny Rogers', 'source_title': 'Lady', 'tags': ['Billboard', 'Billboard Hot Country Songs 1980', 'Billboard Hot Country Songs']}\n",
      "{'id': '9c9405a6-214b-4a76-91a8-2753521ff850', 'title': '', 'artist': [{}], 'youtube_title': 'Last One Standing, Emerson Drive', 'source': 'Billboard Hot Country Songs', 'match_score': 95.38461, 'source_artist': 'Emerson Drive', 'source_title': 'Last One Standing', 'tags': ['Billboard', 'Billboard Hot Country Songs 2004', 'Billboard Hot Country Songs']}\n",
      "{'id': 'fd280b6a-5f3b-44a6-9048-f9a25e0c4343', 'title': '', 'artist': [{}], 'youtube_title': 'Like My Dog - Billy Currington', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Billy Currington', 'source_title': 'Like My Dog', 'tags': ['Billboard', 'Billboard Hot Country Songs 2012 2011', 'Billboard Hot Country Songs']}\n",
      "{'id': '985e52fc-a5ae-4baa-ac02-c4699b21118c', 'title': '', 'artist': [{}], 'youtube_title': \"01 Love Don't Live Here - Lady Antebellum\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.20253, 'source_artist': 'Lady Antebellum', 'source_title': \"Love Don't Live Here\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2008 2007', 'Billboard Hot Country Songs']}\n",
      "{'id': '5c3f804a-d971-4ef5-a0f6-106640c1466f', 'title': '', 'artist': [{}], 'youtube_title': 'Love Like Mine - Hayden Panettiere', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Hayden Panettiere', 'source_title': 'Love Like Mine', 'tags': ['Billboard', 'Billboard Hot Country Songs 2012 2013', 'Billboard Hot Country Songs']}\n",
      "{'id': '105376f4-e4a2-4093-9ad2-67a1a9f15090', 'title': '', 'artist': [{}], 'youtube_title': 'A Love Song - Anne Murray', 'source': 'Billboard Hot Country Songs', 'match_score': 95.833336, 'source_artist': 'Anne Murray', 'source_title': 'Love Song', 'tags': ['Billboard', 'Billboard Hot Country Songs 1974 1973', 'Billboard Hot Country Songs']}\n",
      "{'id': '8832f9d1-5754-461c-8004-5b2411832255', 'title': '', 'artist': [{}], 'youtube_title': 'Me Against The Night - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Me Against The Night', 'tags': ['Billboard', 'Billboard Hot Country Songs 1985 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': '501bc875-edbb-4d0f-a19d-640aebe47998', 'title': '', 'artist': [{}], 'youtube_title': 'Mi Vida Loca My Crazy Life by Pam Tillis', 'source': 'Billboard Hot Country Songs', 'match_score': 93.82716, 'source_artist': 'Pam Tillis', 'source_title': 'Mi Vida Loca (My Crazy Life)', 'tags': ['Billboard', 'Billboard Hot Country Songs 1995 1994', 'Billboard Hot Country Songs']}\n",
      "{'id': 'e635f14c-b307-4c34-857b-39c19b04587d', 'title': '', 'artist': [{}], 'youtube_title': 'Misery And Gin - Merle Haggard', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Merle Haggard', 'source_title': 'Misery And Gin', 'tags': ['Billboard', 'Billboard Hot Country Songs 1980', 'Billboard Hot Country Songs']}\n",
      "{'id': '0c31e5b3-6e36-455f-b26d-0c7c9faf9a4b', 'title': '', 'artist': [{}], 'youtube_title': 'More Trucks Than Cars-Craig Morgan', 'source': 'Billboard Hot Country Songs', 'match_score': 97.14286, 'source_artist': 'Craig Morgan', 'source_title': 'More Trucks Than Cars', 'tags': ['Billboard', 'Billboard Hot Country Songs 2012 2013', 'Billboard Hot Country Songs']}\n",
      "{'id': '90b7e6da-70ad-4d45-a69a-2b865b4803ce', 'title': '', 'artist': [{}], 'youtube_title': 'Mr. Shorty  by Marty Robbins', 'source': 'Billboard Hot Country Songs', 'match_score': 92.59259, 'source_artist': 'Marty Robbins', 'source_title': 'Mr. Shorty', 'tags': ['Billboard', 'Billboard Hot Country Songs 1967 1966', 'Billboard Hot Country Songs']}\n",
      "{'id': 'e3164d20-b1c5-4457-8895-b558d7bf6fbe', 'title': '', 'artist': [{}], 'youtube_title': 'My Kind of Woman My Kind of Man Vince Gill with Patty Loveless', 'source': 'Billboard Hot Country Songs', 'match_score': 96.82539, 'source_artist': 'Vince Gill With Patty Loveless', 'source_title': 'My Kind Of Woman/My Kind Of Man', 'tags': ['Billboard', 'Billboard Hot Country Songs 1999', 'Billboard Hot Country Songs']}\n",
      "{'id': '31df4df2-65b3-487a-b0a2-b5292d1d51bf', 'title': '', 'artist': [{}], 'youtube_title': 'My Old Man by Rodney Atkins', 'source': 'Billboard Hot Country Songs', 'match_score': 94.33962, 'source_artist': 'Rodney Atkins', 'source_title': 'My Old Man', 'tags': ['Billboard', 'Billboard Hot Country Songs 2002 2003', 'Billboard Hot Country Songs']}\n",
      "{'id': '484205b1-9adb-4ede-ad38-903d6c07a5bc', 'title': '', 'artist': [{}], 'youtube_title': 'My Old Yellow Car by Dan Seals', 'source': 'Billboard Hot Country Songs', 'match_score': 94.91525, 'source_artist': 'Dan Seals', 'source_title': 'My Old Yellow Car', 'tags': ['Billboard', 'Billboard Hot Country Songs 1985', 'Billboard Hot Country Songs']}\n",
      "{'id': '43aaa7f6-dc4f-4fa0-9c7a-831ff033dd21', 'title': '', 'artist': [{}], 'youtube_title': 'My Woman Loves The Devil Out Of Me , Moe Bandy , 1981', 'source': 'Billboard Hot Country Songs', 'match_score': 90.90909, 'source_artist': 'Moe Bandy', 'source_title': 'My Woman Loves The Devil Out Of Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 1981', 'Billboard Hot Country Songs']}\n",
      "{'id': '8a1a9d9d-b903-4d0a-9f7c-ad4235984944', 'title': '', 'artist': [{}], 'youtube_title': 'Nobody Wants To Be Alone - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Nobody Wants To Be Alone', 'tags': ['Billboard', 'Billboard Hot Country Songs 1985', 'Billboard Hot Country Songs']}\n",
      "{'id': '1f58d184-cb5c-4485-b7ab-e01fdc0a8c8f', 'title': '', 'artist': [{}], 'youtube_title': 'Old Hippie - Bellamy  Brothers', 'source': 'Billboard Hot Country Songs', 'match_score': 92.06349, 'source_artist': 'The Bellamy Brothers', 'source_title': 'Old Hippie', 'tags': ['Billboard', 'Billboard Hot Country Songs 1985', 'Billboard Hot Country Songs']}\n",
      "{'id': 'cae3819f-6408-42ce-9304-4c1906f09db2', 'title': '', 'artist': [{}], 'youtube_title': 'One More Time (Karneval) - Crystal Gayle [in HD]', 'source': 'Billboard Hot Country Songs', 'match_score': 90.90909, 'source_artist': 'Crystal Gayle', 'source_title': 'One More Time (karneval)', 'tags': ['Billboard', 'Billboard Hot Country Songs 1976', 'Billboard Hot Country Songs']}\n",
      "{'id': 'd16c15c8-2000-45d9-8ac2-f9c47540485e', 'title': '', 'artist': [{}], 'youtube_title': 'One Night At A Time - George Strait', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'George Strait', 'source_title': 'One Night At A Time', 'tags': ['Billboard', 'Billboard Hot Country Songs 1997', 'Billboard Hot Country Songs']}\n",
      "{'id': '8fa67b13-cf52-41fd-ac53-b0ed3e42980e', 'title': '', 'artist': [{}], 'youtube_title': 'Optimistic - Skeeter Davis', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Skeeter Davis', 'source_title': 'Optimistic', 'tags': ['Billboard', 'Billboard Hot Country Songs 1962 1961', 'Billboard Hot Country Songs']}\n",
      "{'id': '306e0a05-cf36-4d5b-a56a-510ce5aea2b4', 'title': '', 'artist': [{}], 'youtube_title': 'Our Love Is On The Fault Line - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 98.8764, 'source_artist': 'Crystal Gayle', 'source_title': 'Our Love Is On The Faultline', 'tags': ['Billboard', 'Billboard Hot Country Songs 1983', 'Billboard Hot Country Songs']}\n",
      "{'id': 'e654e0aa-b6a7-4f19-8ffe-c42592c5d974', 'title': '', 'artist': [{}], 'youtube_title': 'Party Crowed - David Lee Murphy', 'source': 'Billboard Hot Country Songs', 'match_score': 98.36066, 'source_artist': 'David Lee Murphy', 'source_title': 'Party Crowd', 'tags': ['Billboard', 'Billboard Hot Country Songs 1995', 'Billboard Hot Country Songs']}\n",
      "{'id': '54f2cc05-912b-44fc-b8ac-49fc1958127b', 'title': '', 'artist': [{}], 'youtube_title': 'People Back Home Florida Georgia Line', 'source': 'Billboard Hot Country Songs', 'match_score': 97.36842, 'source_artist': 'Florida Georgia Line', 'source_title': 'People Back Home', 'tags': ['Billboard', 'Billboard Hot Country Songs 2014 2013', 'Billboard Hot Country Songs']}\n",
      "{'id': '520ab3af-9ba7-47e7-b2a5-2f45f048688b', 'title': '', 'artist': [{}], 'youtube_title': 'Playing with Fire - Thomas Rhett ft. Jordin Sparks', 'source': 'Billboard Hot Country Songs', 'match_score': 92.45283, 'source_artist': 'Thomas Rhett Featuring Jordin Sparks', 'source_title': 'Playing With Fire', 'tags': ['Billboard', 'Billboard Hot Country Songs 2015', 'Billboard Hot Country Songs']}\n",
      "{'id': '8e114af5-19f2-4a77-b227-3d6e3fc93b85', 'title': '', 'artist': [{}], 'youtube_title': \"Please Help Me I'm Fallin' - Hank Locklin\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.385544, 'source_artist': 'Hank Locklin', 'source_title': \"Please Help Me, I'm Falling\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1960', 'Billboard Hot Country Songs']}\n",
      "{'id': '57991de8-fadf-41fc-b5ab-afd3d4abcc72', 'title': '', 'artist': [{}], 'youtube_title': 'Pour Me- Trick Pony', 'source': 'Billboard Hot Country Songs', 'match_score': 97.4359, 'source_artist': 'Trick Pony', 'source_title': 'Pour Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 2001 2000', 'Billboard Hot Country Songs']}\n",
      "{'id': '34dc2ee4-7c46-45e4-a549-3f9ec44bf093', 'title': '', 'artist': [{}], 'youtube_title': 'Pretend I Never Happened - Waylon Jennings', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Waylon Jennings', 'source_title': 'Pretend I Never Happened', 'tags': ['Billboard', 'Billboard Hot Country Songs 1972 1973', 'Billboard Hot Country Songs']}\n",
      "{'id': '086eb872-5d24-4d85-aa23-aa37795939f1', 'title': '', 'artist': [{}], 'youtube_title': 'Rainbow Stew - Merle Haggard', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Merle Haggard', 'source_title': 'Rainbow Stew', 'tags': ['Billboard', 'Billboard Hot Country Songs 1981', 'Billboard Hot Country Songs']}\n",
      "{'id': '2cffb071-c8cf-47e9-99e0-2d7744d88d2a', 'title': '', 'artist': [{}], 'youtube_title': '\"Rock On\" Tucker Beathard', 'source': 'Billboard Hot Country Songs', 'match_score': 92.0, 'source_artist': 'Tucker Beathard', 'source_title': 'Rock On', 'tags': ['Billboard', 'Billboard Hot Country Songs 2016', 'Billboard Hot Country Songs']}\n",
      "{'id': 'ba7bdf29-d9b0-42e0-9a8b-6b5f940b60ca', 'title': '', 'artist': [{}], 'youtube_title': '\" Roll on Mississippi \" Charley Pride', 'source': 'Billboard Hot Country Songs', 'match_score': 94.44444, 'source_artist': 'Charley Pride', 'source_title': 'Roll On Mississippi', 'tags': ['Billboard', 'Billboard Hot Country Songs 1981', 'Billboard Hot Country Songs']}\n",
      "{'id': '75fcc65e-31f6-48e6-b21a-7bb36199e0ae', 'title': '', 'artist': [{}], 'youtube_title': 'Saturday Satan Sunday Saint - Ernest Tubb', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Ernest Tubb', 'source_title': 'Saturday Satan Sunday Saint', 'tags': ['Billboard', 'Billboard Hot Country Songs 1969', 'Billboard Hot Country Songs']}\n",
      "{'id': '8d30d276-884b-412a-881b-12486b2979f7', 'title': '', 'artist': [{}], 'youtube_title': 'She is His Only Need - Wynonna Judd', 'source': 'Billboard Hot Country Songs', 'match_score': 92.30769, 'source_artist': 'Wynonna', 'source_title': 'She Is His Only Need', 'tags': ['Billboard', 'Billboard Hot Country Songs 1992', 'Billboard Hot Country Songs']}\n",
      "{'id': '6ad90058-48a7-4aaf-bed8-114ac09a40ca', 'title': '', 'artist': [{}], 'youtube_title': \"SHE'D GIVE ANYTHING - Boy Howdy\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Boy Howdy', 'source_title': \"She'd Give Anything\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1994 1993', 'Billboard Hot Country Songs']}\n",
      "{'id': '69f7fe16-c100-481d-beff-c5e1bbdb8127', 'title': '', 'artist': [{}], 'youtube_title': \"She's Acting Single(I'm Drinking Double-Gary Stewart\", 'source': 'Billboard Hot Country Songs', 'match_score': 91.74312, 'source_artist': 'Gary Stewart', 'source_title': \"She's Actin' Single (I'm Drinkin' Doubles)\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1975', 'Billboard Hot Country Songs']}\n",
      "{'id': 'c9439ea5-c980-4d23-902c-7757a3e4aaaa', 'title': '', 'artist': [{}], 'youtube_title': 'Six Days on the Road Dave Dudley', 'source': 'Billboard Hot Country Songs', 'match_score': 96.969696, 'source_artist': 'Dave Dudley', 'source_title': 'Six Days On The Road', 'tags': ['Billboard', 'Billboard Hot Country Songs 1963', 'Billboard Hot Country Songs']}\n",
      "{'id': '357c2c69-2871-41fe-a6d3-bb4a3059bb27', 'title': '', 'artist': [{}], 'youtube_title': 'Smoky Mountain Rain - Ronnie Milsap', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Ronnie Milsap', 'source_title': 'Smoky Mountain Rain', 'tags': ['Billboard', 'Billboard Hot Country Songs 1980', 'Billboard Hot Country Songs']}\n",
      "{'id': 'c8336a3e-9da2-45f2-a703-9c9edebf67cb', 'title': '', 'artist': [{}], 'youtube_title': 'Some Days You Gotta Dance by the Dixie Chicks', 'source': 'Billboard Hot Country Songs', 'match_score': 91.76471, 'source_artist': 'Dixie Chicks', 'source_title': 'Some Days You Gotta Dance', 'tags': ['Billboard', 'Billboard Hot Country Songs 2001 2002', 'Billboard Hot Country Songs']}\n",
      "{'id': 'a40c5f5f-1e6d-430f-bece-e28e53e34abb', 'title': '', 'artist': [{}], 'youtube_title': 'Songs like this - Carrie Underwood', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Carrie Underwood', 'source_title': 'Songs Like This', 'tags': ['Billboard', 'Billboard Hot Country Songs 2011', 'Billboard Hot Country Songs']}\n",
      "{'id': '78d193db-85b2-4fcb-b01f-3ebf8951aea9', 'title': '', 'artist': [{}], 'youtube_title': 'Straight To The Heart - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Straight To The Heart', 'tags': ['Billboard', 'Billboard Hot Country Songs 1986 1987', 'Billboard Hot Country Songs']}\n",
      "{'id': '6f67d91b-f13a-4a1e-a185-c602b3a35396', 'title': '', 'artist': [{}], 'youtube_title': 'Take Me Back - Reba McEntire', 'source': 'Billboard Hot Country Songs', 'match_score': 92.85714, 'source_artist': 'Reba McEntire', 'source_title': 'Take It Back', 'tags': ['Billboard', 'Billboard Hot Country Songs 1993 1992', 'Billboard Hot Country Songs']}\n",
      "{'id': '58fe80b9-b5e3-4ba9-b382-3af46dd857e1', 'title': '', 'artist': [{}], 'youtube_title': 'Take It Out On Me Florida Georgia Line', 'source': 'Billboard Hot Country Songs', 'match_score': 97.4359, 'source_artist': 'Florida Georgia Line', 'source_title': 'Take It Out On Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 2014 2013', 'Billboard Hot Country Songs']}\n",
      "{'id': 'e3b063c1-2edf-4929-97ec-acd0d1e70fc1', 'title': '', 'artist': [{}], 'youtube_title': \"Talk to Me Lonesome Heart - James O'Gwynn\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': \"James O'Gwynn\", 'source_title': 'Talk To Me Lonesome Heart', 'tags': ['Billboard', 'Billboard Hot Country Songs 1958', 'Billboard Hot Country Songs']}\n",
      "{'id': '5f286120-dc30-4afc-bd2c-f9a360f042df', 'title': '', 'artist': [{}], 'youtube_title': 'Tell me a lie by Janie Frickle', 'source': 'Billboard Hot Country Songs', 'match_score': 91.52542, 'source_artist': 'Janie Frickie', 'source_title': 'Tell Me A Lie', 'tags': ['Billboard', 'Billboard Hot Country Songs 1983 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': '261c4c88-e526-4f0c-8916-e963fdf465bb', 'title': '', 'artist': [{}], 'youtube_title': 'Tennessee Nights - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Tennessee Nights', 'tags': ['Billboard', 'Billboard Hot Country Songs 1989', 'Billboard Hot Country Songs']}\n",
      "{'id': '53e2a00c-2053-4171-8ad5-e295b7bcff6d', 'title': '', 'artist': [{}], 'youtube_title': 'Tennessee Rose - Emmylou Harris', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Emmylou Harris', 'source_title': 'Tennessee Rose', 'tags': ['Billboard', 'Billboard Hot Country Songs 1982', 'Billboard Hot Country Songs']}\n",
      "{'id': 'ac85a05c-2d88-4ad5-ba2d-ccec024524c6', 'title': '', 'artist': [{}], 'youtube_title': \"That's The Way Love Goes - Merle Haggard\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Merle Haggard', 'source_title': \"That's The Way Love Goes\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1983 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': '96fc4740-445f-4403-aebc-2eb446d08267', 'title': '', 'artist': [{}], 'youtube_title': \"That's What Your Love Does To Me , Holly Dunn , 1988\", 'source': 'Billboard Hot Country Songs', 'match_score': 90.72165, 'source_artist': 'Holly Dunn', 'source_title': \"That's What Your Love Does To Me\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1988', 'Billboard Hot Country Songs']}\n",
      "{'id': '689ffe1b-93be-406f-88af-e9ba320b8407', 'title': '', 'artist': [{}], 'youtube_title': 'The Blue Side - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'The Blue Side', 'tags': ['Billboard', 'Billboard Hot Country Songs 1980', 'Billboard Hot Country Songs']}\n",
      "{'id': '8ea9f9fb-2919-4679-bd6f-f059d5130eac', 'title': '', 'artist': [{}], 'youtube_title': 'The Bumper Of My S.U.V. - Chely Wright', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Chely Wright', 'source_title': 'The Bumper Of My S.U.V.', 'tags': ['Billboard', 'Billboard Hot Country Songs 2005 2004', 'Billboard Hot Country Songs']}\n",
      "{'id': '40140df7-eef5-4d59-be03-ef1ec95b8a57', 'title': '', 'artist': [{}], 'youtube_title': 'The Eagle - Waylon Jennings', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Waylon Jennings', 'source_title': 'The Eagle', 'tags': ['Billboard', 'Billboard Hot Country Songs 1991', 'Billboard Hot Country Songs']}\n",
      "{'id': '26a79b29-d0c3-4183-8cf1-4ecd4808cd48', 'title': '', 'artist': [{}], 'youtube_title': 'The Night Hank Williams Came to Town  by Johnny Cash', 'source': 'Billboard Hot Country Songs', 'match_score': 96.07843, 'source_artist': 'Johnny Cash', 'source_title': 'The Night Hank Williams Came To Town', 'tags': ['Billboard', 'Billboard Hot Country Songs 1987', 'Billboard Hot Country Songs']}\n",
      "{'id': 'd1178e38-bf97-4438-aa4a-1ba941ac2125', 'title': '', 'artist': [{}], 'youtube_title': \"The Night Miss Nancy Ann's Hotel For Single Girls Burned Down - Tex Williams\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Tex Williams', 'source_title': \"The Night Miss Nancy Ann's Hotel For Single Girls Burned Down\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1971', 'Billboard Hot Country Songs']}\n",
      "{'id': 'acef100a-e959-4c84-a031-4561c877ae1e', 'title': '', 'artist': [{}], 'youtube_title': 'The Pillow That Whispers Carl Smith', 'source': 'Billboard Hot Country Songs', 'match_score': 97.22222, 'source_artist': 'Carl Smith', 'source_title': 'The Pillow That Whispers', 'tags': ['Billboard', 'Billboard Hot Country Songs 1964', 'Billboard Hot Country Songs']}\n",
      "{'id': '3888bcb6-2729-4357-bc4f-05b27a8f9f2a', 'title': '', 'artist': [{}], 'youtube_title': 'The Woman Before Me - Trisha Yearwood', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Trisha Yearwood', 'source_title': 'The Woman Before Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 1992', 'Billboard Hot Country Songs']}\n",
      "{'id': '417eec04-9a37-4bf7-9b97-5e9031d2d250', 'title': '', 'artist': [{}], 'youtube_title': 'The Woman In Me - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'The Woman In Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 1981 1982', 'Billboard Hot Country Songs']}\n",
      "{'id': '26698afc-bb52-4ea9-9287-78b33bf551ae', 'title': '', 'artist': [{}], 'youtube_title': 'The Year That Clayton Delaney Died~Tom T. Hall.wmv', 'source': 'Billboard Hot Country Songs', 'match_score': 91.83673, 'source_artist': 'Tom T. Hall', 'source_title': 'The Year That Clayton Delaney Died', 'tags': ['Billboard', 'Billboard Hot Country Songs 1971', 'Billboard Hot Country Songs']}\n",
      "{'id': 'acc6ddfe-1aa6-4c77-b9d0-8b3b7f904fb7', 'title': '', 'artist': [{}], 'youtube_title': \"There Ain't No Future In This , Reba McEntire , 1983\", 'source': 'Billboard Hot Country Songs', 'match_score': 90.72165, 'source_artist': 'Reba McEntire', 'source_title': \"There Ain't No Future In This\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1983 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': '03052cf7-a888-4482-a67c-6c161534ac89', 'title': '', 'artist': [{}], 'youtube_title': '\"These Hands\" by Taylor Ray Holbrook', 'source': 'Billboard Hot Country Songs', 'match_score': 92.753624, 'source_artist': 'Taylor Ray Holbrook', 'source_title': 'These Hands', 'tags': ['Billboard', 'Billboard Hot Country Songs 2016', 'Billboard Hot Country Songs']}\n",
      "{'id': 'd5831f6f-1894-484a-b561-4ee0c3b7c152', 'title': '', 'artist': [{}], 'youtube_title': 'Things go better with love - Jeannie C Riley', 'source': 'Billboard Hot Country Songs', 'match_score': 98.8764, 'source_artist': 'Jeannie C. Riley', 'source_title': 'Things Go Better With Love', 'tags': ['Billboard', 'Billboard Hot Country Songs 1969', 'Billboard Hot Country Songs']}\n",
      "{'id': '78ab8f8c-4403-4e15-8f6a-ecf34c55ac54', 'title': '', 'artist': [{}], 'youtube_title': 'think about love dolly parton', 'source': 'Billboard Hot Country Songs', 'match_score': 96.666664, 'source_artist': 'Dolly Parton', 'source_title': 'Think About Love', 'tags': ['Billboard', 'Billboard Hot Country Songs 1986 1985', 'Billboard Hot Country Songs']}\n",
      "{'id': '80c81f89-0b23-4a6e-bfb0-370e131d4967', 'title': '', 'artist': [{}], 'youtube_title': 'Too Good To Be True - Michael Peterson', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Michael Peterson', 'source_title': 'Too Good To Be True', 'tags': ['Billboard', 'Billboard Hot Country Songs 1998', 'Billboard Hot Country Songs']}\n",
      "{'id': 'bb0ef760-2ac2-4e30-9a8f-0990f3ae6814', 'title': '', 'artist': [{}], 'youtube_title': 'Turning Away - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Turning Away', 'tags': ['Billboard', 'Billboard Hot Country Songs 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': 'b36970b0-fb2a-4534-9999-ddd02837b596', 'title': '', 'artist': [{}], 'youtube_title': 'UNBROKEN * Tim McGraw', 'source': 'Billboard Hot Country Songs', 'match_score': 95.2381, 'source_artist': 'Tim McGraw', 'source_title': 'Unbroken', 'tags': ['Billboard', 'Billboard Hot Country Songs 2002', 'Billboard Hot Country Songs']}\n",
      "{'id': '43854289-f8ea-4901-b5a8-45ea610bcc12', 'title': '', 'artist': [{}], 'youtube_title': 'Under The Influence Of Love   Buck Owens  1961', 'source': 'Billboard Hot Country Songs', 'match_score': 90.69768, 'source_artist': 'Buck Owens', 'source_title': 'Under The Influence Of Love', 'tags': ['Billboard', 'Billboard Hot Country Songs 1962 1961', 'Billboard Hot Country Songs']}\n",
      "{'id': 'fb3390c8-d556-41c3-b5bd-c4e1ff9575fa', 'title': '', 'artist': [{}], 'youtube_title': 'Under Your Spell Again - Waylon Jennings and Jessi Colter', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Waylon Jennings And Jessi Colter', 'source_title': 'Under Your Spell Again', 'tags': ['Billboard', 'Billboard Hot Country Songs 1971', 'Billboard Hot Country Songs']}\n",
      "{'id': '9436112b-a073-4d15-b007-ae413332832c', 'title': '', 'artist': [{}], 'youtube_title': 'Upstairs Downtown- Toby Keith', 'source': 'Billboard Hot Country Songs', 'match_score': 98.305084, 'source_artist': 'Toby Keith', 'source_title': 'Upstairs Downtown', 'tags': ['Billboard', 'Billboard Hot Country Songs 1995 1994', 'Billboard Hot Country Songs']}\n",
      "{'id': 'a7084241-ffc2-4cf7-8df7-53648c38b3a7', 'title': '', 'artist': [{}], 'youtube_title': 'We Both Walk - Lorrie Morgan (45)', 'source': 'Billboard Hot Country Songs', 'match_score': 91.803276, 'source_artist': 'Lorrie Morgan', 'source_title': 'We Both Walk', 'tags': ['Billboard', 'Billboard Hot Country Songs 1991', 'Billboard Hot Country Songs']}\n",
      "{'id': 'cc112a4d-9f4e-4e08-8861-cc4b5cb1af73', 'title': '', 'artist': [{}], 'youtube_title': 'We Were in Love - Toby Keith', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Toby Keith', 'source_title': 'We Were In Love', 'tags': ['Billboard', 'Billboard Hot Country Songs 1997', 'Billboard Hot Country Songs']}\n",
      "{'id': '9bddd282-f0a6-497e-a96c-aea52c51aaf6', 'title': '', 'artist': [{}], 'youtube_title': \"What You'll Do When I'm Gone by Waylon Jennings\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.77419, 'source_artist': 'Waylon Jennings', 'source_title': \"What You'll Do When I'm Gone\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1986', 'Billboard Hot Country Songs']}\n",
      "{'id': 'b7dc831c-c073-46bf-b44b-28a4959c283f', 'title': '', 'artist': [{}], 'youtube_title': \"What's Going On In Your World - George Strait\", 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'George Strait', 'source_title': \"What's Going On In Your World\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1989', 'Billboard Hot Country Songs']}\n",
      "{'id': 'a00db8b1-7604-4f46-a3cc-51f2bb445ca0', 'title': '', 'artist': [{}], 'youtube_title': \"When I Stop Leaving (I'll Be Gone) , Charley Pride , 1978\", 'source': 'Billboard Hot Country Songs', 'match_score': 90.56604, 'source_artist': 'Charley Pride', 'source_title': \"When I Stop Leaving(i'll Be Gone)\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1978', 'Billboard Hot Country Songs']}\n",
      "{'id': '25bb4bc7-b760-4acf-b508-ee37554eb79e', 'title': '', 'artist': [{}], 'youtube_title': 'When The Bartender Cries - Michael Peterson', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Michael Peterson', 'source_title': 'When The Bartender Cries', 'tags': ['Billboard', 'Billboard Hot Country Songs 1998', 'Billboard Hot Country Songs']}\n",
      "{'id': '90380c05-0f00-4c68-bcb2-9b22542c1e9c', 'title': '', 'artist': [{}], 'youtube_title': 'When You Think Of Me-Mark Wills', 'source': 'Billboard Hot Country Songs', 'match_score': 96.875, 'source_artist': 'Mark Wills', 'source_title': 'When You Think Of Me', 'tags': ['Billboard', 'Billboard Hot Country Songs 2003', 'Billboard Hot Country Songs']}\n",
      "{'id': 'd1e4310f-e054-40a5-a574-9e3955799933', 'title': '', 'artist': [{}], 'youtube_title': \"When You're Hot You're Hot Jerry Reed\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.1039, 'source_artist': 'Jerry Reed', 'source_title': \"When You're Hot, You're Hot\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1971', 'Billboard Hot Country Songs']}\n",
      "{'id': '96273355-747c-4d6c-91ee-b3b77f4354ad', 'title': '', 'artist': [{}], 'youtube_title': 'Where I Ought to Be - Skeeter Davis', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Skeeter Davis', 'source_title': 'Where I Ought To Be', 'tags': ['Billboard', 'Billboard Hot Country Songs 1962', 'Billboard Hot Country Songs']}\n",
      "{'id': '28722417-c7bb-4942-ba22-980d8fe3fd00', 'title': '', 'artist': [{}], 'youtube_title': 'Whiskey Trip-Gary Stewart', 'source': 'Billboard Hot Country Songs', 'match_score': 96.15385, 'source_artist': 'Gary Stewart', 'source_title': 'Whiskey Trip', 'tags': ['Billboard', 'Billboard Hot Country Songs 1978', 'Billboard Hot Country Songs']}\n",
      "{'id': '4bccc897-b1c6-445f-8d95-2cd81a1edc84', 'title': '', 'artist': [{}], 'youtube_title': \"Why Do We Want What We Know We Can't Have by Reba McEntire\", 'source': 'Billboard Hot Country Songs', 'match_score': 97.391304, 'source_artist': 'Reba McEntire', 'source_title': \"Why Do We Want What We Know We Can't Have\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1983', 'Billboard Hot Country Songs']}\n",
      "{'id': '74b0c917-f51f-42be-8c37-53ae7425fc24', 'title': '', 'artist': [{}], 'youtube_title': 'Why Have You Left The One You Left Me For - Crystal Gayle', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Why Have You Left The One You Left Me For', 'tags': ['Billboard', 'Billboard Hot Country Songs 1978 1979', 'Billboard Hot Country Songs']}\n",
      "{'id': '8a48d96f-83d6-42c6-84bd-11d7daf3e457', 'title': '', 'artist': [{}], 'youtube_title': 'Why Walk When You Can Fly - Mary Chapin Carpentner', 'source': 'Billboard Hot Country Songs', 'match_score': 98.9899, 'source_artist': 'Mary Chapin Carpenter', 'source_title': 'Why Walk When You Can Fly', 'tags': ['Billboard', 'Billboard Hot Country Songs 1995', 'Billboard Hot Country Songs']}\n",
      "{'id': '2034daa4-4f02-4d04-8872-e7be25504ff3', 'title': '', 'artist': [{}], 'youtube_title': \"Workin' Man Blues by Merle Haggard\", 'source': 'Billboard Hot Country Songs', 'match_score': 95.522385, 'source_artist': 'Merle Haggard', 'source_title': \"Workin' Man Blues\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1969', 'Billboard Hot Country Songs']}\n",
      "{'id': '6f4898b3-1e00-4aaa-baff-07f44cce27d2', 'title': '', 'artist': [{}], 'youtube_title': \"You can't rollerskate in a buffaloherd - roger miller\", 'source': 'Billboard Hot Country Songs', 'match_score': 98.14815, 'source_artist': 'Roger Miller', 'source_title': \"You Can't Roller Skate In A Buffalo Herd\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1966', 'Billboard Hot Country Songs']}\n",
      "{'id': 'f495d257-90bf-46aa-a01c-46c469a27c62', 'title': '', 'artist': [{}], 'youtube_title': 'You Gotta Love That by Neal McCoy', 'source': 'Billboard Hot Country Songs', 'match_score': 95.38461, 'source_artist': 'Neal McCoy', 'source_title': 'You Gotta Love That', 'tags': ['Billboard', 'Billboard Hot Country Songs 1996', 'Billboard Hot Country Songs']}\n",
      "{'id': '0877e12e-6c16-4254-b17c-20307c712203', 'title': '', 'artist': [{}], 'youtube_title': 'You Had me From Hello - Kenny Chesney', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Kenny Chesney', 'source_title': 'You Had Me From Hello', 'tags': ['Billboard', 'Billboard Hot Country Songs 1999', 'Billboard Hot Country Songs']}\n",
      "{'id': '5b2d7739-ddaa-4fb3-85d7-f4aeec6a2c60', 'title': '', 'artist': [{}], 'youtube_title': 'You Have The Right To Remain Silent - Perfect Stranger', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Perfect Stranger', 'source_title': 'You Have The Right To Remain Silent', 'tags': ['Billboard', 'Billboard Hot Country Songs 1995', 'Billboard Hot Country Songs']}\n",
      "{'id': 'e3cc7da5-f994-4737-8d62-b974575eecdc', 'title': '', 'artist': [{}], 'youtube_title': 'You Were A Good Friend - Kenny Rogers', 'source': 'Billboard Hot Country Songs', 'match_score': 100.0, 'source_artist': 'Kenny Rogers', 'source_title': 'You Were A Good Friend', 'tags': ['Billboard', 'Billboard Hot Country Songs 1983 1984', 'Billboard Hot Country Songs']}\n",
      "{'id': 'a4f047e0-a1d4-4064-94f5-1d6cdfd0db94', 'title': '', 'artist': [{}], 'youtube_title': \"you'll be there by george strait\", 'source': 'Billboard Hot Country Songs', 'match_score': 95.2381, 'source_artist': 'George Strait', 'source_title': \"You'll Be There\", 'tags': ['Billboard', 'Billboard Hot Country Songs 2005', 'Billboard Hot Country Songs']}\n",
      "{'id': '19c75a44-5a96-4ba7-9181-bdfaba23945b', 'title': '', 'artist': [{}], 'youtube_title': \"You're Not In Kansas Anymore by Jo Dee Messina\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.7033, 'source_artist': 'Jo Dee Messina', 'source_title': \"You're Not In Kansas Anymore\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1996', 'Billboard Hot Country Songs']}\n",
      "{'id': 'a7931863-e117-444f-8f98-1087e392e5eb', 'title': '', 'artist': [{}], 'youtube_title': \"You've Never Been This Far Before ( Conway Twitty )\", 'source': 'Billboard Hot Country Songs', 'match_score': 96.0, 'source_artist': 'Conway Twitty', 'source_title': \"You've Never Been This Far Before\", 'tags': ['Billboard', 'Billboard Hot Country Songs 1973', 'Billboard Hot Country Songs']}\n",
      "{'id': 'b9ea6658-7021-49a8-afcd-c56789bc7ecc', 'title': '', 'artist': [{}], 'youtube_title': '\"Bad Romance\" - Lady Gaga', 'source': 'Billboard Hot Dance/Electronic Songs', 'match_score': 95.833336, 'source_artist': 'Lady Gaga', 'source_title': 'Bad Romance', 'tags': ['Billboard', 'Billboard Hot Dance/Electronic Songs 2017', 'Billboard Hot Dance/Electronic Songs']}\n",
      "{'id': '078cf81d-1943-4344-973d-483260797e88', 'title': '', 'artist': [{}], 'youtube_title': 'I Could Be The One [Avicii vs Nicky Romero]', 'source': 'Billboard Hot Dance/Electronic Songs', 'match_score': 95.34884, 'source_artist': 'Avicii vs Nicky Romero', 'source_title': 'I Could Be The One', 'tags': ['Billboard', 'Billboard Hot Dance/Electronic Songs 2018 2013', 'Billboard Hot Dance/Electronic Songs']}\n",
      "{'id': 'e19d5b37-fc01-4e45-ad43-4ff6a6bf82c4', 'title': '', 'artist': [{}], 'youtube_title': 'I Could Be The One (Avicii Vs. Nicky Romero)', 'source': 'Billboard Hot Dance/Electronic Songs', 'match_score': 94.25288, 'source_artist': 'Avicii vs Nicky Romero', 'source_title': 'I Could Be The One', 'tags': ['Billboard', 'Billboard Hot Dance/Electronic Songs 2018 2013', 'Billboard Hot Dance/Electronic Songs']}\n",
      "{'id': '7c8a85c2-dcf5-4d4f-9074-7e12e11cbfc3', 'title': '', 'artist': [{}], 'youtube_title': 'Symphony - Clean Bandit feat. Zara Larsson', 'source': 'Billboard Hot Dance/Electronic Songs', 'match_score': 93.181816, 'source_artist': 'Clean Bandit Featuring Zara Larsson', 'source_title': 'Symphony', 'tags': ['Billboard', 'Billboard Hot Dance/Electronic Songs 2017', 'Billboard Hot Dance/Electronic Songs']}\n",
      "{'id': 'b89bd651-4dc1-46fd-b310-8a946a754975', 'title': '', 'artist': [{}], 'youtube_title': 'Taki Taki - DJ Snake ft. Selena Gomez, Ozuna & Cardi B', 'source': 'Billboard Hot Dance/Electronic Songs', 'match_score': 92.98245, 'source_artist': 'DJ Snake Featuring Selena Gomez, Ozuna & Cardi B', 'source_title': 'Taki Taki', 'tags': ['Billboard', 'Billboard Hot Dance/Electronic Songs 2018', 'Billboard Hot Dance/Electronic Songs']}\n",
      "{'id': '9e134a8a-e027-4f74-bde9-5be5833db6fc', 'title': '', 'artist': [{}], 'youtube_title': 'WHISTLE WHILE I WORK IT (Chester See feat. Toby Turner with Wayne Brady)', 'source': 'Billboard Hot Dance/Electronic Songs', 'match_score': 92.95775, 'source_artist': 'Chester See And Toby Turner With Wayne Brady', 'source_title': 'Whistle While I Work It', 'tags': ['Billboard', 'Billboard Hot Dance/Electronic Songs 2013', 'Billboard Hot Dance/Electronic Songs']}\n",
      "{'id': '7e172926-cd34-41e7-a40b-0c091fbcc00a', 'title': '', 'artist': [{}], 'youtube_title': \"'Scuse Me, While I Fall In Love - Donna Washington\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Donna Washington', 'source_title': \"'scuse Me, While I Fall In Love\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1981', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '95bc9edd-8d38-41e5-b04c-96c1ccba87bc', 'title': '', 'artist': [{}], 'youtube_title': '1 Train - ASAP (ft Kendrick Lamar, Joey Bada$$, Yelawolf, Danny Brown, Action Bronson & Big K.R.I.T)', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 91.45728, 'source_artist': 'A$AP Rocky F/Kendrick Lamar, Joey Bada$$, YelaWolf, Danny Brown, Action Bronson & Big K.R.', 'source_title': '1Train', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2013', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '90e28a68-077e-4f46-98f2-603e884dd26b', 'title': '', 'artist': [{}], 'youtube_title': 'A Fool in Love - Tina Turner', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.32258, 'source_artist': 'Ike & Tina Turner', 'source_title': 'A Fool In Love', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1960', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e33d9a81-6989-49e1-b03c-87725dd458fc', 'title': '', 'artist': [{}], 'youtube_title': 'A Love Bizarre - Sheila E.', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Sheila E.', 'source_title': 'A Love Bizarre', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1986 1985', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '39c22374-c684-4296-84cd-7d82f28b82f1', 'title': '', 'artist': [{}], 'youtube_title': \"Ain't Gonna Bump No More (With No Big Fat Woman)\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.56604, 'source_artist': 'Joe Tex', 'source_title': \"Ain't Gonna Bump No More (with No Big Fat Woman)\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1977', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '6b4e51f1-7dca-457a-adb7-b3f335d6430b', 'title': '', 'artist': [{}], 'youtube_title': \"Ain't Gonna Hurt Nobody - Kid 'N Play\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': \"Kid 'N Play\", 'source_title': \"Ain't Gonna Hurt Nobody\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1991', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f1fccd5c-dc80-4d29-ba67-1ea7c9662cbf', 'title': '', 'artist': [{}], 'youtube_title': '\"Ain\\'t It Baby\" by The Miracles', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.0, 'source_artist': 'The Miracles', 'source_title': \"Ain't It, Baby\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1961', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '1edab2fc-add8-4e39-a594-2314e38c5060', 'title': '', 'artist': [{}], 'youtube_title': \"Ain't That Peculiar-Marvin Gaye\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.875, 'source_artist': 'Marvin Gaye', 'source_title': \"Ain't That Peculiar\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1965 1966', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '42f3db62-6676-4ff8-8e6f-c8b2bc65eb63', 'title': '', 'artist': [{}], 'youtube_title': 'ALL  I  HAVE -  THE MOMENTS', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 94.117645, 'source_artist': 'The Moments', 'source_title': 'All I Have', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd874782a-aca5-4069-81d9-060280bc4265', 'title': '', 'artist': [{}], 'youtube_title': 'All Night Long - Mary Jane Girls (1983)', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.14085, 'source_artist': 'Mary Jane Girls', 'source_title': 'All Night Long', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1983', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '56584fae-7721-4bc4-a14a-9d93c8fca456', 'title': '', 'artist': [{}], 'youtube_title': 'Alley Oop - The Hollywood Argyles', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.32258, 'source_artist': 'Hollywood Argyles', 'source_title': 'Alley-Oop', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1960', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '490bd2e4-8bf3-4bdd-aa3b-7f78b70579b8', 'title': '', 'artist': [{}], 'youtube_title': 'Alright - Ledisi', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Ledisi', 'source_title': 'Alright', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2007', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'b9f9669b-5fdb-4c9c-ba33-7d79843ed8f5', 'title': '', 'artist': [{}], 'youtube_title': \"And I Don't Love You - SMOKEY ROBINSON '1984\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.68293, 'source_artist': 'Smokey Robinson', 'source_title': \"And I Don't Love You\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '58334b0e-bebe-49fe-bf34-9a6f010f88f8', 'title': '', 'artist': [{}], 'youtube_title': 'Artificial Heart-CHERRELLE', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.296295, 'source_artist': 'Cherrelle', 'source_title': 'Artificial Heart', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1986', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4dfb37f4-191f-43d0-9331-df96d7d35605', 'title': '', 'artist': [{}], 'youtube_title': 'As We Lay - Shirley Murdock', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Shirley Murdock', 'source_title': 'As We Lay', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1986 1987', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '0d07dedc-29e0-4afb-a1e4-a1eae62d2bda', 'title': '', 'artist': [{}], 'youtube_title': 'At Last by Jesse James', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.023254, 'source_artist': 'Jesse James', 'source_title': 'At Last', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971 1972', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '10dd4d05-3570-48c6-95be-78e2bdc375b4', 'title': '', 'artist': [{}], 'youtube_title': 'Attack of the Name Game by Stacy Lattisaw', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.296295, 'source_artist': 'Stacy Lattisaw', 'source_title': 'Attack Of The Name Game', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1982', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'b5f16234-02df-4890-aa80-8b646faec53b', 'title': '', 'artist': [{}], 'youtube_title': 'BABIES HAVING BABIES - Terry Tate', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Terry Tate', 'source_title': 'Babies Having Babies', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1989', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '614b5e88-630f-448e-b377-164bf7ca2edb', 'title': '', 'artist': [{}], 'youtube_title': \"Baby It's You ♫ Stacy Lattisaw & Johnny Gill\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.72727, 'source_artist': 'Stacy Lattisaw & Johnny Gill', 'source_title': \"Baby It's You\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '0537a061-2c8d-418e-bb00-b95d0088fe8f', 'title': '', 'artist': [{}], 'youtube_title': 'Baby Sitter - Betty Wright', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Betty Wright', 'source_title': 'Baby Sitter', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1972', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '0f86d07d-8eef-4c23-a344-5a1a39576b0a', 'title': '', 'artist': [{}], 'youtube_title': 'BABY WHAT YOU WANT ME TO - Jimmy Reed', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.1039, 'source_artist': 'Jimmy Reed', 'source_title': 'Baby What You Want Me To Do', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1960', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'fec855f2-9861-429f-aa98-079979bb0869', 'title': '', 'artist': [{}], 'youtube_title': 'Betcha By Golly Wow- Stylistics', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 91.17647, 'source_artist': 'The Stylistics', 'source_title': 'Betcha By Golly, Wow', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1972', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'c47f0839-6e1b-4cbd-bab9-d3c2cb6a7398', 'title': '', 'artist': [{}], 'youtube_title': 'Better Days - Dianne Reeves', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Dianne Reeves', 'source_title': 'Better Days', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1988', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7202cdfd-a990-4d4f-ad9d-65915b59bb0c', 'title': '', 'artist': [{}], 'youtube_title': 'biggest part of me - Take 6 -  HD', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.0, 'source_artist': 'Take 6', 'source_title': 'Biggest Part Of Me', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1994', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'b4e956e7-513d-4f07-8073-045bdbca4f7c', 'title': '', 'artist': [{}], 'youtube_title': \"Breakin' Up Is Hard To Do - Neil Sedaka\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.4359, 'source_artist': 'Neil Sedaka', 'source_title': 'Breaking Up Is Hard To Do', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1962', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '107b1de3-365b-48c7-81d1-bf2f44affa75', 'title': '', 'artist': [{}], 'youtube_title': 'Brother Louie - Stories', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Stories', 'source_title': 'Brother Louie', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7cd85a6a-2e6e-4232-9c50-0621abca911b', 'title': '', 'artist': [{}], 'youtube_title': 'Can Your Monkey Do The Dog - Rufus Thomas - HQ', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 94.25288, 'source_artist': 'Rufus Thomas', 'source_title': 'Can Your Monkey Do The Dog', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1964', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'c000b54e-db0a-4262-b7cd-da4a6f292cb9', 'title': '', 'artist': [{}], 'youtube_title': 'Casanova - LeVert', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Levert', 'source_title': 'Casanova', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1987', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '0ee68195-0794-4ca9-a591-37b57f86ba4d', 'title': '', 'artist': [{}], 'youtube_title': \"CHEATIN' IN THE NEXT ROOM - ZZ Hill\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 94.44444, 'source_artist': 'Z.Z. Hill', 'source_title': 'Cheating In The Next Room', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1982', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd0e372ee-1056-4238-b420-d0350bbbc589', 'title': '', 'artist': [{}], 'youtube_title': 'Choice Of Colors- The  Impressions', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.05882, 'source_artist': 'The Impressions', 'source_title': 'Choice Of Colors', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1969', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '84160ae0-dd78-4132-930a-b8fca04638d9', 'title': '', 'artist': [{}], 'youtube_title': 'Concrete Reservation - Syl Johnson', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Syl Johnson', 'source_title': 'Concrete Reservation', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f4002110-fa94-4d06-9eda-ec59ecf08610', 'title': '', 'artist': [{}], 'youtube_title': 'Curiosity - The Jets', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Jets', 'source_title': 'Curiosity', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1986 1985', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '8620860d-5e0f-47c7-b01b-9f20774a4c61', 'title': '', 'artist': [{}], 'youtube_title': 'Dance, Dance, Dance (Yowsah, Yowsah, Yowsah) (Edit)', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.196075, 'source_artist': 'Chic', 'source_title': 'Dance, Dance, Dance (Yowsah, Yowsah, Yowsah)', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1977 1978', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e2653df4-4575-417f-81a9-3146e375cbb8', 'title': '', 'artist': [{}], 'youtube_title': 'Dancing in the Dark Heart to Heart -  Kashif', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.62921, 'source_artist': 'Kashif', 'source_title': 'Dancing In The Dark (Heart To Heart)', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1986', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'eb1b75df-1e80-4277-8774-a13b06325590', 'title': '', 'artist': [{}], 'youtube_title': 'Desperado  - Rihanna', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.4359, 'source_artist': 'Rihanna', 'source_title': 'Desperado', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2016', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'df7e1cd8-49c6-4749-919a-021c5dfea8fb', 'title': '', 'artist': [{}], 'youtube_title': 'Do Unto Me - Karyn White', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Karyn White', 'source_title': 'Do Unto Me', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1992', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '78aea976-d7be-48ed-8555-83624c73b9d3', 'title': '', 'artist': [{}], 'youtube_title': \"Doin' Our Thing - Clarence Carter\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Clarence Carter', 'source_title': \"Doin' Our Thing\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1969', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4ba4efb0-c062-4245-ada9-a0db93cfce43', 'title': '', 'artist': [{}], 'youtube_title': \"Don't Cha Love It - The Miracles\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Miracles', 'source_title': \"Don't Cha Love It\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1975', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2b9b4ba9-8f87-4350-ad13-f290f77fe4ea', 'title': '', 'artist': [{}], 'youtube_title': \"DON'T THROW IT ALL AWAY - Stacy Lattisaw\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Stacy Lattisaw', 'source_title': \"Don't Throw It All Away\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1982', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '707c6223-de51-4bf6-b042-1a5ab00f84f9', 'title': '', 'artist': [{}], 'youtube_title': \"Don't You Get So Mad - Jeffrey Osborne\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Jeffrey Osborne', 'source_title': \"Don't You Get So Mad\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1983', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '5c96c894-834e-4f63-9a37-9e25fa1849b9', 'title': '', 'artist': [{}], 'youtube_title': 'Dynamite by Jermaine Jackson', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 94.545456, 'source_artist': 'Jermaine Jackson', 'source_title': 'Dynamite', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '181a9597-dd56-4d8e-9ea7-9395c5629b2e', 'title': '', 'artist': [{}], 'youtube_title': 'Dynamite   Stacy Lattisaw', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.0, 'source_artist': 'Stacy Lattisaw', 'source_title': 'Dynamite', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1980', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'b2b29765-3b17-4973-9c35-09d6db4355ce', 'title': '', 'artist': [{}], 'youtube_title': 'Electric Lady - Con Funk Shun', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.42857, 'source_artist': 'ConFunkShun', 'source_title': 'Electric Lady', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1985', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '14d086cb-c2ba-4a55-b254-c9e3842d32c4', 'title': '', 'artist': [{}], 'youtube_title': 'Ever So Clear-Bushwick Bill', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.42857, 'source_artist': 'Bushwick Bill', 'source_title': 'Ever So Clear', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1992', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'b763118a-d55a-4e81-a91c-35089c86c9e2', 'title': '', 'artist': [{}], 'youtube_title': 'Fairy Tales -  Anita Baker', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.039215, 'source_artist': 'Anita Baker', 'source_title': 'Fairy Tales', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1990 1991', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2acb952f-f26e-4c35-9058-2bfa9093c3db', 'title': '', 'artist': [{}], 'youtube_title': 'Flashdance • What a Feeling • Irene Cara', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.0, 'source_artist': 'Irene Cara', 'source_title': 'Flashdance...What A Feeling', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1983', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '6221a826-90e1-41bb-ba5c-4ad249d5b9c5', 'title': '', 'artist': [{}], 'youtube_title': 'Flying High - The Commodores', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.30769, 'source_artist': 'Commodores', 'source_title': 'Flying High', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1978', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '217aca52-5ed0-4c90-8c7f-56e973f032f7', 'title': '', 'artist': [{}], 'youtube_title': 'Forever Came Today - The Supremes - 1968', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.41096, 'source_artist': 'The Supremes', 'source_title': 'Forever Came Today', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '9b23b1b6-9719-4193-8aaa-6957bcb49ea6', 'title': '', 'artist': [{}], 'youtube_title': 'Freak Me - Silk', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Silk', 'source_title': 'Freak Me', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1993', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e6429a2c-4353-4c87-9876-91b0cbfb0a54', 'title': '', 'artist': [{}], 'youtube_title': 'From Toys to boys-The emotions', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.77419, 'source_artist': 'The Emotions', 'source_title': 'From Toys To Boys', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '46f8c822-2bb9-4687-a552-ce4a1d5e02be', 'title': '', 'artist': [{}], 'youtube_title': 'Funkentelechy - Parliament', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.039215, 'source_artist': 'Parliament', 'source_title': 'Funkentelchy', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1978', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '3b7a2a7b-137d-424a-bbf8-539266a972fa', 'title': '', 'artist': [{}], 'youtube_title': 'Funky Sound (Tear The Roof Off) - The Sequence', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.454544, 'source_artist': 'Sequence', 'source_title': 'Funky Sound (Tear The Roof Off)', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1981', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2b7061f0-67dd-4f3d-ba67-0171640ccdfe', 'title': '', 'artist': [{}], 'youtube_title': 'Funky Stuff   Kool And The Gang', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.0, 'source_artist': 'Kool & The Gang', 'source_title': 'Funky Stuff', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '64eedba5-2bdb-4fb8-be0a-71cb1a653d84', 'title': '', 'artist': [{}], 'youtube_title': 'Get Down    Curtis Mayfield', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 94.33962, 'source_artist': 'Curtis Mayfield', 'source_title': 'Get Down', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '8afafb35-c8ed-4139-9032-5c05b0b4c962', 'title': '', 'artist': [{}], 'youtube_title': 'Get It Together - Jackson 5', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Jackson 5', 'source_title': 'Get It Together', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7b9fdecd-3fb1-4edc-bbd4-54689e50315a', 'title': '', 'artist': [{}], 'youtube_title': 'Get Up and Get Down - The Dramatics', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Dramatics', 'source_title': 'Get Up And Get Down', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971 1972', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'a2f9ad15-e0c9-452d-8e61-091175789009', 'title': '', 'artist': [{}], 'youtube_title': 'Go Away Little Girl-Steve Lawrence', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.14286, 'source_artist': 'Steve Lawrence', 'source_title': 'Go Away Little Girl', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1962 1963', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd699d947-603b-4521-95c1-5bfe3eb75af0', 'title': '', 'artist': [{}], 'youtube_title': 'GROOVE WITH YOU - Isley Brothers', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 94.117645, 'source_artist': 'The Isley Brothers', 'source_title': 'Groove With You', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1978', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f6108010-aa47-4333-9d9d-26232c34af45', 'title': '', 'artist': [{}], 'youtube_title': \"Groovin' - The Young Rascals\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Young Rascals', 'source_title': \"Groovin'\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1967', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4e713f58-9865-49fd-8d08-fb293e843f52', 'title': '', 'artist': [{}], 'youtube_title': 'Hallelujah Day - Jackson 5', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Jackson 5', 'source_title': 'Hallelujah Day', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '0b81d445-4ff0-4c0b-8319-43a88fc478bf', 'title': '', 'artist': [{}], 'youtube_title': 'HARVEST FOR THE WORLD - Isley Brothers', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.0, 'source_artist': 'The Isley Brothers', 'source_title': 'Harvest For The World', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1976', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7afeb423-e219-4409-9ffb-56ae6e9cf48f', 'title': '', 'artist': [{}], 'youtube_title': 'Hay - Crucial Conflict', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Crucial Conflict', 'source_title': 'Hay', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1996', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '483d747f-8e98-4b86-8a6f-ca25610b0126', 'title': '', 'artist': [{}], 'youtube_title': 'He wants my body - Starpoint', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Starpoint', 'source_title': 'He Wants My Body', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1987', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '633cfbcc-3bc6-44d6-80fb-f2585369fe93', 'title': '', 'artist': [{}], 'youtube_title': \"He's A Rebel - The Crystals\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Crystals', 'source_title': \"He's A Rebel\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1962', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '5c509ee9-48bf-46e0-a8ce-bca02e1096ac', 'title': '', 'artist': [{}], 'youtube_title': \"He's The Greatest Dancer - Sister Sledge - HQ/HD\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.90909, 'source_artist': 'Sister Sledge', 'source_title': \"He's The Greatest Dancer\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1979', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '99a564e9-febf-4aae-9a08-95c1fa3f0f8c', 'title': '', 'artist': [{}], 'youtube_title': 'Heart Beat - Seduction', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.674416, 'source_artist': 'Seduction', 'source_title': 'Heartbeat', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1990', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd1a4496c-b26b-4500-ba28-db8ee23279b3', 'title': '', 'artist': [{}], 'youtube_title': 'Hello by Lionel Richie', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.023254, 'source_artist': 'Lionel Richie', 'source_title': 'Hello', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '65d0438c-3c2e-4e66-b814-0c18057ce347', 'title': '', 'artist': [{}], 'youtube_title': 'Hey You! Get Off My Mountain - The Dramatics', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Dramatics', 'source_title': 'Hey You! Get Off My Mountain', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '8a1d58be-70a5-42e1-ab5e-dc29a11b0812', 'title': '', 'artist': [{}], 'youtube_title': 'holly holy Jr. Walker & The All Stars', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.36842, 'source_artist': 'Jr. Walker & The All Stars', 'source_title': 'Holly Holy', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'eabfa0a1-5e83-496f-813a-098fea5eaf63', 'title': '', 'artist': [{}], 'youtube_title': 'Hot Pants (She Got To Use What She Got To Get What She Wants) - James Brown', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.98658, 'source_artist': 'James Brown', 'source_title': 'Hot Pants (She Got To Use What She Got, To Get What She Want', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f385e4d6-5a01-45fb-a41d-75a2e0b99cab', 'title': '', 'artist': [{}], 'youtube_title': \"02. House Party (I Don't Know What You Come to Do) - Tony! Toni! Tone!\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.64706, 'source_artist': 'Tony Toni Tone', 'source_title': \"House Party II (I Don't Know What You Come To Do)\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1991', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '1088fd5f-e544-4bf8-8e8d-590748f7817d', 'title': '', 'artist': [{}], 'youtube_title': \"I Ain't Particular - Johnnie Taylor.\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.59155, 'source_artist': 'Johnnie Taylor', 'source_title': \"I Ain't Particular\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '65aba58b-8292-4010-9161-cd488874c0ae', 'title': '', 'artist': [{}], 'youtube_title': 'I CAN MAKE IT BETTER - Peabo Bryson', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Peabo Bryson', 'source_title': 'I Can Make It Better', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1977', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'caf7fa36-d759-41c3-b98a-455e4e36558a', 'title': '', 'artist': [{}], 'youtube_title': \"I Don't Know What It Is But It Sure Is Funky-Ripple-1973\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.72727, 'source_artist': 'Ripple', 'source_title': \"I Don't Know What It Is, But It Sure Is Funky\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f72248f9-0601-4177-8601-6b1ea84ee12b', 'title': '', 'artist': [{}], 'youtube_title': \"I Don't Want To Lose You   Billy Butler & Infinity\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.0, 'source_artist': 'Billy Butler & Infinity', 'source_title': \"I Don't Want To Lose You\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd82ba458-ba8b-46fa-8278-6952d52cc2f0', 'title': '', 'artist': [{}], 'youtube_title': 'I Get The Sweetest Feeling - Jackie Wilson', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Jackie Wilson', 'source_title': 'I Get The Sweetest Feeling', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'b537079c-dd0d-4638-8e66-ebb44d5ecf44', 'title': '', 'artist': [{}], 'youtube_title': \"I Got Da Feelin' - Sweet Tee\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Sweet Tee', 'source_title': \"I Got Da Feelin'\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1988', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2979c844-4aae-45f1-9f94-eeeba7523657', 'title': '', 'artist': [{}], 'youtube_title': \"I Gotta Keep Dancin' - CARRIE LUCAS '1977\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.10526, 'source_artist': 'Carrie Lucas', 'source_title': \"I Gotta Keep Dancin'\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1977', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '85cff4fe-1189-4632-9406-7da467599e90', 'title': '', 'artist': [{}], 'youtube_title': 'I Idolize You - Ike & Tina Turner', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Ike & Tina Turner', 'source_title': 'I Idolize You', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1961 1960', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '91944a3b-440c-4237-adfc-d1ea4397ba6b', 'title': '', 'artist': [{}], 'youtube_title': \"I Need Help (I Can't Do It Alone) - Bobby Byrd\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.87755, 'source_artist': 'Bobby Byrd', 'source_title': \"I Need Help (I Can't Do It Alone) Pt. 1\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '19bf13e5-787f-483b-af60-c57e8733fc21', 'title': '', 'artist': [{}], 'youtube_title': '\"I Second That Emotion\" by Smokey Robinson & The Miracles', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.4955, 'source_artist': 'Smokey Robinson & The Miracles', 'source_title': 'I Second That Emotion', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1967 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '6bdd1618-c59d-4f3c-8214-c0eca41556eb', 'title': '', 'artist': [{}], 'youtube_title': 'I Wanna Rock - LUKE', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Luke', 'source_title': 'I Wanna Rock', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1992', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '51824e01-a19d-4e68-838c-67d05168da80', 'title': '', 'artist': [{}], 'youtube_title': 'I Want You Back - The Jackson 5', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.10345, 'source_artist': 'Jackson 5', 'source_title': 'I Want You Back', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1969 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7ce3bfd4-fefd-4368-88ba-72d0be58fe5c', 'title': '', 'artist': [{}], 'youtube_title': 'I Wish It Would Rain - Temptations', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 94.44444, 'source_artist': 'The Temptations', 'source_title': 'I Wish It Would Rain', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '1fa1b089-b51a-4ee6-bb78-4f081b67f9a3', 'title': '', 'artist': [{}], 'youtube_title': \"I'd Give Anything - Gerald Levert\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Gerald Levert', 'source_title': \"I'd Give Anything\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1994', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'bdd44c8e-7f78-4c50-9d5a-1c9c7c959371', 'title': '', 'artist': [{}], 'youtube_title': \"I'LL TAKE YOU THERE - Bebe & Cece Winans\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'BeBe & CeCe Winans', 'source_title': \"I'll Take You There\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1991 1992', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'cae9004f-cf3b-4f5f-a6bb-66284b0bcfa6', 'title': '', 'artist': [{}], 'youtube_title': \"I'M ON YOUR SIDE - Angela Bofill\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Angela Bofill', 'source_title': \"I'm On Your Side\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1983 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'c57389dd-eaee-42ef-a6f8-3c1295c1c055', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Sorry - Bo Diddley\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Bo Diddley', 'source_title': \"I'm Sorry\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1959', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '1e97ee31-ad1a-4051-9089-c6ebfbbd8c36', 'title': '', 'artist': [{}], 'youtube_title': \"I'm The One-Roberta Flack\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.15385, 'source_artist': 'Roberta Flack', 'source_title': \"I'm The One\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1982', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e56d7fa8-9ed1-4b25-9dd0-873bba00796f', 'title': '', 'artist': [{}], 'youtube_title': 'II Hype - EnTouch', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Entouch', 'source_title': 'II Hype', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1989', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f5b1e2dd-7cad-4dff-a557-c4223b23cd53', 'title': '', 'artist': [{}], 'youtube_title': \"If You Don't Know Me By Now - Harold Melvin & The Blue Notes\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.72131, 'source_artist': 'Harold Melvin And The Blue Notes', 'source_title': \"If You Don't Know Me By Now\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1972 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '465e012c-d9d1-45ab-9f6b-cd4f29790c29', 'title': '', 'artist': [{}], 'youtube_title': 'In My Songs - Gerald Levert', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Gerald Levert', 'source_title': 'In My Songs', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2007', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2fe948f2-8b5d-4b07-82d3-49f79a2c233b', 'title': '', 'artist': [{}], 'youtube_title': 'In The Heat Of The Night - Ray Charles', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Ray Charles', 'source_title': 'In The Heat Of The Night', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1967', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '420a7d1c-d01a-430c-9f2a-1b0c78c6f264', 'title': '', 'artist': [{}], 'youtube_title': 'It takes two - Marvin Gaye & Kim Weston', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Marvin Gaye & Kim Weston', 'source_title': 'It Takes Two', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1967', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'cbc7b3fa-413f-4a31-9782-0274cf77faf6', 'title': '', 'artist': [{}], 'youtube_title': \"It's A New Day (Parts 1 & 2) - James Brown\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 91.111115, 'source_artist': 'James Brown', 'source_title': \"It's A New Day (Part 1) & (Part 2)\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'ff8f6e2b-01d3-4e66-bac6-b60ccd5c47bb', 'title': '', 'artist': [{}], 'youtube_title': \"It's All in the Game - Tommy Edwards\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Tommy Edwards', 'source_title': \"It's All In The Game\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1958', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'a441ebfa-c688-4a81-828a-ea2445ffd868', 'title': '', 'artist': [{}], 'youtube_title': \"It's So Hard To Say Goodbye To Yesterday...G.C. Cameron\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.57798, 'source_artist': 'G.C.Cameron', 'source_title': \"It's So Hard To Say Goodbye To Yesterday\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1975', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'a9a07752-2f4a-4311-b95a-7b97b10ecd78', 'title': '', 'artist': [{}], 'youtube_title': 'Jail House Rap - Fat Boys', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.95918, 'source_artist': 'Fat Boys', 'source_title': 'Jailhouse Rap', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1985 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'afe1a48e-bf36-4b7e-b4a4-69b1ae2ad3c4', 'title': '', 'artist': [{}], 'youtube_title': 'Johannesburg - Gil Scott Heron and Brian Jackson', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.61702, 'source_artist': 'Gil Scott-Heron & Brian Jackson', 'source_title': 'Johannesburg', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1975', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '3724ca7f-b6b8-4689-ac61-d4910e9156f0', 'title': '', 'artist': [{}], 'youtube_title': \"Jumpin' Jack Flash   Aretha Franklin\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.22222, 'source_artist': 'Aretha Franklin', 'source_title': \"Jumpin' Jack Flash\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1986', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '6424502b-ce6e-4df9-a0da-68483e04deb3', 'title': '', 'artist': [{}], 'youtube_title': \"Just Ain't Enough Love - Eddie Holland - HQ\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.82716, 'source_artist': 'Eddie Holland', 'source_title': \"Just Ain't Enough Love\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1964', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4e2ab37a-0891-4667-bf55-880344f2d56a', 'title': '', 'artist': [{}], 'youtube_title': 'JUST ANOTHER DAY - Peabo Bryson', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Peabo Bryson', 'source_title': 'Just Another Day', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1977', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '9b9fe75a-847f-4c2b-9acf-a75d19bd594a', 'title': '', 'artist': [{}], 'youtube_title': 'Just Because - Anita Baker', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Anita Baker', 'source_title': 'Just Because', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1989', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '6ec1ac8c-8153-4479-983d-e7cb79fa422e', 'title': '', 'artist': [{}], 'youtube_title': 'Lady - Kenny Rogers', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Kenny Rogers', 'source_title': 'Lady', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1980 1981', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'dde2176e-84a1-4c31-bb96-d69de5a560d8', 'title': '', 'artist': [{}], 'youtube_title': 'Let Me Go The Right Way - The Supremes', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Supremes', 'source_title': 'Let Me Go The Right Way', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1962', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'ac96f538-91f7-4cce-9c2e-c829d315f203', 'title': '', 'artist': [{}], 'youtube_title': 'LET ME KNOW - Jeffrey Osborne', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Jeffrey Osborne', 'source_title': 'Let Me Know', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1985', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '772542af-8663-4072-abf5-5f3d66635204', 'title': '', 'artist': [{}], 'youtube_title': 'LET ME TAKE YOU DOWN - Stacy Lattisaw', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Stacy Lattisaw', 'source_title': 'Let Me Take You Down', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1988', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f603f685-bea5-4dda-8f0e-292edf22081a', 'title': '', 'artist': [{}], 'youtube_title': 'Little Deuce Coupe-The Beach Boys', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.05882, 'source_artist': 'The Beach Boys', 'source_title': 'Little Deuce Coupe', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1963', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e1e3c923-50ca-4eac-b067-7fef7e779de3', 'title': '', 'artist': [{}], 'youtube_title': 'Love Jones - Brighter Side Of Darkness', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Brighter Side Of Darkness', 'source_title': 'Love Jones', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1972 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '381a5ae4-c9b1-4495-b5ff-c298c2716050', 'title': '', 'artist': [{}], 'youtube_title': 'Lover and Friend - Minnie Riperton', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Minnie Riperton', 'source_title': 'Lover And Friend', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1979', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '64ca2942-0cad-4e5e-ab86-52c34ff897fa', 'title': '', 'artist': [{}], 'youtube_title': 'loving you minnie riperton', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.59259, 'source_artist': 'Minnie Riperton', 'source_title': \"Lovin' You\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1975', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e0dce310-e105-4fa0-9214-6a0fa94f391f', 'title': '', 'artist': [{}], 'youtube_title': 'Loving You More Every Day - Etta James', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Etta James', 'source_title': 'Loving You More Every Day', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1964', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '816fd7d5-5c57-4668-b71f-9f6d32d07b5d', 'title': '', 'artist': [{}], 'youtube_title': '\"Make Her Feel Good\" by Teairra Mari', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.753624, 'source_artist': 'Teairra Mari', 'source_title': 'Make Her Feel Good', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2005', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f8865fbe-d0f1-4b2d-8a4d-3b2bea27fbe9', 'title': '', 'artist': [{}], 'youtube_title': 'Make Up For Lost Time - The Montclairs', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Montclairs', 'source_title': 'Make Up For Lost Time', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1974', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '12813857-0191-4973-910c-e2afb8aed305', 'title': '', 'artist': [{}], 'youtube_title': \"Makin' Whoopee - Ray Charles\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Ray Charles', 'source_title': \"Makin' Whoopee\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1965 1964', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'adcc7ea6-1eff-46d3-9f75-6e8326e21efa', 'title': '', 'artist': [{}], 'youtube_title': 'Maybe The Last Time - James Brown - HQ', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.95775, 'source_artist': 'James Brown', 'source_title': 'Maybe The Last Time', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1964', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7bc6e1ff-35ef-42cc-851f-63d2d5911706', 'title': '', 'artist': [{}], 'youtube_title': 'Milly Rock x 2 Milly', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.0, 'source_artist': '2 Milly', 'source_title': 'Milly Rock', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2016', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4331d52b-f72b-459f-a972-ed87923fa4eb', 'title': '', 'artist': [{}], 'youtube_title': 'Mind Blowing Decisions  Heatwave', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.46154, 'source_artist': 'Heatwave', 'source_title': 'Mind Blowing Decisions', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1978', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '46f38069-7414-4209-b2ac-36097b9367ad', 'title': '', 'artist': [{}], 'youtube_title': 'Mr. Custer by Larry Verne', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.87755, 'source_artist': 'Larry Verne', 'source_title': 'Mr. Custer', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1960', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4093c64e-63c0-4262-a9cd-9f3a300ea026', 'title': '', 'artist': [{}], 'youtube_title': 'Music Box - Evelyn \"Champagne\" King \\'1978', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.10526, 'source_artist': 'Evelyn \"Champagne\" King', 'source_title': 'Music Box', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1979', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '97795b2f-2269-4bf5-a090-cde6085f0c9a', 'title': '', 'artist': [{}], 'youtube_title': 'My Flame - Bobby Caldwell', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Bobby Caldwell', 'source_title': 'My Flame', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1979', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '914c02d1-0217-44a0-8ddf-1ab9cda256ef', 'title': '', 'artist': [{}], 'youtube_title': 'My Girl   The Temptations', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.0, 'source_artist': 'The Temptations', 'source_title': 'My Girl', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1965', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e172107d-a3fa-4185-8795-a894ecabba7e', 'title': '', 'artist': [{}], 'youtube_title': 'Naked - Marques houston', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Marques Houston', 'source_title': 'Naked', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2005 2006', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'aee12b07-bfe2-427a-a724-9ec4a7a83f7f', 'title': '', 'artist': [{}], 'youtube_title': 'Never Get Enough of Your Love', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.625, 'source_artist': 'LTD', 'source_title': 'Never Get Enough Of Your Love', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1978', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'b0a0b33b-2721-4a14-9923-755d28fcfff6', 'title': '', 'artist': [{}], 'youtube_title': 'No Brainer - DJ Khaled ft. Justin Bieber, Chance the Rapper, Quavo', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.086334, 'source_artist': 'DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo', 'source_title': 'No Brainer', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2018', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '33abe6b8-0174-435f-a625-3b2a80e2407e', 'title': '', 'artist': [{}], 'youtube_title': '\"Nothing Can Change This Love\" - Sam Cooke', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.560974, 'source_artist': 'Sam Cooke', 'source_title': 'Nothing Can Change This Love', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1962 1963', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2b924787-919d-433e-a807-5b32b890312a', 'title': '', 'artist': [{}], 'youtube_title': \"NOW THAT WE'VE FOUND LOVE - THIRD WORLD\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.0, 'source_artist': 'Third World', 'source_title': 'Now That We Found Love', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1978 1979', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '53d3fd91-a96e-4fb0-9846-544dcab8d0a7', 'title': '', 'artist': [{}], 'youtube_title': 'One of the Living: Tina Turner', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.08197, 'source_artist': 'Tina Turner', 'source_title': 'One Of The Living', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1985', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'ff8ad0b1-57cb-4913-8c60-4d7852077c84', 'title': '', 'artist': [{}], 'youtube_title': 'Overjoyed - Stevie Wonder', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Stevie Wonder', 'source_title': 'Overjoyed', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1986', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'dbf7da4e-f078-4e2e-aaff-cbb86b0a33e6', 'title': '', 'artist': [{}], 'youtube_title': 'Perfect Combination - Stacy Lattisaw & Johnny Gill.wmv', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.15385, 'source_artist': 'Stacy Lattisaw & Johnny Gill', 'source_title': 'Perfect Combination', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '0e876ba1-d043-4b05-b1b1-fff6527232c6', 'title': '', 'artist': [{}], 'youtube_title': '\"Psychedelic Shack\" by The Temptations', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.15069, 'source_artist': 'The Temptations', 'source_title': 'Psychedelic Shack', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd3876a6f-630a-4b81-82e2-9bdcb5e4dc97', 'title': '', 'artist': [{}], 'youtube_title': 'Put A Lil Umph In It - Jagged Edge Feat. Ashanti', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 91.26214, 'source_artist': 'Jagged Edge Featuring Ashanti', 'source_title': 'Put A Little Umph In It', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2007', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd72aac25-6a4e-40b3-8053-7d52eda8af6c', 'title': '', 'artist': [{}], 'youtube_title': \"Put Your Hands Together  - The O'Jays\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 94.44444, 'source_artist': \"The O'Jays\", 'source_title': 'Put Our Heads Together', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1983', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd72aac25-6a4e-40b3-8053-7d52eda8af6c', 'title': '', 'artist': [{}], 'youtube_title': \"Put Your Hands Together  - The O'Jays\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.630135, 'source_artist': \"The O'Jays\", 'source_title': 'Put Your Hands Together', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1974 1973', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '962c4a0f-d875-487d-89b5-d94750593762', 'title': '', 'artist': [{}], 'youtube_title': \"Queen of Rox (Shante' Rox On)-Roxanne Shante'\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.55556, 'source_artist': 'Roxanne Shante', 'source_title': 'Queen Of Rox (Shante Rox On)', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1985', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '59df1879-48ff-441c-bba5-7d0665a9d1a0', 'title': '', 'artist': [{}], 'youtube_title': 'Raindrops-Dee Clark', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.0, 'source_artist': 'Dee Clark', 'source_title': 'Raindrops', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1961', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '38f1e92c-aae0-4b5d-99bf-93ca771af3c7', 'title': '', 'artist': [{}], 'youtube_title': \"Ramblin' Rose - Nat King Cole\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Nat King Cole', 'source_title': \"Ramblin' Rose\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1962', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e9d2e12f-169e-4a6a-96e8-61d49cd6fb15', 'title': '', 'artist': [{}], 'youtube_title': 'Real Life - The Weeknd', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Weeknd', 'source_title': 'Real Life', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2015', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '730dbca2-76b0-459d-b7a1-ac71c128b0c9', 'title': '', 'artist': [{}], 'youtube_title': 'Remember Me - T.I. feat Mary J Blige', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.30769, 'source_artist': 'T.I. Featuring Mary J. Blige', 'source_title': 'Remember Me', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2009', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4b9f913b-18a8-4d92-8599-4e8aedf67a46', 'title': '', 'artist': [{}], 'youtube_title': 'I Remember What You Like - Jenny Burton', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.36842, 'source_artist': 'Jenny Burton', 'source_title': 'Remember What You Like', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'cc9ac99d-cafd-47ec-aa26-a7d310829fd3', 'title': '', 'artist': [{}], 'youtube_title': 'Respect Yourself-The Staples Singers', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.89041, 'source_artist': 'The Staple Singers', 'source_title': 'Respect Yourself', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971 1972', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'dcd09ce1-319e-4995-9959-6d4301c68f08', 'title': '', 'artist': [{}], 'youtube_title': 'Rock Dis Funky Joint - Poor Righteous Teachers', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Poor Righteous Teachers', 'source_title': 'Rock Dis Funky Joint', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1990', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2f4c862a-3e4c-4c82-bf30-4c3f51254e84', 'title': '', 'artist': [{}], 'youtube_title': 'Roses Are Red - The Mac Band feat. The McCampbell Brothers', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.0, 'source_artist': 'The Mac Band Featuring The McCampbell Brothers', 'source_title': 'Roses Are Red', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1988', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'aba0edb2-9ada-45a4-8c7c-14e5d7967149', 'title': '', 'artist': [{}], 'youtube_title': 'Save the Country by the Fifth Dimension', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.666664, 'source_artist': 'The 5th Dimension', 'source_title': 'Save The Country', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2043cfc2-c666-49b2-9ee9-0cc11e89ff0e', 'title': '', 'artist': [{}], 'youtube_title': 'Say You - The Monitors', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Monitors', 'source_title': 'Say You', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1966', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '88cf1650-ff5d-4dda-85ec-90d6d227310f', 'title': '', 'artist': [{}], 'youtube_title': 'Shadow dancing   Andy Gibb', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.15385, 'source_artist': 'Andy Gibb', 'source_title': 'Shadow Dancing', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1978', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '27fbb20d-4832-46a2-b5ef-5f83cbd52cbc', 'title': '', 'artist': [{}], 'youtube_title': \"She Don't Let Nobody But Me - CURTIS MAYFIELD\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 91.56626, 'source_artist': 'Curtis Mayfield', 'source_title': \"She Don't Let Nobody\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1981', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '50442150-d6f9-44f4-9849-44312b2434e8', 'title': '', 'artist': [{}], 'youtube_title': '\"She Said Yes\" by Wilson Pickett', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 91.803276, 'source_artist': 'Wilson Pickett', 'source_title': 'She Said Yes', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f3eed3c2-5970-45f1-8856-dd537ddb604a', 'title': '', 'artist': [{}], 'youtube_title': 'Shout And Scream-Teddy Pendergrass', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.14286, 'source_artist': 'Teddy Pendergrass', 'source_title': 'Shout And Scream', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1980', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f5ff1888-852d-4a98-9b79-b12304e9fa57', 'title': '', 'artist': [{}], 'youtube_title': 'Since I Fell For You - Laura Lee - 1971', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.14085, 'source_artist': 'Laura Lee', 'source_title': 'Since I Fell For You', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1972', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'ed211e42-9afc-430e-9334-b4384fdd181c', 'title': '', 'artist': [{}], 'youtube_title': 'Since I Lost My Baby - The Action', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.14085, 'source_artist': 'The Temptations', 'source_title': 'Since I Lost My Baby', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1965', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '1cd61e28-3a60-4d52-b619-605562d2c53a', 'title': '', 'artist': [{}], 'youtube_title': 'Single Ladies (Put A Ring On It) - Beyonce', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Beyonce', 'source_title': 'Single Ladies (Put A Ring On It)', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2009 2008', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'c68169a9-0eea-407e-af47-39e1e016d4ce', 'title': '', 'artist': [{}], 'youtube_title': 'Slip Away- Clarence Carter', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.113205, 'source_artist': 'Clarence Carter', 'source_title': 'Slip Away', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'aa0b503b-25bc-4a47-8a7a-d6bab7e3c089', 'title': '', 'artist': [{}], 'youtube_title': 'slow dancing in the dark - joji', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Joji', 'source_title': 'Slow Dancing In The Dark', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2018', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'da1f8fa2-7c14-4f03-b4a9-4cd60d0eef26', 'title': '', 'artist': [{}], 'youtube_title': 'So Fine - Mint Condition', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Mint Condition', 'source_title': 'So Fine', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1995', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'af4040b4-c4d0-429a-8c7f-79f53e289287', 'title': '', 'artist': [{}], 'youtube_title': 'So Good So Right by Brenda Russell', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.537315, 'source_artist': 'Brenda Russell', 'source_title': 'So Good,so Right', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1979', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7cfa0a45-12e8-4689-aa25-3bb5a4493aa5', 'title': '', 'artist': [{}], 'youtube_title': 'SO I CAN LOVE YOU     THE EMOTIONS', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.93939, 'source_artist': 'The Emotions', 'source_title': 'So I Can Love You', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1969', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '8164fef9-f188-4510-9c93-13c3d8bc0072', 'title': '', 'artist': [{}], 'youtube_title': 'SPEND THE NIGHT (Ce Soir) - Isley Brothers', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.454544, 'source_artist': 'The Isley Brothers', 'source_title': 'Spend The Night (Ce Soir)', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1989', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7ad1b987-8b00-42a5-b895-3b0641f51360', 'title': '', 'artist': [{}], 'youtube_title': 'Stay Here, Stay Near by Rhonda Clark', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 95.77465, 'source_artist': 'Rhonda Clark', 'source_title': 'Stay Here, Stay Near', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1990', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'af696029-ad3f-4b8f-b939-fdbe786f25cd', 'title': '', 'artist': [{}], 'youtube_title': 'Tell It Like It Is Lyrics - Aaron Neville', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.666664, 'source_artist': 'Aaron Neville', 'source_title': 'Tell It Like It Is', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1967 1966', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7d9b0486-6cb6-4e1b-b85a-9ba301f37e0d', 'title': '', 'artist': [{}], 'youtube_title': 'Temptation Bout To Get Me - The Knight Brothers', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.478264, 'source_artist': 'The Knight Bros.', 'source_title': \"Temptation 'Bout To Get Me\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1965', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '120fbb0d-8571-4eed-8105-f9c05ca56e8f', 'title': '', 'artist': [{}], 'youtube_title': 'The Beginning Of My End- The Unifics', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.630135, 'source_artist': 'The Unifics', 'source_title': 'The Beginning Of My End', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1969 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '5001431c-9acc-4ed6-8f62-a306908df159', 'title': '', 'artist': [{}], 'youtube_title': 'The Best Is Yet To Come-Grover Washington Jr. feat. Patti LaBelle', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.12977, 'source_artist': 'Grover Washington Jr. With Patti LaBelle', 'source_title': 'The Best Is Yet To Come', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1983 1982', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '881c08d6-551e-4b09-be35-e7d2c4c134bb', 'title': '', 'artist': [{}], 'youtube_title': 'The End - Earl Grant', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Earl Grant', 'source_title': 'The End', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1959 1958', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '021a3360-315b-4fd9-8a72-417419dd5bd3', 'title': '', 'artist': [{}], 'youtube_title': 'The Greatest Love Of All : George Benson', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.5, 'source_artist': 'George Benson', 'source_title': 'The Greatest Love Of All', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1977', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4fba0ae8-2c4f-4b0e-9c2a-87c8ca13008b', 'title': '', 'artist': [{}], 'youtube_title': 'THE NAME GAME SHIRLEY ELLIS', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.42857, 'source_artist': 'Shirley Ellis', 'source_title': 'The Name Game', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1965', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'faf722bf-cdd9-4e77-a5d1-7839106884c0', 'title': '', 'artist': [{}], 'youtube_title': 'The Onion Song  - Marvin Gaye & Tammi Terrell', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.8764, 'source_artist': 'Marvin Gaye & Tammi Terrell', 'source_title': 'The Onion Song', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1970', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'bfb2d5f5-c1ed-4d3d-9fb4-3eca06b23002', 'title': '', 'artist': [{}], 'youtube_title': '\"The Price\" - Solomon Burke', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.15385, 'source_artist': 'Solomon Burke', 'source_title': 'The Price', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1965 1964', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '0f34cd14-e018-4ba5-a64b-6d60397fe398', 'title': '', 'artist': [{}], 'youtube_title': \"This Time I'll Be Sweeter Angela Bofill\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.5, 'source_artist': 'Angela Bofill', 'source_title': \"This Time I'll Be Sweeter\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1979', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '00110d3f-0411-4802-922b-4ec4dad7b7f7', 'title': '', 'artist': [{}], 'youtube_title': 'Tie me Kangaroos down, sport - Rolf Harris', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.79518, 'source_artist': 'Rolf Harris', 'source_title': 'Tie Me Kangaroo Down, Sport', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1963', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'c4c76a01-2176-4ec9-b9b1-188790c850d7', 'title': '', 'artist': [{}], 'youtube_title': 'TO BE CONTINUED - Temptations', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.548386, 'source_artist': 'The Temptations', 'source_title': 'To Be Continued', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1987', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '21a8f7be-2c13-46d5-8259-6d57d4c437cd', 'title': '', 'artist': [{}], 'youtube_title': 'Together - Tierra', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Tierra', 'source_title': 'Together', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1980 1981', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '768303a5-cdcb-4c3c-937a-c0855a5cb799', 'title': '', 'artist': [{}], 'youtube_title': 'Too late to turn back now - Cornelius Bros and Sister Rose', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.22034, 'source_artist': 'Cornelius Brothers & Sister Rose', 'source_title': 'Too Late To Turn Back Now', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1972', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '68543e91-dde0-4803-b1e8-a3eeeaf068cc', 'title': '', 'artist': [{}], 'youtube_title': \"toot an' toot an' toot - CURTIS MAYFIELD\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Curtis Mayfield', 'source_title': \"Toot An' Toot An' Toot\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1981 1982', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'c0ce51bc-138d-4be8-9eb4-e9803d11a988', 'title': '', 'artist': [{}], 'youtube_title': 'Touch a four leaf clover--Atlantic Starr', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.296295, 'source_artist': 'Atlantic Starr', 'source_title': 'Touch A Four Leaf Clover', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1983 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'f695c084-83cd-49d5-a2bc-4512bd6f4b2c', 'title': '', 'artist': [{}], 'youtube_title': 'Trading Places- Usher', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 97.674416, 'source_artist': 'Usher', 'source_title': 'Trading Places', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2009 2008', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '85b2ebfc-b7d6-451c-bf88-a2dba45f90ac', 'title': '', 'artist': [{}], 'youtube_title': 'WAITING BY THE HOTLINE - Deniece Williams', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Deniece Williams', 'source_title': 'Waiting By The Hotline', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1982', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2bc48245-7a37-47a5-b546-b90cdb1fb1d2', 'title': '', 'artist': [{}], 'youtube_title': 'Walk it out - UNK', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Unk', 'source_title': 'Walk It Out', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2006 2007', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'a6de898f-91d2-4110-a312-7bee27437b87', 'title': '', 'artist': [{}], 'youtube_title': 'Want It Need It- Plies feat Ashanti', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.90909, 'source_artist': 'Plies Featuring Ashanti', 'source_title': 'Want It, Need It', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2009', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'dbaa4cf1-a1ea-4f5b-8e28-149d3e85d2e1', 'title': '', 'artist': [{}], 'youtube_title': 'Wedlock Is A Padlock - Laura Lee - 1970', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.14085, 'source_artist': 'Laura Lee', 'source_title': 'Wedlock Is A Padlock', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1971', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '4372cb9a-d660-46d5-a7bf-b0129b16a44a', 'title': '', 'artist': [{}], 'youtube_title': 'What A Man - Linda Lyndell', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Linda Lyndell', 'source_title': 'What A Man', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e0b02316-f43f-44ac-9543-56b12833a116', 'title': '', 'artist': [{}], 'youtube_title': \"WHAT IS THIS THING CALLED LOVE - Alexander O'Neal\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.9899, 'source_artist': \"Alexander O'Neal\", 'source_title': 'What Is This Thing Called Love?', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1991', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'fd2bc526-54a6-4c2f-909f-eca54e593672', 'title': '', 'artist': [{}], 'youtube_title': 'What it is - The Undisputed Truth', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'The Undisputed Truth', 'source_title': 'What It Is', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1972', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '762eef7b-e0c2-4fce-81f7-cd5017c0cd60', 'title': '', 'artist': [{}], 'youtube_title': 'What Two Can Do - Deniece Williams', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Deniece Williams', 'source_title': 'What Two Can Do', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1981', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '1df55775-71f3-4f68-9e9b-721e9289816b', 'title': '', 'artist': [{}], 'youtube_title': 'Whatever Hurts You- The Mad Lads', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 98.46154, 'source_artist': 'The Mad Lads', 'source_title': 'Whatever Hurts You', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '2aea1014-d8fa-4655-a5b5-9f79ddf20ead', 'title': '', 'artist': [{}], 'youtube_title': 'Where Do We Go from Here - Enchantment', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Enchantment', 'source_title': 'Where Do We Go From Here', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1979', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'c63fe6bb-7f7c-42e8-919b-b482c08908ec', 'title': '', 'artist': [{}], 'youtube_title': 'Where or When by Dion and the Belmonts', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.41096, 'source_artist': 'Dion & The Belmonts', 'source_title': 'Where Or When', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1960', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '986d4d5e-d957-416c-bd7b-1a0b62431012', 'title': '', 'artist': [{}], 'youtube_title': 'White Horse - Laid Back 1983', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.196075, 'source_artist': 'Laid Back', 'source_title': 'White Horse', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1984', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e8ecb6fc-3001-4236-9b98-f3357959e416', 'title': '', 'artist': [{}], 'youtube_title': \"Yes I'm Ready / Teri Desario with K.C.\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 96.1039, 'source_artist': 'Teri DeSario With K.C.', 'source_title': \"Yes, I'm Ready\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1980', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'fbfe9282-617e-4222-8a93-ee7ea6453e2b', 'title': '', 'artist': [{}], 'youtube_title': 'You Got To Be The One-The Chi-Lites-1974', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.90909, 'source_artist': 'The Chi-lites', 'source_title': 'You Got To Be The One', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1974', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'd75a54d0-bea9-4c23-9d69-25b302825fe0', 'title': '', 'artist': [{}], 'youtube_title': 'You Gotta Believe - The Pointer Sisters (1976)', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 91.76471, 'source_artist': 'The Pointer Sisters', 'source_title': 'You Gotta Believe', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1977 1976', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'c3fe565e-9ff4-49e6-ba69-666de05d3083', 'title': '', 'artist': [{}], 'youtube_title': 'You Make Me Feel Brand New - The Stylistics lyrics', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 92.47312, 'source_artist': 'The Stylistics', 'source_title': 'You Make Me Feel Brand New', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1974', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7e5e6e34-a2d2-4be9-9c80-b9b1e5f1d4e7', 'title': '', 'artist': [{}], 'youtube_title': \"You're All I need to get by -Marvin Gaye & Tammi Terrell LYRICS\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 93.333336, 'source_artist': 'Marvin Gaye & Tammi Terrell', 'source_title': \"You're All I Need To Get By\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1968', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': 'e66455af-41e3-404e-8e1e-41a76f116171', 'title': '', 'artist': [{}], 'youtube_title': \"You're My Everything - Anita Baker\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Anita Baker', 'source_title': \"You're My Everything\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 2004', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '7d87004a-a206-4831-b14a-3014eb9a8985', 'title': '', 'artist': [{}], 'youtube_title': \"You're Supposed To Keep Your Love For Me - Jermaine Jackson\", 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 100.0, 'source_artist': 'Jermaine Jackson', 'source_title': \"You're Supposed To Keep Your Love For Me\", 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1980', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '9d50e45c-8eda-4ff7-9cec-4d7080af213a', 'title': '', 'artist': [{}], 'youtube_title': 'Your Love Is On The One - Lakeside (1980)', 'source': 'Billboard Hot R&B/Hip-Hop Songs', 'match_score': 90.666664, 'source_artist': 'Lakeside', 'source_title': 'Your Love Is On The One', 'tags': ['Billboard', 'Billboard Hot R&B/Hip-Hop Songs 1981', 'Billboard Hot R&B/Hip-Hop Songs']}\n",
      "{'id': '0ccf4693-4072-4696-8857-37cb32b70f89', 'title': '', 'artist': [{}], 'youtube_title': '409-the Beach Boys', 'source': 'Billboard Hot 100', 'match_score': 94.73684, 'source_artist': 'The Beach Boys', 'source_title': '409', 'tags': ['Billboard', 'Billboard Hot 100 1962', 'Billboard Hot 100']}\n",
      "{'id': '94583033-631d-4932-9859-f077025dc366', 'title': '', 'artist': [{}], 'youtube_title': '8th of November - Big & Rich', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Big & Rich', 'source_title': '8th Of November', 'tags': ['Billboard', 'Billboard Hot 100 2006', 'Billboard Hot 100']}\n",
      "{'id': '7b779e09-f27c-4589-964d-cac8affb54f2', 'title': '', 'artist': [{}], 'youtube_title': 'A Change Is Gonna Come - Adam Lambert, studio', 'source': 'Billboard Hot 100', 'match_score': 90.243904, 'source_artist': 'Adam Lambert', 'source_title': 'A Change Is Gonna Come', 'tags': ['Billboard', 'Billboard Hot 100 2009', 'Billboard Hot 100']}\n",
      "{'id': '90e28a68-077e-4f46-98f2-603e884dd26b', 'title': '', 'artist': [{}], 'youtube_title': 'A Fool in Love - Tina Turner', 'source': 'Billboard Hot 100', 'match_score': 90.32258, 'source_artist': 'Ike & Tina Turner', 'source_title': 'A Fool In Love', 'tags': ['Billboard', 'Billboard Hot 100 1960', 'Billboard Hot 100']}\n",
      "{'id': 'e33d9a81-6989-49e1-b03c-87725dd458fc', 'title': '', 'artist': [{}], 'youtube_title': 'A Love Bizarre - Sheila E.', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Sheila E.', 'source_title': 'A Love Bizarre', 'tags': ['Billboard', 'Billboard Hot 100 1986 1985', 'Billboard Hot 100']}\n",
      "{'id': '7cb0d7d7-2c14-46dd-a988-84a66ee9e87c', 'title': '', 'artist': [{}], 'youtube_title': 'a man holding on (to a woman letting go) - Ty Herndon', 'source': 'Billboard Hot 100', 'match_score': 96.22642, 'source_artist': 'Ty Herndon', 'source_title': \"A Man Holdin' On (To A Woman Lettin' Go)\", 'tags': ['Billboard', 'Billboard Hot 100 1998', 'Billboard Hot 100']}\n",
      "{'id': 'fce32461-aa6a-4b84-8194-61d1e9748120', 'title': '', 'artist': [{}], 'youtube_title': 'ABRA-CA-DABRA The DeFranco Family', 'source': 'Billboard Hot 100', 'match_score': 95.652176, 'source_artist': 'The De Franco Family', 'source_title': 'Abra-Ca-Dabra', 'tags': ['Billboard', 'Billboard Hot 100 1974 1973', 'Billboard Hot 100']}\n",
      "{'id': 'a18c4054-c2ab-478a-b017-84011350d33e', 'title': '', 'artist': [{}], 'youtube_title': 'After Midnight - JJ Cale', 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'J.J. Cale', 'source_title': 'After Midnight', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': '39c22374-c684-4296-84cd-7d82f28b82f1', 'title': '', 'artist': [{}], 'youtube_title': \"Ain't Gonna Bump No More (With No Big Fat Woman)\", 'source': 'Billboard Hot 100', 'match_score': 90.56604, 'source_artist': 'Joe Tex', 'source_title': \"Ain't Gonna Bump No More (with No Big Fat Woman)\", 'tags': ['Billboard', 'Billboard Hot 100 1977', 'Billboard Hot 100']}\n",
      "{'id': '6b4e51f1-7dca-457a-adb7-b3f335d6430b', 'title': '', 'artist': [{}], 'youtube_title': \"Ain't Gonna Hurt Nobody - Kid 'N Play\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': \"Kid 'N Play\", 'source_title': \"Ain't Gonna Hurt Nobody\", 'tags': ['Billboard', 'Billboard Hot 100 1991 1992', 'Billboard Hot 100']}\n",
      "{'id': '84fbcb31-8bd3-4f7b-beaf-d56a5d0ab767', 'title': '', 'artist': [{}], 'youtube_title': \"Ain't Got No, I Got Life - Nina Simone\", 'source': 'Billboard Hot 100', 'match_score': 97.36842, 'source_artist': 'Nina Simone', 'source_title': \"Ain't Got No; I Got Life\", 'tags': ['Billboard', 'Billboard Hot 100 1969 1968', 'Billboard Hot 100']}\n",
      "{'id': 'f1fccd5c-dc80-4d29-ba67-1ea7c9662cbf', 'title': '', 'artist': [{}], 'youtube_title': '\"Ain\\'t It Baby\" by The Miracles', 'source': 'Billboard Hot 100', 'match_score': 90.0, 'source_artist': 'The Miracles', 'source_title': \"Ain't It, Baby\", 'tags': ['Billboard', 'Billboard Hot 100 1961', 'Billboard Hot 100']}\n",
      "{'id': 'e701becc-4e48-4500-9440-6fca6cf41ee1', 'title': '', 'artist': [{}], 'youtube_title': \"Ain't that just the way - Lutricia McNeal\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Lutricia McNeal', 'source_title': \"Ain't That Just The Way\", 'tags': ['Billboard', 'Billboard Hot 100 1997 1998', 'Billboard Hot 100']}\n",
      "{'id': '1edab2fc-add8-4e39-a594-2314e38c5060', 'title': '', 'artist': [{}], 'youtube_title': \"Ain't That Peculiar-Marvin Gaye\", 'source': 'Billboard Hot 100', 'match_score': 96.875, 'source_artist': 'Marvin Gaye', 'source_title': \"Ain't That Peculiar\", 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': '773d4e6e-db61-46a7-a3b2-9daa01a2d1ab', 'title': '', 'artist': [{}], 'youtube_title': 'Alice In Wonderland - Neil Sedaka - 1963', 'source': 'Billboard Hot 100', 'match_score': 90.41096, 'source_artist': 'Neil Sedaka', 'source_title': 'Alice In Wonderland', 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': '42f3db62-6676-4ff8-8e6f-c8b2bc65eb63', 'title': '', 'artist': [{}], 'youtube_title': 'ALL  I  HAVE -  THE MOMENTS', 'source': 'Billboard Hot 100', 'match_score': 94.117645, 'source_artist': 'The Moments', 'source_title': 'All I Have', 'tags': ['Billboard', 'Billboard Hot 100 1971 1970', 'Billboard Hot 100']}\n",
      "{'id': '734c7cde-76c7-4fde-9685-a83882e45975', 'title': '', 'artist': [{}], 'youtube_title': '\"All I Need\" - Jack Wagner', 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'Jack Wagner', 'source_title': 'All I Need', 'tags': ['Billboard', 'Billboard Hot 100 1985 1984', 'Billboard Hot 100']}\n",
      "{'id': 'ecad8b60-e84a-4c96-bbeb-aa6b392cca4d', 'title': '', 'artist': [{}], 'youtube_title': 'All I Need To Know~~Bette Midler', 'source': 'Billboard Hot 100', 'match_score': 92.30769, 'source_artist': 'Bette Midler', 'source_title': 'All I Need To Know', 'tags': ['Billboard', 'Billboard Hot 100 1983', 'Billboard Hot 100']}\n",
      "{'id': '9b38ff03-513c-4657-b2e8-1213aa59872c', 'title': '', 'artist': [{}], 'youtube_title': 'ALL THE RIGHT MOVES  jennifer warnes  chris thompson', 'source': 'Billboard Hot 100', 'match_score': 96.15385, 'source_artist': 'Jennifer Warnes/Chris Thompson', 'source_title': 'All The Right Moves', 'tags': ['Billboard', 'Billboard Hot 100 1983', 'Billboard Hot 100']}\n",
      "{'id': '56584fae-7721-4bc4-a14a-9d93c8fca456', 'title': '', 'artist': [{}], 'youtube_title': 'Alley Oop - The Hollywood Argyles', 'source': 'Billboard Hot 100', 'match_score': 90.32258, 'source_artist': 'Hollywood Argyles', 'source_title': 'Alley-Oop', 'tags': ['Billboard', 'Billboard Hot 100 1960', 'Billboard Hot 100']}\n",
      "{'id': 'dc2b2813-90aa-48c9-9f30-866f7438a53a', 'title': '', 'artist': [{}], 'youtube_title': 'Angel - Javier Colon', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Javier Colon', 'source_title': 'Angel', 'tags': ['Billboard', 'Billboard Hot 100 2011', 'Billboard Hot 100']}\n",
      "{'id': '4d928de4-881e-43a5-9347-aebac50dc018', 'title': '', 'artist': [{}], 'youtube_title': 'Anyone Else But You - Michael Cera and Ellen Page', 'source': 'Billboard Hot 100', 'match_score': 95.833336, 'source_artist': 'Michael Cera & Ellen Page', 'source_title': 'Anyone Else But You', 'tags': ['Billboard', 'Billboard Hot 100 2008', 'Billboard Hot 100']}\n",
      "{'id': '6487934a-1646-4b24-b1f5-293549f76c2f', 'title': '', 'artist': [{}], 'youtube_title': 'Ariel - Dean Friedman .', 'source': 'Billboard Hot 100', 'match_score': 95.454544, 'source_artist': 'Dean Friedman', 'source_title': 'Ariel', 'tags': ['Billboard', 'Billboard Hot 100 1977', 'Billboard Hot 100']}\n",
      "{'id': '4dfb37f4-191f-43d0-9331-df96d7d35605', 'title': '', 'artist': [{}], 'youtube_title': 'As We Lay - Shirley Murdock', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Shirley Murdock', 'source_title': 'As We Lay', 'tags': ['Billboard', 'Billboard Hot 100 1987', 'Billboard Hot 100']}\n",
      "{'id': '10dd4d05-3570-48c6-95be-78e2bdc375b4', 'title': '', 'artist': [{}], 'youtube_title': 'Attack of the Name Game by Stacy Lattisaw', 'source': 'Billboard Hot 100', 'match_score': 96.296295, 'source_artist': 'Stacy Lattisaw', 'source_title': 'Attack Of The Name Game', 'tags': ['Billboard', 'Billboard Hot 100 1982', 'Billboard Hot 100']}\n",
      "{'id': '0537a061-2c8d-418e-bb00-b95d0088fe8f', 'title': '', 'artist': [{}], 'youtube_title': 'Baby Sitter - Betty Wright', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Betty Wright', 'source_title': 'Baby Sitter', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': '0f86d07d-8eef-4c23-a344-5a1a39576b0a', 'title': '', 'artist': [{}], 'youtube_title': 'BABY WHAT YOU WANT ME TO - Jimmy Reed', 'source': 'Billboard Hot 100', 'match_score': 96.1039, 'source_artist': 'Jimmy Reed', 'source_title': 'Baby What You Want Me To Do', 'tags': ['Billboard', 'Billboard Hot 100 1960', 'Billboard Hot 100']}\n",
      "{'id': 'b9ea6658-7021-49a8-afcd-c56789bc7ecc', 'title': '', 'artist': [{}], 'youtube_title': '\"Bad Romance\" - Lady Gaga', 'source': 'Billboard Hot 100', 'match_score': 95.833336, 'source_artist': 'Lady Gaga', 'source_title': 'Bad Romance', 'tags': ['Billboard', 'Billboard Hot 100 2009 2017 2010', 'Billboard Hot 100']}\n",
      "{'id': 'f9216c0d-f8d6-4e59-9f0d-af93f24a39b0', 'title': '', 'artist': [{}], 'youtube_title': 'Bang a Gong (Get It On) by T.Rex', 'source': 'Billboard Hot 100', 'match_score': 93.75, 'source_artist': 'T. Rex', 'source_title': 'Bang A Gong (Get It On)', 'tags': ['Billboard', 'Billboard Hot 100 1971 1972', 'Billboard Hot 100']}\n",
      "{'id': '87d13745-7d15-4c25-90df-d517f83b435f', 'title': '', 'artist': [{}], 'youtube_title': 'Bang Bang (My Baby Shot Me Down)', 'source': 'Billboard Hot 100', 'match_score': 90.14085, 'source_artist': 'Cher', 'source_title': 'Bang Bang (My Baby Shot Me Down)', 'tags': ['Billboard', 'Billboard Hot 100 1966', 'Billboard Hot 100']}\n",
      "{'id': 'ad82a75c-8ae6-4e12-b808-8f1d1fc4359e', 'title': '', 'artist': [{}], 'youtube_title': 'Be Alright - Dean Lewis', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Dean Lewis', 'source_title': 'Be Alright', 'tags': ['Billboard', 'Billboard Hot 100 2018', 'Billboard Hot 100']}\n",
      "{'id': 'c2c1eb74-df97-4ff7-bc92-dca965781f27', 'title': '', 'artist': [{}], 'youtube_title': 'Better use your head - Little Anthony & The Imperials', 'source': 'Billboard Hot 100', 'match_score': 96.296295, 'source_artist': 'Little Anthony And The Imperials', 'source_title': 'Better Use Your Head', 'tags': ['Billboard', 'Billboard Hot 100 1966', 'Billboard Hot 100']}\n",
      "{'id': '1f8614d1-1173-4c24-b90f-8864e6c3f95c', 'title': '', 'artist': [{}], 'youtube_title': 'Big Deal-LeAnn Rimes', 'source': 'Billboard Hot 100', 'match_score': 95.2381, 'source_artist': 'LeAnn Rimes', 'source_title': 'Big Deal', 'tags': ['Billboard', 'Billboard Hot 100 2000 1999', 'Billboard Hot 100']}\n",
      "{'id': 'f04656e4-da7e-4e8d-ae53-99ef09cb1aee', 'title': '', 'artist': [{}], 'youtube_title': '\"Born This Way\" - Lady Gaga', 'source': 'Billboard Hot 100', 'match_score': 96.15385, 'source_artist': 'Lady Gaga', 'source_title': 'Born This Way', 'tags': ['Billboard', 'Billboard Hot 100 2011', 'Billboard Hot 100']}\n",
      "{'id': 'b4e956e7-513d-4f07-8073-045bdbca4f7c', 'title': '', 'artist': [{}], 'youtube_title': \"Breakin' Up Is Hard To Do - Neil Sedaka\", 'source': 'Billboard Hot 100', 'match_score': 97.4359, 'source_artist': 'Neil Sedaka', 'source_title': 'Breaking Up Is Hard To Do', 'tags': ['Billboard', 'Billboard Hot 100 1975 1962 1976', 'Billboard Hot 100']}\n",
      "{'id': '15f66d17-a30f-431b-b9a5-cb2dd1b04d15', 'title': '', 'artist': [{}], 'youtube_title': 'Breathe - Télépopmusik', 'source': 'Billboard Hot 100', 'match_score': 90.90909, 'source_artist': 'Telepopmusik', 'source_title': 'Breathe', 'tags': ['Billboard', 'Billboard Hot 100 2002 2003', 'Billboard Hot 100']}\n",
      "{'id': '946ba935-627f-4c68-8d24-8a189032ab49', 'title': '', 'artist': [{}], 'youtube_title': 'BRING IT ALL BACK by GRAYSON HUGH', 'source': 'Billboard Hot 100', 'match_score': 95.38461, 'source_artist': 'Grayson Hugh', 'source_title': 'Bring It All Back', 'tags': ['Billboard', 'Billboard Hot 100 1989', 'Billboard Hot 100']}\n",
      "{'id': '107b1de3-365b-48c7-81d1-bf2f44affa75', 'title': '', 'artist': [{}], 'youtube_title': 'Brother Louie - Stories', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Stories', 'source_title': 'Brother Louie', 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': '3f318d96-b2f0-4181-95b8-ac8bf451f32d', 'title': '', 'artist': [{}], 'youtube_title': \"C'mon and Swim - Bobby Freeman\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Bobby Freeman', 'source_title': \"C'mon And Swim\", 'tags': ['Billboard', 'Billboard Hot 100 1964', 'Billboard Hot 100']}\n",
      "{'id': '7cd85a6a-2e6e-4232-9c50-0621abca911b', 'title': '', 'artist': [{}], 'youtube_title': 'Can Your Monkey Do The Dog - Rufus Thomas - HQ', 'source': 'Billboard Hot 100', 'match_score': 94.25288, 'source_artist': 'Rufus Thomas', 'source_title': 'Can Your Monkey Do The Dog', 'tags': ['Billboard', 'Billboard Hot 100 1964', 'Billboard Hot 100']}\n",
      "{'id': 'cfa6af9e-e2c2-4dd1-a1dd-0dd8424dff6c', 'title': '', 'artist': [{}], 'youtube_title': \"Can't Nobody Love You--Solomon Burke\", 'source': 'Billboard Hot 100', 'match_score': 95.89041, 'source_artist': 'Solomon Burke', 'source_title': \"Can't Nobody Love You\", 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': 'c000b54e-db0a-4262-b7cd-da4a6f292cb9', 'title': '', 'artist': [{}], 'youtube_title': 'Casanova - LeVert', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Levert', 'source_title': 'Casanova', 'tags': ['Billboard', 'Billboard Hot 100 1987', 'Billboard Hot 100']}\n",
      "{'id': 'c1d11312-82f2-4f98-b856-59a5b529e48e', 'title': '', 'artist': [{}], 'youtube_title': 'Celia of the Seals - Donovan', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Donovan', 'source_title': 'Celia Of The Seals', 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': '0a35495a-0fd3-495d-8a75-27493ceaef9d', 'title': '', 'artist': [{}], 'youtube_title': 'Chain Reaction - Diana Ross', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Diana Ross', 'source_title': 'Chain Reaction', 'tags': ['Billboard', 'Billboard Hot 100 1986 1985', 'Billboard Hot 100']}\n",
      "{'id': '88a4975c-45ec-4d7c-a0c2-db15f87f5de0', 'title': '', 'artist': [{}], 'youtube_title': 'Change Partners - Stephen Stills', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Stephen Stills', 'source_title': 'Change Partners', 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': '0424664b-a670-41b8-bd67-92d88bb377c1', 'title': '', 'artist': [{}], 'youtube_title': 'Changes In Latitudes, Changes In Attitudes - Jimmy Buffett', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jimmy Buffett', 'source_title': 'Changes In Latitudes, Changes In Attitudes', 'tags': ['Billboard', 'Billboard Hot 100 1977', 'Billboard Hot 100']}\n",
      "{'id': 'ac4c5a15-5f09-4fc4-80c7-e738fbfebfef', 'title': '', 'artist': [{}], 'youtube_title': 'Cherokee - EUROPE', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Europe', 'source_title': 'Cherokee', 'tags': ['Billboard', 'Billboard Hot 100 1987 1988', 'Billboard Hot 100']}\n",
      "{'id': 'd0e372ee-1056-4238-b420-d0350bbbc589', 'title': '', 'artist': [{}], 'youtube_title': 'Choice Of Colors- The  Impressions', 'source': 'Billboard Hot 100', 'match_score': 97.05882, 'source_artist': 'The Impressions', 'source_title': 'Choice Of Colors', 'tags': ['Billboard', 'Billboard Hot 100 1969', 'Billboard Hot 100']}\n",
      "{'id': 'e5cf4f81-0552-4b92-b801-b8ecec76ad6f', 'title': '', 'artist': [{}], 'youtube_title': 'Chrome by trace adkins', 'source': 'Billboard Hot 100', 'match_score': 93.023254, 'source_artist': 'Trace Adkins', 'source_title': 'Chrome', 'tags': ['Billboard', 'Billboard Hot 100 2003', 'Billboard Hot 100']}\n",
      "{'id': '19fcffe2-9a8a-4665-9a66-7f78ff0d52af', 'title': '', 'artist': [{}], 'youtube_title': 'Chug-a-lug ~ Roger Miller', 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'Roger Miller', 'source_title': 'Chug-A-Lug', 'tags': ['Billboard', 'Billboard Hot 100 1964', 'Billboard Hot 100']}\n",
      "{'id': '2fd5658f-7dbe-4409-901a-1e16955a6fc9', 'title': '', 'artist': [{}], 'youtube_title': 'Cold Love Donna Summer', 'source': 'Billboard Hot 100', 'match_score': 95.652176, 'source_artist': 'Donna Summer', 'source_title': 'Cold Love', 'tags': ['Billboard', 'Billboard Hot 100 1980 1981', 'Billboard Hot 100']}\n",
      "{'id': 'f8ff087a-c05e-449a-9345-d62d3a783696', 'title': '', 'artist': [{}], 'youtube_title': 'Come Go With Me by Dion', 'source': 'Billboard Hot 100', 'match_score': 93.333336, 'source_artist': 'Dion', 'source_title': 'Come Go With Me', 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': '1955b011-3b72-43bf-b067-4a597d3e3d10', 'title': '', 'artist': [{}], 'youtube_title': '\"Come Saturday Morning\" by the Sandpipers', 'source': 'Billboard Hot 100', 'match_score': 93.67088, 'source_artist': 'The Sandpipers', 'source_title': 'Come Saturday Morning', 'tags': ['Billboard', 'Billboard Hot 100 1969 1970', 'Billboard Hot 100']}\n",
      "{'id': 'e02e4d7f-2748-436e-aeee-2b09b1821829', 'title': '', 'artist': [{}], 'youtube_title': 'Conquistador - Procol Harum', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Procol Harum', 'source_title': 'Conquistador', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': 'ea42ab4a-a479-4a7d-a8d7-cd27b238741e', 'title': '', 'artist': [{}], 'youtube_title': '\"Cowboys Are Frequently, Secretly\" (Fond Of Each Other) Willie Nelson', 'source': 'Billboard Hot 100', 'match_score': 96.350365, 'source_artist': 'Willie Nelson', 'source_title': 'Cowboys Are Frequently Secretly (Fond Of Each Other)', 'tags': ['Billboard', 'Billboard Hot 100 2006', 'Billboard Hot 100']}\n",
      "{'id': 'edd09420-4e9d-4c6e-9f44-f2a317e1ec7e', 'title': '', 'artist': [{}], 'youtube_title': 'CREEQUE ALLEY   -   THE MAMAS & THE PAPAS', 'source': 'Billboard Hot 100', 'match_score': 94.871796, 'source_artist': 'The Mamas & The Papas', 'source_title': 'Creeque Alley', 'tags': ['Billboard', 'Billboard Hot 100 1967', 'Billboard Hot 100']}\n",
      "{'id': '6ce93e36-2b0f-4da2-8c6b-0f1082744940', 'title': '', 'artist': [{}], 'youtube_title': 'Crimson and Clover - Tommy James & The Shondells', 'source': 'Billboard Hot 100', 'match_score': 95.918365, 'source_artist': 'Tommy James And The Shondells', 'source_title': 'Crimson And Clover', 'tags': ['Billboard', 'Billboard Hot 100 1969 1968', 'Billboard Hot 100']}\n",
      "{'id': '84455885-2fac-4434-9e1a-b926efd7a4eb', 'title': '', 'artist': [{}], 'youtube_title': 'Crush-Dave Matthews Band', 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'Dave Matthews Band', 'source_title': 'Crush', 'tags': ['Billboard', 'Billboard Hot 100 1999', 'Billboard Hot 100']}\n",
      "{'id': '8620860d-5e0f-47c7-b01b-9f20774a4c61', 'title': '', 'artist': [{}], 'youtube_title': 'Dance, Dance, Dance (Yowsah, Yowsah, Yowsah) (Edit)', 'source': 'Billboard Hot 100', 'match_score': 90.196075, 'source_artist': 'Chic', 'source_title': 'Dance, Dance, Dance (Yowsah, Yowsah, Yowsah)', 'tags': ['Billboard', 'Billboard Hot 100 1977 1978', 'Billboard Hot 100']}\n",
      "{'id': 'b598be40-0e6f-43e8-9e99-9c05ceae081e', 'title': '', 'artist': [{}], 'youtube_title': 'Dancing In The Dark - Bruce Springsteen', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Bruce Springsteen', 'source_title': 'Dancing In The Dark', 'tags': ['Billboard', 'Billboard Hot 100 1984', 'Billboard Hot 100']}\n",
      "{'id': 'e3e6a5a6-a93e-4061-8ec3-4faaeee072f4', 'title': '', 'artist': [{}], 'youtube_title': \"Darling Be Home Soon - Lovin' Spoonful\", 'source': 'Billboard Hot 100', 'match_score': 95.0, 'source_artist': \"The Lovin' Spoonful\", 'source_title': 'Darling Be Home Soon', 'tags': ['Billboard', 'Billboard Hot 100 1967', 'Billboard Hot 100']}\n",
      "{'id': '723c3d94-e89b-4b78-8a2d-9021daf8473c', 'title': '', 'artist': [{}], 'youtube_title': 'diary bread', 'source': 'Billboard Hot 100', 'match_score': 91.666664, 'source_artist': 'Bread', 'source_title': 'Diary', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': '3dbcd616-63b8-447e-97c5-3b182f25f97d', 'title': '', 'artist': [{}], 'youtube_title': 'Do You Know What I Mean ? - Lee Michaels- 1971', 'source': 'Billboard Hot 100', 'match_score': 90.47619, 'source_artist': 'Lee Michaels', 'source_title': 'Do You Know What I Mean', 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': 'b3d068b0-2228-4939-9327-34ace5632786', 'title': '', 'artist': [{}], 'youtube_title': 'Do You Wanna Dance? - The Beach Boys (1965)', 'source': 'Billboard Hot 100', 'match_score': 91.139244, 'source_artist': 'The Beach Boys', 'source_title': 'Do You Wanna Dance?', 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': '78aea976-d7be-48ed-8555-83624c73b9d3', 'title': '', 'artist': [{}], 'youtube_title': \"Doin' Our Thing - Clarence Carter\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Clarence Carter', 'source_title': \"Doin' Our Thing\", 'tags': ['Billboard', 'Billboard Hot 100 1969', 'Billboard Hot 100']}\n",
      "{'id': '2a324dba-4501-4a99-a293-d2c2a40d07cd', 'title': '', 'artist': [{}], 'youtube_title': 'Don Quichotte - Magazine 60', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Magazine 60', 'source_title': 'Don Quichotte', 'tags': ['Billboard', 'Billboard Hot 100 1986', 'Billboard Hot 100']}\n",
      "{'id': '4ba4efb0-c062-4245-ada9-a0db93cfce43', 'title': '', 'artist': [{}], 'youtube_title': \"Don't Cha Love It - The Miracles\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Miracles', 'source_title': \"Don't Cha Love It\", 'tags': ['Billboard', 'Billboard Hot 100 1975 1974', 'Billboard Hot 100']}\n",
      "{'id': '00da988a-814c-4250-a1e2-6aed6ab3c29f', 'title': '', 'artist': [{}], 'youtube_title': \"Don't Know Much - Bill Medley\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Bill Medley', 'source_title': \"Don't Know Much\", 'tags': ['Billboard', 'Billboard Hot 100 1981', 'Billboard Hot 100']}\n",
      "{'id': '3d828bc1-1e47-4842-a06f-df54d426f656', 'title': '', 'artist': [{}], 'youtube_title': \"Don't Let Him Go - REO Speedwagon\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'REO Speedwagon', 'source_title': \"Don't Let Him Go\", 'tags': ['Billboard', 'Billboard Hot 100 1981', 'Billboard Hot 100']}\n",
      "{'id': '2a5c4451-20a6-4f3a-a48a-459d5a222f04', 'title': '', 'artist': [{}], 'youtube_title': \"Don't Lose The Magic - Shawn Christopher\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Shawn Christopher', 'source_title': \"Don't Lose The Magic\", 'tags': ['Billboard', 'Billboard Hot 100 1992', 'Billboard Hot 100']}\n",
      "{'id': '707c6223-de51-4bf6-b042-1a5ab00f84f9', 'title': '', 'artist': [{}], 'youtube_title': \"Don't You Get So Mad - Jeffrey Osborne\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jeffrey Osborne', 'source_title': \"Don't You Get So Mad\", 'tags': ['Billboard', 'Billboard Hot 100 1983', 'Billboard Hot 100']}\n",
      "{'id': '98d6a968-68e5-4e46-a8af-81d44902e075', 'title': '', 'artist': [{}], 'youtube_title': 'Downtime Jo Dee Messina', 'source': 'Billboard Hot 100', 'match_score': 95.833336, 'source_artist': 'Jo Dee Messina', 'source_title': 'Downtime', 'tags': ['Billboard', 'Billboard Hot 100 2001', 'Billboard Hot 100']}\n",
      "{'id': 'f6fe7718-9b0e-4a15-8b83-010f777d7cb0', 'title': '', 'artist': [{}], 'youtube_title': 'Drinking Bone By Tracy Byrd', 'source': 'Billboard Hot 100', 'match_score': 90.56604, 'source_artist': 'Tracy Byrd', 'source_title': \"Drinkin' Bone\", 'tags': ['Billboard', 'Billboard Hot 100 2004 2003', 'Billboard Hot 100']}\n",
      "{'id': 'f9db0810-6251-4dbb-bed9-4e876a07ab84', 'title': '', 'artist': [{}], 'youtube_title': 'Driving Me Crazy- Sam Adams', 'source': 'Billboard Hot 100', 'match_score': 98.181816, 'source_artist': 'Sam Adams', 'source_title': 'Driving Me Crazy', 'tags': ['Billboard', 'Billboard Hot 100 2010', 'Billboard Hot 100']}\n",
      "{'id': 'c05dd3a0-cce3-45d7-bf2f-68c0e6ba35c2', 'title': '', 'artist': [{}], 'youtube_title': 'Drugs or Jesus  By Tim McGraw', 'source': 'Billboard Hot 100', 'match_score': 92.85714, 'source_artist': 'Tim McGraw', 'source_title': 'Drugs Or Jesus', 'tags': ['Billboard', 'Billboard Hot 100 2005', 'Billboard Hot 100']}\n",
      "{'id': '5c96c894-834e-4f63-9a37-9e25fa1849b9', 'title': '', 'artist': [{}], 'youtube_title': 'Dynamite by Jermaine Jackson', 'source': 'Billboard Hot 100', 'match_score': 94.545456, 'source_artist': 'Jermaine Jackson', 'source_title': 'Dynamite', 'tags': ['Billboard', 'Billboard Hot 100 1984', 'Billboard Hot 100']}\n",
      "{'id': '69dde3d4-aa6f-407b-8c80-8f75591e10f9', 'title': '', 'artist': [{}], 'youtube_title': 'Election Day - Arcadia', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Arcadia', 'source_title': 'Election Day', 'tags': ['Billboard', 'Billboard Hot 100 1986 1985', 'Billboard Hot 100']}\n",
      "{'id': '962ed9ec-e318-458d-85eb-4ee97565c7df', 'title': '', 'artist': [{}], 'youtube_title': 'ETERNALLY - Sarah Vaughan', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Sarah Vaughan', 'source_title': 'Eternally', 'tags': ['Billboard', 'Billboard Hot 100 1960', 'Billboard Hot 100']}\n",
      "{'id': 'c77f07d1-dc91-4a04-a938-f523ad9dad85', 'title': '', 'artist': [{}], 'youtube_title': 'Every Morning - Sugar Ray', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Sugar Ray', 'source_title': 'Every Morning', 'tags': ['Billboard', 'Billboard Hot 100 1999', 'Billboard Hot 100']}\n",
      "{'id': '7bdc2a54-b1b4-456b-99df-b3ef4e0e2d7b', 'title': '', 'artist': [{}], 'youtube_title': \"Everyone's Gone To The Moon - Jonathan King\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jonathan King', 'source_title': \"Everyone's Gone To The Moon\", 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': '02c5ed58-cbc4-42c6-a1d6-f0a96fd9617c', 'title': '', 'artist': [{}], 'youtube_title': 'Fabulous - Ashley Tisdale & Lucas Grabeel', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ashley Tisdale & Lucas Grabeel', 'source_title': 'Fabulous', 'tags': ['Billboard', 'Billboard Hot 100 2007', 'Billboard Hot 100']}\n",
      "{'id': 'ae35533e-d5b8-4f7d-ae78-9669928306e8', 'title': '', 'artist': [{}], 'youtube_title': 'Falls Apart - Sugar Ray', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Sugar Ray', 'source_title': 'Falls Apart', 'tags': ['Billboard', 'Billboard Hot 100 2000', 'Billboard Hot 100']}\n",
      "{'id': 'fa955306-8d3a-4d6c-8a1c-0555abf7c43a', 'title': '', 'artist': [{}], 'youtube_title': 'Fame - Irene Cara', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Irene Cara', 'source_title': 'Fame', 'tags': ['Billboard', 'Billboard Hot 100 1980', 'Billboard Hot 100']}\n",
      "{'id': '4c038052-eedc-4a30-9a2c-d7196a3e35d1', 'title': '', 'artist': [{}], 'youtube_title': 'Feelings - Morris Albert', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Morris Albert', 'source_title': 'Feelings', 'tags': ['Billboard', 'Billboard Hot 100 1975 1976', 'Billboard Hot 100']}\n",
      "{'id': 'b345aab2-d411-41bf-a708-c0cedea1116d', 'title': '', 'artist': [{}], 'youtube_title': 'Firework - Katy Perry', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Katy Perry', 'source_title': 'Firework', 'tags': ['Billboard', 'Billboard Hot 100 2010 2011', 'Billboard Hot 100']}\n",
      "{'id': 'bc7795d4-45bf-4731-9703-1b0da0000708', 'title': '', 'artist': [{}], 'youtube_title': 'I, Love - Jennifer Lopez', 'source': 'Billboard Hot 100', 'match_score': 90.196075, 'source_artist': 'Jennifer Lopez', 'source_title': 'First Love', 'tags': ['Billboard', 'Billboard Hot 100 2014', 'Billboard Hot 100']}\n",
      "{'id': '2acb952f-f26e-4c35-9058-2bfa9093c3db', 'title': '', 'artist': [{}], 'youtube_title': 'Flashdance • What a Feeling • Irene Cara', 'source': 'Billboard Hot 100', 'match_score': 90.0, 'source_artist': 'Irene Cara', 'source_title': 'Flashdance...What A Feeling', 'tags': ['Billboard', 'Billboard Hot 100 1983', 'Billboard Hot 100']}\n",
      "{'id': '6221a826-90e1-41bb-ba5c-4ad249d5b9c5', 'title': '', 'artist': [{}], 'youtube_title': 'Flying High - The Commodores', 'source': 'Billboard Hot 100', 'match_score': 92.30769, 'source_artist': 'Commodores', 'source_title': 'Flying High', 'tags': ['Billboard', 'Billboard Hot 100 1978', 'Billboard Hot 100']}\n",
      "{'id': '9b23b1b6-9719-4193-8aaa-6957bcb49ea6', 'title': '', 'artist': [{}], 'youtube_title': 'Freak Me - Silk', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Silk', 'source_title': 'Freak Me', 'tags': ['Billboard', 'Billboard Hot 100 1993', 'Billboard Hot 100']}\n",
      "{'id': '2b7061f0-67dd-4f3d-ba67-0171640ccdfe', 'title': '', 'artist': [{}], 'youtube_title': 'Funky Stuff   Kool And The Gang', 'source': 'Billboard Hot 100', 'match_score': 90.0, 'source_artist': 'Kool & The Gang', 'source_title': 'Funky Stuff', 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': 'cfb44ec1-5615-42c4-8e86-b7dcb6fa98ab', 'title': '', 'artist': [{}], 'youtube_title': 'Galway Girl - Ed Sheeran', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ed Sheeran', 'source_title': 'Galway Girl', 'tags': ['Billboard', 'Billboard Hot 100 2017', 'Billboard Hot 100']}\n",
      "{'id': '64eedba5-2bdb-4fb8-be0a-71cb1a653d84', 'title': '', 'artist': [{}], 'youtube_title': 'Get Down    Curtis Mayfield', 'source': 'Billboard Hot 100', 'match_score': 94.33962, 'source_artist': 'Curtis Mayfield', 'source_title': 'Get Down', 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': '8afafb35-c8ed-4139-9032-5c05b0b4c962', 'title': '', 'artist': [{}], 'youtube_title': 'Get It Together - Jackson 5', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jackson 5', 'source_title': 'Get It Together', 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': '7b9fdecd-3fb1-4edc-bbd4-54689e50315a', 'title': '', 'artist': [{}], 'youtube_title': 'Get Up and Get Down - The Dramatics', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Dramatics', 'source_title': 'Get Up And Get Down', 'tags': ['Billboard', 'Billboard Hot 100 1971 1972', 'Billboard Hot 100']}\n",
      "{'id': 'd207d363-228a-4dfe-988e-c6a2c870e40f', 'title': '', 'artist': [{}], 'youtube_title': 'Gloria- The doors', 'source': 'Billboard Hot 100', 'match_score': 97.14286, 'source_artist': 'The Doors', 'source_title': 'Gloria', 'tags': ['Billboard', 'Billboard Hot 100 1983 1984', 'Billboard Hot 100']}\n",
      "{'id': 'a2f9ad15-e0c9-452d-8e61-091175789009', 'title': '', 'artist': [{}], 'youtube_title': 'Go Away Little Girl-Steve Lawrence', 'source': 'Billboard Hot 100', 'match_score': 97.14286, 'source_artist': 'Steve Lawrence', 'source_title': 'Go Away Little Girl', 'tags': ['Billboard', 'Billboard Hot 100 1962 1963', 'Billboard Hot 100']}\n",
      "{'id': '4e5fbb98-f97d-4a3e-8f6a-af321817c69c', 'title': '', 'artist': [{}], 'youtube_title': 'God is a woman - Ariana Grande', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ariana Grande', 'source_title': 'God Is A Woman', 'tags': ['Billboard', 'Billboard Hot 100 2018', 'Billboard Hot 100']}\n",
      "{'id': 'd0362e3d-2e1b-4344-983d-ab2d687efc67', 'title': '', 'artist': [{}], 'youtube_title': 'God must be busy - Brooks & Dunn', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Brooks & Dunn', 'source_title': 'God Must Be Busy', 'tags': ['Billboard', 'Billboard Hot 100 2008', 'Billboard Hot 100']}\n",
      "{'id': '18510800-e36c-485b-ba93-a112c28fa3bf', 'title': '', 'artist': [{}], 'youtube_title': 'Good Friends - Joni Mitchell', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Joni Mitchell', 'source_title': 'Good Friends', 'tags': ['Billboard', 'Billboard Hot 100 1986 1985', 'Billboard Hot 100']}\n",
      "{'id': '71da136c-ffe4-43cb-8c45-1b586f692d27', 'title': '', 'artist': [{}], 'youtube_title': \"Good Girls Don't by THE KNACK\", 'source': 'Billboard Hot 100', 'match_score': 94.73684, 'source_artist': 'The Knack', 'source_title': \"Good Girls Don't\", 'tags': ['Billboard', 'Billboard Hot 100 1979', 'Billboard Hot 100']}\n",
      "{'id': 'f6108010-aa47-4333-9d9d-26232c34af45', 'title': '', 'artist': [{}], 'youtube_title': \"Groovin' - The Young Rascals\", 'source': 'Billboard Hot 100', 'match_score': 91.52542, 'source_artist': 'The Young Rascals', 'source_title': \"Good Lovin'\", 'tags': ['Billboard', 'Billboard Hot 100 1966', 'Billboard Hot 100']}\n",
      "{'id': 'e9ae767c-8ec3-4f42-83ed-ed9a14251c50', 'title': '', 'artist': [{}], 'youtube_title': 'Got to Have Loving - Don Ray', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Don Ray', 'source_title': 'Got To Have Loving', 'tags': ['Billboard', 'Billboard Hot 100 1978 1979', 'Billboard Hot 100']}\n",
      "{'id': 'f6108010-aa47-4333-9d9d-26232c34af45', 'title': '', 'artist': [{}], 'youtube_title': \"Groovin' - The Young Rascals\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Young Rascals', 'source_title': \"Groovin'\", 'tags': ['Billboard', 'Billboard Hot 100 1967', 'Billboard Hot 100']}\n",
      "{'id': 'cb91ba0c-9857-47ef-85ba-860ef36bf854', 'title': '', 'artist': [{}], 'youtube_title': 'Guantanamera - The Sandpipers', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Sandpipers', 'source_title': 'Guantanamera', 'tags': ['Billboard', 'Billboard Hot 100 1966', 'Billboard Hot 100']}\n",
      "{'id': '252fed48-f762-4012-bed2-7763d98d69a9', 'title': '', 'artist': [{}], 'youtube_title': 'Guns, Guns, Guns-The Guess Who', 'source': 'Billboard Hot 100', 'match_score': 96.77419, 'source_artist': 'The Guess Who', 'source_title': 'Guns, Guns, Guns', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': 'bfcb113d-6553-4afd-b795-185e612c9ffc', 'title': '', 'artist': [{}], 'youtube_title': 'Half The Way - Crystal Gayle', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'Half The Way', 'tags': ['Billboard', 'Billboard Hot 100 1980 1979', 'Billboard Hot 100']}\n",
      "{'id': '4e713f58-9865-49fd-8d08-fb293e843f52', 'title': '', 'artist': [{}], 'youtube_title': 'Hallelujah Day - Jackson 5', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jackson 5', 'source_title': 'Hallelujah Day', 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': '0b81d445-4ff0-4c0b-8319-43a88fc478bf', 'title': '', 'artist': [{}], 'youtube_title': 'HARVEST FOR THE WORLD - Isley Brothers', 'source': 'Billboard Hot 100', 'match_score': 95.0, 'source_artist': 'The Isley Brothers', 'source_title': 'Harvest For The World', 'tags': ['Billboard', 'Billboard Hot 100 1976', 'Billboard Hot 100']}\n",
      "{'id': '69598dd7-4cfd-44ce-8b7b-8511ea698d13', 'title': '', 'artist': [{}], 'youtube_title': 'Have I Told You Lately - Rod Stewart', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Rod Stewart', 'source_title': 'Have I Told You Lately', 'tags': ['Billboard', 'Billboard Hot 100 1993', 'Billboard Hot 100']}\n",
      "{'id': '7afeb423-e219-4409-9ffb-56ae6e9cf48f', 'title': '', 'artist': [{}], 'youtube_title': 'Hay - Crucial Conflict', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Crucial Conflict', 'source_title': 'Hay', 'tags': ['Billboard', 'Billboard Hot 100 1996', 'Billboard Hot 100']}\n",
      "{'id': '483d747f-8e98-4b86-8a6f-ca25610b0126', 'title': '', 'artist': [{}], 'youtube_title': 'He wants my body - Starpoint', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Starpoint', 'source_title': 'He Wants My Body', 'tags': ['Billboard', 'Billboard Hot 100 1987', 'Billboard Hot 100']}\n",
      "{'id': '633cfbcc-3bc6-44d6-80fb-f2585369fe93', 'title': '', 'artist': [{}], 'youtube_title': \"He's A Rebel - The Crystals\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Crystals', 'source_title': \"He's A Rebel\", 'tags': ['Billboard', 'Billboard Hot 100 1962', 'Billboard Hot 100']}\n",
      "{'id': '5c509ee9-48bf-46e0-a8ce-bca02e1096ac', 'title': '', 'artist': [{}], 'youtube_title': \"He's The Greatest Dancer - Sister Sledge - HQ/HD\", 'source': 'Billboard Hot 100', 'match_score': 90.90909, 'source_artist': 'Sister Sledge', 'source_title': \"He's The Greatest Dancer\", 'tags': ['Billboard', 'Billboard Hot 100 1979', 'Billboard Hot 100']}\n",
      "{'id': '99a564e9-febf-4aae-9a08-95c1fa3f0f8c', 'title': '', 'artist': [{}], 'youtube_title': 'Heart Beat - Seduction', 'source': 'Billboard Hot 100', 'match_score': 97.674416, 'source_artist': 'Seduction', 'source_title': 'Heartbeat', 'tags': ['Billboard', 'Billboard Hot 100 1990', 'Billboard Hot 100']}\n",
      "{'id': '0089974b-2f4c-4ea6-ac37-2467d234630b', 'title': '', 'artist': [{}], 'youtube_title': 'Heartbroken Bopper by The Guess Who', 'source': 'Billboard Hot 100', 'match_score': 95.652176, 'source_artist': 'The Guess Who', 'source_title': 'Heartbroken Bopper', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': 'e996f20d-60c8-4fe4-a38c-6edff741f87d', 'title': '', 'artist': [{}], 'youtube_title': 'Heaven In Your Eyes - Loverboy Video', 'source': 'Billboard Hot 100', 'match_score': 90.90909, 'source_artist': 'Loverboy', 'source_title': 'Heaven In Your Eyes', 'tags': ['Billboard', 'Billboard Hot 100 1986', 'Billboard Hot 100']}\n",
      "{'id': 'd1a4496c-b26b-4500-ba28-db8ee23279b3', 'title': '', 'artist': [{}], 'youtube_title': 'Hello by Lionel Richie', 'source': 'Billboard Hot 100', 'match_score': 93.023254, 'source_artist': 'Lionel Richie', 'source_title': 'Hello', 'tags': ['Billboard', 'Billboard Hot 100 1984', 'Billboard Hot 100']}\n",
      "{'id': '49fb4aad-dd88-49e7-aff9-0359b8a3db27', 'title': '', 'artist': [{}], 'youtube_title': 'Hello Again  Neil Diamond', 'source': 'Billboard Hot 100', 'match_score': 98.039215, 'source_artist': 'Neil Diamond', 'source_title': 'Hello Again', 'tags': ['Billboard', 'Billboard Hot 100 1981', 'Billboard Hot 100']}\n",
      "{'id': '1af3d2bf-f2b9-4242-98f5-a1c189474507', 'title': '', 'artist': [{}], 'youtube_title': 'HEY LITTLE COBRA - The Rip Chords', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Rip Chords', 'source_title': 'Hey Little Cobra', 'tags': ['Billboard', 'Billboard Hot 100 1964 1963', 'Billboard Hot 100']}\n",
      "{'id': '65d0438c-3c2e-4e66-b814-0c18057ce347', 'title': '', 'artist': [{}], 'youtube_title': 'Hey You! Get Off My Mountain - The Dramatics', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Dramatics', 'source_title': 'Hey You! Get Off My Mountain', 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': '2160e8db-6246-4350-b569-c86f02520799', 'title': '', 'artist': [{}], 'youtube_title': 'Hey, Mister Sun - Bobby Sherman', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Bobby Sherman', 'source_title': 'Hey, Mister Sun', 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': '8a1d58be-70a5-42e1-ab5e-dc29a11b0812', 'title': '', 'artist': [{}], 'youtube_title': 'holly holy Jr. Walker & The All Stars', 'source': 'Billboard Hot 100', 'match_score': 97.36842, 'source_artist': 'Jr. Walker & The All Stars', 'source_title': 'Holly Holy', 'tags': ['Billboard', 'Billboard Hot 100 1971 1970', 'Billboard Hot 100']}\n",
      "{'id': '29d87453-51db-446f-836c-99a0b112720d', 'title': '', 'artist': [{}], 'youtube_title': 'Honey Come Back - Glen Campbell', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Glen Campbell', 'source_title': 'Honey Come Back', 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': '1ef0e76d-2e51-4fdc-8bd2-12e7bd7a0af2', 'title': '', 'artist': [{}], 'youtube_title': 'Hot Child in the City - Nick Gilder', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Nick Gilder', 'source_title': 'Hot Child In The City', 'tags': ['Billboard', 'Billboard Hot 100 1978 1979', 'Billboard Hot 100']}\n",
      "{'id': 'eabfa0a1-5e83-496f-813a-098fea5eaf63', 'title': '', 'artist': [{}], 'youtube_title': 'Hot Pants (She Got To Use What She Got To Get What She Wants) - James Brown', 'source': 'Billboard Hot 100', 'match_score': 94.93671, 'source_artist': 'James Brown', 'source_title': 'Hot Pants (She Got To Use What She Got To Get What She Wants) (Pt. 1)', 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': 'd8c542b5-028c-4558-927a-e4a551cd0012', 'title': '', 'artist': [{}], 'youtube_title': 'How Deep Is Your Love- Portrait', 'source': 'Billboard Hot 100', 'match_score': 98.4127, 'source_artist': 'Portrait', 'source_title': 'How Deep Is Your Love', 'tags': ['Billboard', 'Billboard Hot 100 1995', 'Billboard Hot 100']}\n",
      "{'id': '020555cb-844c-4ec8-85a6-abe347212d4b', 'title': '', 'artist': [{}], 'youtube_title': 'I Can Help by Billy Swan', 'source': 'Billboard Hot 100', 'match_score': 93.61702, 'source_artist': 'Billy Swan', 'source_title': 'I Can Help', 'tags': ['Billboard', 'Billboard Hot 100 1975 1974', 'Billboard Hot 100']}\n",
      "{'id': '238fa347-c801-459b-a411-7352c7a70c8e', 'title': '', 'artist': [{}], 'youtube_title': 'I Cried - Tammy Montgomery', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Tammy Montgomery', 'source_title': 'I Cried', 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': 'caf7fa36-d759-41c3-b98a-455e4e36558a', 'title': '', 'artist': [{}], 'youtube_title': \"I Don't Know What It Is But It Sure Is Funky-Ripple-1973\", 'source': 'Billboard Hot 100', 'match_score': 92.72727, 'source_artist': 'Ripple', 'source_title': \"I Don't Know What It Is, But It Sure Is Funky\", 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': '14859ff4-179a-4416-85e8-e14519dbbde7', 'title': '', 'artist': [{}], 'youtube_title': \"I Don't Wanna Go On - Innerlude\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Innerlude', 'source_title': \"I Don't Wanna Go On\", 'tags': ['Billboard', 'Billboard Hot 100 1998', 'Billboard Hot 100']}\n",
      "{'id': 'd82ba458-ba8b-46fa-8278-6952d52cc2f0', 'title': '', 'artist': [{}], 'youtube_title': 'I Get The Sweetest Feeling - Jackie Wilson', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jackie Wilson', 'source_title': 'I Get The Sweetest Feeling', 'tags': ['Billboard', 'Billboard Hot 100 1968', 'Billboard Hot 100']}\n",
      "{'id': '85cff4fe-1189-4632-9406-7da467599e90', 'title': '', 'artist': [{}], 'youtube_title': 'I Idolize You - Ike & Tina Turner', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ike & Tina Turner', 'source_title': 'I Idolize You', 'tags': ['Billboard', 'Billboard Hot 100 1961 1960', 'Billboard Hot 100']}\n",
      "{'id': 'daa8daac-f51c-4646-b561-187107840816', 'title': '', 'artist': [{}], 'youtube_title': 'I LOVE HOW YOU LOVE ME ~ The Paris Sisters (1961)', 'source': 'Billboard Hot 100', 'match_score': 90.10989, 'source_artist': 'The Paris Sisters', 'source_title': 'I Love How You Love Me', 'tags': ['Billboard', 'Billboard Hot 100 1961', 'Billboard Hot 100']}\n",
      "{'id': '91944a3b-440c-4237-adfc-d1ea4397ba6b', 'title': '', 'artist': [{}], 'youtube_title': \"I Need Help (I Can't Do It Alone) - Bobby Byrd\", 'source': 'Billboard Hot 100', 'match_score': 93.87755, 'source_artist': 'Bobby Byrd', 'source_title': \"I Need Help (I Can't Do It Alone) Pt. 1\", 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': '19bf13e5-787f-483b-af60-c57e8733fc21', 'title': '', 'artist': [{}], 'youtube_title': '\"I Second That Emotion\" by Smokey Robinson & The Miracles', 'source': 'Billboard Hot 100', 'match_score': 95.4955, 'source_artist': 'Smokey Robinson & The Miracles', 'source_title': 'I Second That Emotion', 'tags': ['Billboard', 'Billboard Hot 100 1967 1968', 'Billboard Hot 100']}\n",
      "{'id': 'afe4d833-d29a-455d-905b-b96c7efb181a', 'title': '', 'artist': [{}], 'youtube_title': \"I Still Haven't Found What I'm Looking For // U2 Parody\", 'source': 'Billboard Hot 100', 'match_score': 90.196075, 'source_artist': 'U2', 'source_title': \"I Still Haven't Found What I'm Looking For\", 'tags': ['Billboard', 'Billboard Hot 100 1987', 'Billboard Hot 100']}\n",
      "{'id': '6adb8c3c-2e50-45e1-ab8b-8862d38d6699', 'title': '', 'artist': [{}], 'youtube_title': \"I Still Haven't Found What I'm Looking For\", 'source': 'Billboard Hot 100', 'match_score': 94.38202, 'source_artist': 'U2', 'source_title': \"I Still Haven't Found What I'm Looking For\", 'tags': ['Billboard', 'Billboard Hot 100 1987', 'Billboard Hot 100']}\n",
      "{'id': '6bdd1618-c59d-4f3c-8214-c0eca41556eb', 'title': '', 'artist': [{}], 'youtube_title': 'I Wanna Rock - LUKE', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Luke', 'source_title': 'I Wanna Rock', 'tags': ['Billboard', 'Billboard Hot 100 1992', 'Billboard Hot 100']}\n",
      "{'id': '51824e01-a19d-4e68-838c-67d05168da80', 'title': '', 'artist': [{}], 'youtube_title': 'I Want You Back - The Jackson 5', 'source': 'Billboard Hot 100', 'match_score': 93.10345, 'source_artist': 'Jackson 5', 'source_title': 'I Want You Back', 'tags': ['Billboard', 'Billboard Hot 100 1969 1970', 'Billboard Hot 100']}\n",
      "{'id': '7ce3bfd4-fefd-4368-88ba-72d0be58fe5c', 'title': '', 'artist': [{}], 'youtube_title': 'I Wish It Would Rain - Temptations', 'source': 'Billboard Hot 100', 'match_score': 94.44444, 'source_artist': 'The Temptations', 'source_title': 'I Wish It Would Rain', 'tags': ['Billboard', 'Billboard Hot 100 1968', 'Billboard Hot 100']}\n",
      "{'id': '1fa1b089-b51a-4ee6-bb78-4f081b67f9a3', 'title': '', 'artist': [{}], 'youtube_title': \"I'd Give Anything - Gerald Levert\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Gerald Levert', 'source_title': \"I'd Give Anything\", 'tags': ['Billboard', 'Billboard Hot 100 1994', 'Billboard Hot 100']}\n",
      "{'id': '3addb8b3-4aa9-471b-a2f9-82f46d50efdd', 'title': '', 'artist': [{}], 'youtube_title': \"I'll Be Your Everything - Youngstown\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Youngstown', 'source_title': \"I'll Be Your Everything\", 'tags': ['Billboard', 'Billboard Hot 100 1999', 'Billboard Hot 100']}\n",
      "{'id': '78186a87-5d40-4639-92dc-6e5bbcf54b66', 'title': '', 'artist': [{}], 'youtube_title': \"I'm a Believer - The Monkees\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Monkees', 'source_title': \"I'm A Believer\", 'tags': ['Billboard', 'Billboard Hot 100 1967 1966', 'Billboard Hot 100']}\n",
      "{'id': 'a5e99f3f-e1ac-4f02-9505-a6d0cdfcb207', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Afraid of Americans - David Bowie\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'David Bowie', 'source_title': \"I'm Afraid Of Americans\", 'tags': ['Billboard', 'Billboard Hot 100 1997 1998', 'Billboard Hot 100']}\n",
      "{'id': '33d4fd8d-8dea-47d4-ae00-f6e4efee94a5', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Alive - Kenny Chesney with Dave Matthews\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Kenny Chesney With Dave Matthews', 'source_title': \"I'm Alive\", 'tags': ['Billboard', 'Billboard Hot 100 2009', 'Billboard Hot 100']}\n",
      "{'id': '363d0c8e-9aa8-48ed-8ad6-243054630624', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Free - Jon Secada\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jon Secada', 'source_title': \"I'm Free\", 'tags': ['Billboard', 'Billboard Hot 100 1993', 'Billboard Hot 100']}\n",
      "{'id': '8dd83eba-36c2-4435-9e3f-907abdbd3a18', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Gonna Knock On Your Door/Eddie Hodges\", 'source': 'Billboard Hot 100', 'match_score': 95.2381, 'source_artist': 'Eddie Hodges', 'source_title': \"I'm Gonna Knock On Your Door\", 'tags': ['Billboard', 'Billboard Hot 100 1961', 'Billboard Hot 100']}\n",
      "{'id': '64ec8e0d-a36a-4fa0-8b69-2e2dd64c3b3a', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Saving My Love - Skeeter Davis\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Skeeter Davis', 'source_title': \"I'm Saving My Love\", 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': '1e97ee31-ad1a-4051-9089-c6ebfbbd8c36', 'title': '', 'artist': [{}], 'youtube_title': \"I'm The One-Roberta Flack\", 'source': 'Billboard Hot 100', 'match_score': 96.15385, 'source_artist': 'Roberta Flack', 'source_title': \"I'm The One\", 'tags': ['Billboard', 'Billboard Hot 100 1982', 'Billboard Hot 100']}\n",
      "{'id': 'b1898502-0ee2-4ec3-be8b-9c87f28d7a52', 'title': '', 'artist': [{}], 'youtube_title': \"I've Gotta Get a Message to You - Bee Gees\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Bee Gees', 'source_title': \"I've Gotta Get A Message To You\", 'tags': ['Billboard', 'Billboard Hot 100 1968', 'Billboard Hot 100']}\n",
      "{'id': 'f5b1e2dd-7cad-4dff-a557-c4223b23cd53', 'title': '', 'artist': [{}], 'youtube_title': \"If You Don't Know Me By Now - Harold Melvin & The Blue Notes\", 'source': 'Billboard Hot 100', 'match_score': 96.72131, 'source_artist': 'Harold Melvin And The Blue Notes', 'source_title': \"If You Don't Know Me By Now\", 'tags': ['Billboard', 'Billboard Hot 100 1972 1973', 'Billboard Hot 100']}\n",
      "{'id': 'c1237b08-04f8-4abe-90b2-46f1c09d0ebc', 'title': '', 'artist': [{}], 'youtube_title': 'Imaginary Lover - Atlanta Rhythm Section', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Atlanta Rhythm Section', 'source_title': 'Imaginary Lover', 'tags': ['Billboard', 'Billboard Hot 100 1978', 'Billboard Hot 100']}\n",
      "{'id': 'c9783033-18ee-45ef-aee4-0cf90b0ad842', 'title': '', 'artist': [{}], 'youtube_title': 'Imagine - Jack Johnson', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jack Johnson', 'source_title': 'Imagine', 'tags': ['Billboard', 'Billboard Hot 100 2007', 'Billboard Hot 100']}\n",
      "{'id': '1f39d08d-e887-48ab-95c7-2ed70db98985', 'title': '', 'artist': [{}], 'youtube_title': 'In A Broken Dream - Python Lee Jackson', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Python Lee Jackson', 'source_title': 'In A Broken Dream', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': '2fe948f2-8b5d-4b07-82d3-49f79a2c233b', 'title': '', 'artist': [{}], 'youtube_title': 'In The Heat Of The Night - Ray Charles', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ray Charles', 'source_title': 'In The Heat Of The Night', 'tags': ['Billboard', 'Billboard Hot 100 1967', 'Billboard Hot 100']}\n",
      "{'id': 'f48748f6-91e4-4dae-bf6d-09b2e0c9b6cf', 'title': '', 'artist': [{}], 'youtube_title': \"Isn't It Time - The Beach Boys\", 'source': 'Billboard Hot 100', 'match_score': 90.90909, 'source_artist': 'The Babys', 'source_title': \"Isn't It Time\", 'tags': ['Billboard', 'Billboard Hot 100 1977 1978', 'Billboard Hot 100']}\n",
      "{'id': '420a7d1c-d01a-430c-9f2a-1b0c78c6f264', 'title': '', 'artist': [{}], 'youtube_title': 'It takes two - Marvin Gaye & Kim Weston', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Marvin Gaye & Kim Weston', 'source_title': 'It Takes Two', 'tags': ['Billboard', 'Billboard Hot 100 1967', 'Billboard Hot 100']}\n",
      "{'id': 'cbc7b3fa-413f-4a31-9782-0274cf77faf6', 'title': '', 'artist': [{}], 'youtube_title': \"It's A New Day (Parts 1 & 2) - James Brown\", 'source': 'Billboard Hot 100', 'match_score': 91.111115, 'source_artist': 'James Brown', 'source_title': \"It's A New Day (Part 1) & (Part 2)\", 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': 'ff8f6e2b-01d3-4e66-bac6-b60ccd5c47bb', 'title': '', 'artist': [{}], 'youtube_title': \"It's All in the Game - Tommy Edwards\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Tommy Edwards', 'source_title': \"It's All In The Game\", 'tags': ['Billboard', 'Billboard Hot 100 1959 1958', 'Billboard Hot 100']}\n",
      "{'id': '2e1652fe-f891-408d-a55c-e111c4d16831', 'title': '', 'artist': [{}], 'youtube_title': \"It's My Life - The Animals\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Animals', 'source_title': \"It's My Life\", 'tags': ['Billboard', 'Billboard Hot 100 1965 1966', 'Billboard Hot 100']}\n",
      "{'id': 'f1962421-abb7-4133-9cf2-b6881f565b2f', 'title': '', 'artist': [{}], 'youtube_title': \"It's The End Of The World As We Know It (And I Feel Fine)\", 'source': 'Billboard Hot 100', 'match_score': 92.68293, 'source_artist': 'R.E.M.', 'source_title': \"It's The End Of The World As We Know It (And I Feel Fine)\", 'tags': ['Billboard', 'Billboard Hot 100 1988', 'Billboard Hot 100']}\n",
      "{'id': 'e4a49962-419a-4aa2-84e0-d2a2f0d8765a', 'title': '', 'artist': [{}], 'youtube_title': \"It's A Happening - The Magic Mushrooms\", 'source': 'Billboard Hot 100', 'match_score': 94.73684, 'source_artist': 'The Magic Mushrooms', 'source_title': \"It's-A-Happening\", 'tags': ['Billboard', 'Billboard Hot 100 1966', 'Billboard Hot 100']}\n",
      "{'id': '30373c2b-de37-430d-af4c-36b92094d3b3', 'title': '', 'artist': [{}], 'youtube_title': 'Jackie Blue - Ozark Mountain Daredevils', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ozark Mountain Daredevils', 'source_title': 'Jackie Blue', 'tags': ['Billboard', 'Billboard Hot 100 1975', 'Billboard Hot 100']}\n",
      "{'id': 'd143b8b0-2d10-4861-9d56-32e3f5716cd3', 'title': '', 'artist': [{}], 'youtube_title': 'Jump To The Rythem - Jordan Pruitt', 'source': 'Billboard Hot 100', 'match_score': 97.05882, 'source_artist': 'Jordan Pruitt', 'source_title': 'Jump To The Rhythm', 'tags': ['Billboard', 'Billboard Hot 100 2007', 'Billboard Hot 100']}\n",
      "{'id': '3724ca7f-b6b8-4689-ac61-d4910e9156f0', 'title': '', 'artist': [{}], 'youtube_title': \"Jumpin' Jack Flash   Aretha Franklin\", 'source': 'Billboard Hot 100', 'match_score': 97.22222, 'source_artist': 'Aretha Franklin', 'source_title': \"Jumpin' Jack Flash\", 'tags': ['Billboard', 'Billboard Hot 100 1986', 'Billboard Hot 100']}\n",
      "{'id': '6424502b-ce6e-4df9-a0da-68483e04deb3', 'title': '', 'artist': [{}], 'youtube_title': \"Just Ain't Enough Love - Eddie Holland - HQ\", 'source': 'Billboard Hot 100', 'match_score': 93.82716, 'source_artist': 'Eddie Holland', 'source_title': \"Just Ain't Enough Love\", 'tags': ['Billboard', 'Billboard Hot 100 1964', 'Billboard Hot 100']}\n",
      "{'id': '9b9fe75a-847f-4c2b-9acf-a75d19bd594a', 'title': '', 'artist': [{}], 'youtube_title': 'Just Because - Anita Baker', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Anita Baker', 'source_title': 'Just Because', 'tags': ['Billboard', 'Billboard Hot 100 1989', 'Billboard Hot 100']}\n",
      "{'id': 'a3ca0cc1-89c5-4765-90fe-f8c0763df7ef', 'title': '', 'artist': [{}], 'youtube_title': 'Just Like You - Robbie Nevil', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Robbie Nevil', 'source_title': 'Just Like You', 'tags': ['Billboard', 'Billboard Hot 100 1991', 'Billboard Hot 100']}\n",
      "{'id': '85840780-a2bd-4b5a-a566-6c58958394bf', 'title': '', 'artist': [{}], 'youtube_title': 'Just One Smile  GENE PITNEY', 'source': 'Billboard Hot 100', 'match_score': 98.181816, 'source_artist': 'Gene Pitney', 'source_title': 'Just One Smile', 'tags': ['Billboard', 'Billboard Hot 100 1967 1966', 'Billboard Hot 100']}\n",
      "{'id': '4cf4ead2-9c2d-4fd5-abc3-0f36dfe23f0e', 'title': '', 'artist': [{}], 'youtube_title': 'Keep It Tight by Single Bullet Theory', 'source': 'Billboard Hot 100', 'match_score': 95.89041, 'source_artist': 'Single Bullet Theory', 'source_title': 'Keep It Tight', 'tags': ['Billboard', 'Billboard Hot 100 1983', 'Billboard Hot 100']}\n",
      "{'id': '0045cbc2-3eaf-46f3-8bd7-586264fbbb07', 'title': '', 'artist': [{}], 'youtube_title': 'Keep Your Mind Wide Open - AnnaSophia Robb', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'AnnaSophia Robb', 'source_title': 'Keep Your Mind Wide Open', 'tags': ['Billboard', 'Billboard Hot 100 2007', 'Billboard Hot 100']}\n",
      "{'id': 'a019fe39-4a02-478c-b9b1-a58cfa7a34b2', 'title': '', 'artist': [{}], 'youtube_title': 'King Of Anything - Sara Bareilles', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Sara Bareilles', 'source_title': 'King Of Anything', 'tags': ['Billboard', 'Billboard Hot 100 2010', 'Billboard Hot 100']}\n",
      "{'id': 'eead6aaf-d624-4b5d-83b0-952e67ef3c9f', 'title': '', 'artist': [{}], 'youtube_title': 'KING OF CLOWNS - Neil Sedaka', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Neil Sedaka', 'source_title': 'King Of Clowns', 'tags': ['Billboard', 'Billboard Hot 100 1962', 'Billboard Hot 100']}\n",
      "{'id': '9822be42-dc0a-4c48-af43-d215eccfebd9', 'title': '', 'artist': [{}], 'youtube_title': 'Know What You Mean - Sister 7', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Sister 7', 'source_title': 'Know What You Mean', 'tags': ['Billboard', 'Billboard Hot 100 1998', 'Billboard Hot 100']}\n",
      "{'id': 'bbb2935a-551a-4aa7-9fd3-40dbd5aaeda9', 'title': '', 'artist': [{}], 'youtube_title': 'La Bomba - Azul Azul', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Azul Azul', 'source_title': 'La Bomba', 'tags': ['Billboard', 'Billboard Hot 100 2001', 'Billboard Hot 100']}\n",
      "{'id': '6ec1ac8c-8153-4479-983d-e7cb79fa422e', 'title': '', 'artist': [{}], 'youtube_title': 'Lady - Kenny Rogers', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Kenny Rogers', 'source_title': 'Lady', 'tags': ['Billboard', 'Billboard Hot 100 1980 1981', 'Billboard Hot 100']}\n",
      "{'id': '69c33fec-a8c1-4406-87d0-3a24eb3353e5', 'title': '', 'artist': [{}], 'youtube_title': '\"Last Friday Night (TGIF)\" - Katy Perry', 'source': 'Billboard Hot 100', 'match_score': 92.5, 'source_artist': 'Katy Perry', 'source_title': 'Last Friday Night (T.G.I.F.)', 'tags': ['Billboard', 'Billboard Hot 100 2010 2011', 'Billboard Hot 100']}\n",
      "{'id': '9c9405a6-214b-4a76-91a8-2753521ff850', 'title': '', 'artist': [{}], 'youtube_title': 'Last One Standing, Emerson Drive', 'source': 'Billboard Hot 100', 'match_score': 95.38461, 'source_artist': 'Emerson Drive', 'source_title': 'Last One Standing', 'tags': ['Billboard', 'Billboard Hot 100 2004', 'Billboard Hot 100']}\n",
      "{'id': '22a30aa6-bfd1-4344-a321-09695abd9cd7', 'title': '', 'artist': [{}], 'youtube_title': '\"Lawyers in Love\" by Jackson Browne', 'source': 'Billboard Hot 100', 'match_score': 92.537315, 'source_artist': 'Jackson Browne', 'source_title': 'Lawyers In Love', 'tags': ['Billboard', 'Billboard Hot 100 1983', 'Billboard Hot 100']}\n",
      "{'id': '4fb40d7f-efab-4eb7-9906-cd74055174e8', 'title': '', 'artist': [{}], 'youtube_title': 'Leaving on a jet plane- peter, paul and mary', 'source': 'Billboard Hot 100', 'match_score': 94.25288, 'source_artist': 'Peter, Paul & Mary', 'source_title': 'Leaving On A Jet Plane', 'tags': ['Billboard', 'Billboard Hot 100 1969 1970', 'Billboard Hot 100']}\n",
      "{'id': 'c93d41ef-66cb-4c79-8dcc-5fcc5eba3683', 'title': '', 'artist': [{}], 'youtube_title': '\"Les Bicyclettes de Belsize\" - Engelbert Humperdinck', 'source': 'Billboard Hot 100', 'match_score': 98.039215, 'source_artist': 'Engelbert Humperdinck', 'source_title': 'Les Bicyclettes De Belsize', 'tags': ['Billboard', 'Billboard Hot 100 1968', 'Billboard Hot 100']}\n",
      "{'id': 'dde2176e-84a1-4c31-bb96-d69de5a560d8', 'title': '', 'artist': [{}], 'youtube_title': 'Let Me Go The Right Way - The Supremes', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Supremes', 'source_title': 'Let Me Go The Right Way', 'tags': ['Billboard', 'Billboard Hot 100 1962 1963', 'Billboard Hot 100']}\n",
      "{'id': 'a489a106-e23e-4df2-adf8-7b2250abadf5', 'title': '', 'artist': [{}], 'youtube_title': 'Let The Good Times Roll- Shirley & Lee', 'source': 'Billboard Hot 100', 'match_score': 98.7013, 'source_artist': 'Shirley & Lee', 'source_title': 'Let The Good Times Roll', 'tags': ['Billboard', 'Billboard Hot 100 1960', 'Billboard Hot 100']}\n",
      "{'id': '7abc8aa4-1b23-4731-b79d-c89a85b6e0d0', 'title': '', 'artist': [{}], 'youtube_title': 'Let Your Love Flow - Bellamy Brothers Lyrics', 'source': 'Billboard Hot 100', 'match_score': 91.358025, 'source_artist': 'Bellamy Brothers', 'source_title': 'Let Your Love Flow', 'tags': ['Billboard', 'Billboard Hot 100 1976', 'Billboard Hot 100']}\n",
      "{'id': '1cdc565f-9da4-46cb-a6e0-17fc1f25a0b9', 'title': '', 'artist': [{}], 'youtube_title': 'Little Red Riding Hood - Sam The Sham & The Pharaohs', 'source': 'Billboard Hot 100', 'match_score': 92.30769, 'source_artist': 'Sam The Sham and the Pharaohs', 'source_title': \"Lil' Red Riding Hood\", 'tags': ['Billboard', 'Billboard Hot 100 1966', 'Billboard Hot 100']}\n",
      "{'id': 'f603f685-bea5-4dda-8f0e-292edf22081a', 'title': '', 'artist': [{}], 'youtube_title': 'Little Deuce Coupe-The Beach Boys', 'source': 'Billboard Hot 100', 'match_score': 97.05882, 'source_artist': 'The Beach Boys', 'source_title': 'Little Deuce Coupe', 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': '68a4f6f7-a012-4fe1-85c8-0976b9701983', 'title': '', 'artist': [{}], 'youtube_title': 'Little Games-The Yardbirds', 'source': 'Billboard Hot 100', 'match_score': 96.296295, 'source_artist': 'The Yardbirds', 'source_title': 'Little Games', 'tags': ['Billboard', 'Billboard Hot 100 1967', 'Billboard Hot 100']}\n",
      "{'id': '79f6dd27-4bfb-4f48-87ea-4092513122f5', 'title': '', 'artist': [{}], 'youtube_title': 'Living In The Background - Baltimora', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Baltimora', 'source_title': 'Living In The Background', 'tags': ['Billboard', 'Billboard Hot 100 1986', 'Billboard Hot 100']}\n",
      "{'id': 'cf935e34-3279-485a-b822-f19bd715740e', 'title': '', 'artist': [{}], 'youtube_title': 'Lodi - Creedence Clearwater Revival', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Creedence Clearwater Revival', 'source_title': 'Lodi', 'tags': ['Billboard', 'Billboard Hot 100 1969', 'Billboard Hot 100']}\n",
      "{'id': 'e151d5d2-d35b-41f0-81b2-6a4e5c50945f', 'title': '', 'artist': [{}], 'youtube_title': 'Lonely Boy - Andrew Gold', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Andrew Gold', 'source_title': 'Lonely Boy', 'tags': ['Billboard', 'Billboard Hot 100 1977', 'Billboard Hot 100']}\n",
      "{'id': 'fc97aaf6-1ff8-4907-ab87-040d66f31b57', 'title': '', 'artist': [{}], 'youtube_title': 'LONELY NIGHTS (ANGEL FACE) by Captain & tennille', 'source': 'Billboard Hot 100', 'match_score': 95.74468, 'source_artist': 'Captain & Tennille', 'source_title': 'Lonely Night (angel Face)', 'tags': ['Billboard', 'Billboard Hot 100 1976', 'Billboard Hot 100']}\n",
      "{'id': 'c085af65-f7a6-4a80-a903-6d7d4fc4534e', 'title': '', 'artist': [{}], 'youtube_title': 'Loser - Glee Cast', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Glee Cast', 'source_title': 'Loser', 'tags': ['Billboard', 'Billboard Hot 100 2010', 'Billboard Hot 100']}\n",
      "{'id': '91c87fd8-c296-4a51-8c0e-16b7ddde99b2', 'title': '', 'artist': [{}], 'youtube_title': '\"Lost Horizon\" by Shawn Phillips', 'source': 'Billboard Hot 100', 'match_score': 91.803276, 'source_artist': 'Shawn Phillips', 'source_title': 'Lost Horizon', 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': '985e52fc-a5ae-4baa-ac02-c4699b21118c', 'title': '', 'artist': [{}], 'youtube_title': \"01 Love Don't Live Here - Lady Antebellum\", 'source': 'Billboard Hot 100', 'match_score': 96.20253, 'source_artist': 'Lady Antebellum', 'source_title': \"Love Don't Live Here\", 'tags': ['Billboard', 'Billboard Hot 100 2008', 'Billboard Hot 100']}\n",
      "{'id': 'e1e3c923-50ca-4eac-b067-7fef7e779de3', 'title': '', 'artist': [{}], 'youtube_title': 'Love Jones - Brighter Side Of Darkness', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Brighter Side Of Darkness', 'source_title': 'Love Jones', 'tags': ['Billboard', 'Billboard Hot 100 1972 1973', 'Billboard Hot 100']}\n",
      "{'id': '425a5117-5392-4180-b543-60f3da6cace8', 'title': '', 'artist': [{}], 'youtube_title': 'Love Song - 1', 'source': 'Billboard Hot 100', 'match_score': 92.85714, 'source_artist': '311', 'source_title': 'Love Song', 'tags': ['Billboard', 'Billboard Hot 100 2004', 'Billboard Hot 100']}\n",
      "{'id': '105376f4-e4a2-4093-9ad2-67a1a9f15090', 'title': '', 'artist': [{}], 'youtube_title': 'A Love Song - Anne Murray', 'source': 'Billboard Hot 100', 'match_score': 95.833336, 'source_artist': 'Anne Murray', 'source_title': 'Love Song', 'tags': ['Billboard', 'Billboard Hot 100 1974 1973', 'Billboard Hot 100']}\n",
      "{'id': '64ca2942-0cad-4e5e-ab86-52c34ff897fa', 'title': '', 'artist': [{}], 'youtube_title': 'loving you minnie riperton', 'source': 'Billboard Hot 100', 'match_score': 92.59259, 'source_artist': 'Minnie Riperton', 'source_title': \"Lovin' You\", 'tags': ['Billboard', 'Billboard Hot 100 1975', 'Billboard Hot 100']}\n",
      "{'id': '7a848223-bf6e-416f-ab8a-339f50bfe1dc', 'title': '', 'artist': [{}], 'youtube_title': 'Loving Arms   Kris Kristofferson and Rita Coolidge', 'source': 'Billboard Hot 100', 'match_score': 93.87755, 'source_artist': 'Kris Kristofferson & Rita Coolidge', 'source_title': 'Loving Arms', 'tags': ['Billboard', 'Billboard Hot 100 1974', 'Billboard Hot 100']}\n",
      "{'id': 'e0dce310-e105-4fa0-9214-6a0fa94f391f', 'title': '', 'artist': [{}], 'youtube_title': 'Loving You More Every Day - Etta James', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Etta James', 'source_title': 'Loving You More Every Day', 'tags': ['Billboard', 'Billboard Hot 100 1964', 'Billboard Hot 100']}\n",
      "{'id': '880f5ae7-da2d-407b-a93f-f3e76883e44c', 'title': '', 'artist': [{}], 'youtube_title': 'Magic Power - Triumph', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Triumph', 'source_title': 'Magic Power', 'tags': ['Billboard', 'Billboard Hot 100 1981', 'Billboard Hot 100']}\n",
      "{'id': '816fd7d5-5c57-4668-b71f-9f6d32d07b5d', 'title': '', 'artist': [{}], 'youtube_title': '\"Make Her Feel Good\" by Teairra Mari', 'source': 'Billboard Hot 100', 'match_score': 92.753624, 'source_artist': 'Teairra Mari', 'source_title': 'Make Her Feel Good', 'tags': ['Billboard', 'Billboard Hot 100 2005', 'Billboard Hot 100']}\n",
      "{'id': '12813857-0191-4973-910c-e2afb8aed305', 'title': '', 'artist': [{}], 'youtube_title': \"Makin' Whoopee - Ray Charles\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ray Charles', 'source_title': \"Makin' Whoopee\", 'tags': ['Billboard', 'Billboard Hot 100 1965 1964', 'Billboard Hot 100']}\n",
      "{'id': 'e9059172-3b68-4156-9126-54a8895c1cc6', 'title': '', 'artist': [{}], 'youtube_title': 'Moments to Remember - The Vogues - 1969', 'source': 'Billboard Hot 100', 'match_score': 90.14085, 'source_artist': 'The Vogues', 'source_title': 'Moments To Remember', 'tags': ['Billboard', 'Billboard Hot 100 1969', 'Billboard Hot 100']}\n",
      "{'id': '5fd903f4-399a-40ab-b79c-c758da98aad7', 'title': '', 'artist': [{}], 'youtube_title': 'Mony Mony by Tommy James & The Shondells', 'source': 'Billboard Hot 100', 'match_score': 91.358025, 'source_artist': 'Tommy James And The Shondells', 'source_title': 'Mony Mony', 'tags': ['Billboard', 'Billboard Hot 100 1968', 'Billboard Hot 100']}\n",
      "{'id': 'ca23b228-35fa-4b2d-98ee-b31725edbfa6', 'title': '', 'artist': [{}], 'youtube_title': \"Mother's Pride George Michael\", 'source': 'Billboard Hot 100', 'match_score': 96.666664, 'source_artist': 'George Michael', 'source_title': \"Mother's Pride\", 'tags': ['Billboard', 'Billboard Hot 100 1991', 'Billboard Hot 100']}\n",
      "{'id': '46f38069-7414-4209-b2ac-36097b9367ad', 'title': '', 'artist': [{}], 'youtube_title': 'Mr. Custer by Larry Verne', 'source': 'Billboard Hot 100', 'match_score': 93.87755, 'source_artist': 'Larry Verne', 'source_title': 'Mr. Custer', 'tags': ['Billboard', 'Billboard Hot 100 1960', 'Billboard Hot 100']}\n",
      "{'id': '4093c64e-63c0-4262-a9cd-9f3a300ea026', 'title': '', 'artist': [{}], 'youtube_title': 'Music Box - Evelyn \"Champagne\" King \\'1978', 'source': 'Billboard Hot 100', 'match_score': 92.10526, 'source_artist': 'Evelyn \"Champagne\" King', 'source_title': 'Music Box', 'tags': ['Billboard', 'Billboard Hot 100 1979', 'Billboard Hot 100']}\n",
      "{'id': '4edbb16c-55cd-408f-a23b-57674b6b6d92', 'title': '', 'artist': [{}], 'youtube_title': 'Music is My Hot,Hot Sex - CSS', 'source': 'Billboard Hot 100', 'match_score': 96.55173, 'source_artist': 'CSS', 'source_title': 'Music Is My Hot Hot Sex', 'tags': ['Billboard', 'Billboard Hot 100 2007', 'Billboard Hot 100']}\n",
      "{'id': '8e51b2bf-ebef-4114-9543-892fd4cd2d32', 'title': '', 'artist': [{}], 'youtube_title': 'Muskrat Love - Captain & Tennille', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Captain & Tennille', 'source_title': 'Muskrat Love', 'tags': ['Billboard', 'Billboard Hot 100 1977 1976', 'Billboard Hot 100']}\n",
      "{'id': '914c02d1-0217-44a0-8ddf-1ab9cda256ef', 'title': '', 'artist': [{}], 'youtube_title': 'My Girl   The Temptations', 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'The Temptations', 'source_title': 'My Girl', 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': 'f0e4edbf-90f8-45cc-81ca-9197d5c10185', 'title': '', 'artist': [{}], 'youtube_title': 'My man - Barbra Streisand', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Barbra Streisand', 'source_title': 'My Man', 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': '3bb7c841-40da-41e7-83fc-996dd7180261', 'title': '', 'artist': [{}], 'youtube_title': 'My Music - Loggins & Messina', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Loggins & Messina', 'source_title': 'My Music', 'tags': ['Billboard', 'Billboard Hot 100 1974 1973', 'Billboard Hot 100']}\n",
      "{'id': 'e172107d-a3fa-4185-8795-a894ecabba7e', 'title': '', 'artist': [{}], 'youtube_title': 'Naked - Marques houston', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Marques Houston', 'source_title': 'Naked', 'tags': ['Billboard', 'Billboard Hot 100 2005', 'Billboard Hot 100']}\n",
      "{'id': '51d39cdf-5b1e-4d10-a1b6-6d7ea361ef5a', 'title': '', 'artist': [{}], 'youtube_title': 'Never - Amanda Perez', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Amanda Perez', 'source_title': 'Never', 'tags': ['Billboard', 'Billboard Hot 100 2002', 'Billboard Hot 100']}\n",
      "{'id': 'cb3f2889-d231-48bc-89a2-76bc368a4821', 'title': '', 'artist': [{}], 'youtube_title': 'Never Be the Same - Christopher Cross', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Christopher Cross', 'source_title': 'Never Be The Same', 'tags': ['Billboard', 'Billboard Hot 100 1980 1981', 'Billboard Hot 100']}\n",
      "{'id': '851f2a6c-47ed-4b71-9afa-49e13bce754c', 'title': '', 'artist': [{}], 'youtube_title': 'New World Man - Rush', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Rush', 'source_title': 'New World Man', 'tags': ['Billboard', 'Billboard Hot 100 1982', 'Billboard Hot 100']}\n",
      "{'id': '5024d461-8a3a-4457-af82-64425ac6d60e', 'title': '', 'artist': [{}], 'youtube_title': \"New Year's Day - U2\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'U2', 'source_title': \"New Year's Day\", 'tags': ['Billboard', 'Billboard Hot 100 1983', 'Billboard Hot 100']}\n",
      "{'id': 'b0a0b33b-2721-4a14-9923-755d28fcfff6', 'title': '', 'artist': [{}], 'youtube_title': 'No Brainer - DJ Khaled ft. Justin Bieber, Chance the Rapper, Quavo', 'source': 'Billboard Hot 100', 'match_score': 92.086334, 'source_artist': 'DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo', 'source_title': 'No Brainer', 'tags': ['Billboard', 'Billboard Hot 100 2018', 'Billboard Hot 100']}\n",
      "{'id': '7f4202c1-0d55-47b0-b395-b9bf397d3686', 'title': '', 'artist': [{}], 'youtube_title': 'No Guns No Murder - RayVon', 'source': 'Billboard Hot 100', 'match_score': 98.113205, 'source_artist': 'Rayvon', 'source_title': 'No Guns, No Murder', 'tags': ['Billboard', 'Billboard Hot 100 1994', 'Billboard Hot 100']}\n",
      "{'id': 'ff6895de-4a2b-43b7-a873-94270b84597a', 'title': '', 'artist': [{}], 'youtube_title': 'Nobody but me - The human beinz (HQ)', 'source': 'Billboard Hot 100', 'match_score': 92.537315, 'source_artist': 'The Human Beinz', 'source_title': 'Nobody But Me', 'tags': ['Billboard', 'Billboard Hot 100 1967 1968', 'Billboard Hot 100']}\n",
      "{'id': '33abe6b8-0174-435f-a625-3b2a80e2407e', 'title': '', 'artist': [{}], 'youtube_title': '\"Nothing Can Change This Love\" - Sam Cooke', 'source': 'Billboard Hot 100', 'match_score': 97.560974, 'source_artist': 'Sam Cooke', 'source_title': 'Nothing Can Change This Love', 'tags': ['Billboard', 'Billboard Hot 100 1962', 'Billboard Hot 100']}\n",
      "{'id': '2b924787-919d-433e-a807-5b32b890312a', 'title': '', 'artist': [{}], 'youtube_title': \"NOW THAT WE'VE FOUND LOVE - THIRD WORLD\", 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'Third World', 'source_title': 'Now That We Found Love', 'tags': ['Billboard', 'Billboard Hot 100 1979', 'Billboard Hot 100']}\n",
      "{'id': '171b7660-1a2c-4b4a-8e2b-8fab3fe1e8c8', 'title': '', 'artist': [{}], 'youtube_title': \"Oh Me Oh My (I'm a Fool for You Baby)\", 'source': 'Billboard Hot 100', 'match_score': 91.358025, 'source_artist': 'Lulu', 'source_title': \"Oh Me Oh My (I'm A Fool For You Baby)\", 'tags': ['Billboard', 'Billboard Hot 100 1969 1970', 'Billboard Hot 100']}\n",
      "{'id': 'd16c15c8-2000-45d9-8ac2-f9c47540485e', 'title': '', 'artist': [{}], 'youtube_title': 'One Night At A Time - George Strait', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'George Strait', 'source_title': 'One Night At A Time', 'tags': ['Billboard', 'Billboard Hot 100 1997', 'Billboard Hot 100']}\n",
      "{'id': '53d3fd91-a96e-4fb0-9846-544dcab8d0a7', 'title': '', 'artist': [{}], 'youtube_title': 'One of the Living: Tina Turner', 'source': 'Billboard Hot 100', 'match_score': 95.08197, 'source_artist': 'Tina Turner', 'source_title': 'One Of The Living', 'tags': ['Billboard', 'Billboard Hot 100 1986 1985', 'Billboard Hot 100']}\n",
      "{'id': '3ec59f52-9e06-447f-b4a3-0b7f472b2768', 'title': '', 'artist': [{}], 'youtube_title': 'Ooh Baby by Mario', 'source': 'Billboard Hot 100', 'match_score': 90.90909, 'source_artist': 'Mario', 'source_title': 'Ooh Baby', 'tags': ['Billboard', 'Billboard Hot 100 2010', 'Billboard Hot 100']}\n",
      "{'id': 'ff8ad0b1-57cb-4913-8c60-4d7852077c84', 'title': '', 'artist': [{}], 'youtube_title': 'Overjoyed - Stevie Wonder', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Stevie Wonder', 'source_title': 'Overjoyed', 'tags': ['Billboard', 'Billboard Hot 100 1986', 'Billboard Hot 100']}\n",
      "{'id': '9c646e2a-64c3-48f2-9f7f-1bccbde100fa', 'title': '', 'artist': [{}], 'youtube_title': 'People In Love - 10cc', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': '10cc', 'source_title': 'People In Love', 'tags': ['Billboard', 'Billboard Hot 100 1977', 'Billboard Hot 100']}\n",
      "{'id': 'dbf7da4e-f078-4e2e-aaff-cbb86b0a33e6', 'title': '', 'artist': [{}], 'youtube_title': 'Perfect Combination - Stacy Lattisaw & Johnny Gill.wmv', 'source': 'Billboard Hot 100', 'match_score': 96.15385, 'source_artist': 'Stacy Lattisaw & Johnny Gill', 'source_title': 'Perfect Combination', 'tags': ['Billboard', 'Billboard Hot 100 1984', 'Billboard Hot 100']}\n",
      "{'id': 'de38d9f9-d530-48c3-9616-9d4ce4084e9f', 'title': '', 'artist': [{}], 'youtube_title': 'Pieces of April - Three Dog Night', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Three Dog Night', 'source_title': 'Pieces Of April', 'tags': ['Billboard', 'Billboard Hot 100 1972 1973', 'Billboard Hot 100']}\n",
      "{'id': 'ae1b6153-a99e-452c-afc9-d363d04afee3', 'title': '', 'artist': [{}], 'youtube_title': 'Please Come To Boston-Dave Loggins', 'source': 'Billboard Hot 100', 'match_score': 97.14286, 'source_artist': 'Dave Loggins', 'source_title': 'Please Come To Boston', 'tags': ['Billboard', 'Billboard Hot 100 1974', 'Billboard Hot 100']}\n",
      "{'id': '21f9dc9c-7f05-43b7-9cc2-f6fd29d54bc9', 'title': '', 'artist': [{}], 'youtube_title': '\"Please Don\\'t Go\" - Mike Posner', 'source': 'Billboard Hot 100', 'match_score': 96.666664, 'source_artist': 'Mike Posner', 'source_title': \"Please Don't Go\", 'tags': ['Billboard', 'Billboard Hot 100 2010 2011', 'Billboard Hot 100']}\n",
      "{'id': 'b141bc75-6ddb-476a-9909-1228e69ea872', 'title': '', 'artist': [{}], 'youtube_title': \"Please Don't Go - Mike Posner & LSD\", 'source': 'Billboard Hot 100', 'match_score': 90.625, 'source_artist': 'Mike Posner', 'source_title': \"Please Don't Go\", 'tags': ['Billboard', 'Billboard Hot 100 2010 2011', 'Billboard Hot 100']}\n",
      "{'id': '16b6c355-a4b6-408d-92d6-74a5dbaaae37', 'title': '', 'artist': [{}], 'youtube_title': '\"Please Don\\'t Talk to the Lifeguard\" - Diane Ray', 'source': 'Billboard Hot 100', 'match_score': 97.87234, 'source_artist': 'Diane Ray', 'source_title': \"Please Don't Talk To The Lifeguard\", 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': '8e114af5-19f2-4a77-b227-3d6e3fc93b85', 'title': '', 'artist': [{}], 'youtube_title': \"Please Help Me I'm Fallin' - Hank Locklin\", 'source': 'Billboard Hot 100', 'match_score': 96.385544, 'source_artist': 'Hank Locklin', 'source_title': \"Please Help Me, I'm Falling\", 'tags': ['Billboard', 'Billboard Hot 100 1960', 'Billboard Hot 100']}\n",
      "{'id': '954150a0-ec8c-4995-a078-1f39a0ba6953', 'title': '', 'artist': [{}], 'youtube_title': 'Poor Little Fool - Ricky Nelson', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ricky Nelson', 'source_title': 'Poor Little Fool', 'tags': ['Billboard', 'Billboard Hot 100 1958', 'Billboard Hot 100']}\n",
      "{'id': '57991de8-fadf-41fc-b5ab-afd3d4abcc72', 'title': '', 'artist': [{}], 'youtube_title': 'Pour Me- Trick Pony', 'source': 'Billboard Hot 100', 'match_score': 97.4359, 'source_artist': 'Trick Pony', 'source_title': 'Pour Me', 'tags': ['Billboard', 'Billboard Hot 100 2001', 'Billboard Hot 100']}\n",
      "{'id': '15701d41-5ff4-47ee-bb28-7fe9c48d2de4', 'title': '', 'artist': [{}], 'youtube_title': 'Problem ~ Ariana Grande feat. Iggy Azalea', 'source': 'Billboard Hot 100', 'match_score': 90.69768, 'source_artist': 'Ariana Grande Featuring Iggy Azalea', 'source_title': 'Problem', 'tags': ['Billboard', 'Billboard Hot 100 2014', 'Billboard Hot 100']}\n",
      "{'id': '0e876ba1-d043-4b05-b1b1-fff6527232c6', 'title': '', 'artist': [{}], 'youtube_title': '\"Psychedelic Shack\" by The Temptations', 'source': 'Billboard Hot 100', 'match_score': 93.15069, 'source_artist': 'The Temptations', 'source_title': 'Psychedelic Shack', 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': 'd72aac25-6a4e-40b3-8053-7d52eda8af6c', 'title': '', 'artist': [{}], 'youtube_title': \"Put Your Hands Together  - The O'Jays\", 'source': 'Billboard Hot 100', 'match_score': 98.630135, 'source_artist': \"The O'Jays\", 'source_title': 'Put Your Hands Together', 'tags': ['Billboard', 'Billboard Hot 100 1974 1973', 'Billboard Hot 100']}\n",
      "{'id': 'ca618abf-ebae-427e-8d71-8d86c068f7fd', 'title': '', 'artist': [{}], 'youtube_title': 'PUT YOUR HEAD ON MY SHOULDER - LETTERMEN', 'source': 'Billboard Hot 100', 'match_score': 95.2381, 'source_artist': 'The Lettermen', 'source_title': 'Put Your Head On My Shoulder', 'tags': ['Billboard', 'Billboard Hot 100 1968', 'Billboard Hot 100']}\n",
      "{'id': '59df1879-48ff-441c-bba5-7d0665a9d1a0', 'title': '', 'artist': [{}], 'youtube_title': 'Raindrops-Dee Clark', 'source': 'Billboard Hot 100', 'match_score': 95.0, 'source_artist': 'Dee Clark', 'source_title': 'Raindrops', 'tags': ['Billboard', 'Billboard Hot 100 1961', 'Billboard Hot 100']}\n",
      "{'id': '38f1e92c-aae0-4b5d-99bf-93ca771af3c7', 'title': '', 'artist': [{}], 'youtube_title': \"Ramblin' Rose - Nat King Cole\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Nat King Cole', 'source_title': \"Ramblin' Rose\", 'tags': ['Billboard', 'Billboard Hot 100 1962', 'Billboard Hot 100']}\n",
      "{'id': '7613b615-1589-4813-8dca-8f0a86ebb82b', 'title': '', 'artist': [{}], 'youtube_title': \"Rappin' Rodney - Rodney Dangerfield\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Rodney Dangerfield', 'source_title': \"Rappin' Rodney\", 'tags': ['Billboard', 'Billboard Hot 100 1983 1984', 'Billboard Hot 100']}\n",
      "{'id': '6bcc8601-0239-473e-8b8e-d30c193d2ba6', 'title': '', 'artist': [{}], 'youtube_title': 'Reach Out Your Hand - The Brotherhood Of Man', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Brotherhood Of Man', 'source_title': 'Reach Out Your Hand', 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': 'e9d2e12f-169e-4a6a-96e8-61d49cd6fb15', 'title': '', 'artist': [{}], 'youtube_title': 'Real Life - The Weeknd', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Weeknd', 'source_title': 'Real Life', 'tags': ['Billboard', 'Billboard Hot 100 2015', 'Billboard Hot 100']}\n",
      "{'id': '730dbca2-76b0-459d-b7a1-ac71c128b0c9', 'title': '', 'artist': [{}], 'youtube_title': 'Remember Me - T.I. feat Mary J Blige', 'source': 'Billboard Hot 100', 'match_score': 92.30769, 'source_artist': 'T.I. Featuring Mary J. Blige', 'source_title': 'Remember Me', 'tags': ['Billboard', 'Billboard Hot 100 2009', 'Billboard Hot 100']}\n",
      "{'id': '4b9f913b-18a8-4d92-8599-4e8aedf67a46', 'title': '', 'artist': [{}], 'youtube_title': 'I Remember What You Like - Jenny Burton', 'source': 'Billboard Hot 100', 'match_score': 97.36842, 'source_artist': 'Jenny Burton', 'source_title': 'Remember What You Like', 'tags': ['Billboard', 'Billboard Hot 100 1984', 'Billboard Hot 100']}\n",
      "{'id': '10a2d381-33d0-4950-9412-fe787d9d504d', 'title': '', 'artist': [{}], 'youtube_title': '\"Replay\" - Iyaz', 'source': 'Billboard Hot 100', 'match_score': 92.85714, 'source_artist': 'Iyaz', 'source_title': 'Replay', 'tags': ['Billboard', 'Billboard Hot 100 2009 2010', 'Billboard Hot 100']}\n",
      "{'id': 'cc9ac99d-cafd-47ec-aa26-a7d310829fd3', 'title': '', 'artist': [{}], 'youtube_title': 'Respect Yourself-The Staples Singers', 'source': 'Billboard Hot 100', 'match_score': 95.89041, 'source_artist': 'The Staple Singers', 'source_title': 'Respect Yourself', 'tags': ['Billboard', 'Billboard Hot 100 1971 1972', 'Billboard Hot 100']}\n",
      "{'id': '6a92529b-b6d1-45d6-ab61-6b30344e4108', 'title': '', 'artist': [{}], 'youtube_title': 'Right next to me by Whistle', 'source': 'Billboard Hot 100', 'match_score': 94.33962, 'source_artist': 'Whistle', 'source_title': 'Right Next To Me', 'tags': ['Billboard', 'Billboard Hot 100 1989', 'Billboard Hot 100']}\n",
      "{'id': '22eac5c0-21a6-4061-b2fb-03fdaa3e345c', 'title': '', 'artist': [{}], 'youtube_title': 'Rock and Roll Music- The Beach Boys', 'source': 'Billboard Hot 100', 'match_score': 98.59155, 'source_artist': 'The Beach Boys', 'source_title': 'Rock And Roll Music', 'tags': ['Billboard', 'Billboard Hot 100 1976', 'Billboard Hot 100']}\n",
      "{'id': '2cffb071-c8cf-47e9-99e0-2d7744d88d2a', 'title': '', 'artist': [{}], 'youtube_title': '\"Rock On\" Tucker Beathard', 'source': 'Billboard Hot 100', 'match_score': 92.0, 'source_artist': 'Tucker Beathard', 'source_title': 'Rock On', 'tags': ['Billboard', 'Billboard Hot 100 2016', 'Billboard Hot 100']}\n",
      "{'id': '4f402e38-1e68-40c9-8e6e-19d34ba4e742', 'title': '', 'artist': [{}], 'youtube_title': 'Run For The Roses By Dan Fogelberg', 'source': 'Billboard Hot 100', 'match_score': 95.522385, 'source_artist': 'Dan Fogelberg', 'source_title': 'Run For The Roses', 'tags': ['Billboard', 'Billboard Hot 100 1982', 'Billboard Hot 100']}\n",
      "{'id': '9631ef14-7c29-43a8-83d5-4571ef2d4e6e', 'title': '', 'artist': [{}], 'youtube_title': 'Santa & The Touchables -  Dickie Goodman 1961', 'source': 'Billboard Hot 100', 'match_score': 92.85714, 'source_artist': 'Dickie Goodman', 'source_title': 'Santa & The Touchables', 'tags': ['Billboard', 'Billboard Hot 100 1961', 'Billboard Hot 100']}\n",
      "{'id': 'aba0edb2-9ada-45a4-8c7c-14e5d7967149', 'title': '', 'artist': [{}], 'youtube_title': 'Save the Country by the Fifth Dimension', 'source': 'Billboard Hot 100', 'match_score': 90.666664, 'source_artist': 'The 5th Dimension', 'source_title': 'Save The Country', 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': '88cf1650-ff5d-4dda-85ec-90d6d227310f', 'title': '', 'artist': [{}], 'youtube_title': 'Shadow dancing   Andy Gibb', 'source': 'Billboard Hot 100', 'match_score': 96.15385, 'source_artist': 'Andy Gibb', 'source_title': 'Shadow Dancing', 'tags': ['Billboard', 'Billboard Hot 100 1978', 'Billboard Hot 100']}\n",
      "{'id': '1f85f2e2-74ec-4ff7-870d-46ff8919dad0', 'title': '', 'artist': [{}], 'youtube_title': 'Shangri-La ~ The Lettermen.', 'source': 'Billboard Hot 100', 'match_score': 94.33962, 'source_artist': 'The Lettermen', 'source_title': 'Shangri-La', 'tags': ['Billboard', 'Billboard Hot 100 1969', 'Billboard Hot 100']}\n",
      "{'id': '50442150-d6f9-44f4-9849-44312b2434e8', 'title': '', 'artist': [{}], 'youtube_title': '\"She Said Yes\" by Wilson Pickett', 'source': 'Billboard Hot 100', 'match_score': 91.803276, 'source_artist': 'Wilson Pickett', 'source_title': 'She Said Yes', 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': 'f5dff690-0ef6-4c77-92ec-08726eb922f0', 'title': '', 'artist': [{}], 'youtube_title': 'She Say (Oom Dooby Doom) - The Diamonds', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Diamonds', 'source_title': 'She Say (Oom Dooby Doom)', 'tags': ['Billboard', 'Billboard Hot 100 1959', 'Billboard Hot 100']}\n",
      "{'id': '879a8dc9-9063-4602-b0a0-94c6546b22b0', 'title': '', 'artist': [{}], 'youtube_title': 'She Wants To Dance With Me - Rick Astley', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Rick Astley', 'source_title': 'She Wants To Dance With Me', 'tags': ['Billboard', 'Billboard Hot 100 1989 1988', 'Billboard Hot 100']}\n",
      "{'id': '61de759e-7521-4b1c-8432-44defb233c0a', 'title': '', 'artist': [{}], 'youtube_title': 'Shut Down The Beach Boys', 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'The Beach Boys', 'source_title': 'Shut Down', 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': 'aeceb06d-bbb9-44eb-b139-64330a46e827', 'title': '', 'artist': [{}], 'youtube_title': \"Silhouettes - Herman's Hermits\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': \"Herman's Hermits\", 'source_title': 'Silhouettes', 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': 'f5ff1888-852d-4a98-9b79-b12304e9fa57', 'title': '', 'artist': [{}], 'youtube_title': 'Since I Fell For You - Laura Lee - 1971', 'source': 'Billboard Hot 100', 'match_score': 90.14085, 'source_artist': 'Laura Lee', 'source_title': 'Since I Fell For You', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': 'ccfbcb24-c124-4a4e-93c0-0c9ed0c9f6dc', 'title': '', 'artist': [{}], 'youtube_title': '\"Since I Fell for You\" Lenny Welch', 'source': 'Billboard Hot 100', 'match_score': 94.117645, 'source_artist': 'Lenny Welch', 'source_title': 'Since I Fell For You', 'tags': ['Billboard', 'Billboard Hot 100 1964 1963', 'Billboard Hot 100']}\n",
      "{'id': 'ed211e42-9afc-430e-9334-b4384fdd181c', 'title': '', 'artist': [{}], 'youtube_title': 'Since I Lost My Baby - The Action', 'source': 'Billboard Hot 100', 'match_score': 90.14085, 'source_artist': 'The Temptations', 'source_title': 'Since I Lost My Baby', 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': '1cd61e28-3a60-4d52-b619-605562d2c53a', 'title': '', 'artist': [{}], 'youtube_title': 'Single Ladies (Put A Ring On It) - Beyonce', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Beyonce', 'source_title': 'Single Ladies (Put A Ring On It)', 'tags': ['Billboard', 'Billboard Hot 100 2009 2008', 'Billboard Hot 100']}\n",
      "{'id': 'c9439ea5-c980-4d23-902c-7757a3e4aaaa', 'title': '', 'artist': [{}], 'youtube_title': 'Six Days on the Road Dave Dudley', 'source': 'Billboard Hot 100', 'match_score': 96.969696, 'source_artist': 'Dave Dudley', 'source_title': 'Six Days On The Road', 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': 'c68169a9-0eea-407e-af47-39e1e016d4ce', 'title': '', 'artist': [{}], 'youtube_title': 'Slip Away- Clarence Carter', 'source': 'Billboard Hot 100', 'match_score': 98.113205, 'source_artist': 'Clarence Carter', 'source_title': 'Slip Away', 'tags': ['Billboard', 'Billboard Hot 100 1968', 'Billboard Hot 100']}\n",
      "{'id': '357c2c69-2871-41fe-a6d3-bb4a3059bb27', 'title': '', 'artist': [{}], 'youtube_title': 'Smoky Mountain Rain - Ronnie Milsap', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Ronnie Milsap', 'source_title': 'Smoky Mountain Rain', 'tags': ['Billboard', 'Billboard Hot 100 1980 1981', 'Billboard Hot 100']}\n",
      "{'id': 'af4040b4-c4d0-429a-8c7f-79f53e289287', 'title': '', 'artist': [{}], 'youtube_title': 'So Good So Right by Brenda Russell', 'source': 'Billboard Hot 100', 'match_score': 94.117645, 'source_artist': 'Brenda Russell', 'source_title': 'So Good, So Right', 'tags': ['Billboard', 'Billboard Hot 100 1979', 'Billboard Hot 100']}\n",
      "{'id': '7cfa0a45-12e8-4689-aa25-3bb5a4493aa5', 'title': '', 'artist': [{}], 'youtube_title': 'SO I CAN LOVE YOU     THE EMOTIONS', 'source': 'Billboard Hot 100', 'match_score': 93.93939, 'source_artist': 'The Emotions', 'source_title': 'So I Can Love You', 'tags': ['Billboard', 'Billboard Hot 100 1969', 'Billboard Hot 100']}\n",
      "{'id': 'c8336a3e-9da2-45f2-a703-9c9edebf67cb', 'title': '', 'artist': [{}], 'youtube_title': 'Some Days You Gotta Dance by the Dixie Chicks', 'source': 'Billboard Hot 100', 'match_score': 91.76471, 'source_artist': 'Dixie Chicks', 'source_title': 'Some Days You Gotta Dance', 'tags': ['Billboard', 'Billboard Hot 100 2002', 'Billboard Hot 100']}\n",
      "{'id': '9d80ef2e-701b-490e-9b67-c9132b7c709b', 'title': '', 'artist': [{}], 'youtube_title': 'Something About the Sunshine - Christopher Wilde & Anna Margaret (Track4)', 'source': 'Billboard Hot 100', 'match_score': 93.43066, 'source_artist': 'Christopher Wilde & Anna Margaret', 'source_title': 'Something About The Sunshine', 'tags': ['Billboard', 'Billboard Hot 100 2010', 'Billboard Hot 100']}\n",
      "{'id': '979eb317-2105-49e7-81e3-81d823970e4a', 'title': '', 'artist': [{}], 'youtube_title': '\"Sooner Or Later\" -- Breaking Benjamin', 'source': 'Billboard Hot 100', 'match_score': 95.89041, 'source_artist': 'Breaking Benjamin', 'source_title': 'Sooner Or Later', 'tags': ['Billboard', 'Billboard Hot 100 2005', 'Billboard Hot 100']}\n",
      "{'id': '2880a1e6-d37a-47c8-a871-e4a422e81686', 'title': '', 'artist': [{}], 'youtube_title': 'Speak to the Sky - Rick Springfield', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Rick Springfield', 'source_title': 'Speak To The Sky', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': '63edb065-0156-447f-99f5-abf8a566f3a7', 'title': '', 'artist': [{}], 'youtube_title': 'Star Baby- The Guess Who', 'source': 'Billboard Hot 100', 'match_score': 97.95918, 'source_artist': 'The Guess Who', 'source_title': 'Star Baby', 'tags': ['Billboard', 'Billboard Hot 100 1974', 'Billboard Hot 100']}\n",
      "{'id': 'de01e544-ccc1-4f2d-81c0-9373354b6183', 'title': '', 'artist': [{}], 'youtube_title': 'Stormy ~ Santana', 'source': 'Billboard Hot 100', 'match_score': 93.75, 'source_artist': 'Santana', 'source_title': 'Stormy', 'tags': ['Billboard', 'Billboard Hot 100 1979', 'Billboard Hot 100']}\n",
      "{'id': '9ede23e8-6b0f-4b88-b4e1-33f27e5c604e', 'title': '', 'artist': [{}], 'youtube_title': 'Strength - The Alarm', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Alarm', 'source_title': 'Strength', 'tags': ['Billboard', 'Billboard Hot 100 1986 1985', 'Billboard Hot 100']}\n",
      "{'id': 'e78a5a3f-938e-4779-9f21-8899262090c0', 'title': '', 'artist': [{}], 'youtube_title': \"Stuck In A Moment You Can't Get Out Of\", 'source': 'Billboard Hot 100', 'match_score': 93.82716, 'source_artist': 'U2', 'source_title': \"Stuck In A Moment You Can't Get Out Of\", 'tags': ['Billboard', 'Billboard Hot 100 2001 2002', 'Billboard Hot 100']}\n",
      "{'id': 'd6dc343e-b7b1-4ab2-91c0-7f4d71961c5b', 'title': '', 'artist': [{}], 'youtube_title': 'Sunshine - Jonathan Edwards', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jonathan Edwards', 'source_title': 'Sunshine', 'tags': ['Billboard', 'Billboard Hot 100 1971 1972', 'Billboard Hot 100']}\n",
      "{'id': 'f2c724e6-f2db-4ecc-b8e2-36ccd04e9c2c', 'title': '', 'artist': [{}], 'youtube_title': 'Sunshine Superman- Donovan', 'source': 'Billboard Hot 100', 'match_score': 98.113205, 'source_artist': 'Donovan', 'source_title': 'Sunshine Superman', 'tags': ['Billboard', 'Billboard Hot 100 1966', 'Billboard Hot 100']}\n",
      "{'id': '845c4583-35a3-4b1c-8af6-a51ee83a974a', 'title': '', 'artist': [{}], 'youtube_title': 'SURVIVE By Jimmy Buffett', 'source': 'Billboard Hot 100', 'match_score': 93.61702, 'source_artist': 'Jimmy Buffett', 'source_title': 'Survive', 'tags': ['Billboard', 'Billboard Hot 100 1980', 'Billboard Hot 100']}\n",
      "{'id': '2a75dc75-a1c1-4573-9523-d0d72e6ffb63', 'title': '', 'artist': [{}], 'youtube_title': \"SWAYIN' TO THE MUSIC (Slow Dancin') By Johnny Rivers\", 'source': 'Billboard Hot 100', 'match_score': 97.08738, 'source_artist': 'Johnny Rivers', 'source_title': \"Swayin' To The Music (slow Dancin')\", 'tags': ['Billboard', 'Billboard Hot 100 1977', 'Billboard Hot 100']}\n",
      "{'id': '553fa5e3-a0fb-47fc-8525-886ce6092a43', 'title': '', 'artist': [{}], 'youtube_title': 'Sweater Weather - The Neighbourhood', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Neighbourhood', 'source_title': 'Sweater Weather', 'tags': ['Billboard', 'Billboard Hot 100 2014 2013', 'Billboard Hot 100']}\n",
      "{'id': 'd4f6ba05-6fd3-431d-b481-3bb6f978147a', 'title': '', 'artist': [{}], 'youtube_title': 'Sweet Seasons - Carole King', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Carole King', 'source_title': 'Sweet Seasons', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': 'a3a0aa25-1514-4100-b062-6937f4ac0250', 'title': '', 'artist': [{}], 'youtube_title': 'Sweetest Thing - U2', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'U2', 'source_title': 'Sweetest Thing', 'tags': ['Billboard', 'Billboard Hot 100 1999 1998', 'Billboard Hot 100']}\n",
      "{'id': '907c231f-7497-4d6a-9d20-49236e602530', 'title': '', 'artist': [{}], 'youtube_title': 'Take Me To The River  -  Talking Heads', 'source': 'Billboard Hot 100', 'match_score': 97.297295, 'source_artist': 'Talking Heads', 'source_title': 'Take Me To The River', 'tags': ['Billboard', 'Billboard Hot 100 1978 1979', 'Billboard Hot 100']}\n",
      "{'id': '591e6a63-cacf-4f3c-aee0-ef690f068be1', 'title': '', 'artist': [{}], 'youtube_title': 'Taken In - Mike & The Mechanics.', 'source': 'Billboard Hot 100', 'match_score': 95.2381, 'source_artist': 'Mike + The Mechanics', 'source_title': 'Taken In', 'tags': ['Billboard', 'Billboard Hot 100 1986', 'Billboard Hot 100']}\n",
      "{'id': 'b89bd651-4dc1-46fd-b310-8a946a754975', 'title': '', 'artist': [{}], 'youtube_title': 'Taki Taki - DJ Snake ft. Selena Gomez, Ozuna & Cardi B', 'source': 'Billboard Hot 100', 'match_score': 92.98245, 'source_artist': 'DJ Snake Featuring Selena Gomez, Ozuna & Cardi B', 'source_title': 'Taki Taki', 'tags': ['Billboard', 'Billboard Hot 100 2018', 'Billboard Hot 100']}\n",
      "{'id': 'b637c175-612c-44b3-b965-d14cc1bf6802', 'title': '', 'artist': [{}], 'youtube_title': \"Takin' It To The Streets - The Doobie Brothers (1976)\", 'source': 'Billboard Hot 100', 'match_score': 92.92929, 'source_artist': 'The Doobie Brothers', 'source_title': \"Takin' It To The Streets\", 'tags': ['Billboard', 'Billboard Hot 100 1976', 'Billboard Hot 100']}\n",
      "{'id': 'faa0c11b-de67-4183-92ff-17cf9a54da73', 'title': '', 'artist': [{}], 'youtube_title': 'Taxi Dancing - Rick Springfield  (with Randy Crawford)', 'source': 'Billboard Hot 100', 'match_score': 97.14286, 'source_artist': 'Rick Springfield With Randy Crawford', 'source_title': 'Taxi Dancing', 'tags': ['Billboard', 'Billboard Hot 100 1985 1984', 'Billboard Hot 100']}\n",
      "{'id': 'af696029-ad3f-4b8f-b939-fdbe786f25cd', 'title': '', 'artist': [{}], 'youtube_title': 'Tell It Like It Is Lyrics - Aaron Neville', 'source': 'Billboard Hot 100', 'match_score': 90.666664, 'source_artist': 'Aaron Neville', 'source_title': 'Tell It Like It Is', 'tags': ['Billboard', 'Billboard Hot 100 1967 1966', 'Billboard Hot 100']}\n",
      "{'id': '7d9b0486-6cb6-4e1b-b85a-9ba301f37e0d', 'title': '', 'artist': [{}], 'youtube_title': 'Temptation Bout To Get Me - The Knight Brothers', 'source': 'Billboard Hot 100', 'match_score': 93.478264, 'source_artist': 'The Knight Bros.', 'source_title': \"Temptation 'Bout To Get Me\", 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': '216ab147-de25-46e2-9e0d-50e8bcbf271a', 'title': '', 'artist': [{}], 'youtube_title': \"'Temptation Eyes' by The Grass Roots\", 'source': 'Billboard Hot 100', 'match_score': 92.753624, 'source_artist': 'The Grass Roots', 'source_title': 'Temptation Eyes', 'tags': ['Billboard', 'Billboard Hot 100 1971 1970', 'Billboard Hot 100']}\n",
      "{'id': 'bee40158-a60d-4463-9524-65b698918c00', 'title': '', 'artist': [{}], 'youtube_title': 'The Air That I Breath - The Hollies', 'source': 'Billboard Hot 100', 'match_score': 98.59155, 'source_artist': 'The Hollies', 'source_title': 'The Air That I Breathe', 'tags': ['Billboard', 'Billboard Hot 100 1974', 'Billboard Hot 100']}\n",
      "{'id': '120fbb0d-8571-4eed-8105-f9c05ca56e8f', 'title': '', 'artist': [{}], 'youtube_title': 'The Beginning Of My End- The Unifics', 'source': 'Billboard Hot 100', 'match_score': 98.630135, 'source_artist': 'The Unifics', 'source_title': 'The Beginning Of My End', 'tags': ['Billboard', 'Billboard Hot 100 1969 1968', 'Billboard Hot 100']}\n",
      "{'id': '98524c62-1212-42c9-836d-0c9f7c5b7c5c', 'title': '', 'artist': [{}], 'youtube_title': 'The Biggest Parakeets In Town , Jud Strunk , 1975', 'source': 'Billboard Hot 100', 'match_score': 90.10989, 'source_artist': 'Jud Strunk', 'source_title': 'The Biggest Parakeets In Town', 'tags': ['Billboard', 'Billboard Hot 100 1975', 'Billboard Hot 100']}\n",
      "{'id': '689ffe1b-93be-406f-88af-e9ba320b8407', 'title': '', 'artist': [{}], 'youtube_title': 'The Blue Side - Crystal Gayle', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'The Blue Side', 'tags': ['Billboard', 'Billboard Hot 100 1980', 'Billboard Hot 100']}\n",
      "{'id': '6b641556-d244-484f-8481-d9436db36c42', 'title': '', 'artist': [{}], 'youtube_title': 'The Boys are Back in Town - Thin Lizzy (1976)', 'source': 'Billboard Hot 100', 'match_score': 91.56626, 'source_artist': 'Thin Lizzy', 'source_title': 'The Boys Are Back In Town', 'tags': ['Billboard', 'Billboard Hot 100 1976', 'Billboard Hot 100']}\n",
      "{'id': '0287ee5d-69b1-4926-8ac7-deee4395a60b', 'title': '', 'artist': [{}], 'youtube_title': 'The Cisco kid- War', 'source': 'Billboard Hot 100', 'match_score': 97.297295, 'source_artist': 'War', 'source_title': 'The Cisco Kid', 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': '881c08d6-551e-4b09-be35-e7d2c4c134bb', 'title': '', 'artist': [{}], 'youtube_title': 'The End - Earl Grant', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Earl Grant', 'source_title': 'The End', 'tags': ['Billboard', 'Billboard Hot 100 1959 1958', 'Billboard Hot 100']}\n",
      "{'id': '021a3360-315b-4fd9-8a72-417419dd5bd3', 'title': '', 'artist': [{}], 'youtube_title': 'The Greatest Love Of All : George Benson', 'source': 'Billboard Hot 100', 'match_score': 97.5, 'source_artist': 'George Benson', 'source_title': 'The Greatest Love Of All', 'tags': ['Billboard', 'Billboard Hot 100 1977', 'Billboard Hot 100']}\n",
      "{'id': 'ae3035fe-3246-4cab-a65e-6a397603b084', 'title': '', 'artist': [{}], 'youtube_title': 'THE KID IS HOT TONIGHT By Loverboy', 'source': 'Billboard Hot 100', 'match_score': 90.90909, 'source_artist': 'Loverboy', 'source_title': 'The Kid Is Hot Tonite', 'tags': ['Billboard', 'Billboard Hot 100 1981', 'Billboard Hot 100']}\n",
      "{'id': '53bf7971-d038-4e07-a602-3191843e5bab', 'title': '', 'artist': [{}], 'youtube_title': 'The Last Farewell ~ Roger Whittaker', 'source': 'Billboard Hot 100', 'match_score': 97.14286, 'source_artist': 'Roger Whittaker', 'source_title': 'The Last Farewell', 'tags': ['Billboard', 'Billboard Hot 100 1975', 'Billboard Hot 100']}\n",
      "{'id': 'aa9bb1c0-a190-4ab7-9575-12147ee7d528', 'title': '', 'artist': [{}], 'youtube_title': \"The Mountain's High by Dick and Dee Dee\", 'source': 'Billboard Hot 100', 'match_score': 94.73684, 'source_artist': 'Dick and DeeDee', 'source_title': \"The Mountain's High\", 'tags': ['Billboard', 'Billboard Hot 100 1961', 'Billboard Hot 100']}\n",
      "{'id': '4fba0ae8-2c4f-4b0e-9c2a-87c8ca13008b', 'title': '', 'artist': [{}], 'youtube_title': 'THE NAME GAME SHIRLEY ELLIS', 'source': 'Billboard Hot 100', 'match_score': 96.42857, 'source_artist': 'Shirley Ellis', 'source_title': 'The Name Game', 'tags': ['Billboard', 'Billboard Hot 100 1965 1964', 'Billboard Hot 100']}\n",
      "{'id': '5ceab4f8-1da9-4ba4-8ac6-7bc925d17fbf', 'title': '', 'artist': [{}], 'youtube_title': 'The Night Owls  (Little River Band)', 'source': 'Billboard Hot 100', 'match_score': 95.652176, 'source_artist': 'Little River Band', 'source_title': 'The Night Owls', 'tags': ['Billboard', 'Billboard Hot 100 1981 1982', 'Billboard Hot 100']}\n",
      "{'id': 'c5425355-c3b7-44ca-b194-4e4f35559361', 'title': '', 'artist': [{}], 'youtube_title': 'The Other Guy - Little River Band (1983)', 'source': 'Billboard Hot 100', 'match_score': 90.41096, 'source_artist': 'Little River Band', 'source_title': 'The Other Guy', 'tags': ['Billboard', 'Billboard Hot 100 1983 1982', 'Billboard Hot 100']}\n",
      "{'id': 'bfb2d5f5-c1ed-4d3d-9fb4-3eca06b23002', 'title': '', 'artist': [{}], 'youtube_title': '\"The Price\" - Solomon Burke', 'source': 'Billboard Hot 100', 'match_score': 96.15385, 'source_artist': 'Solomon Burke', 'source_title': 'The Price', 'tags': ['Billboard', 'Billboard Hot 100 1964', 'Billboard Hot 100']}\n",
      "{'id': 'd4e0fac0-a857-4639-bf65-ebabd5ca745f', 'title': '', 'artist': [{}], 'youtube_title': 'The Seeker by The Who', 'source': 'Billboard Hot 100', 'match_score': 92.68293, 'source_artist': 'The Who', 'source_title': 'The Seeker', 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': '8a06c05b-d0df-47d7-9ecf-080aa3642c3e', 'title': '', 'artist': [{}], 'youtube_title': '\"The Touchables\"-Dickie Goodman', 'source': 'Billboard Hot 100', 'match_score': 93.548386, 'source_artist': 'Dickie Goodman', 'source_title': 'The Touchables', 'tags': ['Billboard', 'Billboard Hot 100 1961', 'Billboard Hot 100']}\n",
      "{'id': '05431442-9457-4e51-aa64-6860399527c8', 'title': '', 'artist': [{}], 'youtube_title': 'The Way You Do the Things You Do', 'source': 'Billboard Hot 100', 'match_score': 90.14085, 'source_artist': 'UB40', 'source_title': 'The Way You Do The Things You Do', 'tags': ['Billboard', 'Billboard Hot 100 1990 1991', 'Billboard Hot 100']}\n",
      "{'id': '417eec04-9a37-4bf7-9b97-5e9031d2d250', 'title': '', 'artist': [{}], 'youtube_title': 'The Woman In Me - Crystal Gayle', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Crystal Gayle', 'source_title': 'The Woman In Me', 'tags': ['Billboard', 'Billboard Hot 100 1981 1982', 'Billboard Hot 100']}\n",
      "{'id': '26698afc-bb52-4ea9-9287-78b33bf551ae', 'title': '', 'artist': [{}], 'youtube_title': 'The Year That Clayton Delaney Died~Tom T. Hall.wmv', 'source': 'Billboard Hot 100', 'match_score': 91.83673, 'source_artist': 'Tom T. Hall', 'source_title': 'The Year That Clayton Delaney Died', 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': '8eca53ef-7e0f-4ab6-a49c-013e02764484', 'title': '', 'artist': [{}], 'youtube_title': 'This Is My Wish - Jordin Sparks', 'source': 'Billboard Hot 100', 'match_score': 91.803276, 'source_artist': 'Jordin Sparks', 'source_title': 'This Is My Now', 'tags': ['Billboard', 'Billboard Hot 100 2007', 'Billboard Hot 100']}\n",
      "{'id': '0b8f1c7e-4b02-4d61-8b7e-5a4e0e4a2c59', 'title': '', 'artist': [{}], 'youtube_title': \"Those Were The Days , Carroll O'Connor & Jean Stapleton as the Bunkers , 1971\", 'source': 'Billboard Hot 100', 'match_score': 90.06622, 'source_artist': \"Carroll O'Connor And Jean Stapleton (As The Bunkers)\", 'source_title': 'Those Were The Days', 'tags': ['Billboard', 'Billboard Hot 100 1971 1972', 'Billboard Hot 100']}\n",
      "{'id': '00110d3f-0411-4802-922b-4ec4dad7b7f7', 'title': '', 'artist': [{}], 'youtube_title': 'Tie me Kangaroos down, sport - Rolf Harris', 'source': 'Billboard Hot 100', 'match_score': 98.79518, 'source_artist': 'Rolf Harris', 'source_title': 'Tie Me Kangaroo Down, Sport', 'tags': ['Billboard', 'Billboard Hot 100 1963', 'Billboard Hot 100']}\n",
      "{'id': '04c82e7a-4c77-4801-804d-c3ff986fa4db', 'title': '', 'artist': [{}], 'youtube_title': 'Tight Rope / Leon Russell', 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'Leon Russell', 'source_title': 'Tight Rope', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': '9d11c88d-c28f-42fc-9f24-e98f5eb1d7a8', 'title': '', 'artist': [{}], 'youtube_title': '\"To Be Loved\" Jackie Wilson', 'source': 'Billboard Hot 100', 'match_score': 92.59259, 'source_artist': 'Jackie Wilson', 'source_title': 'To Be Loved', 'tags': ['Billboard', 'Billboard Hot 100 1958', 'Billboard Hot 100']}\n",
      "{'id': '21a8f7be-2c13-46d5-8259-6d57d4c437cd', 'title': '', 'artist': [{}], 'youtube_title': 'Together - Tierra', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Tierra', 'source_title': 'Together', 'tags': ['Billboard', 'Billboard Hot 100 1980 1981', 'Billboard Hot 100']}\n",
      "{'id': 'c0e51640-ab54-44f6-bd8d-1b6de4eaaa30', 'title': '', 'artist': [{}], 'youtube_title': 'Too Blind To See It - Kym Sims', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Kym Sims', 'source_title': 'Too Blind To See It', 'tags': ['Billboard', 'Billboard Hot 100 1991 1992', 'Billboard Hot 100']}\n",
      "{'id': '534d53ae-427a-4336-96ba-06d2d3bdf170', 'title': '', 'artist': [{}], 'youtube_title': 'Too Good At Goodbyes - Sam Smith', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Sam Smith', 'source_title': 'Too Good At Goodbyes', 'tags': ['Billboard', 'Billboard Hot 100 2017 2018', 'Billboard Hot 100']}\n",
      "{'id': '768303a5-cdcb-4c3c-937a-c0855a5cb799', 'title': '', 'artist': [{}], 'youtube_title': 'Too late to turn back now - Cornelius Bros and Sister Rose', 'source': 'Billboard Hot 100', 'match_score': 93.22034, 'source_artist': 'Cornelius Brothers & Sister Rose', 'source_title': 'Too Late To Turn Back Now', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': 'b1026116-7636-4d04-8f2e-dbe92f126ef8', 'title': '', 'artist': [{}], 'youtube_title': 'Too Young - Donny Osmond', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Donny Osmond', 'source_title': 'Too Young', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': 'c0ce51bc-138d-4be8-9eb4-e9803d11a988', 'title': '', 'artist': [{}], 'youtube_title': 'Touch a four leaf clover--Atlantic Starr', 'source': 'Billboard Hot 100', 'match_score': 96.296295, 'source_artist': 'Atlantic Starr', 'source_title': 'Touch A Four Leaf Clover', 'tags': ['Billboard', 'Billboard Hot 100 1983 1984', 'Billboard Hot 100']}\n",
      "{'id': 'f695c084-83cd-49d5-a2bc-4512bd6f4b2c', 'title': '', 'artist': [{}], 'youtube_title': 'Trading Places- Usher', 'source': 'Billboard Hot 100', 'match_score': 97.674416, 'source_artist': 'Usher', 'source_title': 'Trading Places', 'tags': ['Billboard', 'Billboard Hot 100 2009 2008', 'Billboard Hot 100']}\n",
      "{'id': '49968f21-37bc-4838-bc89-6f1373910d2c', 'title': '', 'artist': [{}], 'youtube_title': \"Travellin' Man Ricky Nelson\", 'source': 'Billboard Hot 100', 'match_score': 94.545456, 'source_artist': 'Ricky Nelson', 'source_title': \"Travelin' Man\", 'tags': ['Billboard', 'Billboard Hot 100 1961', 'Billboard Hot 100']}\n",
      "{'id': '36bc1b87-c3b9-4976-b266-76ef1e9d2b99', 'title': '', 'artist': [{}], 'youtube_title': 'Try a Little Tenderness - The Commitments', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Commitments', 'source_title': 'Try A Little Tenderness', 'tags': ['Billboard', 'Billboard Hot 100 1991', 'Billboard Hot 100']}\n",
      "{'id': 'f2cd19cb-7d74-4a3a-8165-981d956c4c3d', 'title': '', 'artist': [{}], 'youtube_title': 'Turn Back the Pages - Stephen Stills', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Stephen Stills', 'source_title': 'Turn Back The Pages', 'tags': ['Billboard', 'Billboard Hot 100 1975', 'Billboard Hot 100']}\n",
      "{'id': '69cb6c7b-3170-4b69-94b9-1e6b421280ef', 'title': '', 'artist': [{}], 'youtube_title': 'Turn On A Dream by The Box Tops', 'source': 'Billboard Hot 100', 'match_score': 95.08197, 'source_artist': 'The Box Tops', 'source_title': 'Turn On A Dream', 'tags': ['Billboard', 'Billboard Hot 100 1969', 'Billboard Hot 100']}\n",
      "{'id': '961dced3-5abb-4359-8945-1e72fcd710f7', 'title': '', 'artist': [{}], 'youtube_title': 'twisting the night away-rod stewart', 'source': 'Billboard Hot 100', 'match_score': 97.22222, 'source_artist': 'Rod Stewart', 'source_title': 'Twisting The Night Away', 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': 'b36970b0-fb2a-4534-9999-ddd02837b596', 'title': '', 'artist': [{}], 'youtube_title': 'UNBROKEN * Tim McGraw', 'source': 'Billboard Hot 100', 'match_score': 95.2381, 'source_artist': 'Tim McGraw', 'source_title': 'Unbroken', 'tags': ['Billboard', 'Billboard Hot 100 2002', 'Billboard Hot 100']}\n",
      "{'id': '05f30729-3e1b-4322-8843-2bcd425dc63f', 'title': '', 'artist': [{}], 'youtube_title': 'Under Pressure- Queen Feat. David Bowie', 'source': 'Billboard Hot 100', 'match_score': 90.666664, 'source_artist': 'Queen & David Bowie', 'source_title': 'Under Pressure', 'tags': ['Billboard', 'Billboard Hot 100 1981 1982 2016', 'Billboard Hot 100']}\n",
      "{'id': '704037d5-045b-41d1-8146-6de1147b5700', 'title': '', 'artist': [{}], 'youtube_title': 'United We Stand - Brotherhood of Man', 'source': 'Billboard Hot 100', 'match_score': 94.73684, 'source_artist': 'The Brotherhood Of Man', 'source_title': 'United We Stand', 'tags': ['Billboard', 'Billboard Hot 100 1970', 'Billboard Hot 100']}\n",
      "{'id': 'dfc43f88-786d-4a9d-bbec-6a645367610b', 'title': '', 'artist': [{}], 'youtube_title': 'Up Where We Belong -- Joe Cocker & Jennifer Warnes', 'source': 'Billboard Hot 100', 'match_score': 95.04951, 'source_artist': 'Joe Cocker And Jennifer Warnes', 'source_title': 'Up Where We Belong', 'tags': ['Billboard', 'Billboard Hot 100 1983 1982', 'Billboard Hot 100']}\n",
      "{'id': '2f1a6c52-fca9-4b5a-9bce-914c4a0480cc', 'title': '', 'artist': [{}], 'youtube_title': 'Vengeance - Carly Simon', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Carly Simon', 'source_title': 'Vengeance', 'tags': ['Billboard', 'Billboard Hot 100 1979', 'Billboard Hot 100']}\n",
      "{'id': 'ea6b6cb2-b1f8-48b9-b74e-7ee085af5250', 'title': '', 'artist': [{}], 'youtube_title': 'Volunteers - Jefferson Airplane', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jefferson Airplane', 'source_title': 'Volunteers', 'tags': ['Billboard', 'Billboard Hot 100 1969 1970', 'Billboard Hot 100']}\n",
      "{'id': '2bc48245-7a37-47a5-b546-b90cdb1fb1d2', 'title': '', 'artist': [{}], 'youtube_title': 'Walk it out - UNK', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Unk', 'source_title': 'Walk It Out', 'tags': ['Billboard', 'Billboard Hot 100 2006 2007', 'Billboard Hot 100']}\n",
      "{'id': 'a6de898f-91d2-4110-a312-7bee27437b87', 'title': '', 'artist': [{}], 'youtube_title': 'Want It Need It- Plies feat Ashanti', 'source': 'Billboard Hot 100', 'match_score': 90.90909, 'source_artist': 'Plies Featuring Ashanti', 'source_title': 'Want It, Need It', 'tags': ['Billboard', 'Billboard Hot 100 2009', 'Billboard Hot 100']}\n",
      "{'id': '1fb1975c-0d34-4eef-b514-cbbe75467e4c', 'title': '', 'artist': [{}], 'youtube_title': 'Well All Right ~ Santana', 'source': 'Billboard Hot 100', 'match_score': 95.833336, 'source_artist': 'Santana', 'source_title': 'Well All Right', 'tags': ['Billboard', 'Billboard Hot 100 1978', 'Billboard Hot 100']}\n",
      "{'id': '0c0020b0-a5bb-4071-8570-aa79298fb7db', 'title': '', 'artist': [{}], 'youtube_title': \"What A Woman In Love Won't Do  --   Sandy Posey 1967\", 'source': 'Billboard Hot 100', 'match_score': 90.52631, 'source_artist': 'Sandy Posey', 'source_title': \"What A Woman In Love Won't Do\", 'tags': ['Billboard', 'Billboard Hot 100 1967', 'Billboard Hot 100']}\n",
      "{'id': '63759b17-940e-4812-84df-83a2359d6d60', 'title': '', 'artist': [{}], 'youtube_title': '\"What Becomes Of The Broken Hearted\"- Paul Young', 'source': 'Billboard Hot 100', 'match_score': 95.74468, 'source_artist': 'Paul Young', 'source_title': 'What Becomes Of The Brokenhearted', 'tags': ['Billboard', 'Billboard Hot 100 1992', 'Billboard Hot 100']}\n",
      "{'id': 'fd2bc526-54a6-4c2f-909f-eca54e593672', 'title': '', 'artist': [{}], 'youtube_title': 'What it is - The Undisputed Truth', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'The Undisputed Truth', 'source_title': 'What It Is', 'tags': ['Billboard', 'Billboard Hot 100 1972', 'Billboard Hot 100']}\n",
      "{'id': '93f21bb0-cb4d-44cb-8651-c7ee111b9e38', 'title': '', 'artist': [{}], 'youtube_title': \"WHEN IT'S OVER By Loverboy\", 'source': 'Billboard Hot 100', 'match_score': 94.117645, 'source_artist': 'Loverboy', 'source_title': \"When It's Over\", 'tags': ['Billboard', 'Billboard Hot 100 1982', 'Billboard Hot 100']}\n",
      "{'id': 'd1e4310f-e054-40a5-a574-9e3955799933', 'title': '', 'artist': [{}], 'youtube_title': \"When You're Hot You're Hot Jerry Reed\", 'source': 'Billboard Hot 100', 'match_score': 96.1039, 'source_artist': 'Jerry Reed', 'source_title': \"When You're Hot, You're Hot\", 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': '53d6c708-5c92-4814-a134-77de0beb8fac', 'title': '', 'artist': [{}], 'youtube_title': 'Where Does That Leave Love - George Lamond', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'George LaMond', 'source_title': 'Where Does That Leave Love', 'tags': ['Billboard', 'Billboard Hot 100 1992', 'Billboard Hot 100']}\n",
      "{'id': 'c63fe6bb-7f7c-42e8-919b-b482c08908ec', 'title': '', 'artist': [{}], 'youtube_title': 'Where or When by Dion and the Belmonts', 'source': 'Billboard Hot 100', 'match_score': 90.41096, 'source_artist': 'Dion & The Belmonts', 'source_title': 'Where Or When', 'tags': ['Billboard', 'Billboard Hot 100 1959 1960', 'Billboard Hot 100']}\n",
      "{'id': 'df092bb2-d839-45d3-a52f-dc099b3f16a6', 'title': '', 'artist': [{}], 'youtube_title': 'Where the Streets Have No Name', 'source': 'Billboard Hot 100', 'match_score': 92.30769, 'source_artist': 'U2', 'source_title': 'Where The Streets Have No Name', 'tags': ['Billboard', 'Billboard Hot 100 1987', 'Billboard Hot 100']}\n",
      "{'id': '986d4d5e-d957-416c-bd7b-1a0b62431012', 'title': '', 'artist': [{}], 'youtube_title': 'White Horse - Laid Back 1983', 'source': 'Billboard Hot 100', 'match_score': 90.196075, 'source_artist': 'Laid Back', 'source_title': 'White Horse', 'tags': ['Billboard', 'Billboard Hot 100 1984', 'Billboard Hot 100']}\n",
      "{'id': 'b668ad8e-2fb2-4ddb-b3db-2f61b0865c1e', 'title': '', 'artist': [{}], 'youtube_title': 'Who Will Answer - Ed Ames', 'source': 'Billboard Hot 100', 'match_score': 98.039215, 'source_artist': 'Ed Ames', 'source_title': 'Who Will Answer?', 'tags': ['Billboard', 'Billboard Hot 100 1967 1968', 'Billboard Hot 100']}\n",
      "{'id': '045608f8-b64d-4076-9b9b-dc9702ae4b9b', 'title': '', 'artist': [{}], 'youtube_title': \"Who's Behind the Door? by Zebra HD\", 'source': 'Billboard Hot 100', 'match_score': 90.625, 'source_artist': 'Zebra', 'source_title': \"Who's Behind The Door?\", 'tags': ['Billboard', 'Billboard Hot 100 1983', 'Billboard Hot 100']}\n",
      "{'id': 'a2efce0e-b41f-4e56-bbde-fecd278403a7', 'title': '', 'artist': [{}], 'youtube_title': 'Wild World - Cat Stevens', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Cat Stevens', 'source_title': 'Wild World', 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': 'dbe6cda8-a354-419c-8be8-9f66389274f6', 'title': '', 'artist': [{}], 'youtube_title': 'Wildwood Weed - Jim Stafford', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jim Stafford', 'source_title': 'Wildwood Weed', 'tags': ['Billboard', 'Billboard Hot 100 1974', 'Billboard Hot 100']}\n",
      "{'id': '06cc7ec3-7c21-42c2-8680-6cefe774764b', 'title': '', 'artist': [{}], 'youtube_title': 'Wishing it was you - Connie Francis', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Connie Francis', 'source_title': 'Wishing It Was You', 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': '9f3ed115-a142-41c9-8fd3-4182df891b2f', 'title': '', 'artist': [{}], 'youtube_title': \"Wouldn't It Be Good - Nik Kershaw lyrics\", 'source': 'Billboard Hot 100', 'match_score': 90.41096, 'source_artist': 'Nik Kershaw', 'source_title': \"Wouldn't It Be Good\", 'tags': ['Billboard', 'Billboard Hot 100 1984', 'Billboard Hot 100']}\n",
      "{'id': 'e8ecb6fc-3001-4236-9b98-f3357959e416', 'title': '', 'artist': [{}], 'youtube_title': \"Yes I'm Ready / Teri Desario with K.C.\", 'source': 'Billboard Hot 100', 'match_score': 96.1039, 'source_artist': 'Teri DeSario With K.C.', 'source_title': \"Yes, I'm Ready\", 'tags': ['Billboard', 'Billboard Hot 100 1980 1979', 'Billboard Hot 100']}\n",
      "{'id': '79c1eb6c-8a77-4e7e-b665-f2fd5908cd1e', 'title': '', 'artist': [{}], 'youtube_title': 'Yo No Se - Pajama Party', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Pajama Party', 'source_title': 'Yo No Se', 'tags': ['Billboard', 'Billboard Hot 100 1989', 'Billboard Hot 100']}\n",
      "{'id': 'f7f98159-0001-42d9-9f7e-210b67ae3a2d', 'title': '', 'artist': [{}], 'youtube_title': 'You Brought The Woman Out Of Me', 'source': 'Billboard Hot 100', 'match_score': 91.17647, 'source_artist': 'Hot', 'source_title': 'You Brought The Woman Out Of Me', 'tags': ['Billboard', 'Billboard Hot 100 1978', 'Billboard Hot 100']}\n",
      "{'id': '8921ec13-d67f-4c42-83ad-4bef544dca9a', 'title': '', 'artist': [{}], 'youtube_title': 'You can have her The Righteous Brothers', 'source': 'Billboard Hot 100', 'match_score': 97.5, 'source_artist': 'The Righteous Brothers', 'source_title': 'You Can Have Her', 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': '6f4898b3-1e00-4aaa-baff-07f44cce27d2', 'title': '', 'artist': [{}], 'youtube_title': \"You can't rollerskate in a buffaloherd - roger miller\", 'source': 'Billboard Hot 100', 'match_score': 98.14815, 'source_artist': 'Roger Miller', 'source_title': \"You Can't Roller Skate In A Buffalo Herd\", 'tags': ['Billboard', 'Billboard Hot 100 1966', 'Billboard Hot 100']}\n",
      "{'id': 'b6740c91-830d-4959-ae2b-b0621bfc7d04', 'title': '', 'artist': [{}], 'youtube_title': \"You Don't Have to Be A Star To Be In My Show - 1976 Marilyn McCoo and Billy Davis Jr\", 'source': 'Billboard Hot 100', 'match_score': 92.121216, 'source_artist': 'Marilyn McCoo & Billy Davis, Jr.', 'source_title': \"You Don't Have To Be A Star (To Be In My Show)\", 'tags': ['Billboard', 'Billboard Hot 100 1977 1976', 'Billboard Hot 100']}\n",
      "{'id': 'fbfe9282-617e-4222-8a93-ee7ea6453e2b', 'title': '', 'artist': [{}], 'youtube_title': 'You Got To Be The One-The Chi-Lites-1974', 'source': 'Billboard Hot 100', 'match_score': 90.90909, 'source_artist': 'The Chi-lites', 'source_title': 'You Got To Be The One', 'tags': ['Billboard', 'Billboard Hot 100 1974', 'Billboard Hot 100']}\n",
      "{'id': '0877e12e-6c16-4254-b17c-20307c712203', 'title': '', 'artist': [{}], 'youtube_title': 'You Had me From Hello - Kenny Chesney', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Kenny Chesney', 'source_title': 'You Had Me From Hello', 'tags': ['Billboard', 'Billboard Hot 100 1999', 'Billboard Hot 100']}\n",
      "{'id': '5b2d7739-ddaa-4fb3-85d7-f4aeec6a2c60', 'title': '', 'artist': [{}], 'youtube_title': 'You Have The Right To Remain Silent - Perfect Stranger', 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Perfect Stranger', 'source_title': 'You Have The Right To Remain Silent', 'tags': ['Billboard', 'Billboard Hot 100 1995', 'Billboard Hot 100']}\n",
      "{'id': 'c3fe565e-9ff4-49e6-ba69-666de05d3083', 'title': '', 'artist': [{}], 'youtube_title': 'You Make Me Feel Brand New - The Stylistics lyrics', 'source': 'Billboard Hot 100', 'match_score': 92.47312, 'source_artist': 'The Stylistics', 'source_title': 'You Make Me Feel Brand New', 'tags': ['Billboard', 'Billboard Hot 100 1974', 'Billboard Hot 100']}\n",
      "{'id': '14422701-28ca-4ed5-9510-4390cf92d101', 'title': '', 'artist': [{}], 'youtube_title': 'You Really Know How to Hurt a Guy by Jan and Dean', 'source': 'Billboard Hot 100', 'match_score': 92.63158, 'source_artist': 'Jan & Dean', 'source_title': 'You Really Know How To Hurt A Guy', 'tags': ['Billboard', 'Billboard Hot 100 1965', 'Billboard Hot 100']}\n",
      "{'id': 'a4f047e0-a1d4-4064-94f5-1d6cdfd0db94', 'title': '', 'artist': [{}], 'youtube_title': \"you'll be there by george strait\", 'source': 'Billboard Hot 100', 'match_score': 95.2381, 'source_artist': 'George Strait', 'source_title': \"You'll Be There\", 'tags': ['Billboard', 'Billboard Hot 100 2005', 'Billboard Hot 100']}\n",
      "{'id': '7e5e6e34-a2d2-4be9-9c80-b9b1e5f1d4e7', 'title': '', 'artist': [{}], 'youtube_title': \"You're All I need to get by -Marvin Gaye & Tammi Terrell LYRICS\", 'source': 'Billboard Hot 100', 'match_score': 93.333336, 'source_artist': 'Marvin Gaye & Tammi Terrell', 'source_title': \"You're All I Need To Get By\", 'tags': ['Billboard', 'Billboard Hot 100 1968', 'Billboard Hot 100']}\n",
      "{'id': 'e66455af-41e3-404e-8e1e-41a76f116171', 'title': '', 'artist': [{}], 'youtube_title': \"You're My Everything - Anita Baker\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Anita Baker', 'source_title': \"You're My Everything\", 'tags': ['Billboard', 'Billboard Hot 100 2004', 'Billboard Hot 100']}\n",
      "{'id': '11a9b9e6-c418-4590-b724-042ebcede8d6', 'title': '', 'artist': [{}], 'youtube_title': \"You're Nobody 'Til Somebody Loves You - Dean Martin\", 'source': 'Billboard Hot 100', 'match_score': 98.039215, 'source_artist': 'Dean Martin', 'source_title': \"You're Nobody Till Somebody Loves You\", 'tags': ['Billboard', 'Billboard Hot 100 1965 1964', 'Billboard Hot 100']}\n",
      "{'id': '7d87004a-a206-4831-b14a-3014eb9a8985', 'title': '', 'artist': [{}], 'youtube_title': \"You're Supposed To Keep Your Love For Me - Jermaine Jackson\", 'source': 'Billboard Hot 100', 'match_score': 100.0, 'source_artist': 'Jermaine Jackson', 'source_title': \"You're Supposed To Keep Your Love For Me\", 'tags': ['Billboard', 'Billboard Hot 100 1980', 'Billboard Hot 100']}\n",
      "{'id': '86ff81b2-6f77-4f0d-8ca6-eae54f682d7f', 'title': '', 'artist': [{}], 'youtube_title': '\"You\\'ve got a Friend\" By: James Taylor', 'source': 'Billboard Hot 100', 'match_score': 91.666664, 'source_artist': 'James Taylor', 'source_title': \"You've Got A Friend\", 'tags': ['Billboard', 'Billboard Hot 100 1971', 'Billboard Hot 100']}\n",
      "{'id': 'a7931863-e117-444f-8f98-1087e392e5eb', 'title': '', 'artist': [{}], 'youtube_title': \"You've Never Been This Far Before ( Conway Twitty )\", 'source': 'Billboard Hot 100', 'match_score': 96.0, 'source_artist': 'Conway Twitty', 'source_title': \"You've Never Been This Far Before\", 'tags': ['Billboard', 'Billboard Hot 100 1973', 'Billboard Hot 100']}\n",
      "{'id': '4d3c41b5-9aeb-4a55-b487-e717ca05138e', 'title': '', 'artist': [{}], 'youtube_title': 'YOUR LOVE KEITH SWEAT', 'source': 'Billboard Hot 100', 'match_score': 95.454544, 'source_artist': 'Keith Sweat', 'source_title': 'Your Love', 'tags': ['Billboard', 'Billboard Hot 100 1991', 'Billboard Hot 100']}\n",
      "{'id': 'c8d6b745-84b0-4249-ab43-e5770d67c088', 'title': '', 'artist': [{}], 'youtube_title': 'ANSWER - Ms. OOJA', 'source': 'Billboard Japan Hot 100', 'match_score': 100.0, 'source_artist': 'Ms. OOJA', 'source_title': 'Answer', 'tags': ['Billboard', 'Billboard Japan Hot 100 2013', 'Billboard Japan Hot 100']}\n",
      "{'id': 'b7339edb-4443-48d1-afc6-b1cc6712a8a0', 'title': '', 'artist': [{}], 'youtube_title': 'Eminem - Infinite', 'source': 'Billboard Japan Hot 100', 'match_score': 91.42857, 'source_artist': 'INFINITE', 'source_title': 'Be Mine', 'tags': ['Billboard', 'Billboard Japan Hot 100 2012', 'Billboard Japan Hot 100']}\n",
      "{'id': 'f04656e4-da7e-4e8d-ae53-99ef09cb1aee', 'title': '', 'artist': [{}], 'youtube_title': '\"Born This Way\" - Lady Gaga', 'source': 'Billboard Japan Hot 100', 'match_score': 96.15385, 'source_artist': 'Lady Gaga', 'source_title': 'Born This Way', 'tags': ['Billboard', 'Billboard Japan Hot 100 2017 2012 2011', 'Billboard Japan Hot 100']}\n",
      "{'id': 'b7bd6041-ddc6-4836-a9d6-6d2e1fc9ddf4', 'title': '', 'artist': [{}], 'youtube_title': 'Christmas Time Again', 'source': 'Billboard Japan Hot 100', 'match_score': 90.90909, 'source_artist': 'K', 'source_title': 'Christmas Time Again', 'tags': ['Billboard', 'Billboard Japan Hot 100 2013', 'Billboard Japan Hot 100']}\n",
      "{'id': '66f3f19b-37ec-40a8-b051-6fd912a032f0', 'title': '', 'artist': [{}], 'youtube_title': 'Dream a Dream', 'source': 'Billboard Japan Hot 100', 'match_score': 92.30769, 'source_artist': 'Dream', 'source_title': 'Dream', 'tags': ['Billboard', 'Billboard Japan Hot 100 2014', 'Billboard Japan Hot 100']}\n",
      "{'id': '58aee70e-bbe6-4f8b-92bd-469aa4a5f77c', 'title': '', 'artist': [{}], 'youtube_title': 'fake town baby - UNISON SQUARE GARDEN（フル）', 'source': 'Billboard Japan Hot 100', 'match_score': 94.871796, 'source_artist': 'UNISON SQUARE GARDEN', 'source_title': 'Fake Town Baby', 'tags': ['Billboard', 'Billboard Japan Hot 100 2017 2018', 'Billboard Japan Hot 100']}\n",
      "{'id': 'b345aab2-d411-41bf-a708-c0cedea1116d', 'title': '', 'artist': [{}], 'youtube_title': 'Firework - Katy Perry', 'source': 'Billboard Japan Hot 100', 'match_score': 100.0, 'source_artist': 'Katy Perry', 'source_title': 'Firework', 'tags': ['Billboard', 'Billboard Japan Hot 100 2012', 'Billboard Japan Hot 100']}\n",
      "{'id': 'bc7795d4-45bf-4731-9703-1b0da0000708', 'title': '', 'artist': [{}], 'youtube_title': 'I, Love - Jennifer Lopez', 'source': 'Billboard Japan Hot 100', 'match_score': 90.196075, 'source_artist': 'Jennifer Lopez', 'source_title': 'First Love', 'tags': ['Billboard', 'Billboard Japan Hot 100 2014', 'Billboard Japan Hot 100']}\n",
      "{'id': 'cfb44ec1-5615-42c4-8e86-b7dcb6fa98ab', 'title': '', 'artist': [{}], 'youtube_title': 'Galway Girl - Ed Sheeran', 'source': 'Billboard Japan Hot 100', 'match_score': 100.0, 'source_artist': 'Ed Sheeran', 'source_title': 'Galway Girl', 'tags': ['Billboard', 'Billboard Japan Hot 100 2017', 'Billboard Japan Hot 100']}\n",
      "{'id': '4e5fbb98-f97d-4a3e-8f6a-af321817c69c', 'title': '', 'artist': [{}], 'youtube_title': 'God is a woman - Ariana Grande', 'source': 'Billboard Japan Hot 100', 'match_score': 100.0, 'source_artist': 'Ariana Grande', 'source_title': 'God Is A Woman', 'tags': ['Billboard', 'Billboard Japan Hot 100 2018', 'Billboard Japan Hot 100']}\n",
      "{'id': '1932731c-a14e-48b8-a6f2-ed135e3e9f94', 'title': '', 'artist': [{}], 'youtube_title': 'Hi no Ito Rinne no Gemini - Petit Milady', 'source': 'Billboard Japan Hot 100', 'match_score': 97.4359, 'source_artist': 'petit milady', 'source_title': 'Hinoito Rinne No GEMINI', 'tags': ['Billboard', 'Billboard Japan Hot 100 2015', 'Billboard Japan Hot 100']}\n",
      "{'id': '84716256-cdcc-413f-9f5c-9558849321f0', 'title': '', 'artist': [{}], 'youtube_title': 'I Saw Mommy Kissing Santa Claus - SNL', 'source': 'Billboard Japan Hot 100', 'match_score': 90.0, 'source_artist': 'Jackson 5', 'source_title': 'I Saw Mommy Kissing Santa Claus', 'tags': ['Billboard', 'Billboard Japan Hot 100 2014 2012 2015 2016 2013', 'Billboard Japan Hot 100']}\n",
      "{'id': '14069176-75b1-4fa4-9a54-05864308010a', 'title': '', 'artist': [{}], 'youtube_title': '\"Jiyuu No Tsubasa\" - Linked Horizon', 'source': 'Billboard Japan Hot 100', 'match_score': 95.522385, 'source_artist': 'Linked Horizon', 'source_title': 'Jiyu No Tsubasa', 'tags': ['Billboard', 'Billboard Japan Hot 100 2013', 'Billboard Japan Hot 100']}\n",
      "{'id': '69c33fec-a8c1-4406-87d0-3a24eb3353e5', 'title': '', 'artist': [{}], 'youtube_title': '\"Last Friday Night (TGIF)\" - Katy Perry', 'source': 'Billboard Japan Hot 100', 'match_score': 92.5, 'source_artist': 'Katy Perry', 'source_title': 'Last Friday Night (T.G.I.F.)', 'tags': ['Billboard', 'Billboard Japan Hot 100 2011', 'Billboard Japan Hot 100']}\n",
      "{'id': 'df520eb4-58d0-485d-955d-f51400e55538', 'title': '', 'artist': [{}], 'youtube_title': '［PV］Let Me Hear/Fear, and Loathing in Las Vegas', 'source': 'Billboard Japan Hot 100', 'match_score': 90.10989, 'source_artist': 'Fear,and Loathing in Las Vegas', 'source_title': 'Let Me Hear', 'tags': ['Billboard', 'Billboard Japan Hot 100 2015', 'Billboard Japan Hot 100']}\n",
      "{'id': 'eddf45a4-ef79-4b54-8150-5c4bc5bbe19f', 'title': '', 'artist': [{}], 'youtube_title': 'Love Searchlight - Ko Shi ba sa ki', 'source': 'Billboard Japan Hot 100', 'match_score': 93.93939, 'source_artist': 'Kou Shibasaki', 'source_title': 'Love Searchlight', 'tags': ['Billboard', 'Billboard Japan Hot 100 2014', 'Billboard Japan Hot 100']}\n",
      "{'id': '1ffc87d1-61a0-4ac9-a919-7c6ee718f13d', 'title': '', 'artist': [{}], 'youtube_title': 'Madonna - Score', 'source': 'Billboard Japan Hot 100', 'match_score': 90.32258, 'source_artist': 'Secret', 'source_title': 'Madonna', 'tags': ['Billboard', 'Billboard Japan Hot 100 2011', 'Billboard Japan Hot 100']}\n",
      "{'id': 'b0a0b33b-2721-4a14-9923-755d28fcfff6', 'title': '', 'artist': [{}], 'youtube_title': 'No Brainer - DJ Khaled ft. Justin Bieber, Chance the Rapper, Quavo', 'source': 'Billboard Japan Hot 100', 'match_score': 92.086334, 'source_artist': 'DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo', 'source_title': 'No Brainer', 'tags': ['Billboard', 'Billboard Japan Hot 100 2018', 'Billboard Japan Hot 100']}\n",
      "{'id': '15701d41-5ff4-47ee-bb28-7fe9c48d2de4', 'title': '', 'artist': [{}], 'youtube_title': 'Problem ~ Ariana Grande feat. Iggy Azalea', 'source': 'Billboard Japan Hot 100', 'match_score': 90.69768, 'source_artist': 'Ariana Grande Featuring Iggy Azalea', 'source_title': 'Problem', 'tags': ['Billboard', 'Billboard Japan Hot 100 2014 2015', 'Billboard Japan Hot 100']}\n",
      "{'id': 'd5146118-0505-4d79-b8da-152940a2cd55', 'title': '', 'artist': [{}], 'youtube_title': '［PV］Rave-up Tonight/Fear, and Loathing in Las Vegas', 'source': 'Billboard Japan Hot 100', 'match_score': 90.90909, 'source_artist': 'Fear,and Loathing in Las Vegas', 'source_title': 'Rave-up tonight', 'tags': ['Billboard', 'Billboard Japan Hot 100 2014', 'Billboard Japan Hot 100']}\n",
      "{'id': '0855fdf0-ee44-4ed7-9a1a-8d1808930884', 'title': '', 'artist': [{}], 'youtube_title': 'Saturday Night Question - Megumi Nakajima', 'source': 'Billboard Japan Hot 100', 'match_score': 100.0, 'source_artist': 'Megumi Nakajima', 'source_title': 'Saturday Night Question', 'tags': ['Billboard', 'Billboard Japan Hot 100 2017', 'Billboard Japan Hot 100']}\n",
      "{'id': 'f1303699-b952-4900-bd5d-2d076ab55946', 'title': '', 'artist': [{}], 'youtube_title': 'Somehow - Joss Stone', 'source': 'Billboard Japan Hot 100', 'match_score': 100.0, 'source_artist': 'Joss Stone', 'source_title': 'Somehow', 'tags': ['Billboard', 'Billboard Japan Hot 100 2011', 'Billboard Japan Hot 100']}\n",
      "{'id': '7c8a85c2-dcf5-4d4f-9074-7e12e11cbfc3', 'title': '', 'artist': [{}], 'youtube_title': 'Symphony - Clean Bandit feat. Zara Larsson', 'source': 'Billboard Japan Hot 100', 'match_score': 93.181816, 'source_artist': 'Clean Bandit Featuring Zara Larsson', 'source_title': 'Symphony', 'tags': ['Billboard', 'Billboard Japan Hot 100 2017 2018', 'Billboard Japan Hot 100']}\n",
      "{'id': 'b89bd651-4dc1-46fd-b310-8a946a754975', 'title': '', 'artist': [{}], 'youtube_title': 'Taki Taki - DJ Snake ft. Selena Gomez, Ozuna & Cardi B', 'source': 'Billboard Japan Hot 100', 'match_score': 92.98245, 'source_artist': 'DJ Snake Featuring Selena Gomez, Ozuna & Cardi B', 'source_title': 'Taki Taki', 'tags': ['Billboard', 'Billboard Japan Hot 100 2018', 'Billboard Japan Hot 100']}\n",
      "{'id': '534d53ae-427a-4336-96ba-06d2d3bdf170', 'title': '', 'artist': [{}], 'youtube_title': 'Too Good At Goodbyes - Sam Smith', 'source': 'Billboard Japan Hot 100', 'match_score': 100.0, 'source_artist': 'Sam Smith', 'source_title': 'Too Good At Goodbyes', 'tags': ['Billboard', 'Billboard Japan Hot 100 2017', 'Billboard Japan Hot 100']}\n",
      "{'id': '2ad0392b-6bf3-4f4d-af79-8f8f1a5e0fc1', 'title': '', 'artist': [{}], 'youtube_title': 'We Are Never Ever Getting Back Together', 'source': 'Billboard Japan Hot 100', 'match_score': 91.76471, 'source_artist': 'MACO', 'source_title': 'We Are Never Ever Getting Back Together', 'tags': ['Billboard', 'Billboard Japan Hot 100 2014', 'Billboard Japan Hot 100']}\n",
      "{'id': '9c46a967-a2cf-4a3f-95f7-210967caf0bc', 'title': '', 'artist': [{}], 'youtube_title': 'YOUR STEP/Tomohisa Yamashita', 'source': 'Billboard Japan Hot 100', 'match_score': 93.10345, 'source_artist': 'Tomohisa Yamashita', 'source_title': 'Your Step', 'tags': ['Billboard', 'Billboard Japan Hot 100 2014', 'Billboard Japan Hot 100']}\n",
      "{'id': '020f2c6f-c340-4811-bfa7-0774a9799c4d', 'title': '', 'artist': [{}], 'youtube_title': 'Alucinado - Tiziano Ferro', 'source': 'Billboard Hot Latin Songs', 'match_score': 100.0, 'source_artist': 'Tiziano Ferro', 'source_title': 'Alucinado', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2003', 'Billboard Hot Latin Songs']}\n",
      "{'id': '9421cc35-a9e0-423b-bfe2-664e8cb68b2e', 'title': '', 'artist': [{}], 'youtube_title': 'Acercate - Jose Luis Perales', 'source': 'Billboard Hot Latin Songs', 'match_score': 90.90909, 'source_artist': 'Jose Luis Perales', 'source_title': 'America', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1991', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'b9ea6658-7021-49a8-afcd-c56789bc7ecc', 'title': '', 'artist': [{}], 'youtube_title': '\"Bad Romance\" - Lady Gaga', 'source': 'Billboard Hot Latin Songs', 'match_score': 95.833336, 'source_artist': 'Lady Gaga', 'source_title': 'Bad Romance', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2010', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'f04656e4-da7e-4e8d-ae53-99ef09cb1aee', 'title': '', 'artist': [{}], 'youtube_title': '\"Born This Way\" - Lady Gaga', 'source': 'Billboard Hot Latin Songs', 'match_score': 96.15385, 'source_artist': 'Lady Gaga', 'source_title': 'Born This Way', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2011', 'Billboard Hot Latin Songs']}\n",
      "{'id': '86aa9a46-3a46-4d2b-9464-99ea1ea6daa8', 'title': '', 'artist': [{}], 'youtube_title': 'Celos/ Fanny Lu', 'source': 'Billboard Hot Latin Songs', 'match_score': 90.32258, 'source_artist': 'Fanny Lu', 'source_title': 'Celos', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2009', 'Billboard Hot Latin Songs']}\n",
      "{'id': '17fd2f68-b250-4e41-8eb4-2df4a71add8a', 'title': '', 'artist': [{}], 'youtube_title': 'Disculpe Usted (Los Humildes)', 'source': 'Billboard Hot Latin Songs', 'match_score': 93.10345, 'source_artist': 'Los Humildes', 'source_title': 'Disculpe Usted', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2001', 'Billboard Hot Latin Songs']}\n",
      "{'id': '44da442c-ac28-4df7-acb1-76ac371b04a4', 'title': '', 'artist': [{}], 'youtube_title': 'El Beso De La Ciguatera - Juan Luis Guerra', 'source': 'Billboard Hot Latin Songs', 'match_score': 95.454544, 'source_artist': 'Juan Luis Guerra 440', 'source_title': 'El Beso De La Ciguatera', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1995', 'Billboard Hot Latin Songs']}\n",
      "{'id': '377d97f3-d51f-4e6e-acb5-17fcd714df27', 'title': '', 'artist': [{}], 'youtube_title': 'El lado oscuro - Jarabe de Palo', 'source': 'Billboard Hot Latin Songs', 'match_score': 100.0, 'source_artist': 'Jarabe de Palo', 'source_title': 'El Lado Oscuro', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1998', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'ef702f43-cbdb-45a1-b29a-c2d5ef544967', 'title': '', 'artist': [{}], 'youtube_title': 'EL Reloj Cucu - Maná', 'source': 'Billboard Hot Latin Songs', 'match_score': 95.0, 'source_artist': 'Mana', 'source_title': 'El Reloj Cucu', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1996', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'c77f07d1-dc91-4a04-a938-f523ad9dad85', 'title': '', 'artist': [{}], 'youtube_title': 'Every Morning - Sugar Ray', 'source': 'Billboard Hot Latin Songs', 'match_score': 100.0, 'source_artist': 'Sugar Ray', 'source_title': 'Every Morning', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1999', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'b345aab2-d411-41bf-a708-c0cedea1116d', 'title': '', 'artist': [{}], 'youtube_title': 'Firework - Katy Perry', 'source': 'Billboard Hot Latin Songs', 'match_score': 100.0, 'source_artist': 'Katy Perry', 'source_title': 'Firework', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2011', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'f3bcbdda-145a-4a24-b564-f6f82faeb8f0', 'title': '', 'artist': [{}], 'youtube_title': 'Gente Maravillosa - Jose Luis Perales', 'source': 'Billboard Hot Latin Songs', 'match_score': 100.0, 'source_artist': 'Jose Luis Perales', 'source_title': 'Gente Maravillosa', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1993', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'b3d050ff-3dc0-4ffb-84e2-28fadd850cec', 'title': '', 'artist': [{}], 'youtube_title': 'HOMBRES AL BORDE DE UN ATAQUE DE CELOS ~ YURI', 'source': 'Billboard Hot Latin Songs', 'match_score': 97.77778, 'source_artist': 'Yuri', 'source_title': 'HOMBRES AL BORDE DE UN ATAQUE DE CELOS', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1989', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'bbb2935a-551a-4aa7-9fd3-40dbd5aaeda9', 'title': '', 'artist': [{}], 'youtube_title': 'La Bomba - Azul Azul', 'source': 'Billboard Hot Latin Songs', 'match_score': 100.0, 'source_artist': 'Azul Azul', 'source_title': 'La Bomba', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2001 2000', 'Billboard Hot Latin Songs']}\n",
      "{'id': '69c33fec-a8c1-4406-87d0-3a24eb3353e5', 'title': '', 'artist': [{}], 'youtube_title': '\"Last Friday Night (TGIF)\" - Katy Perry', 'source': 'Billboard Hot Latin Songs', 'match_score': 92.5, 'source_artist': 'Katy Perry', 'source_title': 'Last Friday Night (T.G.I.F.)', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2011', 'Billboard Hot Latin Songs']}\n",
      "{'id': '76a655ca-b667-4c94-ae2e-9345d4355c45', 'title': '', 'artist': [{}], 'youtube_title': 'pequeña y fragil control', 'source': 'Billboard Hot Latin Songs', 'match_score': 92.0, 'source_artist': 'Control', 'source_title': 'Pequena Y Fragil', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2003', 'Billboard Hot Latin Songs']}\n",
      "{'id': '59ed4c8d-a714-46ea-9e36-b0d9552cb82a', 'title': '', 'artist': [{}], 'youtube_title': 'Que LloreN - Ivy Queen', 'source': 'Billboard Hot Latin Songs', 'match_score': 100.0, 'source_artist': 'Ivy Queen', 'source_title': 'Que Lloren', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2007', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'e3bfb8e4-81e0-4d56-bca6-88cffe7970ba', 'title': '', 'artist': [{}], 'youtube_title': 'Satisfacción - Nicky Jam X Bad Bunny X Arcangel', 'source': 'Billboard Hot Latin Songs', 'match_score': 92.47312, 'source_artist': 'Nicky Jam, Bad Bunny & Arcangel', 'source_title': 'Satisfaccion', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2018', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'c6947e3b-f5da-4ccb-850f-bb535678ae03', 'title': '', 'artist': [{}], 'youtube_title': 'Subete - Alexis y fido', 'source': 'Billboard Hot Latin Songs', 'match_score': 95.454544, 'source_artist': 'Alexis & Fido', 'source_title': 'Subete', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2008', 'Billboard Hot Latin Songs']}\n",
      "{'id': '79ca22e6-81de-4c67-96d4-7a0974b44660', 'title': '', 'artist': [{}], 'youtube_title': 'Mi CuCu - La Sonora Dinamita', 'source': 'Billboard Hot Latin Songs', 'match_score': 90.90909, 'source_artist': 'La Sonora Dinamita', 'source_title': 'TUCUCU', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1989 1988', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'b89bd651-4dc1-46fd-b310-8a946a754975', 'title': '', 'artist': [{}], 'youtube_title': 'Taki Taki - DJ Snake ft. Selena Gomez, Ozuna & Cardi B', 'source': 'Billboard Hot Latin Songs', 'match_score': 92.98245, 'source_artist': 'DJ Snake Featuring Selena Gomez, Ozuna & Cardi B', 'source_title': 'Taki Taki', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2018', 'Billboard Hot Latin Songs']}\n",
      "{'id': '066b13e6-d22b-48ef-969b-68a194d5d992', 'title': '', 'artist': [{}], 'youtube_title': 'Te solte la rienda... mana', 'source': 'Billboard Hot Latin Songs', 'match_score': 90.196075, 'source_artist': 'Mana', 'source_title': 'Te Solte La Rienda', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1999', 'Billboard Hot Latin Songs']}\n",
      "{'id': '03663bc6-b784-49b6-88c5-6db664962fac', 'title': '', 'artist': [{}], 'youtube_title': 'Tu Eres Perfecta   Oscarcito', 'source': 'Billboard Hot Latin Songs', 'match_score': 96.42857, 'source_artist': 'Oscarcito', 'source_title': 'Tu Eres Perfecta', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2012', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'a096e4d9-0963-4fdd-bff0-d41ffccad624', 'title': '', 'artist': [{}], 'youtube_title': 'Y Andale, Linda Ronstadt', 'source': 'Billboard Hot Latin Songs', 'match_score': 93.87755, 'source_artist': 'Linda Ronstadt', 'source_title': 'Y ANDALE', 'tags': ['Billboard', 'Billboard Hot Latin Songs 1988', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'ed71a71b-9577-4432-b2db-1c8da45b03a2', 'title': '', 'artist': [{}], 'youtube_title': 'YA NO ES IGUAL (FRANKIE J)', 'source': 'Billboard Hot Latin Songs', 'match_score': 92.30769, 'source_artist': 'Frankie J', 'source_title': 'Ya No Es Igual', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2003', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'e31c6813-5d73-4c8f-82cc-8eb85874ad0e', 'title': '', 'artist': [{}], 'youtube_title': 'Yo quisiera entrar - Ariel Camacho y Los Plebes Del Rancho', 'source': 'Billboard Hot Latin Songs', 'match_score': 100.0, 'source_artist': 'Ariel Camacho y Los Plebes del Rancho', 'source_title': 'Yo Quisiera Entrar', 'tags': ['Billboard', 'Billboard Hot Latin Songs 2016', 'Billboard Hot Latin Songs']}\n",
      "{'id': 'b9ea6658-7021-49a8-afcd-c56789bc7ecc', 'title': '', 'artist': [{}], 'youtube_title': '\"Bad Romance\" - Lady Gaga', 'source': 'Billboard Hot Pop Songs', 'match_score': 95.833336, 'source_artist': 'Lady Gaga', 'source_title': 'Bad Romance', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2009 2010', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'ad82a75c-8ae6-4e12-b808-8f1d1fc4359e', 'title': '', 'artist': [{}], 'youtube_title': 'Be Alright - Dean Lewis', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Dean Lewis', 'source_title': 'Be Alright', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2018', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'f04656e4-da7e-4e8d-ae53-99ef09cb1aee', 'title': '', 'artist': [{}], 'youtube_title': '\"Born This Way\" - Lady Gaga', 'source': 'Billboard Hot Pop Songs', 'match_score': 96.15385, 'source_artist': 'Lady Gaga', 'source_title': 'Born This Way', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2011', 'Billboard Hot Pop Songs']}\n",
      "{'id': '84455885-2fac-4434-9e1a-b926efd7a4eb', 'title': '', 'artist': [{}], 'youtube_title': 'Crush-Dave Matthews Band', 'source': 'Billboard Hot Pop Songs', 'match_score': 96.0, 'source_artist': 'Dave Matthews Band', 'source_title': 'Crush', 'tags': ['Billboard', 'Billboard Hot Pop Songs 1999', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'c77f07d1-dc91-4a04-a938-f523ad9dad85', 'title': '', 'artist': [{}], 'youtube_title': 'Every Morning - Sugar Ray', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Sugar Ray', 'source_title': 'Every Morning', 'tags': ['Billboard', 'Billboard Hot Pop Songs 1999', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'ae35533e-d5b8-4f7d-ae78-9669928306e8', 'title': '', 'artist': [{}], 'youtube_title': 'Falls Apart - Sugar Ray', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Sugar Ray', 'source_title': 'Falls Apart', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2000 1999', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'b345aab2-d411-41bf-a708-c0cedea1116d', 'title': '', 'artist': [{}], 'youtube_title': 'Firework - Katy Perry', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Katy Perry', 'source_title': 'Firework', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2010 2011', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'bc7795d4-45bf-4731-9703-1b0da0000708', 'title': '', 'artist': [{}], 'youtube_title': 'I, Love - Jennifer Lopez', 'source': 'Billboard Hot Pop Songs', 'match_score': 90.196075, 'source_artist': 'Jennifer Lopez', 'source_title': 'First Love', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2014', 'Billboard Hot Pop Songs']}\n",
      "{'id': '9e866056-88db-481a-bc13-6de4b7db6cb6', 'title': '', 'artist': [{}], 'youtube_title': 'Fly - Sugar Ray', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Sugar Ray', 'source_title': 'Fly', 'tags': ['Billboard', 'Billboard Hot Pop Songs 1997 1998', 'Billboard Hot Pop Songs']}\n",
      "{'id': '9b23b1b6-9719-4193-8aaa-6957bcb49ea6', 'title': '', 'artist': [{}], 'youtube_title': 'Freak Me - Silk', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Silk', 'source_title': 'Freak Me', 'tags': ['Billboard', 'Billboard Hot Pop Songs 1993', 'Billboard Hot Pop Songs']}\n",
      "{'id': '4e5fbb98-f97d-4a3e-8f6a-af321817c69c', 'title': '', 'artist': [{}], 'youtube_title': 'God is a woman - Ariana Grande', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Ariana Grande', 'source_title': 'God Is A Woman', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2018', 'Billboard Hot Pop Songs']}\n",
      "{'id': '69598dd7-4cfd-44ce-8b7b-8511ea698d13', 'title': '', 'artist': [{}], 'youtube_title': 'Have I Told You Lately - Rod Stewart', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Rod Stewart', 'source_title': 'Have I Told You Lately', 'tags': ['Billboard', 'Billboard Hot Pop Songs 1993', 'Billboard Hot Pop Songs']}\n",
      "{'id': '50b5e953-5ae8-4ece-bca7-7e0a17d50572', 'title': '', 'artist': [{}], 'youtube_title': 'I Can See Clearly Now - Jimmy Cliff', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Jimmy Cliff', 'source_title': 'I Can See Clearly Now', 'tags': ['Billboard', 'Billboard Hot Pop Songs 1994 1993', 'Billboard Hot Pop Songs']}\n",
      "{'id': '078cf81d-1943-4344-973d-483260797e88', 'title': '', 'artist': [{}], 'youtube_title': 'I Could Be The One [Avicii vs Nicky Romero]', 'source': 'Billboard Hot Pop Songs', 'match_score': 95.34884, 'source_artist': 'Avicii vs Nicky Romero', 'source_title': 'I Could Be The One', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2013', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'e19d5b37-fc01-4e45-ad43-4ff6a6bf82c4', 'title': '', 'artist': [{}], 'youtube_title': 'I Could Be The One (Avicii Vs. Nicky Romero)', 'source': 'Billboard Hot Pop Songs', 'match_score': 94.25288, 'source_artist': 'Avicii vs Nicky Romero', 'source_title': 'I Could Be The One', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2013', 'Billboard Hot Pop Songs']}\n",
      "{'id': '363d0c8e-9aa8-48ed-8ad6-243054630624', 'title': '', 'artist': [{}], 'youtube_title': \"I'm Free - Jon Secada\", 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Jon Secada', 'source_title': \"I'm Free\", 'tags': ['Billboard', 'Billboard Hot Pop Songs 1993', 'Billboard Hot Pop Songs']}\n",
      "{'id': '7f42043a-e058-4100-b6ab-8021e9b0173f', 'title': '', 'artist': [{}], 'youtube_title': 'Just push play by Aerosmith', 'source': 'Billboard Hot Pop Songs', 'match_score': 94.33962, 'source_artist': 'Aerosmith', 'source_title': 'Just Push Play', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2002', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'a019fe39-4a02-478c-b9b1-a58cfa7a34b2', 'title': '', 'artist': [{}], 'youtube_title': 'King Of Anything - Sara Bareilles', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Sara Bareilles', 'source_title': 'King Of Anything', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2010 2011', 'Billboard Hot Pop Songs']}\n",
      "{'id': '69c33fec-a8c1-4406-87d0-3a24eb3353e5', 'title': '', 'artist': [{}], 'youtube_title': '\"Last Friday Night (TGIF)\" - Katy Perry', 'source': 'Billboard Hot Pop Songs', 'match_score': 92.5, 'source_artist': 'Katy Perry', 'source_title': 'Last Friday Night (T.G.I.F.)', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2011', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'abc057d7-4b85-4fe5-99c2-35fb91eb515d', 'title': '', 'artist': [{}], 'youtube_title': 'Man - Presidents of the United States of America', 'source': 'Billboard Hot Pop Songs', 'match_score': 91.08911, 'source_artist': 'The Presidents Of The United States Of America', 'source_title': 'Lump', 'tags': ['Billboard', 'Billboard Hot Pop Songs 1995 1996', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'b0a0b33b-2721-4a14-9923-755d28fcfff6', 'title': '', 'artist': [{}], 'youtube_title': 'No Brainer - DJ Khaled ft. Justin Bieber, Chance the Rapper, Quavo', 'source': 'Billboard Hot Pop Songs', 'match_score': 92.086334, 'source_artist': 'DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo', 'source_title': 'No Brainer', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2018', 'Billboard Hot Pop Songs']}\n",
      "{'id': '21f9dc9c-7f05-43b7-9cc2-f6fd29d54bc9', 'title': '', 'artist': [{}], 'youtube_title': '\"Please Don\\'t Go\" - Mike Posner', 'source': 'Billboard Hot Pop Songs', 'match_score': 96.666664, 'source_artist': 'Mike Posner', 'source_title': \"Please Don't Go\", 'tags': ['Billboard', 'Billboard Hot Pop Songs 2010 2011', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'b141bc75-6ddb-476a-9909-1228e69ea872', 'title': '', 'artist': [{}], 'youtube_title': \"Please Don't Go - Mike Posner & LSD\", 'source': 'Billboard Hot Pop Songs', 'match_score': 90.625, 'source_artist': 'Mike Posner', 'source_title': \"Please Don't Go\", 'tags': ['Billboard', 'Billboard Hot Pop Songs 2010 2011', 'Billboard Hot Pop Songs']}\n",
      "{'id': '15701d41-5ff4-47ee-bb28-7fe9c48d2de4', 'title': '', 'artist': [{}], 'youtube_title': 'Problem ~ Ariana Grande feat. Iggy Azalea', 'source': 'Billboard Hot Pop Songs', 'match_score': 90.69768, 'source_artist': 'Ariana Grande Featuring Iggy Azalea', 'source_title': 'Problem', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2014', 'Billboard Hot Pop Songs']}\n",
      "{'id': '10a2d381-33d0-4950-9412-fe787d9d504d', 'title': '', 'artist': [{}], 'youtube_title': '\"Replay\" - Iyaz', 'source': 'Billboard Hot Pop Songs', 'match_score': 92.85714, 'source_artist': 'Iyaz', 'source_title': 'Replay', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2009 2010', 'Billboard Hot Pop Songs']}\n",
      "{'id': '1cd61e28-3a60-4d52-b619-605562d2c53a', 'title': '', 'artist': [{}], 'youtube_title': 'Single Ladies (Put A Ring On It) - Beyonce', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Beyonce', 'source_title': 'Single Ladies (Put A Ring On It)', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2009 2008', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'a9b4bd0d-588e-4eb1-ab10-744ddaf52590', 'title': '', 'artist': [{}], 'youtube_title': 'Stay(Wasting Time)-Dave Matthews Band', 'source': 'Billboard Hot Pop Songs', 'match_score': 96.1039, 'source_artist': 'Dave Matthews Band', 'source_title': 'Stay (Wasting Time)', 'tags': ['Billboard', 'Billboard Hot Pop Songs 1998', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'e78a5a3f-938e-4779-9f21-8899262090c0', 'title': '', 'artist': [{}], 'youtube_title': \"Stuck In A Moment You Can't Get Out Of\", 'source': 'Billboard Hot Pop Songs', 'match_score': 93.82716, 'source_artist': 'U2', 'source_title': \"Stuck In A Moment You Can't Get Out Of\", 'tags': ['Billboard', 'Billboard Hot Pop Songs 2001', 'Billboard Hot Pop Songs']}\n",
      "{'id': '553fa5e3-a0fb-47fc-8525-886ce6092a43', 'title': '', 'artist': [{}], 'youtube_title': 'Sweater Weather - The Neighbourhood', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'The Neighbourhood', 'source_title': 'Sweater Weather', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2014 2013', 'Billboard Hot Pop Songs']}\n",
      "{'id': '7c8a85c2-dcf5-4d4f-9074-7e12e11cbfc3', 'title': '', 'artist': [{}], 'youtube_title': 'Symphony - Clean Bandit feat. Zara Larsson', 'source': 'Billboard Hot Pop Songs', 'match_score': 93.181816, 'source_artist': 'Clean Bandit Featuring Zara Larsson', 'source_title': 'Symphony', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2017', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'b89bd651-4dc1-46fd-b310-8a946a754975', 'title': '', 'artist': [{}], 'youtube_title': 'Taki Taki - DJ Snake ft. Selena Gomez, Ozuna & Cardi B', 'source': 'Billboard Hot Pop Songs', 'match_score': 92.98245, 'source_artist': 'DJ Snake Featuring Selena Gomez, Ozuna & Cardi B', 'source_title': 'Taki Taki', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2018', 'Billboard Hot Pop Songs']}\n",
      "{'id': '534d53ae-427a-4336-96ba-06d2d3bdf170', 'title': '', 'artist': [{}], 'youtube_title': 'Too Good At Goodbyes - Sam Smith', 'source': 'Billboard Hot Pop Songs', 'match_score': 100.0, 'source_artist': 'Sam Smith', 'source_title': 'Too Good At Goodbyes', 'tags': ['Billboard', 'Billboard Hot Pop Songs 2017 2018', 'Billboard Hot Pop Songs']}\n",
      "{'id': 'ff0f84d3-2619-4665-b3db-40349690dcec', 'title': '', 'artist': [{}], 'youtube_title': 'Amsterdam - Imagine Dragons', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Imagine Dragons', 'source_title': 'Amsterdam', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2013', 'Billboard Hot Rock Songs']}\n",
      "{'id': '56a4c82c-42c9-4405-a8eb-e739700ac84d', 'title': '', 'artist': [{}], 'youtube_title': 'Angel Of Small Death & The Codeine Scene - Hozier', 'source': 'Billboard Hot Rock Songs', 'match_score': 96.0, 'source_artist': 'Hozier', 'source_title': 'Angel Of Small Death And The Codeine Scene', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2014 2015', 'Billboard Hot Rock Songs']}\n",
      "{'id': '42bd8708-8e21-4594-9b71-c919ae8c0ec9', 'title': '', 'artist': [{}], 'youtube_title': 'Beast (Southpaw Remix) - Rob Bailey & The Hustle Standard ft. Busta Rhymes, KXNG Crooked & Tech N9ne', 'source': 'Billboard Hot Rock Songs', 'match_score': 96.11651, 'source_artist': 'Rob Bailey & The Hustle Standard Featuring Busta Rhymes, KXNG Crooked & Tech N9ne', 'source_title': 'Beast (Southpaw Remix)', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2015', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'e1332580-9cc8-4716-bcba-b494d77d8cb6', 'title': '', 'artist': [{}], 'youtube_title': 'California - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'California', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'e86dd080-f989-402a-b504-a57fc49b833f', 'title': '', 'artist': [{}], 'youtube_title': 'Chasing Cars - Sleeping at Last', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Sleeping At Last', 'source_title': 'Chasing Cars', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2015', 'Billboard Hot Rock Songs']}\n",
      "{'id': '15e60148-b5f8-49d7-8ca7-adf332114f3d', 'title': '', 'artist': [{}], 'youtube_title': 'cherry wine (hozier)', 'source': 'Billboard Hot Rock Songs', 'match_score': 90.0, 'source_artist': 'Hozier', 'source_title': 'Cherry Wine', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2014 2015', 'Billboard Hot Rock Songs']}\n",
      "{'id': '6d58ce94-6ac9-43c5-a9ae-068d09850ca9', 'title': '', 'artist': [{}], 'youtube_title': 'Cynical - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'Cynical', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'b5437676-42b0-41d0-b9e2-c917d0fef300', 'title': '', 'artist': [{}], 'youtube_title': 'Delilah (Demo) - Florence + the Machine', 'source': 'Billboard Hot Rock Songs', 'match_score': 90.14085, 'source_artist': 'Florence + The Machine', 'source_title': 'Delilah', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2015', 'Billboard Hot Rock Songs']}\n",
      "{'id': '3e613abe-85fa-46fb-aa97-1ee2323904e5', 'title': '', 'artist': [{}], 'youtube_title': 'Everybody Wants To Rule The World - NSP', 'source': 'Billboard Hot Rock Songs', 'match_score': 90.0, 'source_artist': 'Lorde', 'source_title': 'Everybody Wants To Rule The World', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2014 2013', 'Billboard Hot Rock Songs']}\n",
      "{'id': '7552b82d-56fc-4d19-a006-39cbf7c5e634', 'title': '', 'artist': [{}], 'youtube_title': 'Eyes on You - Kings Of Leon', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Kings Of Leon', 'source_title': 'Eyes On You', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '7a77eed3-3513-461d-9ce5-edf3cac06820', 'title': '', 'artist': [{}], 'youtube_title': 'fixative - david gray', 'source': 'Billboard Hot Rock Songs', 'match_score': 90.47619, 'source_artist': 'David Gray', 'source_title': 'Fugitive', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2009 2010', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'a771d6cf-cf0c-4433-9bcc-59714e30924a', 'title': '', 'artist': [{}], 'youtube_title': 'Here Comes The Sun - The Beatles', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'The Beatles', 'source_title': 'Here Comes The Sun', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2017 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '10224ffe-44ab-46c5-a0c1-f516dff1841a', 'title': '', 'artist': [{}], 'youtube_title': 'Holiday (Vampire Weekend)', 'source': 'Billboard Hot Rock Songs', 'match_score': 92.0, 'source_artist': 'Vampire Weekend', 'source_title': 'Holiday', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2010 2011', 'Billboard Hot Rock Songs']}\n",
      "{'id': '49524a8a-2390-4f08-b1e0-66089931d756', 'title': '', 'artist': [{}], 'youtube_title': 'Home - Jack Johnson', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Jack Johnson', 'source_title': 'Home', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2013', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'a019fe39-4a02-478c-b9b1-a58cfa7a34b2', 'title': '', 'artist': [{}], 'youtube_title': 'King Of Anything - Sara Bareilles', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Sara Bareilles', 'source_title': 'King Of Anything', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2010', 'Billboard Hot Rock Songs']}\n",
      "{'id': '81dfae67-f680-4408-af66-6841e3224098', 'title': '', 'artist': [{}], 'youtube_title': 'Kings of the Weekend - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'Kings Of The Weekend', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'c30c2e50-f850-4447-b1ce-4edacc383eb2', 'title': '', 'artist': [{}], 'youtube_title': 'Left Alone - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'Left Alone', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '8d29b716-fb81-42c0-8a11-5cce3d62ed55', 'title': '', 'artist': [{}], 'youtube_title': 'Like Real People Do - Hozier', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Hozier', 'source_title': 'Like Real People Do', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2014 2015', 'Billboard Hot Rock Songs']}\n",
      "{'id': '7c153a7b-13ac-484e-926a-0e22e0055956', 'title': '', 'artist': [{}], 'youtube_title': 'Los Angeles - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'Los Angeles', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '9987be1b-890f-43be-b5d6-d3c5c93e0abe', 'title': '', 'artist': [{}], 'youtube_title': 'Over - Kings Of Leon', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Kings Of Leon', 'source_title': 'Over', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '4ed97667-d226-4d9a-99c1-6e28a717cbdc', 'title': '', 'artist': [{}], 'youtube_title': 'Parking Lot - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'Parking Lot', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2017', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'e170d7ef-efeb-4247-9b62-ca2048408619', 'title': '', 'artist': [{}], 'youtube_title': 'RED HANDS - Walk off the Earth', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Walk Off The Earth', 'source_title': 'Red Hands', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2013', 'Billboard Hot Rock Songs']}\n",
      "{'id': '4a8d9b7d-caf6-40ca-b7ff-d31f2476179a', 'title': '', 'artist': [{}], 'youtube_title': 'Ribs - Lorde', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Lorde', 'source_title': 'Ribs', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2014 2013', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'b99cc6b7-848e-43b0-a422-0e5a9979078b', 'title': '', 'artist': [{}], 'youtube_title': 'San Diego - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'San Diego', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '6970837e-a29c-4713-85e2-e308d8ffd66a', 'title': '', 'artist': [{}], 'youtube_title': 'Skinny Little Bitch - Hole', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Hole', 'source_title': 'Skinny Little Bitch', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2010', 'Billboard Hot Rock Songs']}\n",
      "{'id': '3a6d042a-2af3-484c-b3d9-4e86caa86aab', 'title': '', 'artist': [{}], 'youtube_title': 'Sober - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'Sober', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'dc0c6f8f-9b3b-4f3b-9c2a-882fe3bd409a', 'title': '', 'artist': [{}], 'youtube_title': 'Somebody Else - The 1975', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'The 1975', 'source_title': 'Somebody Else', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2017 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '553fa5e3-a0fb-47fc-8525-886ce6092a43', 'title': '', 'artist': [{}], 'youtube_title': 'Sweater Weather - The Neighbourhood', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'The Neighbourhood', 'source_title': 'Sweater Weather', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2014 2013', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'a7e3ba9a-a384-4db2-b85b-2031594c91a4', 'title': '', 'artist': [{}], 'youtube_title': 'Teenage Satellites - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'Teenage Satellites', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '7d871b55-672d-4ae6-9d4a-0028960eb437', 'title': '', 'artist': [{}], 'youtube_title': 'The Only Thing That Matters - blink-182', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Blink-182', 'source_title': 'The Only Thing That Matters', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016', 'Billboard Hot Rock Songs']}\n",
      "{'id': '5b80e650-c131-4538-8592-5466468f7da6', 'title': '', 'artist': [{}], 'youtube_title': 'The State Of Massachusetts - Dropkick Murphys', 'source': 'Billboard Hot Rock Songs', 'match_score': 100.0, 'source_artist': 'Dropkick Murphys', 'source_title': 'The State Of Massachusetts', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2013', 'Billboard Hot Rock Songs']}\n",
      "{'id': '4304f834-235d-497c-bae2-ba3cf72c7e51', 'title': '', 'artist': [{}], 'youtube_title': \"THIS TIME IT'S DIFFERENT (NEW Evans Blue)\", 'source': 'Billboard Hot Rock Songs', 'match_score': 92.30769, 'source_artist': 'Evans Blue', 'source_title': \"This Time It's Different\", 'tags': ['Billboard', 'Billboard Hot Rock Songs 2012', 'Billboard Hot Rock Songs']}\n",
      "{'id': '05f30729-3e1b-4322-8843-2bcd425dc63f', 'title': '', 'artist': [{}], 'youtube_title': 'Under Pressure- Queen Feat. David Bowie', 'source': 'Billboard Hot Rock Songs', 'match_score': 90.666664, 'source_artist': 'Queen & David Bowie', 'source_title': 'Under Pressure', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2016 2018', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'b34b37e8-9957-4d7a-b089-4deb3c929906', 'title': '', 'artist': [{}], 'youtube_title': '\"When Legends Rise\" - Godsmack', 'source': 'Billboard Hot Rock Songs', 'match_score': 96.55173, 'source_artist': 'Godsmack', 'source_title': 'When Legends Rise', 'tags': ['Billboard', 'Billboard Hot Rock Songs 2018', 'Billboard Hot Rock Songs']}\n",
      "{'id': 'b9ea6658-7021-49a8-afcd-c56789bc7ecc', 'title': '', 'artist': [{}], 'youtube_title': '\"Bad Romance\" - Lady Gaga', 'source': 'Billboard YouTube Music Charts', 'match_score': 95.833336, 'source_artist': 'Lady Gaga', 'source_title': 'Bad Romance', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2012', 'Billboard YouTube Music Charts']}\n",
      "{'id': '45fbceae-9f1e-4235-8077-bdf104d84244', 'title': '', 'artist': [{}], 'youtube_title': 'Culpables - MTZ Manuel Turizo', 'source': 'Billboard YouTube Music Charts', 'match_score': 92.59259, 'source_artist': 'Manuel Turizo', 'source_title': 'Culpables', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2018', 'Billboard YouTube Music Charts']}\n",
      "{'id': '2749a063-6d88-486f-9d4a-bf5396d5fbdd', 'title': '', 'artist': [{}], 'youtube_title': 'Evolution of Music - Pentatonix', 'source': 'Billboard YouTube Music Charts', 'match_score': 100.0, 'source_artist': 'Pentatonix', 'source_title': 'Evolution Of Music', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2013', 'Billboard YouTube Music Charts']}\n",
      "{'id': 'cfb44ec1-5615-42c4-8e86-b7dcb6fa98ab', 'title': '', 'artist': [{}], 'youtube_title': 'Galway Girl - Ed Sheeran', 'source': 'Billboard YouTube Music Charts', 'match_score': 100.0, 'source_artist': 'Ed Sheeran', 'source_title': 'Galway Girl', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2017', 'Billboard YouTube Music Charts']}\n",
      "{'id': '4e5fbb98-f97d-4a3e-8f6a-af321817c69c', 'title': '', 'artist': [{}], 'youtube_title': 'God is a woman - Ariana Grande', 'source': 'Billboard YouTube Music Charts', 'match_score': 100.0, 'source_artist': 'Ariana Grande', 'source_title': 'God Is A Woman', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2018', 'Billboard YouTube Music Charts']}\n",
      "{'id': '69c33fec-a8c1-4406-87d0-3a24eb3353e5', 'title': '', 'artist': [{}], 'youtube_title': '\"Last Friday Night (TGIF)\" - Katy Perry', 'source': 'Billboard YouTube Music Charts', 'match_score': 92.5, 'source_artist': 'Katy Perry', 'source_title': 'Last Friday Night (T.G.I.F.)', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2011 2013', 'Billboard YouTube Music Charts']}\n",
      "{'id': 'b0a0b33b-2721-4a14-9923-755d28fcfff6', 'title': '', 'artist': [{}], 'youtube_title': 'No Brainer - DJ Khaled ft. Justin Bieber, Chance the Rapper, Quavo', 'source': 'Billboard YouTube Music Charts', 'match_score': 92.086334, 'source_artist': 'DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo', 'source_title': 'No Brainer', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2018', 'Billboard YouTube Music Charts']}\n",
      "{'id': '15701d41-5ff4-47ee-bb28-7fe9c48d2de4', 'title': '', 'artist': [{}], 'youtube_title': 'Problem ~ Ariana Grande feat. Iggy Azalea', 'source': 'Billboard YouTube Music Charts', 'match_score': 90.69768, 'source_artist': 'Ariana Grande Featuring Iggy Azalea', 'source_title': 'Problem', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2014 2015', 'Billboard YouTube Music Charts']}\n",
      "{'id': '7c8a85c2-dcf5-4d4f-9074-7e12e11cbfc3', 'title': '', 'artist': [{}], 'youtube_title': 'Symphony - Clean Bandit feat. Zara Larsson', 'source': 'Billboard YouTube Music Charts', 'match_score': 93.181816, 'source_artist': 'Clean Bandit Featuring Zara Larsson', 'source_title': 'Symphony', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2017', 'Billboard YouTube Music Charts']}\n",
      "{'id': 'b89bd651-4dc1-46fd-b310-8a946a754975', 'title': '', 'artist': [{}], 'youtube_title': 'Taki Taki - DJ Snake ft. Selena Gomez, Ozuna & Cardi B', 'source': 'Billboard YouTube Music Charts', 'match_score': 92.98245, 'source_artist': 'DJ Snake Featuring Selena Gomez, Ozuna & Cardi B', 'source_title': 'Taki Taki', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2018', 'Billboard YouTube Music Charts']}\n",
      "{'id': '534d53ae-427a-4336-96ba-06d2d3bdf170', 'title': '', 'artist': [{}], 'youtube_title': 'Too Good At Goodbyes - Sam Smith', 'source': 'Billboard YouTube Music Charts', 'match_score': 100.0, 'source_artist': 'Sam Smith', 'source_title': 'Too Good At Goodbyes', 'tags': ['Billboard', 'Billboard YouTube Music Charts 2017 2018', 'Billboard YouTube Music Charts']}\n"
     ]
    }
   ],
   "source": [
    "for chart_meta in chart_metas:\n",
    "    print(chart_meta)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 53,
   "metadata": {},
   "outputs": [],
   "source": [
    "for chart_meta in chart_metas:\n",
    "    chart_meta[\"match_score\"] = float(chart_meta[\"match_score\"])\n",
    "\n",
    "write_jsonl(chart_metas, \"/home/christian/code/christian/metadata/popularity/discogs_subset_chart_metas.jsonl\")\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": 132,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Index(['year', 'title', 'published_at', 'updated_at', 'category', 'nominee',\n",
      "       'artist', 'workers', 'img', 'winner'],\n",
      "      dtype='object')\n",
      "4810\n",
      "year                                                         2019\n",
      "title                           62nd Annual GRAMMY Awards  (2019)\n",
      "published_at                            2020-05-19T05:10:28-07:00\n",
      "updated_at                              2020-05-19T05:10:28-07:00\n",
      "category                                         Song Of The Year\n",
      "nominee                                                     Lover\n",
      "artist                                                        NaN\n",
      "workers                   Taylor Swift, songwriter (Taylor Swift)\n",
      "img             https://www.grammy.com/sites/com/files/styles/...\n",
      "winner                                                       True\n",
      "Name: 20, dtype: object\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "performer      Tom Barnes, Lewis Capaldi, Pete Kelleher, Benj...\n",
       "title                                          Someone You Loved\n",
       "source                                   Grammy Song Of The Year\n",
       "chart_dates                                               {2019}\n",
       "Name: 22, dtype: object"
      ]
     },
     "execution_count": 132,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# load grammy data\n",
    "grammy_df = pd.read_csv(\"/home/christian/code/christian/metadata/popularity/the_grammy_awards.csv\")\n",
    "print(grammy_df.columns)\n",
    "print(len(grammy_df))\n",
    "print(grammy_df.iloc[20])\n",
    "\n",
    "# if artist is NaN replace with nominee\n",
    "grammy_df[\"artist\"] = grammy_df[\"artist\"].fillna(grammy_df[\"workers\"])\n",
    "# add source to the df, use the column \"category\" for each row\n",
    "grammy_df[\"source\"] = grammy_df[\"category\"].apply(lambda x: \"Grammy \" + x)\n",
    "grammy_df[\"title\"] = grammy_df[\"nominee\"]\n",
    "grammy_df[\"performer\"] = grammy_df[\"artist\"]\n",
    "\n",
    "\n",
    "# use the year for each row\n",
    "grammy_df[\"chart_dates\"] = grammy_df[\"year\"].apply(lambda x: set([str(x)]))\n",
    "\n",
    "grammy_df.iloc[22][[\"performer\", \"title\", \"source\", \"chart_dates\"]]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 134,
   "metadata": {},
   "outputs": [
    {
     "ename": "KeyboardInterrupt",
     "evalue": "",
     "output_type": "error",
     "traceback": [
      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
      "\u001b[0;31mKeyboardInterrupt\u001b[0m                         Traceback (most recent call last)",
      "Cell \u001b[0;32mIn[134], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m grammy_metas \u001b[38;5;241m=\u001b[39m \u001b[43mprocess_billboard_matches\u001b[49m\u001b[43m(\u001b[49m\u001b[43mgrammy_df\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdiscogs_subset_metas\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m      2\u001b[0m \u001b[38;5;28mprint\u001b[39m(\u001b[38;5;28mlen\u001b[39m(grammy_metas))\n\u001b[1;32m      4\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m grammy_meta \u001b[38;5;129;01min\u001b[39;00m grammy_metas:\n",
      "Cell \u001b[0;32mIn[102], line 72\u001b[0m, in \u001b[0;36mprocess_billboard_matches\u001b[0;34m(billboard_df, discogs_subset_metas, method)\u001b[0m\n\u001b[1;32m     70\u001b[0m     matches \u001b[38;5;241m=\u001b[39m find_matches_parallel(billboard_df_list, discogs_subset_metas)\n\u001b[1;32m     71\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m---> 72\u001b[0m     matches \u001b[38;5;241m=\u001b[39m \u001b[43mfind_matches_vectorized\u001b[49m\u001b[43m(\u001b[49m\u001b[43mbillboard_df_list\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdiscogs_subset_metas\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m     74\u001b[0m billboard_metas \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m     75\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m match \u001b[38;5;129;01min\u001b[39;00m matches:\n",
      "Cell \u001b[0;32mIn[102], line 49\u001b[0m, in \u001b[0;36mfind_matches_vectorized\u001b[0;34m(chart_songs, library_songs, threshold)\u001b[0m\n\u001b[1;32m     44\u001b[0m library_keys \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(library_lookups[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mcombined\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39mkeys())\n\u001b[1;32m     46\u001b[0m search_strings \u001b[38;5;241m=\u001b[39m [\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00msong[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mtitle\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m \u001b[39m\u001b[38;5;132;01m{\u001b[39;00msong[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mperformer\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m.\u001b[39mlower()\u001b[38;5;241m.\u001b[39mstrip() \n\u001b[1;32m     47\u001b[0m                  \u001b[38;5;28;01mfor\u001b[39;00m song \u001b[38;5;129;01min\u001b[39;00m chart_songs]\n\u001b[0;32m---> 49\u001b[0m distances \u001b[38;5;241m=\u001b[39m \u001b[43mcdist\u001b[49m\u001b[43m(\u001b[49m\u001b[43msearch_strings\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mlibrary_keys\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mscorer\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mfuzz\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mratio\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mworkers\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;241;43m128\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m     51\u001b[0m matches \u001b[38;5;241m=\u001b[39m []\n\u001b[1;32m     52\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m i, row \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28menumerate\u001b[39m(distances):\n",
      "File \u001b[0;32m~/miniconda3/envs/suno_env/lib/python3.10/site-packages/rapidfuzz/process_cpp.py:70\u001b[0m, in \u001b[0;36mcdist\u001b[0;34m(queries, choices, scorer, processor, score_cutoff, score_hint, score_multiplier, dtype, workers, **kwargs)\u001b[0m\n\u001b[1;32m     66\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mnumpy\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m \u001b[38;5;21;01mnp\u001b[39;00m\n\u001b[1;32m     68\u001b[0m dtype \u001b[38;5;241m=\u001b[39m _dtype_to_type_num(dtype)\n\u001b[1;32m     69\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m np\u001b[38;5;241m.\u001b[39masarray(\n\u001b[0;32m---> 70\u001b[0m     \u001b[43m_cdist\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m     71\u001b[0m \u001b[43m        \u001b[49m\u001b[43mqueries\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     72\u001b[0m \u001b[43m        \u001b[49m\u001b[43mchoices\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     73\u001b[0m \u001b[43m        \u001b[49m\u001b[43mscorer\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mscorer\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     74\u001b[0m \u001b[43m        \u001b[49m\u001b[43mprocessor\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mprocessor\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     75\u001b[0m \u001b[43m        \u001b[49m\u001b[43mscore_cutoff\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mscore_cutoff\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     76\u001b[0m \u001b[43m        \u001b[49m\u001b[43mscore_hint\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mscore_hint\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     77\u001b[0m \u001b[43m        \u001b[49m\u001b[43mscore_multiplier\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mscore_multiplier\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     78\u001b[0m \u001b[43m        \u001b[49m\u001b[43mdtype\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdtype\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     79\u001b[0m \u001b[43m        \u001b[49m\u001b[43mworkers\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mworkers\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     80\u001b[0m \u001b[43m        \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m     81\u001b[0m \u001b[43m    \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m     82\u001b[0m )\n",
      "File \u001b[0;32msrc/rapidfuzz/process_cpp_impl.pyx:2007\u001b[0m, in \u001b[0;36mrapidfuzz.process_cpp_impl.cdist\u001b[0;34m()\u001b[0m\n",
      "File \u001b[0;32msrc/rapidfuzz/process_cpp_impl.pyx:1867\u001b[0m, in \u001b[0;36mrapidfuzz.process_cpp_impl.cdist_two_lists\u001b[0;34m()\u001b[0m\n",
      "\u001b[0;31mKeyboardInterrupt\u001b[0m: "
     ]
    }
   ],
   "source": [
    "\n",
    "grammy_metas = process_billboard_matches(grammy_df, discogs_subset_metas)\n",
    "print(len(grammy_metas))\n",
    "\n",
    "for grammy_meta in grammy_metas:\n",
    "    grammy_meta[\"match_score\"] = float(grammy_meta[\"match_score\"])\n",
    "\n",
    "write_jsonl(grammy_metas, \"/home/christian/code/christian/metadata/popularity/discogs_subset_grammy_metas.jsonl\")\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Index(['month', 'position', 'artist', 'song', 'indicativerevenue', 'us', 'uk',\n",
      "       'de', 'fr', 'ca', 'au', 'source'],\n",
      "      dtype='object')\n",
      "Index(['year', 'position', 'artist', 'song', 'indicativerevenue', 'us', 'uk',\n",
      "       'de', 'fr', 'ca', 'au', 'source'],\n",
      "      dtype='object')\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "song      Just Like A Pill\n",
       "artist                P!nk\n",
       "us                       8\n",
       "source        song_of_year\n",
       "Name: 1029, dtype: object"
      ]
     },
     "execution_count": 17,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# load song of month and song of the year\n",
    "song_of_month_df = pd.read_csv(\"/home/christian/code/christian/metadata/popularity/chart2000-songmonth-0-3-0074.csv\")\n",
    "song_of_year_df = pd.read_csv(\"/home/christian/code/christian/metadata/popularity/chart2000-songyear-0-3-0074.csv\")\n",
    "\n",
    "song_of_month_df[\"source\"] = \"song_of_month\"\n",
    "song_of_year_df[\"source\"] = \"song_of_year\"\n",
    "\n",
    "print(song_of_month_df.columns)\n",
    "print(song_of_year_df.columns)\n",
    "\n",
    "# merge the two dfs\n",
    "song_of_month_df = song_of_month_df.groupby([\"song\", \"artist\"]).agg({\"us\": \"first\"}).reset_index()\n",
    "song_of_year_df = song_of_year_df.groupby([\"song\", \"artist\"]).agg({\"us\": \"first\"}).reset_index()\n",
    "\n",
    "song_of_month_df[\"source\"] = \"song_of_month\"\n",
    "song_of_year_df[\"source\"] = \"song_of_year\"\n",
    "\n",
    "# merge the two dfs\n",
    "songs_df = pd.concat([song_of_month_df, song_of_year_df])\n",
    "\n",
    "\n",
    "\n",
    "songs_df.iloc[5000]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [],
   "source": [
    "# create a map of id to meta\n",
    "id_to_meta = {meta[\"id\"]: meta for meta in discogs_subset_metas}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [],
   "source": [
    "from rapidfuzz import fuzz\n",
    "import numpy as np\n",
    "import pandas as pd\n",
    "from tqdm import tqdm\n",
    "\n",
    "def find_matches(metas, id_to_meta, billboard_collapsed, threshold=85):\n",
    "    matches = []\n",
    "    \n",
    "    # Convert billboard data to arrays for vectorization\n",
    "    bb_titles = np.array([t.lower() for t in billboard_collapsed['title']])\n",
    "    bb_performers = np.array([p.lower() for p in billboard_collapsed['performer']])\n",
    "    \n",
    "    for meta in tqdm(metas):\n",
    "        meta_id = meta[\"id\"]\n",
    "        base_meta = id_to_meta[meta_id]\n",
    "        \n",
    "        title = base_meta[\"title\"].lower()\n",
    "        artist = base_meta[\"artists\"][0][\"name\"].lower()\n",
    "        \n",
    "        # Vectorized fuzzy matching\n",
    "        title_scores = np.array([fuzz.ratio(title, bb_title) for bb_title in bb_titles])\n",
    "        artist_scores = np.array([fuzz.ratio(artist, bb_performer) for bb_performer in bb_performers])\n",
    "        \n",
    "        # Find matches above threshold\n",
    "        combined_mask = (title_scores >= threshold) & (artist_scores >= threshold)\n",
    "        match_indices = np.where(combined_mask)[0]\n",
    "        \n",
    "        if len(match_indices) > 0:\n",
    "            # Get best match based on combined score\n",
    "            best_idx = match_indices[np.argmax(title_scores[match_indices] + artist_scores[match_indices])]\n",
    "            matches.append({\n",
    "                'discogs_id': meta_id,\n",
    "                'billboard_match': billboard_collapsed.iloc[best_idx].to_dict(),\n",
    "                'title_score': title_scores[best_idx],\n",
    "                'artist_score': artist_scores[best_idx]\n",
    "            })\n",
    "    \n",
    "    return matches"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "  0%|          | 1/1000 [00:00<06:26,  2.59it/s]"
     ]
    }
   ],
   "source": [
    "matches = find_matches(discogs_subset_metas[1000:2000], id_to_meta, billboard_collapsed)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "{'discogs_id': 'AG8fugqFn9Q', 'billboard_match': {'title': 'Panic Switch', 'performer': 'Silversun Pickups', 'source': 'hot-100', 'wks_on_chart': 1, 'peak_pos': 92}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': '16pgjuMcs8Y', 'billboard_match': {'title': 'Pressure The Hinges', 'performer': 'Haste The Day', 'source': 'billboard-200', 'wks_on_chart': 2, 'peak_pos': 89}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': '4-lDHzRi6eM', 'billboard_match': {'title': 'Little Red Rooster', 'performer': 'Sam Cooke', 'source': 'hot-100', 'wks_on_chart': 10, 'peak_pos': 11}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': '0P2a6aLDkkM', 'billboard_match': {'title': 'Being With You', 'performer': 'Smokey Robinson', 'source': 'billboard-200', 'wks_on_chart': 28, 'peak_pos': 10}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': 'wm54ShkWkqE', 'billboard_match': {'title': 'Armed And Extremely Dangerous', 'performer': 'First Choice', 'source': 'hot-100', 'wks_on_chart': 14, 'peak_pos': 28}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': 'r0pQgOP_weo', 'billboard_match': {'title': 'I Should Be...', 'performer': 'Dru Hill', 'source': 'hot-100', 'wks_on_chart': 17, 'peak_pos': 25}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': 'ITUybVxghMQ', 'billboard_match': {'title': 'Go Get It', 'performer': 'T.I.', 'source': 'hot-100', 'wks_on_chart': 1, 'peak_pos': 77}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': 'mnkVrY12XBs', 'billboard_match': {'title': \"What Cha Gonna Do With My Lovin'\", 'performer': 'Stephanie Mills', 'source': 'billboard-200', 'wks_on_chart': 34, 'peak_pos': 22}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': 'cU5uVnWL1Us', 'billboard_match': {'title': 'Viral Moment', 'performer': 'Lil Durk', 'source': 'hot-100', 'wks_on_chart': 1, 'peak_pos': 91}, 'title_score': 100.0, 'artist_score': 100.0}\n",
      "{'discogs_id': 'Hy4DlucAGUo', 'billboard_match': {'title': 'Nights In White Satin', 'performer': 'The Moody Blues', 'source': 'hot-100', 'wks_on_chart': 18, 'peak_pos': 2}, 'title_score': 85.71428571428572, 'artist_score': 100.0}\n",
      "{'discogs_id': 'Zm_73Wbr3Qc', 'billboard_match': {'title': 'Ticket To Ride', 'performer': 'Carpenters', 'source': 'billboard-200', 'wks_on_chart': 16, 'peak_pos': 150}, 'title_score': 100.0, 'artist_score': 100.0}\n"
     ]
    }
   ],
   "source": [
    "for match in matches:\n",
    "    print(match)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 63,
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      " 30%|███       | 30/100 [00:37<01:24,  1.21s/it]"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "title                Panic Switch\n",
      "performer       Silversun Pickups\n",
      "source                    hot-100\n",
      "wks_on_chart                    1\n",
      "peak_pos                       92\n",
      "Name: 42933, dtype: object\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      " 80%|████████  | 80/100 [01:40<00:25,  1.26s/it]\n"
     ]
    },
    {
     "ename": "KeyboardInterrupt",
     "evalue": "",
     "output_type": "error",
     "traceback": [
      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
      "\u001b[0;31mKeyboardInterrupt\u001b[0m                         Traceback (most recent call last)",
      "\u001b[0;32m/tmp/ipykernel_2679383/4066476660.py\u001b[0m in \u001b[0;36m?\u001b[0;34m()\u001b[0m\n\u001b[1;32m      8\u001b[0m     \u001b[0mtitle\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mbase_meta\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m\"title\"\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m      9\u001b[0m     \u001b[0martist\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mbase_meta\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m\"artists\"\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m\"name\"\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     10\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     11\u001b[0m     \u001b[0;31m# iterate over the billboard df and find the row that has the same title and artist\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 12\u001b[0;31m     \u001b[0;32mfor\u001b[0m \u001b[0mindex\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mrow\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mbillboard_collapsed\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0miterrows\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m     13\u001b[0m         \u001b[0;31m# make the string matching case insensitive\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     14\u001b[0m         \u001b[0;32mif\u001b[0m \u001b[0mrow\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m\"title\"\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlower\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mtitle\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlower\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mand\u001b[0m \u001b[0mrow\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m\"performer\"\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlower\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0martist\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlower\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     15\u001b[0m             \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrow\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m~/miniconda3/envs/suno_env/lib/python3.10/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m?\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m   1396\u001b[0m         \u001b[0mcolumns\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcolumns\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m   1397\u001b[0m         \u001b[0mklass\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_constructor_sliced\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m   1398\u001b[0m         \u001b[0musing_cow\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0musing_copy_on_write\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m   1399\u001b[0m         \u001b[0;32mfor\u001b[0m \u001b[0mk\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mv\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mzip\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mindex\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvalues\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1400\u001b[0;31m             \u001b[0ms\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mklass\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mv\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mindex\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mcolumns\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mname\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mk\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__finalize__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m   1401\u001b[0m             \u001b[0;32mif\u001b[0m \u001b[0musing_cow\u001b[0m \u001b[0;32mand\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_mgr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mis_single_block\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m   1402\u001b[0m                 \u001b[0ms\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_mgr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0madd_references\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_mgr\u001b[0m\u001b[0;34m)\u001b[0m  \u001b[0;31m# type: ignore[arg-type]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m   1403\u001b[0m             \u001b[0;32myield\u001b[0m \u001b[0mk\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0ms\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m~/miniconda3/envs/suno_env/lib/python3.10/site-packages/pandas/core/series.py\u001b[0m in \u001b[0;36m?\u001b[0;34m(self, data, index, dtype, name, copy, fastpath)\u001b[0m\n\u001b[1;32m    513\u001b[0m                 \u001b[0mdata\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mSingleBlockManager\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfrom_array\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mindex\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mrefs\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mrefs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    514\u001b[0m             \u001b[0;32melif\u001b[0m \u001b[0mmanager\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m\"array\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    515\u001b[0m                 \u001b[0mdata\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mSingleArrayManager\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfrom_array\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mindex\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    516\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 517\u001b[0;31m         \u001b[0mNDFrame\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__init__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m    518\u001b[0m         \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mname\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mname\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    519\u001b[0m         \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_set_axis\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mindex\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m~/miniconda3/envs/suno_env/lib/python3.10/site-packages/pandas/core/generic.py\u001b[0m in \u001b[0;36m?\u001b[0;34m(self, data, copy, attrs)\u001b[0m\n\u001b[0;32m--> 265\u001b[0;31m     def __init__(\n\u001b[0m\u001b[1;32m    266\u001b[0m         \u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    267\u001b[0m         \u001b[0mdata\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mManager\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    268\u001b[0m         \u001b[0mcopy\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mbool_t\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mFalse\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;31mKeyboardInterrupt\u001b[0m: "
     ]
    }
   ],
   "source": [
    "from tqdm import tqdm\n",
    "\n",
    "for idx in tqdm(range(100)):\n",
    "    meta_id = discogs_subset_metas_with_tags[idx][\"id\"]\n",
    "    base_meta = id_to_meta[meta_id]\n",
    "\n",
    "    # loose string match on title and artist\n",
    "    title = base_meta[\"title\"]\n",
    "    artist = base_meta[\"artists\"][0][\"name\"]\n",
    "\n",
    "    # iterate over the billboard df and find the row that has the same title and artist\n",
    "    for index, row in billboard_collapsed.iterrows():\n",
    "        # make the string matching case insensitive\n",
    "        if row[\"title\"].lower() == title.lower() and row[\"performer\"].lower() == artist.lower():\n",
    "            print(row)\n",
    "            break\n",
    "\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "suno_env",
   "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.10.9"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}
