Update README.md
[battle-of-the-bands.git] / beatles-vs-stones-gather-data.ipynb
index 7483201d489bca65b2429b59576510680ebec3f6..18b90c9db92a44c0f59467792d3dcc70b205993d 100644 (file)
@@ -4,27 +4,15 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "# Sad songs<a name=\"top\"></a>\n",
+    "# Battle of the Bands: Data gathering<a name=\"top\"></a>\n",
     "\n",
     "This is a replication of the [fitteR happieR](http://rcharlie.com/2017-02-16-fitteR-happieR/) post which attempted to find the most depressing Radiohead song.\n",
     "\n",
     "I've redone it here, using tools available in TM351.\n",
     "\n",
-    "I'm also on a bit of a Beatles jag, so I've also done the analysis for Beatles songs.\n",
-    "\n",
-    "### Some data sources\n",
-    "\n",
-    "* http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0115255#s5\n",
-    "* https://www.discogs.com/developers/#page:database,header:database-artist-releases\n",
-    "* http://data.discogs.com/\n",
-    "\n",
-    "* https://labrosa.ee.columbia.edu/millionsong/\n",
-    "\n",
-    "* https://twitter.com/kcimc/status/893855561590157312?s=09 and https://drive.google.com/file/d/0B9tyIRZ76JCdN3NtaVpPU3c4QWs/view (stored locally in the [1m.pkl](1m.pkl) folder)\n",
-    "\n",
+    "I'm also on a bit of a Beatles jag, so I've also done the analysis for The Beatles and The Rolling Stones.\n",
     "\n",
     "## Contents\n",
-    "### Data gathering\n",
     "\n",
     "* [Getting data from Spotify](#getspotify)\n",
     "* [Tag album with artist](#tagalbumwithartist)\n",
     "* [Matching datasets](#matchingdatasets)\n",
     "* [Copy the lyrics over](#copylyrics)\n",
     "* [Sentiment analysis](#sentimentanalysis)\n",
-    "\n",
-    "### Data analysis\n",
-    "* [Analysis](#analysis)\n",
-    "* [Sentiment](#sentiment)\n",
-    "* [Gloom index](#gloomindex)\n",
-    "* [Revised gloom index](#revisedgloomindex)\n",
-    "* [Contrasting songs](#valencenegcontrast)\n",
-    "* [Gloom per album](#gloomperalbum)\n",
-    "* [Complexity per album](#complexityovertime)\n",
-    "\n",
-    "### [Conclusion](#conclusion)"
+    "* [Remove live and duplicate tracks](#removedupliates)"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 3,
+   "execution_count": 1,
    "metadata": {
     "run_control": {
      "read_only": false
@@ -85,7 +63,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 4,
+   "execution_count": 2,
    "metadata": {},
    "outputs": [],
    "source": [
@@ -95,7 +73,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 10,
+   "execution_count": 3,
    "metadata": {},
    "outputs": [],
    "source": [
   },
   {
    "cell_type": "code",
-   "execution_count": 5,
+   "execution_count": 4,
    "metadata": {},
    "outputs": [],
    "source": [
   },
   {
    "cell_type": "code",
-   "execution_count": 6,
+   "execution_count": 5,
    "metadata": {},
    "outputs": [
     {
        "['app_name', 'client_id', 'client_secret', 'redirect_uri', 'token']"
       ]
      },
-     "execution_count": 6,
+     "execution_count": 5,
      "metadata": {},
      "output_type": "execute_result"
     }
   },
   {
    "cell_type": "code",
-   "execution_count": 5,
-   "metadata": {
-    "collapsed": true
-   },
+   "execution_count": 6,
+   "metadata": {},
    "outputs": [],
    "source": [
     "## How to write the config file. Fill in the details, and create a different config section for Spotify.\n",
   },
   {
    "cell_type": "code",
-   "execution_count": 7,
+   "execution_count": 14,
    "metadata": {},
    "outputs": [],
    "source": [
     "stones_id = '22bE4uQ6baNwSHPVcDxLCe'\n",
-    "beatles_id = '3WrFJ7ztbogyGnTHbHJFl2'"
+    "beatles_id = '3WrFJ7ztbogyGnTHbHJFl2'\n",
+    "radiohead_id = '4Z8W4fKeB5YxbusRsdQVPb'"
    ]
   },
   {
   },
   {
    "cell_type": "code",
-   "execution_count": 6,
+   "execution_count": 8,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "def get_spotify_auth_token():\n",
+    "    auth_url = 'https://accounts.spotify.com/api/token'\n",
+    "    auth_data = urllib.parse.urlencode({'grant_type': 'client_credentials'}).encode('utf-8')\n",
+    "    auth_id = base64.standard_b64encode((config['spotify']['client_id'] + \\\n",
+    "        ':' + config['spotify']['client_secret']).encode('utf-8')).decode('utf-8)')\n",
+    "    auth_headers = {'Authorization': 'Basic ' + auth_id}\n",
+    "    auth_request = urllib.request.Request(auth_url, data=auth_data, headers=auth_headers)\n",
+    "    with urllib.request.urlopen(auth_request) as f:\n",
+    "        response = json.loads(f.read().decode('utf-8'))\n",
+    "        return response['token_type'], response['access_token']"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "a_type, a_token = get_spotify_auth_token()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 10,
    "metadata": {},
    "outputs": [],
    "source": [
-    "def get_artists(artist_name):\n",
+    "def get_artists(artist_name, auth_type, auth_token):\n",
+    "    headers = {'Authorization': auth_type + ' ' + auth_token}\n",
     "    query = urllib.parse.urlencode({'q': artist_name, 'type': 'artist'})\n",
-    "    request = 'https://api.spotify.com/v1/search?{}'.format(query)\n",
+    "    url = 'https://api.spotify.com/v1/search?{}'.format(query)\n",
+    "    request = urllib.request.Request(url, headers=headers, method='GET')\n",
+    "\n",
     "    with urllib.request.urlopen(request) as f:\n",
     "        response = json.loads(f.read().decode('utf-8'))\n",
     "        artists = []\n",
   },
   {
    "cell_type": "code",
-   "execution_count": 7,
+   "execution_count": 11,
    "metadata": {},
    "outputs": [
     {
       "text/plain": [
        "('22bE4uQ6baNwSHPVcDxLCe',\n",
        " [{'id': '22bE4uQ6baNwSHPVcDxLCe',\n",
-       "   'image': 'https://i.scdn.co/image/999fa985ec8beb68af356b1fc1bc3cd5ba3e0a68',\n",
+       "   'image': 'https://i.scdn.co/image/b6b925d5b9f0b5fed8ad52ff887d7351bc7e26c7',\n",
        "   'name': 'The Rolling Stones'}])"
       ]
      },
-     "execution_count": 7,
+     "execution_count": 11,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "artists = get_artists('the rolling stones')\n",
+    "artists = get_artists('the rolling stones', a_type, a_token)\n",
     "stones_id = artists[0]['id']\n",
     "stones_id, artists"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 8,
+   "execution_count": 12,
    "metadata": {},
    "outputs": [
     {
       "text/plain": [
        "('3WrFJ7ztbogyGnTHbHJFl2',\n",
        " [{'id': '3WrFJ7ztbogyGnTHbHJFl2',\n",
-       "   'image': 'https://i.scdn.co/image/934c57df9fbdbbaa5e93b55994a4cb9571fd2085',\n",
+       "   'image': 'https://i.scdn.co/image/197cff807611777427c93258f0a1ccdf6b013b09',\n",
        "   'name': 'The Beatles'}])"
       ]
      },
-     "execution_count": 8,
+     "execution_count": 12,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "artists = get_artists('the beatles')\n",
+    "artists = get_artists('the beatles', a_type, a_token)\n",
     "beatles_id = artists[0]['id']\n",
     "beatles_id, artists"
    ]
   },
+  {
+   "cell_type": "code",
+   "execution_count": 13,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "('4Z8W4fKeB5YxbusRsdQVPb',\n",
+       " [{'id': '4Z8W4fKeB5YxbusRsdQVPb',\n",
+       "   'image': 'https://i.scdn.co/image/afcd616e1ef2d2786f47b3b4a8a6aeea24a72adc',\n",
+       "   'name': 'Radiohead'},\n",
+       "  {'id': '76j9XexCHSuiclvMCnPg3T', 'name': 'Radiohead'}])"
+      ]
+     },
+     "execution_count": 13,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "artists = get_artists('radiohead', a_type, a_token)\n",
+    "radiohead_id = artists[0]['id']\n",
+    "radiohead_id, artists"
+   ]
+  },
   {
    "cell_type": "markdown",
    "metadata": {},
   },
   {
    "cell_type": "code",
-   "execution_count": 9,
+   "execution_count": 20,
    "metadata": {},
    "outputs": [],
    "source": [
-    "def get_albums(artist_id):\n",
-    "        request = 'https://api.spotify.com/v1/artists/{id}/albums?market=GB&album_type=album'.format(id=artist_id)\n",
-    "        with urllib.request.urlopen(request) as f:\n",
-    "            response = json.loads(f.read().decode('utf-8'))\n",
-    "            for a in response['items']:\n",
-    "                album_request = a['href']\n",
-    "                with urllib.request.urlopen(album_request) as af:\n",
-    "                    album = json.loads(af.read().decode('utf-8'))\n",
-    "                    album['_id'] = album['id']\n",
-    "                    albums.replace_one({'_id': album['_id']}, album, upsert=True)"
+    "def get_albums(artist_id, auth_type, auth_token):\n",
+    "    headers = {'Authorization': auth_type + ' ' + auth_token}\n",
+    "    url = 'https://api.spotify.com/v1/artists/{a_id}/albums?market=GB&album_type=album'.format(a_id=artist_id)\n",
+    "    request = urllib.request.Request(url, headers=headers, method='GET')\n",
+    "#     request = 'https://api.spotify.com/v1/artists/{id}/albums?market=GB&album_type=album'.format(id=artist_id)\n",
+    "    with urllib.request.urlopen(request) as f:\n",
+    "        response = json.loads(f.read().decode('utf-8'))\n",
+    "        for a in response['items']:\n",
+    "            album_url = a['href']\n",
+    "            album_request = urllib.request.Request(album_url, headers=headers, method='GET')\n",
+    "            with urllib.request.urlopen(album_request) as af:\n",
+    "                album = json.loads(af.read().decode('utf-8'))\n",
+    "                album['_id'] = album['id']\n",
+    "                albums.replace_one({'_id': album['_id']}, album, upsert=True)                "
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 41,
+   "execution_count": 30,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "15"
+       "52"
       ]
      },
-     "execution_count": 41,
+     "execution_count": 30,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "get_albums(beatles_id)\n",
+    "get_albums(beatles_id, a_type, a_token)\n",
     "albums.find().count()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 13,
+   "execution_count": 31,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "48"
+       "62"
       ]
      },
-     "execution_count": 13,
+     "execution_count": 31,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "get_albums(stones_id)\n",
+    "get_albums(stones_id, a_type, a_token)\n",
     "albums.find().count()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 13,
+   "execution_count": 31,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "62"
+      ]
+     },
+     "execution_count": 31,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "get_albums(radiohead_id, a_type, a_token)\n",
+    "albums.find().count()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 32,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/html": [
        "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
        "<table border=\"1\" class=\"dataframe\">\n",
        "  <thead>\n",
        "    <tr style=\"text-align: right;\">\n",
        "      <td>album</td>\n",
        "    </tr>\n",
        "    <tr>\n",
+       "      <th>artist_id</th>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>artist_name</th>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
        "      <th>artists</th>\n",
        "      <td>[{'href': 'https://api.spotify.com/v1/artists/...</td>\n",
        "      <td>[{'href': 'https://api.spotify.com/v1/artists/...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>copyrights</th>\n",
-       "      <td>[{'text': '(C) 2016 Apple Corps Ltd.', 'type':...</td>\n",
-       "      <td>[{'text': '(C) 2015 Apple Corps Ltd.', 'type':...</td>\n",
-       "      <td>[{'text': '(C) 2015 Apple Corps Ltd', 'type': ...</td>\n",
-       "      <td>[{'text': '(C) 2015 Apple Corps Ltd', 'type': ...</td>\n",
-       "      <td>[{'text': '(C) 2015 Apple Corps Ltd', 'type': ...</td>\n",
+       "      <td>[{'type': 'C', 'text': '© 2016 Apple Corps Ltd...</td>\n",
+       "      <td>[{'type': 'C', 'text': '© 2015 Apple Corps Ltd...</td>\n",
+       "      <td>[{'type': 'C', 'text': '© 2015 Apple Corps Ltd...</td>\n",
+       "      <td>[{'type': 'C', 'text': '© 2015 Apple Corps Ltd...</td>\n",
+       "      <td>[{'type': 'C', 'text': '© 2015 Apple Corps Ltd...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>external_ids</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>images</th>\n",
-       "      <td>[{'height': 640, 'url': 'https://i.scdn.co/ima...</td>\n",
-       "      <td>[{'height': 640, 'url': 'https://i.scdn.co/ima...</td>\n",
-       "      <td>[{'height': 640, 'url': 'https://i.scdn.co/ima...</td>\n",
-       "      <td>[{'height': 640, 'url': 'https://i.scdn.co/ima...</td>\n",
-       "      <td>[{'height': 640, 'url': 'https://i.scdn.co/ima...</td>\n",
+       "      <td>[{'url': 'https://i.scdn.co/image/1b1879c1dd16...</td>\n",
+       "      <td>[{'url': 'https://i.scdn.co/image/4e6916b16ce5...</td>\n",
+       "      <td>[{'url': 'https://i.scdn.co/image/809c6f28db64...</td>\n",
+       "      <td>[{'url': 'https://i.scdn.co/image/9cab76ad73ce...</td>\n",
+       "      <td>[{'url': 'https://i.scdn.co/image/411d661890b8...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>label</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>popularity</th>\n",
-       "      <td>63</td>\n",
-       "      <td>77</td>\n",
-       "      <td>68</td>\n",
-       "      <td>75</td>\n",
-       "      <td>58</td>\n",
+       "      <td>59</td>\n",
+       "      <td>76</td>\n",
+       "      <td>69</td>\n",
+       "      <td>76</td>\n",
+       "      <td>57</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>release_date</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>tracks</th>\n",
-       "      <td>{'limit': 50, 'previous': None, 'next': None, ...</td>\n",
-       "      <td>{'limit': 50, 'previous': None, 'next': None, ...</td>\n",
-       "      <td>{'limit': 50, 'previous': None, 'next': None, ...</td>\n",
-       "      <td>{'limit': 50, 'previous': None, 'next': None, ...</td>\n",
-       "      <td>{'limit': 50, 'previous': None, 'next': None, ...</td>\n",
+       "      <td>{'href': 'https://api.spotify.com/v1/albums/5X...</td>\n",
+       "      <td>{'href': 'https://api.spotify.com/v1/albums/5j...</td>\n",
+       "      <td>{'href': 'https://api.spotify.com/v1/albums/2p...</td>\n",
+       "      <td>{'href': 'https://api.spotify.com/v1/albums/2P...</td>\n",
+       "      <td>{'href': 'https://api.spotify.com/v1/albums/47...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>type</th>\n",
        "                                                                        0  \\\n",
        "_id                                                5XfJmldgWzrc1AIdbBaVZn   \n",
        "album_type                                                          album   \n",
+       "artist_id                                                             NaN   \n",
+       "artist_name                                                           NaN   \n",
        "artists                 [{'href': 'https://api.spotify.com/v1/artists/...   \n",
        "available_markets       [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "copyrights              [{'text': '(C) 2016 Apple Corps Ltd.', 'type':...   \n",
+       "copyrights              [{'type': 'C', 'text': '© 2016 Apple Corps Ltd...   \n",
        "external_ids                                    {'upc': '00602557054989'}   \n",
        "external_urls           {'spotify': 'https://open.spotify.com/album/5X...   \n",
        "genres                                                                 []   \n",
        "href                    https://api.spotify.com/v1/albums/5XfJmldgWzrc...   \n",
        "id                                                 5XfJmldgWzrc1AIdbBaVZn   \n",
-       "images                  [{'height': 640, 'url': 'https://i.scdn.co/ima...   \n",
+       "images                  [{'url': 'https://i.scdn.co/image/1b1879c1dd16...   \n",
        "label                            Digital Distribution Trinidad and Tobago   \n",
        "name                                           Live At The Hollywood Bowl   \n",
-       "popularity                                                             63   \n",
+       "popularity                                                             59   \n",
        "release_date                                                   2016-09-09   \n",
        "release_date_precision                                                day   \n",
-       "tracks                  {'limit': 50, 'previous': None, 'next': None, ...   \n",
+       "tracks                  {'href': 'https://api.spotify.com/v1/albums/5X...   \n",
        "type                                                                album   \n",
        "uri                                  spotify:album:5XfJmldgWzrc1AIdbBaVZn   \n",
        "\n",
        "                                                                        1  \\\n",
        "_id                                                5ju5Ouzan3QwXqQt1Tihbh   \n",
        "album_type                                                          album   \n",
+       "artist_id                                                             NaN   \n",
+       "artist_name                                                           NaN   \n",
        "artists                 [{'href': 'https://api.spotify.com/v1/artists/...   \n",
        "available_markets       [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "copyrights              [{'text': '(C) 2015 Apple Corps Ltd.', 'type':...   \n",
+       "copyrights              [{'type': 'C', 'text': '© 2015 Apple Corps Ltd...   \n",
        "external_ids                                    {'upc': '00602547673503'}   \n",
        "external_urls           {'spotify': 'https://open.spotify.com/album/5j...   \n",
        "genres                                                                 []   \n",
        "href                    https://api.spotify.com/v1/albums/5ju5Ouzan3Qw...   \n",
        "id                                                 5ju5Ouzan3QwXqQt1Tihbh   \n",
-       "images                  [{'height': 640, 'url': 'https://i.scdn.co/ima...   \n",
+       "images                  [{'url': 'https://i.scdn.co/image/4e6916b16ce5...   \n",
        "label                            Digital Distribution Trinidad and Tobago   \n",
        "name                                                       1 (Remastered)   \n",
-       "popularity                                                             77   \n",
+       "popularity                                                             76   \n",
        "release_date                                                   2000-11-13   \n",
        "release_date_precision                                                day   \n",
-       "tracks                  {'limit': 50, 'previous': None, 'next': None, ...   \n",
+       "tracks                  {'href': 'https://api.spotify.com/v1/albums/5j...   \n",
        "type                                                                album   \n",
        "uri                                  spotify:album:5ju5Ouzan3QwXqQt1Tihbh   \n",
        "\n",
        "                                                                        2  \\\n",
        "_id                                                2pCqZLeavM2BMovJXsJEIV   \n",
        "album_type                                                          album   \n",
+       "artist_id                                                             NaN   \n",
+       "artist_name                                                           NaN   \n",
        "artists                 [{'href': 'https://api.spotify.com/v1/artists/...   \n",
        "available_markets       [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "copyrights              [{'text': '(C) 2015 Apple Corps Ltd', 'type': ...   \n",
+       "copyrights              [{'type': 'C', 'text': '© 2015 Apple Corps Ltd...   \n",
        "external_ids                                    {'upc': '00602547670069'}   \n",
        "external_urls           {'spotify': 'https://open.spotify.com/album/2p...   \n",
        "genres                                                                 []   \n",
        "href                    https://api.spotify.com/v1/albums/2pCqZLeavM2B...   \n",
        "id                                                 2pCqZLeavM2BMovJXsJEIV   \n",
-       "images                  [{'height': 640, 'url': 'https://i.scdn.co/ima...   \n",
+       "images                  [{'url': 'https://i.scdn.co/image/809c6f28db64...   \n",
        "label                                                       EMI Catalogue   \n",
        "name                                               Let It Be (Remastered)   \n",
-       "popularity                                                             68   \n",
+       "popularity                                                             69   \n",
        "release_date                                                   1970-05-08   \n",
        "release_date_precision                                                day   \n",
-       "tracks                  {'limit': 50, 'previous': None, 'next': None, ...   \n",
+       "tracks                  {'href': 'https://api.spotify.com/v1/albums/2p...   \n",
        "type                                                                album   \n",
        "uri                                  spotify:album:2pCqZLeavM2BMovJXsJEIV   \n",
        "\n",
        "                                                                        3  \\\n",
        "_id                                                2Pqkn9Dq2DFtdfkKAeqgMd   \n",
        "album_type                                                          album   \n",
+       "artist_id                                                             NaN   \n",
+       "artist_name                                                           NaN   \n",
        "artists                 [{'href': 'https://api.spotify.com/v1/artists/...   \n",
        "available_markets       [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "copyrights              [{'text': '(C) 2015 Apple Corps Ltd', 'type': ...   \n",
+       "copyrights              [{'type': 'C', 'text': '© 2015 Apple Corps Ltd...   \n",
        "external_ids                                    {'upc': '00602547670342'}   \n",
        "external_urls           {'spotify': 'https://open.spotify.com/album/2P...   \n",
        "genres                                                                 []   \n",
        "href                    https://api.spotify.com/v1/albums/2Pqkn9Dq2DFt...   \n",
        "id                                                 2Pqkn9Dq2DFtdfkKAeqgMd   \n",
-       "images                  [{'height': 640, 'url': 'https://i.scdn.co/ima...   \n",
+       "images                  [{'url': 'https://i.scdn.co/image/9cab76ad73ce...   \n",
        "label                                                       EMI Catalogue   \n",
        "name                                              Abbey Road (Remastered)   \n",
-       "popularity                                                             75   \n",
+       "popularity                                                             76   \n",
        "release_date                                                   1969-09-26   \n",
        "release_date_precision                                                day   \n",
-       "tracks                  {'limit': 50, 'previous': None, 'next': None, ...   \n",
+       "tracks                  {'href': 'https://api.spotify.com/v1/albums/2P...   \n",
        "type                                                                album   \n",
        "uri                                  spotify:album:2Pqkn9Dq2DFtdfkKAeqgMd   \n",
        "\n",
        "                                                                        4  \n",
        "_id                                                47bcKzmKgmMPHXNVOWpLiu  \n",
        "album_type                                                          album  \n",
+       "artist_id                                                             NaN  \n",
+       "artist_name                                                           NaN  \n",
        "artists                 [{'href': 'https://api.spotify.com/v1/artists/...  \n",
        "available_markets       [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...  \n",
-       "copyrights              [{'text': '(C) 2015 Apple Corps Ltd', 'type': ...  \n",
+       "copyrights              [{'type': 'C', 'text': '© 2015 Apple Corps Ltd...  \n",
        "external_ids                                    {'upc': '00602547670328'}  \n",
        "external_urls           {'spotify': 'https://open.spotify.com/album/47...  \n",
        "genres                                                                 []  \n",
        "href                    https://api.spotify.com/v1/albums/47bcKzmKgmMP...  \n",
        "id                                                 47bcKzmKgmMPHXNVOWpLiu  \n",
-       "images                  [{'height': 640, 'url': 'https://i.scdn.co/ima...  \n",
+       "images                  [{'url': 'https://i.scdn.co/image/411d661890b8...  \n",
        "label                                                       EMI Catalogue  \n",
        "name                                        Yellow Submarine (Remastered)  \n",
-       "popularity                                                             58  \n",
+       "popularity                                                             57  \n",
        "release_date                                                   1969-01-17  \n",
        "release_date_precision                                                day  \n",
-       "tracks                  {'limit': 50, 'previous': None, 'next': None, ...  \n",
+       "tracks                  {'href': 'https://api.spotify.com/v1/albums/47...  \n",
        "type                                                                album  \n",
        "uri                                  spotify:album:47bcKzmKgmMPHXNVOWpLiu  "
       ]
      },
-     "execution_count": 13,
+     "execution_count": 32,
      "metadata": {},
      "output_type": "execute_result"
     }
   },
   {
    "cell_type": "code",
-   "execution_count": 10,
-   "metadata": {
-    "collapsed": true
-   },
+   "execution_count": 33,
+   "metadata": {},
    "outputs": [],
    "source": [
     "for a in albums.find({}, ['artists']):\n",
   },
   {
    "cell_type": "code",
-   "execution_count": 11,
+   "execution_count": 34,
    "metadata": {
     "scrolled": true
    },
      "data": {
       "text/html": [
        "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
        "<table border=\"1\" class=\"dataframe\">\n",
        "  <thead>\n",
        "    <tr style=\"text-align: right;\">\n",
        "      <td>Havana Moon (Live)</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>30</th>\n",
-       "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
-       "      <td>The Rolling Stones</td>\n",
-       "      <td>Totally Stripped (Live)</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>31</th>\n",
-       "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
-       "      <td>The Rolling Stones</td>\n",
-       "      <td>Live 1965: Music From Charlie Is My Darling (L...</td>\n",
+       "      <th>...</th>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>32</th>\n",
        "      <th>35</th>\n",
        "      <td>0ZGddnvcVzHVHfE3WW1tV5</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>Bridges To Babylon (2009 Re-Mastered)</td>\n",
+       "      <td>Bridges To Babylon (Remastered)</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>36</th>\n",
        "      <th>37</th>\n",
        "      <td>62ZT16LY1phGM0O8x5qW1z</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>Voodoo Lounge (2009 Re-Mastered)</td>\n",
+       "      <td>Voodoo Lounge (Remastered 2009)</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>38</th>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Some Girls (Deluxe Version)</td>\n",
        "    </tr>\n",
+       "    <tr>\n",
+       "      <th>48</th>\n",
+       "      <td>4jbWZmf7kRxCBD6tgVepYh</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Forever</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>49</th>\n",
+       "      <td>3sr6lAuO3nmB1u8ZuQgpiX</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Spiceworld</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>50</th>\n",
+       "      <td>3x2jF7blR6bFHtk4MccsyJ</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Spice</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>51</th>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>52</th>\n",
+       "      <td>7Hk1X2BCADxuR9saTIKfOW</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>On Air (Deluxe)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>53</th>\n",
+       "      <td>6iCIB08bkoitQOL5y2uEsM</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Sticky Fingers Live At The Fonda Theatre</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>54</th>\n",
+       "      <td>34d9ClCaKRoQ8pMeJ9Gfvt</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>55</th>\n",
+       "      <td>0aWIIpfY32rT1i3yO9LROl</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>56</th>\n",
+       "      <td>5D7RtaChuvF0Av1xXT3acu</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>57</th>\n",
+       "      <td>2b3y5k1DchDACjH5KMlgQv</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>58</th>\n",
+       "      <td>3wkyUMDuH56iNaSxKvukax</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>59</th>\n",
+       "      <td>6hB5kO3oV3tlnblCNSSA9Z</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>60</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>61</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
+       "<p>62 rows × 3 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
        "27  6400dnyeDyD2mIFHfkwHXN           Radiohead   \n",
        "28  4g9Jfls8z2nbQxj5PiXkiy  The Rolling Stones   \n",
        "29  4fhWcu56Bbh5wALuTouFVW  The Rolling Stones   \n",
-       "30  3PbRKFafwE7Of8e4dTee72  The Rolling Stones   \n",
-       "31  5eTqRwTGKPBUiUuN1rFaXD  The Rolling Stones   \n",
+       "..                     ...                 ...   \n",
        "32  3CHu7qW160uqPZHW3TMZ1l  The Rolling Stones   \n",
        "33  4FTHynKEtuP7eppERNfjyG  The Rolling Stones   \n",
        "34  50UGtgNA5bq1c0BDjPfmbD  The Rolling Stones   \n",
        "45  2wZgoXS06wSdu9C0ZJOvlc  The Rolling Stones   \n",
        "46  54sqbAXxR1jFfyXb1WvrHK  The Rolling Stones   \n",
        "47  6FjXxl9VLURGuubdXUn2J3  The Rolling Stones   \n",
+       "48  4jbWZmf7kRxCBD6tgVepYh         Spice Girls   \n",
+       "49  3sr6lAuO3nmB1u8ZuQgpiX         Spice Girls   \n",
+       "50  3x2jF7blR6bFHtk4MccsyJ         Spice Girls   \n",
+       "51  3LXItxKnnJcEDc5QdTc00n         The Beatles   \n",
+       "52  7Hk1X2BCADxuR9saTIKfOW  The Rolling Stones   \n",
+       "53  6iCIB08bkoitQOL5y2uEsM  The Rolling Stones   \n",
+       "54  34d9ClCaKRoQ8pMeJ9Gfvt  The Rolling Stones   \n",
+       "55  0aWIIpfY32rT1i3yO9LROl  The Rolling Stones   \n",
+       "56  5D7RtaChuvF0Av1xXT3acu  The Rolling Stones   \n",
+       "57  2b3y5k1DchDACjH5KMlgQv  The Rolling Stones   \n",
+       "58  3wkyUMDuH56iNaSxKvukax  The Rolling Stones   \n",
+       "59  6hB5kO3oV3tlnblCNSSA9Z        Muddy Waters   \n",
+       "60  3yNf6JVyEEqvM4OqKEmZSC        Muddy Waters   \n",
+       "61  2gCp8kyDcL93s4kVP4VMTC  The Rolling Stones   \n",
        "\n",
        "                                                 name  \n",
        "0                          Live At The Hollywood Bowl  \n",
        "27                                        Pablo Honey  \n",
        "28                                    Blue & Lonesome  \n",
        "29                                 Havana Moon (Live)  \n",
-       "30                            Totally Stripped (Live)  \n",
-       "31  Live 1965: Music From Charlie Is My Darling (L...  \n",
+       "..                                                ...  \n",
        "32                                      Shine A Light  \n",
        "33                   A Bigger Bang (2009 Re-Mastered)  \n",
        "34                                         Live Licks  \n",
-       "35              Bridges To Babylon (2009 Re-Mastered)  \n",
+       "35                    Bridges To Babylon (Remastered)  \n",
        "36                                           Stripped  \n",
-       "37                   Voodoo Lounge (2009 Re-Mastered)  \n",
+       "37                    Voodoo Lounge (Remastered 2009)  \n",
        "38                                         Flashpoint  \n",
        "39                    Steel Wheels (2009 Re-Mastered)  \n",
        "40                                         Dirty Work  \n",
        "44                      Tattoo You (2009 Re-Mastered)  \n",
        "45                Emotional Rescue (2009 Re-Mastered)  \n",
        "46                                         Some Girls  \n",
-       "47                        Some Girls (Deluxe Version)  "
+       "47                        Some Girls (Deluxe Version)  \n",
+       "48                                            Forever  \n",
+       "49                                         Spiceworld  \n",
+       "50                                              Spice  \n",
+       "51  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...  \n",
+       "52                                    On Air (Deluxe)  \n",
+       "53           Sticky Fingers Live At The Fonda Theatre  \n",
+       "54                          Ladies & Gentlemen (Live)  \n",
+       "55                            Totally Stripped (Live)  \n",
+       "56                  Totally Stripped - Brixton (Live)  \n",
+       "57                Totally Stripped - Amsterdam (Live)  \n",
+       "58                    Totally Stripped - Paris (Live)  \n",
+       "59                    Live At The Checkerboard Lounge  \n",
+       "60                    Live At The Checkerboard Lounge  \n",
+       "61                      Some Girls: Live In Texas '78  \n",
+       "\n",
+       "[62 rows x 3 columns]"
       ]
      },
-     "execution_count": 11,
+     "execution_count": 34,
      "metadata": {},
      "output_type": "execute_result"
     }
   },
   {
    "cell_type": "code",
-   "execution_count": 16,
+   "execution_count": 35,
    "metadata": {},
    "outputs": [],
    "source": [
-    "def get_tracks(album_id):\n",
+    "def get_tracks(album_id, auth_type, auth_token):\n",
+    "    headers = {'Authorization': auth_type + ' ' + auth_token}\n",
+    "\n",
     "    album = albums.find_one({'_id': album_id})\n",
     "    for t in album['tracks']['items']:\n",
     "        for _ in range(10):\n",
     "            try:\n",
-    "                with urllib.request.urlopen(t['href']) as f:\n",
+    "                track_request = urllib.request.Request(t['href'], headers=headers, method='GET')\n",
+    "                with urllib.request.urlopen(track_request) as f:                \n",
+    "#                 with urllib.request.urlopen(t['href']) as f:\n",
     "                    track = json.loads(f.read().decode('utf-8'))\n",
     "                    track['_id'] = track['id']\n",
     "                    track['album_id'] = album_id\n",
   },
   {
    "cell_type": "code",
-   "execution_count": 45,
+   "execution_count": 38,
    "metadata": {
     "scrolled": true
    },
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "Rate limited. Pausing for 4\n",
-      "Rate limited. Pausing for 4\n",
-      "Rate limited. Pausing for 4\n"
+      "Rate limited. Pausing for 1\n",
+      "Rate limited. Pausing for 1\n",
+      "Rate limited. Pausing for 2\n",
+      "Rate limited. Pausing for 2\n",
+      "Rate limited. Pausing for 1\n",
+      "Rate limited. Pausing for 1\n",
+      "Rate limited. Pausing for 1\n"
      ]
     },
     {
      "data": {
       "text/plain": [
-       "383"
+       "924"
       ]
      },
-     "execution_count": 45,
+     "execution_count": 38,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
+    "a_type, a_token = get_spotify_auth_token()\n",
     "for album in albums.find():\n",
-    "    get_tracks(album['_id'])\n",
-    "tracks.find().count()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 17,
-   "metadata": {
-    "scrolled": true
-   },
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Rate limited. Pausing for 4\n",
-      "Rate limited. Pausing for 3\n",
-      "Rate limited. Pausing for 0\n"
-     ]
-    },
-    {
-     "data": {
-      "text/plain": [
-       "671"
-      ]
-     },
-     "execution_count": 17,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "for album in albums.find({'artist_id': stones_id}):\n",
-    "    get_tracks(album['_id'])\n",
+    "    get_tracks(album['_id'], a_type, a_token)\n",
     "tracks.find().count()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 18,
+   "execution_count": 39,
    "metadata": {
     "scrolled": true
    },
      "data": {
       "text/html": [
        "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
        "<table border=\"1\" class=\"dataframe\">\n",
        "  <thead>\n",
        "    <tr style=\"text-align: right;\">\n",
        "  <tbody>\n",
        "    <tr>\n",
        "      <th>_id</th>\n",
-       "      <td>1lLK53LFXWvPzPYtlJIvt0</td>\n",
-       "      <td>0TWa6TQFWHSG5QdSWuTMve</td>\n",
-       "      <td>74tlMxJ8wF0sNp93GBEPdK</td>\n",
-       "      <td>0Za26pWVLQpKfXmb9FX10S</td>\n",
-       "      <td>6295nz7PVXm49Ihqwm39Ew</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>acousticness</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>1jgefM2ZP7RnPVShhy1eUM</td>\n",
+       "      <td>7FagS2T3y5XwDpYvyHfvmc</td>\n",
+       "      <td>1NwDWbpg9dPH12xBd2ibrv</td>\n",
+       "      <td>0r5d5LmhLQwJVEw0kTEExp</td>\n",
+       "      <td>2vnY8xDhRSW1Cc0xPpUMXc</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>album</th>\n",
-       "      <td>{'name': 'Totally Stripped (Live)', 'type': 'a...</td>\n",
-       "      <td>{'name': 'Totally Stripped (Live)', 'type': 'a...</td>\n",
-       "      <td>{'name': 'Totally Stripped (Live)', 'type': 'a...</td>\n",
-       "      <td>{'name': 'Some Girls', 'type': 'album', 'artis...</td>\n",
-       "      <td>{'name': 'Some Girls', 'type': 'album', 'artis...</td>\n",
+       "      <td>{'artists': [{'href': 'https://api.spotify.com...</td>\n",
+       "      <td>{'artists': [{'href': 'https://api.spotify.com...</td>\n",
+       "      <td>{'artists': [{'href': 'https://api.spotify.com...</td>\n",
+       "      <td>{'artists': [{'href': 'https://api.spotify.com...</td>\n",
+       "      <td>{'artists': [{'href': 'https://api.spotify.com...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>album_id</th>\n",
        "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
        "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
-       "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>analysis_url</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>artist_id</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>artist_name</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>4jbWZmf7kRxCBD6tgVepYh</td>\n",
+       "      <td>4jbWZmf7kRxCBD6tgVepYh</td>\n",
+       "      <td>4jbWZmf7kRxCBD6tgVepYh</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>artists</th>\n",
-       "      <td>[{'name': 'The Rolling Stones', 'type': 'artis...</td>\n",
-       "      <td>[{'name': 'The Rolling Stones', 'type': 'artis...</td>\n",
-       "      <td>[{'name': 'The Rolling Stones', 'type': 'artis...</td>\n",
-       "      <td>[{'name': 'The Rolling Stones', 'type': 'artis...</td>\n",
-       "      <td>[{'name': 'The Rolling Stones', 'type': 'artis...</td>\n",
+       "      <td>[{'href': 'https://api.spotify.com/v1/artists/...</td>\n",
+       "      <td>[{'href': 'https://api.spotify.com/v1/artists/...</td>\n",
+       "      <td>[{'href': 'https://api.spotify.com/v1/artists/...</td>\n",
+       "      <td>[{'href': 'https://api.spotify.com/v1/artists/...</td>\n",
+       "      <td>[{'href': 'https://api.spotify.com/v1/artists/...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>available_markets</th>\n",
        "      <td>[GB]</td>\n",
        "      <td>[GB]</td>\n",
-       "      <td>[GB]</td>\n",
-       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
-       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>complexity</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>ctitle</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>danceability</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>disc_number</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>duration_ms</th>\n",
-       "      <td>305280</td>\n",
-       "      <td>240333</td>\n",
-       "      <td>293773</td>\n",
-       "      <td>187440</td>\n",
-       "      <td>204960</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>energy</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>191786</td>\n",
+       "      <td>303626</td>\n",
+       "      <td>255866</td>\n",
+       "      <td>254666</td>\n",
+       "      <td>246600</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>explicit</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>external_ids</th>\n",
-       "      <td>{'isrc': 'GBCBR1500394'}</td>\n",
-       "      <td>{'isrc': 'GBCBR1500393'}</td>\n",
-       "      <td>{'isrc': 'GBCBR1500392'}</td>\n",
-       "      <td>{'isrc': 'GBCJN7800007'}</td>\n",
-       "      <td>{'isrc': 'GBCJN7800008'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1500391'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1500401'}</td>\n",
+       "      <td>{'isrc': 'GBAAA0000931'}</td>\n",
+       "      <td>{'isrc': 'GBAAA0000932'}</td>\n",
+       "      <td>{'isrc': 'GBAAA0000937'}</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>external_urls</th>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/1l...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/0T...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/74...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/0Z...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/62...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>gloom</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/1j...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/7F...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/1N...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/0r...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/2v...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>href</th>\n",
-       "      <td>https://api.spotify.com/v1/tracks/1lLK53LFXWvP...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/0TWa6TQFWHSG...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/74tlMxJ8wF0s...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/0Za26pWVLQpK...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6295nz7PVXm4...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1jgefM2ZP7Rn...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/7FagS2T3y5Xw...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1NwDWbpg9dPH...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/0r5d5LmhLQwJ...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2vnY8xDhRSW1...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>id</th>\n",
-       "      <td>1lLK53LFXWvPzPYtlJIvt0</td>\n",
-       "      <td>0TWa6TQFWHSG5QdSWuTMve</td>\n",
-       "      <td>74tlMxJ8wF0sNp93GBEPdK</td>\n",
-       "      <td>0Za26pWVLQpKfXmb9FX10S</td>\n",
-       "      <td>6295nz7PVXm49Ihqwm39Ew</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>instrumentalness</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>key</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>liveness</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>loudness</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>lyrical_density</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>lyrics</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>mode</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>1jgefM2ZP7RnPVShhy1eUM</td>\n",
+       "      <td>7FagS2T3y5XwDpYvyHfvmc</td>\n",
+       "      <td>1NwDWbpg9dPH12xBd2ibrv</td>\n",
+       "      <td>0r5d5LmhLQwJVEw0kTEExp</td>\n",
+       "      <td>2vnY8xDhRSW1Cc0xPpUMXc</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>name</th>\n",
-       "      <td>Faraway Eyes - Live</td>\n",
-       "      <td>Dead Flowers - Live</td>\n",
-       "      <td>Honky Tonk Women - Live</td>\n",
-       "      <td>Respectable - Remastered</td>\n",
-       "      <td>Before They Make Me Run - Remastered</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>original_lyrics</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>Not Fade Away - Live</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "      <td>Holler</td>\n",
+       "      <td>Tell Me Why</td>\n",
+       "      <td>Weekend Love</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>popularity</th>\n",
-       "      <td>15</td>\n",
-       "      <td>17</td>\n",
-       "      <td>18</td>\n",
-       "      <td>30</td>\n",
-       "      <td>25</td>\n",
+       "      <td>14</td>\n",
+       "      <td>12</td>\n",
+       "      <td>51</td>\n",
+       "      <td>37</td>\n",
+       "      <td>31</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>preview_url</th>\n",
-       "      <td>https://p.scdn.co/mp3-preview/5afdaabfa28e067f...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/e3900e8c4200974d...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/671f51874a70b3f7...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/f5e932d9acc6a359...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/ee5832b597975b27...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>sentiment</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>speechiness</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>tempo</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>time_signature</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>track_href</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/bba1991141c6e594...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/17aed72343067677...</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>track_number</th>\n",
-       "      <td>4</td>\n",
-       "      <td>3</td>\n",
+       "      <td>1</td>\n",
+       "      <td>11</td>\n",
+       "      <td>1</td>\n",
        "      <td>2</td>\n",
        "      <td>7</td>\n",
-       "      <td>8</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>type</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>uri</th>\n",
-       "      <td>spotify:track:1lLK53LFXWvPzPYtlJIvt0</td>\n",
-       "      <td>spotify:track:0TWa6TQFWHSG5QdSWuTMve</td>\n",
-       "      <td>spotify:track:74tlMxJ8wF0sNp93GBEPdK</td>\n",
-       "      <td>spotify:track:0Za26pWVLQpKfXmb9FX10S</td>\n",
-       "      <td>spotify:track:6295nz7PVXm49Ihqwm39Ew</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>valence</th>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>spotify:track:1jgefM2ZP7RnPVShhy1eUM</td>\n",
+       "      <td>spotify:track:7FagS2T3y5XwDpYvyHfvmc</td>\n",
+       "      <td>spotify:track:1NwDWbpg9dPH12xBd2ibrv</td>\n",
+       "      <td>spotify:track:0r5d5LmhLQwJVEw0kTEExp</td>\n",
+       "      <td>spotify:track:2vnY8xDhRSW1Cc0xPpUMXc</td>\n",
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
       ],
       "text/plain": [
        "                                                                   0  \\\n",
-       "_id                                           1lLK53LFXWvPzPYtlJIvt0   \n",
-       "acousticness                                                     NaN   \n",
-       "album              {'name': 'Totally Stripped (Live)', 'type': 'a...   \n",
+       "_id                                           1jgefM2ZP7RnPVShhy1eUM   \n",
+       "album              {'artists': [{'href': 'https://api.spotify.com...   \n",
        "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
-       "analysis_url                                                     NaN   \n",
-       "artist_id                                                        NaN   \n",
-       "artist_name                                                      NaN   \n",
-       "artists            [{'name': 'The Rolling Stones', 'type': 'artis...   \n",
+       "artists            [{'href': 'https://api.spotify.com/v1/artists/...   \n",
        "available_markets                                               [GB]   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                           NaN   \n",
-       "danceability                                                     NaN   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   305280   \n",
-       "energy                                                           NaN   \n",
+       "duration_ms                                                   191786   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBCBR1500394'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/1l...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/1lLK53LFXWvP...   \n",
-       "id                                            1lLK53LFXWvPzPYtlJIvt0   \n",
-       "instrumentalness                                                 NaN   \n",
-       "key                                                              NaN   \n",
-       "liveness                                                         NaN   \n",
-       "loudness                                                         NaN   \n",
-       "lyrical_density                                                  NaN   \n",
-       "lyrics                                                           NaN   \n",
-       "mode                                                             NaN   \n",
-       "name                                             Faraway Eyes - Live   \n",
-       "original_lyrics                                                  NaN   \n",
-       "popularity                                                        15   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/5afdaabfa28e067f...   \n",
-       "sentiment                                                        NaN   \n",
-       "speechiness                                                      NaN   \n",
-       "tempo                                                            NaN   \n",
-       "time_signature                                                   NaN   \n",
-       "track_href                                                       NaN   \n",
-       "track_number                                                       4   \n",
+       "external_ids                                {'isrc': 'GBCBR1500391'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/1j...   \n",
+       "href               https://api.spotify.com/v1/tracks/1jgefM2ZP7Rn...   \n",
+       "id                                            1jgefM2ZP7RnPVShhy1eUM   \n",
+       "name                                            Not Fade Away - Live   \n",
+       "popularity                                                        14   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/bba1991141c6e594...   \n",
+       "track_number                                                       1   \n",
        "type                                                           track   \n",
-       "uri                             spotify:track:1lLK53LFXWvPzPYtlJIvt0   \n",
-       "valence                                                          NaN   \n",
+       "uri                             spotify:track:1jgefM2ZP7RnPVShhy1eUM   \n",
        "\n",
        "                                                                   1  \\\n",
-       "_id                                           0TWa6TQFWHSG5QdSWuTMve   \n",
-       "acousticness                                                     NaN   \n",
-       "album              {'name': 'Totally Stripped (Live)', 'type': 'a...   \n",
+       "_id                                           7FagS2T3y5XwDpYvyHfvmc   \n",
+       "album              {'artists': [{'href': 'https://api.spotify.com...   \n",
        "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
-       "analysis_url                                                     NaN   \n",
-       "artist_id                                                        NaN   \n",
-       "artist_name                                                      NaN   \n",
-       "artists            [{'name': 'The Rolling Stones', 'type': 'artis...   \n",
+       "artists            [{'href': 'https://api.spotify.com/v1/artists/...   \n",
        "available_markets                                               [GB]   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                           NaN   \n",
-       "danceability                                                     NaN   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   240333   \n",
-       "energy                                                           NaN   \n",
+       "duration_ms                                                   303626   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBCBR1500393'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/0T...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/0TWa6TQFWHSG...   \n",
-       "id                                            0TWa6TQFWHSG5QdSWuTMve   \n",
-       "instrumentalness                                                 NaN   \n",
-       "key                                                              NaN   \n",
-       "liveness                                                         NaN   \n",
-       "loudness                                                         NaN   \n",
-       "lyrical_density                                                  NaN   \n",
-       "lyrics                                                           NaN   \n",
-       "mode                                                             NaN   \n",
-       "name                                             Dead Flowers - Live   \n",
-       "original_lyrics                                                  NaN   \n",
-       "popularity                                                        17   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/e3900e8c4200974d...   \n",
-       "sentiment                                                        NaN   \n",
-       "speechiness                                                      NaN   \n",
-       "tempo                                                            NaN   \n",
-       "time_signature                                                   NaN   \n",
-       "track_href                                                       NaN   \n",
-       "track_number                                                       3   \n",
+       "external_ids                                {'isrc': 'GBCBR1500401'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/7F...   \n",
+       "href               https://api.spotify.com/v1/tracks/7FagS2T3y5Xw...   \n",
+       "id                                            7FagS2T3y5XwDpYvyHfvmc   \n",
+       "name                                       Jumpin' Jack Flash - Live   \n",
+       "popularity                                                        12   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/17aed72343067677...   \n",
+       "track_number                                                      11   \n",
        "type                                                           track   \n",
-       "uri                             spotify:track:0TWa6TQFWHSG5QdSWuTMve   \n",
-       "valence                                                          NaN   \n",
+       "uri                             spotify:track:7FagS2T3y5XwDpYvyHfvmc   \n",
        "\n",
        "                                                                   2  \\\n",
-       "_id                                           74tlMxJ8wF0sNp93GBEPdK   \n",
-       "acousticness                                                     NaN   \n",
-       "album              {'name': 'Totally Stripped (Live)', 'type': 'a...   \n",
-       "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
-       "analysis_url                                                     NaN   \n",
-       "artist_id                                                        NaN   \n",
-       "artist_name                                                      NaN   \n",
-       "artists            [{'name': 'The Rolling Stones', 'type': 'artis...   \n",
-       "available_markets                                               [GB]   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                           NaN   \n",
-       "danceability                                                     NaN   \n",
+       "_id                                           1NwDWbpg9dPH12xBd2ibrv   \n",
+       "album              {'artists': [{'href': 'https://api.spotify.com...   \n",
+       "album_id                                      4jbWZmf7kRxCBD6tgVepYh   \n",
+       "artists            [{'href': 'https://api.spotify.com/v1/artists/...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   293773   \n",
-       "energy                                                           NaN   \n",
+       "duration_ms                                                   255866   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBCBR1500392'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/74...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/74tlMxJ8wF0s...   \n",
-       "id                                            74tlMxJ8wF0sNp93GBEPdK   \n",
-       "instrumentalness                                                 NaN   \n",
-       "key                                                              NaN   \n",
-       "liveness                                                         NaN   \n",
-       "loudness                                                         NaN   \n",
-       "lyrical_density                                                  NaN   \n",
-       "lyrics                                                           NaN   \n",
-       "mode                                                             NaN   \n",
-       "name                                         Honky Tonk Women - Live   \n",
-       "original_lyrics                                                  NaN   \n",
-       "popularity                                                        18   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/671f51874a70b3f7...   \n",
-       "sentiment                                                        NaN   \n",
-       "speechiness                                                      NaN   \n",
-       "tempo                                                            NaN   \n",
-       "time_signature                                                   NaN   \n",
-       "track_href                                                       NaN   \n",
-       "track_number                                                       2   \n",
+       "external_ids                                {'isrc': 'GBAAA0000931'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/1N...   \n",
+       "href               https://api.spotify.com/v1/tracks/1NwDWbpg9dPH...   \n",
+       "id                                            1NwDWbpg9dPH12xBd2ibrv   \n",
+       "name                                                          Holler   \n",
+       "popularity                                                        51   \n",
+       "preview_url                                                     None   \n",
+       "track_number                                                       1   \n",
        "type                                                           track   \n",
-       "uri                             spotify:track:74tlMxJ8wF0sNp93GBEPdK   \n",
-       "valence                                                          NaN   \n",
+       "uri                             spotify:track:1NwDWbpg9dPH12xBd2ibrv   \n",
        "\n",
        "                                                                   3  \\\n",
-       "_id                                           0Za26pWVLQpKfXmb9FX10S   \n",
-       "acousticness                                                     NaN   \n",
-       "album              {'name': 'Some Girls', 'type': 'album', 'artis...   \n",
-       "album_id                                      54sqbAXxR1jFfyXb1WvrHK   \n",
-       "analysis_url                                                     NaN   \n",
-       "artist_id                                                        NaN   \n",
-       "artist_name                                                      NaN   \n",
-       "artists            [{'name': 'The Rolling Stones', 'type': 'artis...   \n",
-       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                           NaN   \n",
-       "danceability                                                     NaN   \n",
+       "_id                                           0r5d5LmhLQwJVEw0kTEExp   \n",
+       "album              {'artists': [{'href': 'https://api.spotify.com...   \n",
+       "album_id                                      4jbWZmf7kRxCBD6tgVepYh   \n",
+       "artists            [{'href': 'https://api.spotify.com/v1/artists/...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   187440   \n",
-       "energy                                                           NaN   \n",
+       "duration_ms                                                   254666   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBCJN7800007'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/0Z...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/0Za26pWVLQpK...   \n",
-       "id                                            0Za26pWVLQpKfXmb9FX10S   \n",
-       "instrumentalness                                                 NaN   \n",
-       "key                                                              NaN   \n",
-       "liveness                                                         NaN   \n",
-       "loudness                                                         NaN   \n",
-       "lyrical_density                                                  NaN   \n",
-       "lyrics                                                           NaN   \n",
-       "mode                                                             NaN   \n",
-       "name                                        Respectable - Remastered   \n",
-       "original_lyrics                                                  NaN   \n",
-       "popularity                                                        30   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/f5e932d9acc6a359...   \n",
-       "sentiment                                                        NaN   \n",
-       "speechiness                                                      NaN   \n",
-       "tempo                                                            NaN   \n",
-       "time_signature                                                   NaN   \n",
-       "track_href                                                       NaN   \n",
-       "track_number                                                       7   \n",
+       "external_ids                                {'isrc': 'GBAAA0000932'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/0r...   \n",
+       "href               https://api.spotify.com/v1/tracks/0r5d5LmhLQwJ...   \n",
+       "id                                            0r5d5LmhLQwJVEw0kTEExp   \n",
+       "name                                                     Tell Me Why   \n",
+       "popularity                                                        37   \n",
+       "preview_url                                                     None   \n",
+       "track_number                                                       2   \n",
        "type                                                           track   \n",
-       "uri                             spotify:track:0Za26pWVLQpKfXmb9FX10S   \n",
-       "valence                                                          NaN   \n",
+       "uri                             spotify:track:0r5d5LmhLQwJVEw0kTEExp   \n",
        "\n",
        "                                                                   4  \n",
-       "_id                                           6295nz7PVXm49Ihqwm39Ew  \n",
-       "acousticness                                                     NaN  \n",
-       "album              {'name': 'Some Girls', 'type': 'album', 'artis...  \n",
-       "album_id                                      54sqbAXxR1jFfyXb1WvrHK  \n",
-       "analysis_url                                                     NaN  \n",
-       "artist_id                                                        NaN  \n",
-       "artist_name                                                      NaN  \n",
-       "artists            [{'name': 'The Rolling Stones', 'type': 'artis...  \n",
-       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...  \n",
-       "complexity                                                       NaN  \n",
-       "ctitle                                                           NaN  \n",
-       "danceability                                                     NaN  \n",
+       "_id                                           2vnY8xDhRSW1Cc0xPpUMXc  \n",
+       "album              {'artists': [{'href': 'https://api.spotify.com...  \n",
+       "album_id                                      4jbWZmf7kRxCBD6tgVepYh  \n",
+       "artists            [{'href': 'https://api.spotify.com/v1/artists/...  \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...  \n",
        "disc_number                                                        1  \n",
-       "duration_ms                                                   204960  \n",
-       "energy                                                           NaN  \n",
+       "duration_ms                                                   246600  \n",
        "explicit                                                       False  \n",
-       "external_ids                                {'isrc': 'GBCJN7800008'}  \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/62...  \n",
-       "gloom                                                            NaN  \n",
-       "href               https://api.spotify.com/v1/tracks/6295nz7PVXm4...  \n",
-       "id                                            6295nz7PVXm49Ihqwm39Ew  \n",
-       "instrumentalness                                                 NaN  \n",
-       "key                                                              NaN  \n",
-       "liveness                                                         NaN  \n",
-       "loudness                                                         NaN  \n",
-       "lyrical_density                                                  NaN  \n",
-       "lyrics                                                           NaN  \n",
-       "mode                                                             NaN  \n",
-       "name                            Before They Make Me Run - Remastered  \n",
-       "original_lyrics                                                  NaN  \n",
-       "popularity                                                        25  \n",
-       "preview_url        https://p.scdn.co/mp3-preview/ee5832b597975b27...  \n",
-       "sentiment                                                        NaN  \n",
-       "speechiness                                                      NaN  \n",
-       "tempo                                                            NaN  \n",
-       "time_signature                                                   NaN  \n",
-       "track_href                                                       NaN  \n",
-       "track_number                                                       8  \n",
+       "external_ids                                {'isrc': 'GBAAA0000937'}  \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/2v...  \n",
+       "href               https://api.spotify.com/v1/tracks/2vnY8xDhRSW1...  \n",
+       "id                                            2vnY8xDhRSW1Cc0xPpUMXc  \n",
+       "name                                                    Weekend Love  \n",
+       "popularity                                                        31  \n",
+       "preview_url                                                     None  \n",
+       "track_number                                                       7  \n",
        "type                                                           track  \n",
-       "uri                             spotify:track:6295nz7PVXm49Ihqwm39Ew  \n",
-       "valence                                                          NaN  "
+       "uri                             spotify:track:2vnY8xDhRSW1Cc0xPpUMXc  "
       ]
      },
-     "execution_count": 18,
+     "execution_count": 39,
      "metadata": {},
      "output_type": "execute_result"
     }
   },
   {
    "cell_type": "code",
-   "execution_count": 49,
+   "execution_count": 40,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "{'_id': '4edArG2VehvJdwOZfYOxtK'}"
+       "{'_id': '1jgefM2ZP7RnPVShhy1eUM'}"
       ]
      },
-     "execution_count": 49,
+     "execution_count": 40,
      "metadata": {},
      "output_type": "execute_result"
     }
   },
   {
    "cell_type": "code",
-   "execution_count": 12,
-   "metadata": {
-    "collapsed": true
-   },
-   "outputs": [],
-   "source": [
-    "for t in tracks.find({}, ['artists']):\n",
-    "    for a in t['artists']:\n",
-    "        if a['id'] in [beatles_id, stones_id]:\n",
-    "            tracks.update_one({'_id': t['_id']}, \n",
-    "                      {'$set': {'artist_name': a['name'],\n",
-    "                                'artist_id': a['id']}})"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 14,
-   "metadata": {
-    "collapsed": true
-   },
+   "execution_count": 42,
+   "metadata": {},
    "outputs": [],
    "source": [
     "for t in tracks.find({}, ['artists']):\n",
   },
   {
    "cell_type": "code",
-   "execution_count": 15,
+   "execution_count": 43,
    "metadata": {},
    "outputs": [
     {
        " 'George Martin',\n",
        " 'Jack White',\n",
        " 'Jimi Hendrix',\n",
+       " 'Muddy Waters',\n",
        " 'Radiohead',\n",
        " 'Sheryl Crow',\n",
        " 'Solomon Burke',\n",
+       " 'Spice Girls',\n",
        " 'The Beatles',\n",
        " 'The Rolling Stones'}"
       ]
      },
-     "execution_count": 15,
+     "execution_count": 43,
      "metadata": {},
      "output_type": "execute_result"
     }
   },
   {
    "cell_type": "code",
-   "execution_count": 16,
+   "execution_count": 44,
    "metadata": {
     "scrolled": true
    },
      "data": {
       "text/html": [
        "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
        "<table border=\"1\" class=\"dataframe\">\n",
        "  <thead>\n",
        "    <tr style=\"text-align: right;\">\n",
        "      <td>1 (Remastered)</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>5JT7CoUSGNk7mMNkHMQjqr</td>\n",
-       "      <td>Love Me Do - Mono / Remastered 2015</td>\n",
+       "      <td>Love Me Do - Mono / Remastered</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>18</th>\n",
        "      <td>1 (Remastered)</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>2Q2Gu7Bv8iLenuygtBgDUw</td>\n",
-       "      <td>From Me To You - Mono / Remastered 2015</td>\n",
+       "      <td>From Me To You - Mono / Remastered</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>19</th>\n",
        "      <td>1 (Remastered)</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>2Fk411Ix3qnMG8t8Qa74ZX</td>\n",
-       "      <td>She Loves You - Mono / Remastered 2015</td>\n",
+       "      <td>She Loves You - Mono / Remastered</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>20</th>\n",
        "      <td>...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>641</th>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>Some Girls</td>\n",
+       "      <th>894</th>\n",
+       "      <td>6hB5kO3oV3tlnblCNSSA9Z</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>5ZesVHq9Nox8YjOR1kCpbN</td>\n",
-       "      <td>Just My Imagination (Running Away With Me) - R...</td>\n",
+       "      <td>5AmdUA5aj3BKXBHqMcwpDL</td>\n",
+       "      <td>Instrumental 1 - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>642</th>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>Some Girls</td>\n",
+       "      <th>895</th>\n",
+       "      <td>6hB5kO3oV3tlnblCNSSA9Z</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>6hLpp90qMxG3TMvMzwJsiQ</td>\n",
-       "      <td>Some Girls - Remastered</td>\n",
+       "      <td>1eIRZEohfewV7H1zGxZy0L</td>\n",
+       "      <td>Instrumental 2 - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>643</th>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>Some Girls</td>\n",
-       "      <td>The Rolling Stones</td>\n",
-       "      <td>3WqR7lRoHEvG0ExkAqBkPj</td>\n",
-       "      <td>Lies - Remastered</td>\n",
+       "      <th>896</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>1ILxG8b0iynG1wQA7aqm58</td>\n",
+       "      <td>Introduction - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>644</th>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>Some Girls</td>\n",
-       "      <td>The Rolling Stones</td>\n",
-       "      <td>06PEXSCNl8Xwf2633TdNnx</td>\n",
-       "      <td>Far Away Eyes - Remastered</td>\n",
+       "      <th>897</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>6HRXy5YBKOlT3uiAQjCjjJ</td>\n",
+       "      <td>You Don't Have To Go - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>645</th>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>Some Girls</td>\n",
+       "      <th>898</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>0Za26pWVLQpKfXmb9FX10S</td>\n",
-       "      <td>Respectable - Remastered</td>\n",
+       "      <td>7m6dBGKuagWUryeevcBrE0</td>\n",
+       "      <td>Baby Please Don't Go - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>646</th>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>Some Girls</td>\n",
+       "      <th>899</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>6295nz7PVXm49Ihqwm39Ew</td>\n",
-       "      <td>Before They Make Me Run - Remastered</td>\n",
+       "      <td>6yjQRBe4nt7KznxYqh7qfK</td>\n",
+       "      <td>Hoochie Coochie Man - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>647</th>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>Some Girls</td>\n",
+       "      <th>900</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>0832Tptls5YicHPGgw7ssP</td>\n",
-       "      <td>Beast Of Burden - Remastered</td>\n",
+       "      <td>10eM8qubZ9IBU0v6LNLjNM</td>\n",
+       "      <td>Long Distance Call - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>648</th>\n",
-       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
-       "      <td>Some Girls</td>\n",
+       "      <th>901</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>6yq33zsqWCd8cYXQdtAFZ9</td>\n",
-       "      <td>Shattered - Remastered</td>\n",
+       "      <td>3nc2vvots8KXJIssvtJvh6</td>\n",
+       "      <td>Mannish Boy - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>649</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>902</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
-       "      <td>Miss You - Remastered</td>\n",
+       "      <td>4kYnrUr98AZARciXJGjjzH</td>\n",
+       "      <td>Got My Mojo Workin' - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>650</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>903</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>4E8qFhiuYAWEYYAsYIf4dW</td>\n",
-       "      <td>When The Whip Comes Down - Remastered</td>\n",
+       "      <td>15RgKpCJ1rxwbNMpoA503m</td>\n",
+       "      <td>Next Time You See Me - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>651</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>904</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>7sDQlyQACyT7mNHFwwEMI7</td>\n",
-       "      <td>Just My Imagination (Running Away With Me) - R...</td>\n",
+       "      <td>1yFFTCqtFerayfTq46m0P0</td>\n",
+       "      <td>One Eyed Woman - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>652</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>905</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>48bJ1sWhJKdB8M43uqi924</td>\n",
-       "      <td>Some Girls - Remastered</td>\n",
+       "      <td>402iDzjasfYVYx1LT5gNFS</td>\n",
+       "      <td>Clouds In My Heart - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>653</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>906</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>6362zAWHGgbrQaoeCFZpuO</td>\n",
-       "      <td>Lies - Remastered</td>\n",
+       "      <td>0L8sAIZr2OcE45cGZ3qbb7</td>\n",
+       "      <td>Champagne And Reefer - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>654</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>907</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>4RlD0KvoqPZy5n9Zi76X9l</td>\n",
-       "      <td>Far Away Eyes - Remastered</td>\n",
+       "      <td>0cNyluZzzBVbsk2UY7Spca</td>\n",
+       "      <td>Let It Rock - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>655</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>908</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>33PXyHrkIHxp6PBVPlQGx7</td>\n",
-       "      <td>Respectable - Remastered</td>\n",
+       "      <td>6dx6G9OexgRFCulfKI4sPN</td>\n",
+       "      <td>All Down The Line - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>656</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>909</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>7vsPbFinz35mfQO5d6oL0l</td>\n",
-       "      <td>Before They Make Me Run - Remastered</td>\n",
+       "      <td>6fZKfyDrl9Nph0ifIGvOxs</td>\n",
+       "      <td>Honky Tonk Women - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>657</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>910</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>7pfVe0VrMK5QhTaAYzkuYn</td>\n",
-       "      <td>Beast Of Burden - Remastered</td>\n",
+       "      <td>660iobQYqexXXNfRomqz3o</td>\n",
+       "      <td>Star Star - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>658</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>911</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>2giRM7RrP6utWLAb8jnFFk</td>\n",
-       "      <td>Shattered - Remastered</td>\n",
+       "      <td>6AX8HMe53fbGdNNAnC8LSz</td>\n",
+       "      <td>When The Whip Comes Down - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>659</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>912</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>1V25DJ3ghDJs8m58jbVMbf</td>\n",
-       "      <td>Claudine</td>\n",
+       "      <td>16FlhqpxLT6WTfiLVEZ7Vv</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>660</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>913</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>3rNTjyvxae83nJCLMxoVSW</td>\n",
-       "      <td>So Young</td>\n",
+       "      <td>5UXwp4rKvtXtKJpe0iIctM</td>\n",
+       "      <td>Miss You - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>661</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>914</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>5oAcuuY504M7eDCln5Xq89</td>\n",
-       "      <td>Do You Think I Really Care</td>\n",
+       "      <td>4pKN6TNF59rJ1PCtPoeppg</td>\n",
+       "      <td>Just My Imagination - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>662</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>915</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>1ZBnd9Z80QPQ58BaL5OWlP</td>\n",
-       "      <td>When You're Gone</td>\n",
+       "      <td>2ZBmWii9Yt5EVO32P6oDXM</td>\n",
+       "      <td>Shattered - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>663</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>916</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>624njB7Ny3mlA46QokEin9</td>\n",
-       "      <td>No Spare Parts</td>\n",
+       "      <td>7aJbjVaPvyaqjW47rDYijL</td>\n",
+       "      <td>Respectable - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>664</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>917</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>0WpZfMNsNhiEJ8RSLyjElp</td>\n",
-       "      <td>Don't Be A Stranger</td>\n",
+       "      <td>39OF4xTwA6f5BaIeA9aAwF</td>\n",
+       "      <td>Far Away Eyes - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>665</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>918</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>0Baq94uZKy4pPvnc40xjPX</td>\n",
-       "      <td>We Had It All</td>\n",
+       "      <td>2PPqIlfmipTSfx79FvSvep</td>\n",
+       "      <td>Love In Vain - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>666</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>919</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>4oOU3GgiZblheOI9JUmM1f</td>\n",
-       "      <td>Tallahassee Lassie</td>\n",
+       "      <td>5XQ2enmXsgp66RvyolR8qC</td>\n",
+       "      <td>Tumbling Dice - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>667</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>920</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>4LW3JaAze7gF8DpPBb2zzl</td>\n",
-       "      <td>I Love You Too Much</td>\n",
+       "      <td>4LPtVRXWYSJw0TmszHFivc</td>\n",
+       "      <td>Happy - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>668</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>921</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>4LSyTg4sm3N99Pcckw9zjf</td>\n",
-       "      <td>Keep Up Blues</td>\n",
+       "      <td>2dF1AaEhFCgS2e78JqmkOu</td>\n",
+       "      <td>Sweet Little Sixteen - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>669</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>922</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>3u06WsJ1KtvEqmmmZqy76J</td>\n",
-       "      <td>You Win Again</td>\n",
+       "      <td>5SvY6KFdltqwqFR7ClMz7y</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>670</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <th>923</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>7DgRvvPcJlxks2lNpudsuT</td>\n",
-       "      <td>Petrol Blues</td>\n",
+       "      <td>2uO1HbJhQvmXpjclLmLEeK</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
-       "<p>671 rows × 5 columns</p>\n",
+       "<p>924 rows × 5 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
-       "                   album_id                   album_name         artist_name  \\\n",
-       "0    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "1    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "2    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "3    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "4    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "5    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "6    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "7    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "8    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "9    5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "10   5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "11   5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "12   5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "13   5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "14   5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "15   5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "16   5XfJmldgWzrc1AIdbBaVZn   Live At The Hollywood Bowl         The Beatles   \n",
-       "17   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "18   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "19   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "20   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "21   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "22   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "23   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "24   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "25   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "26   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "27   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "28   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "29   5ju5Ouzan3QwXqQt1Tihbh               1 (Remastered)         The Beatles   \n",
-       "..                      ...                          ...                 ...   \n",
-       "641  54sqbAXxR1jFfyXb1WvrHK                   Some Girls  The Rolling Stones   \n",
-       "642  54sqbAXxR1jFfyXb1WvrHK                   Some Girls  The Rolling Stones   \n",
-       "643  54sqbAXxR1jFfyXb1WvrHK                   Some Girls  The Rolling Stones   \n",
-       "644  54sqbAXxR1jFfyXb1WvrHK                   Some Girls  The Rolling Stones   \n",
-       "645  54sqbAXxR1jFfyXb1WvrHK                   Some Girls  The Rolling Stones   \n",
-       "646  54sqbAXxR1jFfyXb1WvrHK                   Some Girls  The Rolling Stones   \n",
-       "647  54sqbAXxR1jFfyXb1WvrHK                   Some Girls  The Rolling Stones   \n",
-       "648  54sqbAXxR1jFfyXb1WvrHK                   Some Girls  The Rolling Stones   \n",
-       "649  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "650  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "651  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "652  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "653  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "654  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "655  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "656  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "657  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "658  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "659  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "660  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "661  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "662  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "663  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "664  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "665  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "666  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "667  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "668  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "669  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "670  6FjXxl9VLURGuubdXUn2J3  Some Girls (Deluxe Version)  The Rolling Stones   \n",
-       "\n",
-       "                   track_id                                         track_name  \n",
-       "0    4edArG2VehvJdwOZfYOxtK                Twist And Shout - Live / Remastered  \n",
-       "1    150EAeMGWJRubuH8zyx7h8                  She's A Woman - Live / Remastered  \n",
-       "2    1fVeHYkyMxrjbjRAD9uWsZ               Dizzy Miss Lizzy - Live / Remastered  \n",
-       "3    0GRplBEB2FWCKutwMmS6nY                 Ticket To Ride - Live / Remastered  \n",
-       "4    1eVymk74iroqhsZxm0Vy3g              Can't Buy Me Love - Live / Remastered  \n",
-       "5    2p5a9gu6NECVSvBtGSU1vm           Things We Said Today - Live / Remastered  \n",
-       "6    1HyLh5cctOnP186CBi8bhm            Roll Over Beethoven - Live / Remastered  \n",
-       "7    7fZEWm7TAL2oZDyiYrrgnk                           Boys - Live / Remastered  \n",
-       "8    21nhooOxso7CCoHPE73w4L             A Hard Day's Night - Live / Remastered  \n",
-       "9    1alcPfZWUHh01l4Fnoo5Jt                          Help! - Live / Remastered  \n",
-       "10   24gUDXSQysdnTaRpbWtYlK                  All My Loving - Live / Remastered  \n",
-       "11   2VmFFbXSJzYxzEJSAeI0lM                  She Loves You - Live / Remastered  \n",
-       "12   6b8lhQ86u5MddlmXulslpD                Long Tall Sally - Live / Remastered  \n",
-       "13   1oKfZ5MTCSrv07hsHqJ0JS             You Can't Do That - Live / Bonus Track  \n",
-       "14   04gBqA2mubcTgFqL9Domlj      I Want To Hold Your Hand - Live / Bonus Track  \n",
-       "15   79QDgDoBbS7pCrOjIH7ByA  Everybody’s Trying To Be My Baby - Live / Bonu...  \n",
-       "16   1yV2I5c6efVSqSiuv9H2AD               Baby's In Black - Live / Bonus Track  \n",
-       "17   5JT7CoUSGNk7mMNkHMQjqr                Love Me Do - Mono / Remastered 2015  \n",
-       "18   2Q2Gu7Bv8iLenuygtBgDUw            From Me To You - Mono / Remastered 2015  \n",
-       "19   2Fk411Ix3qnMG8t8Qa74ZX             She Loves You - Mono / Remastered 2015  \n",
-       "20   4DRBaZ760gyk7LWnaJFqsJ         I Want To Hold Your Hand - Remastered 2015  \n",
-       "21   7pQAq14Z73YUFMtxCyt0bG                Can't Buy Me Love - Remastered 2015  \n",
-       "22   0mNQUZEATk2uItMUtiLWK5               A Hard Day's Night - Remastered 2015  \n",
-       "23   0Gm34HBxrXlaAf1jdJMjx2                      I Feel Fine - Remastered 2015  \n",
-       "24   3nhJDVdUrm6DnDW4iBfpKz                Eight Days A Week - Remastered 2015  \n",
-       "25   6pkjW5srxjzRSKKMrl7et8                   Ticket To Ride - Remastered 2015  \n",
-       "26   1dfuJYDSIc41cw5RPsaCF1                            Help! - Remastered 2015  \n",
-       "27   63uskN0xLezVg4281wzeQn                        Yesterday - Remastered 2015  \n",
-       "28   0vXGSlE4ft3n5JHZMHHSIj                      Day Tripper - Remastered 2015  \n",
-       "29   0Lckblu9CJUXOeMV0XY3b9               We Can Work It Out - Remastered 2015  \n",
-       "..                      ...                                                ...  \n",
-       "641  5ZesVHq9Nox8YjOR1kCpbN  Just My Imagination (Running Away With Me) - R...  \n",
-       "642  6hLpp90qMxG3TMvMzwJsiQ                            Some Girls - Remastered  \n",
-       "643  3WqR7lRoHEvG0ExkAqBkPj                                  Lies - Remastered  \n",
-       "644  06PEXSCNl8Xwf2633TdNnx                         Far Away Eyes - Remastered  \n",
-       "645  0Za26pWVLQpKfXmb9FX10S                           Respectable - Remastered  \n",
-       "646  6295nz7PVXm49Ihqwm39Ew               Before They Make Me Run - Remastered  \n",
-       "647  0832Tptls5YicHPGgw7ssP                       Beast Of Burden - Remastered  \n",
-       "648  6yq33zsqWCd8cYXQdtAFZ9                             Shattered - Remastered  \n",
-       "649  5pTWpY8l7B1XcQnijEFGFj                              Miss You - Remastered  \n",
-       "650  4E8qFhiuYAWEYYAsYIf4dW              When The Whip Comes Down - Remastered  \n",
-       "651  7sDQlyQACyT7mNHFwwEMI7  Just My Imagination (Running Away With Me) - R...  \n",
-       "652  48bJ1sWhJKdB8M43uqi924                            Some Girls - Remastered  \n",
-       "653  6362zAWHGgbrQaoeCFZpuO                                  Lies - Remastered  \n",
-       "654  4RlD0KvoqPZy5n9Zi76X9l                         Far Away Eyes - Remastered  \n",
-       "655  33PXyHrkIHxp6PBVPlQGx7                           Respectable - Remastered  \n",
-       "656  7vsPbFinz35mfQO5d6oL0l               Before They Make Me Run - Remastered  \n",
-       "657  7pfVe0VrMK5QhTaAYzkuYn                       Beast Of Burden - Remastered  \n",
-       "658  2giRM7RrP6utWLAb8jnFFk                             Shattered - Remastered  \n",
-       "659  1V25DJ3ghDJs8m58jbVMbf                                           Claudine  \n",
-       "660  3rNTjyvxae83nJCLMxoVSW                                           So Young  \n",
-       "661  5oAcuuY504M7eDCln5Xq89                         Do You Think I Really Care  \n",
-       "662  1ZBnd9Z80QPQ58BaL5OWlP                                   When You're Gone  \n",
-       "663  624njB7Ny3mlA46QokEin9                                     No Spare Parts  \n",
-       "664  0WpZfMNsNhiEJ8RSLyjElp                                Don't Be A Stranger  \n",
-       "665  0Baq94uZKy4pPvnc40xjPX                                      We Had It All  \n",
-       "666  4oOU3GgiZblheOI9JUmM1f                                 Tallahassee Lassie  \n",
-       "667  4LW3JaAze7gF8DpPBb2zzl                                I Love You Too Much  \n",
-       "668  4LSyTg4sm3N99Pcckw9zjf                                      Keep Up Blues  \n",
-       "669  3u06WsJ1KtvEqmmmZqy76J                                      You Win Again  \n",
-       "670  7DgRvvPcJlxks2lNpudsuT                                       Petrol Blues  \n",
-       "\n",
-       "[671 rows x 5 columns]"
+       "                   album_id                       album_name  \\\n",
+       "0    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "1    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "2    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "3    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "4    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "5    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "6    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "7    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "8    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "9    5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "10   5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "11   5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "12   5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "13   5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "14   5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "15   5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "16   5XfJmldgWzrc1AIdbBaVZn       Live At The Hollywood Bowl   \n",
+       "17   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "18   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "19   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "20   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "21   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "22   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "23   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "24   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "25   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "26   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "27   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "28   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "29   5ju5Ouzan3QwXqQt1Tihbh                   1 (Remastered)   \n",
+       "..                      ...                              ...   \n",
+       "894  6hB5kO3oV3tlnblCNSSA9Z  Live At The Checkerboard Lounge   \n",
+       "895  6hB5kO3oV3tlnblCNSSA9Z  Live At The Checkerboard Lounge   \n",
+       "896  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "897  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "898  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "899  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "900  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "901  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "902  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "903  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "904  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "905  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "906  3yNf6JVyEEqvM4OqKEmZSC  Live At The Checkerboard Lounge   \n",
+       "907  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "908  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "909  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "910  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "911  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "912  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "913  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "914  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "915  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "916  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "917  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "918  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "919  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "920  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "921  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "922  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "923  2gCp8kyDcL93s4kVP4VMTC    Some Girls: Live In Texas '78   \n",
+       "\n",
+       "            artist_name                track_id  \\\n",
+       "0           The Beatles  4edArG2VehvJdwOZfYOxtK   \n",
+       "1           The Beatles  150EAeMGWJRubuH8zyx7h8   \n",
+       "2           The Beatles  1fVeHYkyMxrjbjRAD9uWsZ   \n",
+       "3           The Beatles  0GRplBEB2FWCKutwMmS6nY   \n",
+       "4           The Beatles  1eVymk74iroqhsZxm0Vy3g   \n",
+       "5           The Beatles  2p5a9gu6NECVSvBtGSU1vm   \n",
+       "6           The Beatles  1HyLh5cctOnP186CBi8bhm   \n",
+       "7           The Beatles  7fZEWm7TAL2oZDyiYrrgnk   \n",
+       "8           The Beatles  21nhooOxso7CCoHPE73w4L   \n",
+       "9           The Beatles  1alcPfZWUHh01l4Fnoo5Jt   \n",
+       "10          The Beatles  24gUDXSQysdnTaRpbWtYlK   \n",
+       "11          The Beatles  2VmFFbXSJzYxzEJSAeI0lM   \n",
+       "12          The Beatles  6b8lhQ86u5MddlmXulslpD   \n",
+       "13          The Beatles  1oKfZ5MTCSrv07hsHqJ0JS   \n",
+       "14          The Beatles  04gBqA2mubcTgFqL9Domlj   \n",
+       "15          The Beatles  79QDgDoBbS7pCrOjIH7ByA   \n",
+       "16          The Beatles  1yV2I5c6efVSqSiuv9H2AD   \n",
+       "17          The Beatles  5JT7CoUSGNk7mMNkHMQjqr   \n",
+       "18          The Beatles  2Q2Gu7Bv8iLenuygtBgDUw   \n",
+       "19          The Beatles  2Fk411Ix3qnMG8t8Qa74ZX   \n",
+       "20          The Beatles  4DRBaZ760gyk7LWnaJFqsJ   \n",
+       "21          The Beatles  7pQAq14Z73YUFMtxCyt0bG   \n",
+       "22          The Beatles  0mNQUZEATk2uItMUtiLWK5   \n",
+       "23          The Beatles  0Gm34HBxrXlaAf1jdJMjx2   \n",
+       "24          The Beatles  3nhJDVdUrm6DnDW4iBfpKz   \n",
+       "25          The Beatles  6pkjW5srxjzRSKKMrl7et8   \n",
+       "26          The Beatles  1dfuJYDSIc41cw5RPsaCF1   \n",
+       "27          The Beatles  63uskN0xLezVg4281wzeQn   \n",
+       "28          The Beatles  0vXGSlE4ft3n5JHZMHHSIj   \n",
+       "29          The Beatles  0Lckblu9CJUXOeMV0XY3b9   \n",
+       "..                  ...                     ...   \n",
+       "894  The Rolling Stones  5AmdUA5aj3BKXBHqMcwpDL   \n",
+       "895  The Rolling Stones  1eIRZEohfewV7H1zGxZy0L   \n",
+       "896        Muddy Waters  1ILxG8b0iynG1wQA7aqm58   \n",
+       "897        Muddy Waters  6HRXy5YBKOlT3uiAQjCjjJ   \n",
+       "898  The Rolling Stones  7m6dBGKuagWUryeevcBrE0   \n",
+       "899  The Rolling Stones  6yjQRBe4nt7KznxYqh7qfK   \n",
+       "900  The Rolling Stones  10eM8qubZ9IBU0v6LNLjNM   \n",
+       "901  The Rolling Stones  3nc2vvots8KXJIssvtJvh6   \n",
+       "902  The Rolling Stones  4kYnrUr98AZARciXJGjjzH   \n",
+       "903  The Rolling Stones  15RgKpCJ1rxwbNMpoA503m   \n",
+       "904  The Rolling Stones  1yFFTCqtFerayfTq46m0P0   \n",
+       "905  The Rolling Stones  402iDzjasfYVYx1LT5gNFS   \n",
+       "906  The Rolling Stones  0L8sAIZr2OcE45cGZ3qbb7   \n",
+       "907  The Rolling Stones  0cNyluZzzBVbsk2UY7Spca   \n",
+       "908  The Rolling Stones  6dx6G9OexgRFCulfKI4sPN   \n",
+       "909  The Rolling Stones  6fZKfyDrl9Nph0ifIGvOxs   \n",
+       "910  The Rolling Stones  660iobQYqexXXNfRomqz3o   \n",
+       "911  The Rolling Stones  6AX8HMe53fbGdNNAnC8LSz   \n",
+       "912  The Rolling Stones  16FlhqpxLT6WTfiLVEZ7Vv   \n",
+       "913  The Rolling Stones  5UXwp4rKvtXtKJpe0iIctM   \n",
+       "914  The Rolling Stones  4pKN6TNF59rJ1PCtPoeppg   \n",
+       "915  The Rolling Stones  2ZBmWii9Yt5EVO32P6oDXM   \n",
+       "916  The Rolling Stones  7aJbjVaPvyaqjW47rDYijL   \n",
+       "917  The Rolling Stones  39OF4xTwA6f5BaIeA9aAwF   \n",
+       "918  The Rolling Stones  2PPqIlfmipTSfx79FvSvep   \n",
+       "919  The Rolling Stones  5XQ2enmXsgp66RvyolR8qC   \n",
+       "920  The Rolling Stones  4LPtVRXWYSJw0TmszHFivc   \n",
+       "921  The Rolling Stones  2dF1AaEhFCgS2e78JqmkOu   \n",
+       "922  The Rolling Stones  5SvY6KFdltqwqFR7ClMz7y   \n",
+       "923  The Rolling Stones  2uO1HbJhQvmXpjclLmLEeK   \n",
+       "\n",
+       "                                            track_name  \n",
+       "0                  Twist And Shout - Live / Remastered  \n",
+       "1                    She's A Woman - Live / Remastered  \n",
+       "2                 Dizzy Miss Lizzy - Live / Remastered  \n",
+       "3                   Ticket To Ride - Live / Remastered  \n",
+       "4                Can't Buy Me Love - Live / Remastered  \n",
+       "5             Things We Said Today - Live / Remastered  \n",
+       "6              Roll Over Beethoven - Live / Remastered  \n",
+       "7                             Boys - Live / Remastered  \n",
+       "8               A Hard Day's Night - Live / Remastered  \n",
+       "9                            Help! - Live / Remastered  \n",
+       "10                   All My Loving - Live / Remastered  \n",
+       "11                   She Loves You - Live / Remastered  \n",
+       "12                 Long Tall Sally - Live / Remastered  \n",
+       "13              You Can't Do That - Live / Bonus Track  \n",
+       "14       I Want To Hold Your Hand - Live / Bonus Track  \n",
+       "15   Everybody’s Trying To Be My Baby - Live / Bonu...  \n",
+       "16                Baby's In Black - Live / Bonus Track  \n",
+       "17                      Love Me Do - Mono / Remastered  \n",
+       "18                  From Me To You - Mono / Remastered  \n",
+       "19                   She Loves You - Mono / Remastered  \n",
+       "20          I Want To Hold Your Hand - Remastered 2015  \n",
+       "21                 Can't Buy Me Love - Remastered 2015  \n",
+       "22                A Hard Day's Night - Remastered 2015  \n",
+       "23                       I Feel Fine - Remastered 2015  \n",
+       "24                 Eight Days A Week - Remastered 2015  \n",
+       "25                    Ticket To Ride - Remastered 2015  \n",
+       "26                             Help! - Remastered 2015  \n",
+       "27                         Yesterday - Remastered 2015  \n",
+       "28                       Day Tripper - Remastered 2015  \n",
+       "29                We Can Work It Out - Remastered 2015  \n",
+       "..                                                 ...  \n",
+       "894                              Instrumental 1 - Live  \n",
+       "895                              Instrumental 2 - Live  \n",
+       "896                                Introduction - Live  \n",
+       "897                        You Don't Have To Go - Live  \n",
+       "898                        Baby Please Don't Go - Live  \n",
+       "899                         Hoochie Coochie Man - Live  \n",
+       "900                          Long Distance Call - Live  \n",
+       "901                                 Mannish Boy - Live  \n",
+       "902                         Got My Mojo Workin' - Live  \n",
+       "903                        Next Time You See Me - Live  \n",
+       "904                              One Eyed Woman - Live  \n",
+       "905                          Clouds In My Heart - Live  \n",
+       "906                        Champagne And Reefer - Live  \n",
+       "907                                 Let It Rock - Live  \n",
+       "908                           All Down The Line - Live  \n",
+       "909                            Honky Tonk Women - Live  \n",
+       "910                                   Star Star - Live  \n",
+       "911                    When The Whip Comes Down - Live  \n",
+       "912                             Beast Of Burden - Live  \n",
+       "913                                    Miss You - Live  \n",
+       "914                         Just My Imagination - Live  \n",
+       "915                                   Shattered - Live  \n",
+       "916                                 Respectable - Live  \n",
+       "917                               Far Away Eyes - Live  \n",
+       "918                                Love In Vain - Live  \n",
+       "919                               Tumbling Dice - Live  \n",
+       "920                                       Happy - Live  \n",
+       "921                        Sweet Little Sixteen - Live  \n",
+       "922                                 Brown Sugar - Live  \n",
+       "923                          Jumpin' Jack Flash - Live  \n",
+       "\n",
+       "[924 rows x 5 columns]"
       ]
      },
-     "execution_count": 16,
+     "execution_count": 44,
      "metadata": {},
      "output_type": "execute_result"
     }
   },
   {
    "cell_type": "code",
-   "execution_count": 17,
-   "metadata": {
-    "collapsed": true
-   },
-   "outputs": [],
-   "source": [
-    "def get_spotify_auth_token():\n",
-    "    auth_url = 'https://accounts.spotify.com/api/token'\n",
-    "    auth_data = urllib.parse.urlencode({'grant_type': 'client_credentials'}).encode('utf-8')\n",
-    "    auth_id = base64.standard_b64encode((config['spotify']['client_id'] + \\\n",
-    "        ':' + config['spotify']['client_secret']).encode('utf-8')).decode('utf-8)')\n",
-    "    auth_headers = {'Authorization': 'Basic ' + auth_id}\n",
-    "    auth_request = urllib.request.Request(auth_url, data=auth_data, headers=auth_headers)\n",
-    "    with urllib.request.urlopen(auth_request) as f:\n",
-    "        response = json.loads(f.read().decode('utf-8'))\n",
-    "        return response['token_type'], response['access_token']"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 26,
-   "metadata": {
-    "collapsed": true
-   },
-   "outputs": [],
-   "source": [
-    "# def get_audio_features(track_ids, auth_type, auth_token):\n",
-    "#     url = 'https://api.spotify.com/v1/audio-features?ids={ids}'.format(ids=','.join(track_ids))\n",
-    "#     headers = {'Authorization': auth_type + ' ' + auth_token}\n",
-    "#     request = urllib.request.Request(url, headers=headers, method='GET')\n",
-    "#     with urllib.request.urlopen(request) as f:\n",
-    "#         response = json.loads(f.read().decode('utf-8'))\n",
-    "#         for track in response['audio_features']:\n",
-    "#             tracks.update_one({'_id': track['id']}, {'$set': track})"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 29,
-   "metadata": {
-    "collapsed": true
-   },
+   "execution_count": 45,
+   "metadata": {},
    "outputs": [],
    "source": [
     "def get_audio_features(track_ids, auth_type, auth_token):\n",
   },
   {
    "cell_type": "code",
-   "execution_count": 30,
+   "execution_count": 46,
    "metadata": {},
    "outputs": [],
    "source": [
   },
   {
    "cell_type": "code",
-   "execution_count": 37,
+   "execution_count": 18,
    "metadata": {
     "scrolled": true
    },
      "data": {
       "text/html": [
        "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
        "<table border=\"1\" class=\"dataframe\">\n",
        "  <thead>\n",
        "    <tr style=\"text-align: right;\">\n",
        "      <th>8</th>\n",
        "      <th>9</th>\n",
        "      <th>...</th>\n",
-       "      <th>219</th>\n",
-       "      <th>220</th>\n",
-       "      <th>221</th>\n",
-       "      <th>222</th>\n",
-       "      <th>223</th>\n",
-       "      <th>224</th>\n",
-       "      <th>225</th>\n",
-       "      <th>226</th>\n",
-       "      <th>227</th>\n",
-       "      <th>228</th>\n",
+       "      <th>251</th>\n",
+       "      <th>252</th>\n",
+       "      <th>253</th>\n",
+       "      <th>254</th>\n",
+       "      <th>255</th>\n",
+       "      <th>256</th>\n",
+       "      <th>257</th>\n",
+       "      <th>258</th>\n",
+       "      <th>259</th>\n",
+       "      <th>260</th>\n",
        "    </tr>\n",
        "  </thead>\n",
        "  <tbody>\n",
        "      <td>2ucFulEWapRAmTn7l6f5Q7</td>\n",
        "      <td>2z1p43SNSbeowzy8WdYHNk</td>\n",
        "      <td>3ckvsHnEffhhS5c0Cs6Gv5</td>\n",
+       "      <td>5cXiWs6VoLlDlowJQo0UPk</td>\n",
        "      <td>4edArG2VehvJdwOZfYOxtK</td>\n",
        "      <td>150EAeMGWJRubuH8zyx7h8</td>\n",
        "      <td>1fVeHYkyMxrjbjRAD9uWsZ</td>\n",
        "      <td>0GRplBEB2FWCKutwMmS6nY</td>\n",
        "      <td>1eVymk74iroqhsZxm0Vy3g</td>\n",
        "      <td>2p5a9gu6NECVSvBtGSU1vm</td>\n",
-       "      <td>1HyLh5cctOnP186CBi8bhm</td>\n",
        "      <td>...</td>\n",
-       "      <td>43feVCF6QfqIt9LnLs9BAH</td>\n",
-       "      <td>3NwEPV9MDr1z3KcHiAuz9d</td>\n",
-       "      <td>2Iccm3cKBQHWt5yk0yX9nh</td>\n",
-       "      <td>2OLMjGIhCNI6j34ysPscbp</td>\n",
-       "      <td>01n20rdBC5czKAhxmGREkr</td>\n",
-       "      <td>5gnrZoSS7nbDYtHp32RFiI</td>\n",
-       "      <td>5FBxWhG0nbBAF6lWgJFklM</td>\n",
-       "      <td>6tEwCsVtZ5tI8uHNJSHQ3b</td>\n",
-       "      <td>50jq8RgbDfmNNd0NiRnl4L</td>\n",
-       "      <td>4Z1fbYp0HuxLBje4MOZcSD</td>\n",
+       "      <td>3pY5chBSUotRa6RoIfwJjc</td>\n",
+       "      <td>5ToEv4nDN51OyAjK65A9YS</td>\n",
+       "      <td>3ZFPe2aiLQuEfDxSqQstZp</td>\n",
+       "      <td>2BOawXVznHmi2KJzRFstBN</td>\n",
+       "      <td>1alxZZpi5dBLcmV3WkYIzN</td>\n",
+       "      <td>1k1kJBeaL3FCUG2vOJ1z0g</td>\n",
+       "      <td>42uZOBjvKNv4QKnBmjOwb0</td>\n",
+       "      <td>5JnPM6eKhHJtkWfS6ymUMF</td>\n",
+       "      <td>3HEC6nzAo3U5z7blaCNBcF</td>\n",
+       "      <td>3qchAN1uJ1KiF8yxmqb3Ov</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>acousticness</th>\n",
        "      <td>0.425</td>\n",
        "      <td>0.368</td>\n",
        "      <td>0.614</td>\n",
+       "      <td>0.22</td>\n",
        "      <td>7.67e-05</td>\n",
        "      <td>0.00675</td>\n",
        "      <td>0.0131</td>\n",
        "      <td>0.00327</td>\n",
        "      <td>0.00865</td>\n",
        "      <td>0.0836</td>\n",
-       "      <td>0.00242</td>\n",
-       "      <td>...</td>\n",
-       "      <td>0.607</td>\n",
-       "      <td>0.767</td>\n",
-       "      <td>0.334</td>\n",
-       "      <td>0.386</td>\n",
-       "      <td>0.389</td>\n",
-       "      <td>0.778</td>\n",
-       "      <td>0.608</td>\n",
-       "      <td>0.698</td>\n",
-       "      <td>0.629</td>\n",
-       "      <td>0.641</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.000366</td>\n",
+       "      <td>0.000236</td>\n",
+       "      <td>0.254</td>\n",
+       "      <td>0.291</td>\n",
+       "      <td>0.232</td>\n",
+       "      <td>0.749</td>\n",
+       "      <td>0.447</td>\n",
+       "      <td>0.162</td>\n",
+       "      <td>0.919</td>\n",
+       "      <td>0.482</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>album</th>\n",
-       "      <td>{'id': '03Qh833fEdVT30Pfs93ea6', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '6P9yO0ukhOx3dvmhGKeYoC', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7BgGBZndAvDlKOcwe5rscZ', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
-       "      <td>{'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>album_id</th>\n",
        "      <td>03Qh833fEdVT30Pfs93ea6</td>\n",
        "      <td>6P9yO0ukhOx3dvmhGKeYoC</td>\n",
        "      <td>7BgGBZndAvDlKOcwe5rscZ</td>\n",
-       "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
        "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
        "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
        "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
        "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
        "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
        "      <td>...</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
-       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>analysis_url</th>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/2ucF...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/2z1p...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/3ckv...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/5cXi...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/4edA...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/150E...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/1fVe...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/0GRp...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/1eVy...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/2p5a...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/1HyL...</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/43fe...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/3NwE...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/2Icc...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/2OLM...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/01n2...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/5gnr...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/5FBx...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/6tEw...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/50jq...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/4Z1f...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/3pY5...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/5ToE...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/3ZFP...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/2BOa...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/1alx...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/1k1k...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/42uZ...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/5JnP...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/3HEC...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/3qch...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>artist_id</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>artists</th>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
-       "      <td>[{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>available_markets</th>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>complexity</th>\n",
-       "      <td>0.0598502</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>0.293946</td>\n",
-       "      <td>0.316303</td>\n",
-       "      <td>0.445783</td>\n",
-       "      <td>0.334303</td>\n",
-       "      <td>0.493981</td>\n",
-       "      <td>0.24995</td>\n",
-       "      <td>0.467134</td>\n",
-       "      <td>...</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
        "      <th>ctitle</th>\n",
        "      <td>wild honey pie</td>\n",
        "      <td>flying</td>\n",
        "      <td>kansas city heyheyheyhey</td>\n",
+       "      <td>when im sixtyfour</td>\n",
        "      <td>twist and shout</td>\n",
        "      <td>shes a woman</td>\n",
        "      <td>dizzy miss lizzy</td>\n",
        "      <td>ticket to ride</td>\n",
        "      <td>cant buy me love</td>\n",
        "      <td>things we said today</td>\n",
-       "      <td>roll over beethoven</td>\n",
        "      <td>...</td>\n",
-       "      <td>boys</td>\n",
-       "      <td>ask me why</td>\n",
-       "      <td>please please me</td>\n",
-       "      <td>love me do</td>\n",
-       "      <td>ps i love you</td>\n",
-       "      <td>baby its you</td>\n",
-       "      <td>do you want to know a secret</td>\n",
-       "      <td>a taste of honey</td>\n",
-       "      <td>theres a place</td>\n",
-       "      <td>twist and shout</td>\n",
+       "      <td>good morning good morning</td>\n",
+       "      <td>sgt peppers lonely hearts club band reprise</td>\n",
+       "      <td>a day in the life</td>\n",
+       "      <td>sgt peppers lonely hearts club band</td>\n",
+       "      <td>with a little help from my friends</td>\n",
+       "      <td>lucy in the sky with diamonds</td>\n",
+       "      <td>getting better</td>\n",
+       "      <td>fixing a hole</td>\n",
+       "      <td>shes leaving home</td>\n",
+       "      <td>being for the benefit of mr kite</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>danceability</th>\n",
        "      <td>0.792</td>\n",
        "      <td>0.551</td>\n",
        "      <td>0.588</td>\n",
+       "      <td>0.818</td>\n",
        "      <td>0.311</td>\n",
        "      <td>0.188</td>\n",
        "      <td>0.406</td>\n",
        "      <td>0.39</td>\n",
        "      <td>0.2</td>\n",
        "      <td>0.307</td>\n",
-       "      <td>0.204</td>\n",
-       "      <td>...</td>\n",
-       "      <td>0.402</td>\n",
-       "      <td>0.605</td>\n",
-       "      <td>0.527</td>\n",
-       "      <td>0.52</td>\n",
-       "      <td>0.635</td>\n",
-       "      <td>0.608</td>\n",
-       "      <td>0.673</td>\n",
-       "      <td>0.42</td>\n",
-       "      <td>0.455</td>\n",
-       "      <td>0.482</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.516</td>\n",
+       "      <td>0.576</td>\n",
+       "      <td>0.339</td>\n",
+       "      <td>0.583</td>\n",
+       "      <td>0.913</td>\n",
+       "      <td>0.423</td>\n",
+       "      <td>0.73</td>\n",
+       "      <td>0.591</td>\n",
+       "      <td>0.443</td>\n",
+       "      <td>0.595</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>disc_number</th>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
-       "      <td>1</td>\n",
+       "      <td>2</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
+       "      <td>2</td>\n",
+       "      <td>2</td>\n",
+       "      <td>2</td>\n",
+       "      <td>2</td>\n",
+       "      <td>2</td>\n",
+       "      <td>2</td>\n",
+       "      <td>2</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>duration_ms</th>\n",
        "      <td>52973</td>\n",
        "      <td>135520</td>\n",
        "      <td>158147</td>\n",
+       "      <td>178653</td>\n",
        "      <td>93507</td>\n",
        "      <td>192053</td>\n",
        "      <td>219733</td>\n",
        "      <td>146240</td>\n",
        "      <td>134867</td>\n",
        "      <td>138733</td>\n",
-       "      <td>134013</td>\n",
        "      <td>...</td>\n",
-       "      <td>146440</td>\n",
-       "      <td>146533</td>\n",
-       "      <td>120853</td>\n",
-       "      <td>141693</td>\n",
-       "      <td>124360</td>\n",
-       "      <td>160520</td>\n",
-       "      <td>117013</td>\n",
-       "      <td>123480</td>\n",
-       "      <td>110493</td>\n",
-       "      <td>155227</td>\n",
+       "      <td>154467</td>\n",
+       "      <td>80600</td>\n",
+       "      <td>330920</td>\n",
+       "      <td>156440</td>\n",
+       "      <td>196520</td>\n",
+       "      <td>238867</td>\n",
+       "      <td>138533</td>\n",
+       "      <td>207840</td>\n",
+       "      <td>229120</td>\n",
+       "      <td>187213</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>energy</th>\n",
        "      <td>0.763</td>\n",
        "      <td>0.395</td>\n",
        "      <td>0.724</td>\n",
+       "      <td>0.231</td>\n",
        "      <td>0.822</td>\n",
        "      <td>0.885</td>\n",
        "      <td>0.867</td>\n",
        "      <td>0.779</td>\n",
        "      <td>0.849</td>\n",
        "      <td>0.637</td>\n",
-       "      <td>0.808</td>\n",
-       "      <td>...</td>\n",
-       "      <td>0.86</td>\n",
-       "      <td>0.394</td>\n",
-       "      <td>0.48</td>\n",
-       "      <td>0.829</td>\n",
-       "      <td>0.656</td>\n",
-       "      <td>0.494</td>\n",
-       "      <td>0.349</td>\n",
-       "      <td>0.372</td>\n",
-       "      <td>0.582</td>\n",
-       "      <td>0.849</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.774</td>\n",
+       "      <td>0.945</td>\n",
+       "      <td>0.446</td>\n",
+       "      <td>0.687</td>\n",
+       "      <td>0.603</td>\n",
+       "      <td>0.361</td>\n",
+       "      <td>0.459</td>\n",
+       "      <td>0.554</td>\n",
+       "      <td>0.118</td>\n",
+       "      <td>0.378</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>explicit</th>\n",
        "      <td>{'isrc': 'GBAYE0601648'}</td>\n",
        "      <td>{'isrc': 'GBAYE0601635'}</td>\n",
        "      <td>{'isrc': 'GBAYE0601457'}</td>\n",
+       "      <td>{'isrc': 'GBUM71701196'}</td>\n",
        "      <td>{'isrc': 'GBUM71603960'}</td>\n",
        "      <td>{'isrc': 'GBUM71603957'}</td>\n",
        "      <td>{'isrc': 'GBUM71603952'}</td>\n",
        "      <td>{'isrc': 'GBUM71603959'}</td>\n",
        "      <td>{'isrc': 'GBUM71603951'}</td>\n",
        "      <td>{'isrc': 'GBUM71603958'}</td>\n",
-       "      <td>{'isrc': 'GBUM71603955'}</td>\n",
        "      <td>...</td>\n",
-       "      <td>{'isrc': 'GBAYE0601414'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601415'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601416'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601417'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601418'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601419'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601420'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601421'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601422'}</td>\n",
-       "      <td>{'isrc': 'GBAYE0601423'}</td>\n",
+       "      <td>{'isrc': 'GBUM71700950'}</td>\n",
+       "      <td>{'isrc': 'GBUM71700957'}</td>\n",
+       "      <td>{'isrc': 'GBUM71700946'}</td>\n",
+       "      <td>{'isrc': 'GBUM71701188'}</td>\n",
+       "      <td>{'isrc': 'GBUM71701189'}</td>\n",
+       "      <td>{'isrc': 'GBUM71701190'}</td>\n",
+       "      <td>{'isrc': 'GBUM71701191'}</td>\n",
+       "      <td>{'isrc': 'GBUM71701192'}</td>\n",
+       "      <td>{'isrc': 'GBUM71701193'}</td>\n",
+       "      <td>{'isrc': 'GBUM71701194'}</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>external_urls</th>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/2u...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/2z...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/3c...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/5c...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/4e...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/15...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/1f...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/0G...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/1e...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/2p...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/1H...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/43...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/3N...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/2I...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/2O...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/01...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/5g...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/5F...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/6t...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/50...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/4Z...</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>gloom</th>\n",
-       "      <td>0.418731</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>0.238815</td>\n",
-       "      <td>0.22727</td>\n",
-       "      <td>0.154272</td>\n",
-       "      <td>0.35295</td>\n",
-       "      <td>0.242494</td>\n",
-       "      <td>0.307075</td>\n",
-       "      <td>0.22049</td>\n",
        "      <td>...</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
-       "      <td>NaN</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/3p...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/5T...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/3Z...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/2B...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/1a...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/1k...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/42...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/5J...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/3H...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/3q...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>href</th>\n",
        "      <td>https://api.spotify.com/v1/tracks/2ucFulEWapRA...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/2z1p43SNSbeo...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/3ckvsHnEffhh...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5cXiWs6VoLlD...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/4edArG2VehvJ...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/150EAeMGWJRu...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/1fVeHYkyMxrj...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/0GRplBEB2FWC...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/1eVymk74iroq...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/2p5a9gu6NECV...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/1HyLh5cctOnP...</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/43feVCF6QfqI...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/3NwEPV9MDr1z...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2Iccm3cKBQHW...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2OLMjGIhCNI6...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/01n20rdBC5cz...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/5gnrZoSS7nbD...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/5FBxWhG0nbBA...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6tEwCsVtZ5tI...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/50jq8RgbDfmN...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/4Z1fbYp0HuxL...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3pY5chBSUotR...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5ToEv4nDN51O...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3ZFPe2aiLQuE...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2BOawXVznHmi...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1alxZZpi5dBL...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1k1kJBeaL3FC...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/42uZOBjvKNv4...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5JnPM6eKhHJt...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3HEC6nzAo3U5...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3qchAN1uJ1Ki...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>id</th>\n",
        "      <td>2ucFulEWapRAmTn7l6f5Q7</td>\n",
        "      <td>2z1p43SNSbeowzy8WdYHNk</td>\n",
        "      <td>3ckvsHnEffhhS5c0Cs6Gv5</td>\n",
+       "      <td>5cXiWs6VoLlDlowJQo0UPk</td>\n",
        "      <td>4edArG2VehvJdwOZfYOxtK</td>\n",
        "      <td>150EAeMGWJRubuH8zyx7h8</td>\n",
        "      <td>1fVeHYkyMxrjbjRAD9uWsZ</td>\n",
        "      <td>0GRplBEB2FWCKutwMmS6nY</td>\n",
        "      <td>1eVymk74iroqhsZxm0Vy3g</td>\n",
        "      <td>2p5a9gu6NECVSvBtGSU1vm</td>\n",
-       "      <td>1HyLh5cctOnP186CBi8bhm</td>\n",
        "      <td>...</td>\n",
-       "      <td>43feVCF6QfqIt9LnLs9BAH</td>\n",
-       "      <td>3NwEPV9MDr1z3KcHiAuz9d</td>\n",
-       "      <td>2Iccm3cKBQHWt5yk0yX9nh</td>\n",
-       "      <td>2OLMjGIhCNI6j34ysPscbp</td>\n",
-       "      <td>01n20rdBC5czKAhxmGREkr</td>\n",
-       "      <td>5gnrZoSS7nbDYtHp32RFiI</td>\n",
-       "      <td>5FBxWhG0nbBAF6lWgJFklM</td>\n",
-       "      <td>6tEwCsVtZ5tI8uHNJSHQ3b</td>\n",
-       "      <td>50jq8RgbDfmNNd0NiRnl4L</td>\n",
-       "      <td>4Z1fbYp0HuxLBje4MOZcSD</td>\n",
+       "      <td>3pY5chBSUotRa6RoIfwJjc</td>\n",
+       "      <td>5ToEv4nDN51OyAjK65A9YS</td>\n",
+       "      <td>3ZFPe2aiLQuEfDxSqQstZp</td>\n",
+       "      <td>2BOawXVznHmi2KJzRFstBN</td>\n",
+       "      <td>1alxZZpi5dBLcmV3WkYIzN</td>\n",
+       "      <td>1k1kJBeaL3FCUG2vOJ1z0g</td>\n",
+       "      <td>42uZOBjvKNv4QKnBmjOwb0</td>\n",
+       "      <td>5JnPM6eKhHJtkWfS6ymUMF</td>\n",
+       "      <td>3HEC6nzAo3U5z7blaCNBcF</td>\n",
+       "      <td>3qchAN1uJ1KiF8yxmqb3Ov</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>ignore</th>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>instrumentalness</th>\n",
        "      <td>0.627</td>\n",
        "      <td>0.88</td>\n",
        "      <td>8.92e-05</td>\n",
+       "      <td>0</td>\n",
        "      <td>2.04e-06</td>\n",
        "      <td>2.42e-05</td>\n",
        "      <td>0.000141</td>\n",
        "      <td>0</td>\n",
        "      <td>0</td>\n",
        "      <td>0</td>\n",
-       "      <td>0</td>\n",
        "      <td>...</td>\n",
        "      <td>0</td>\n",
-       "      <td>0</td>\n",
-       "      <td>0</td>\n",
-       "      <td>6.2e-05</td>\n",
-       "      <td>0.00127</td>\n",
-       "      <td>0</td>\n",
-       "      <td>0</td>\n",
-       "      <td>0</td>\n",
-       "      <td>4.22e-06</td>\n",
-       "      <td>7.74e-06</td>\n",
+       "      <td>0.124</td>\n",
+       "      <td>0.000177</td>\n",
+       "      <td>0.0174</td>\n",
+       "      <td>0.531</td>\n",
+       "      <td>4.31e-05</td>\n",
+       "      <td>0.121</td>\n",
+       "      <td>7.85e-05</td>\n",
+       "      <td>0.928</td>\n",
+       "      <td>8.96e-06</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>key</th>\n",
        "      <td>2</td>\n",
        "      <td>0</td>\n",
        "      <td>7</td>\n",
+       "      <td>7</td>\n",
        "      <td>2</td>\n",
        "      <td>9</td>\n",
        "      <td>11</td>\n",
        "      <td>9</td>\n",
        "      <td>5</td>\n",
        "      <td>5</td>\n",
-       "      <td>2</td>\n",
        "      <td>...</td>\n",
-       "      <td>4</td>\n",
-       "      <td>4</td>\n",
+       "      <td>2</td>\n",
+       "      <td>0</td>\n",
        "      <td>4</td>\n",
        "      <td>0</td>\n",
+       "      <td>6</td>\n",
        "      <td>2</td>\n",
+       "      <td>0</td>\n",
+       "      <td>5</td>\n",
        "      <td>4</td>\n",
-       "      <td>4</td>\n",
-       "      <td>1</td>\n",
-       "      <td>4</td>\n",
-       "      <td>2</td>\n",
+       "      <td>0</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>liveness</th>\n",
        "      <td>0.789</td>\n",
        "      <td>0.0932</td>\n",
        "      <td>0.877</td>\n",
+       "      <td>0.0747</td>\n",
        "      <td>0.508</td>\n",
        "      <td>0.85</td>\n",
        "      <td>0.496</td>\n",
        "      <td>0.366</td>\n",
        "      <td>0.894</td>\n",
        "      <td>0.756</td>\n",
-       "      <td>0.634</td>\n",
-       "      <td>...</td>\n",
-       "      <td>0.736</td>\n",
-       "      <td>0.0967</td>\n",
-       "      <td>0.0702</td>\n",
-       "      <td>0.227</td>\n",
-       "      <td>0.0828</td>\n",
-       "      <td>0.0926</td>\n",
-       "      <td>0.38</td>\n",
-       "      <td>0.104</td>\n",
-       "      <td>0.172</td>\n",
-       "      <td>0.0414</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.5</td>\n",
+       "      <td>0.463</td>\n",
+       "      <td>0.9</td>\n",
+       "      <td>0.668</td>\n",
+       "      <td>0.154</td>\n",
+       "      <td>0.106</td>\n",
+       "      <td>0.183</td>\n",
+       "      <td>0.0437</td>\n",
+       "      <td>0.125</td>\n",
+       "      <td>0.432</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>loudness</th>\n",
        "      <td>-11.185</td>\n",
        "      <td>-14.755</td>\n",
        "      <td>-6.63</td>\n",
+       "      <td>-11.951</td>\n",
        "      <td>-8.696</td>\n",
        "      <td>-8.189</td>\n",
        "      <td>-6.879</td>\n",
        "      <td>-8.007</td>\n",
        "      <td>-7.606</td>\n",
        "      <td>-8.35</td>\n",
-       "      <td>-7.948</td>\n",
        "      <td>...</td>\n",
-       "      <td>-10.31</td>\n",
-       "      <td>-11.33</td>\n",
-       "      <td>-9.61</td>\n",
-       "      <td>-6.228</td>\n",
-       "      <td>-8.5</td>\n",
-       "      <td>-12.211</td>\n",
-       "      <td>-12.414</td>\n",
-       "      <td>-11.416</td>\n",
-       "      <td>-10.009</td>\n",
-       "      <td>-9.198</td>\n",
+       "      <td>-6.955</td>\n",
+       "      <td>-5.376</td>\n",
+       "      <td>-10.854</td>\n",
+       "      <td>-7.932</td>\n",
+       "      <td>-7.878</td>\n",
+       "      <td>-12.382</td>\n",
+       "      <td>-10.511</td>\n",
+       "      <td>-7.154</td>\n",
+       "      <td>-12.964</td>\n",
+       "      <td>-11.467</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>lyrical_density</th>\n",
        "      <td>0.169898</td>\n",
        "      <td>0</td>\n",
        "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
        "      <td>2.82332</td>\n",
        "      <td>0.577965</td>\n",
        "      <td>0.796421</td>\n",
        "      <td>1.85312</td>\n",
        "      <td>1.47553</td>\n",
        "      <td>1.29746</td>\n",
-       "      <td>1.7461</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.901393</td>\n",
-       "      <td>1.01001</td>\n",
-       "      <td>2.19275</td>\n",
-       "      <td>0.783384</td>\n",
-       "      <td>1.2303</td>\n",
-       "      <td>1.32694</td>\n",
-       "      <td>1.1879</td>\n",
-       "      <td>0.74506</td>\n",
-       "      <td>0.895984</td>\n",
-       "      <td>1.70075</td>\n",
+       "      <td>1.28183</td>\n",
+       "      <td>1.00496</td>\n",
+       "      <td>0.640638</td>\n",
+       "      <td>1.0675</td>\n",
+       "      <td>1.51639</td>\n",
+       "      <td>0.778676</td>\n",
+       "      <td>1.23436</td>\n",
+       "      <td>0.702463</td>\n",
+       "      <td>0.999476</td>\n",
+       "      <td>0.806568</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>lyrics</th>\n",
-       "      <td>honey pie honey pie i love you, honey pie</td>\n",
-       "      <td></td>\n",
+       "      <td>honey pie honey pie i love you honey pie</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>well shake it up baby now (shake it up baby) t...</td>\n",
        "      <td>my love don't give me presents i know that she...</td>\n",
-       "      <td>{intro} you make me dizzy, miss lizzy the way ...</td>\n",
+       "      <td>{intro} you make me dizzy miss lizzy the way y...</td>\n",
        "      <td>i think i'm going to be sad i think it's today...</td>\n",
-       "      <td>can't buy me love, love can't buy me love i'll...</td>\n",
+       "      <td>can't buy me love love can't buy me love i'll ...</td>\n",
        "      <td>you say you will love me if i have to go you'l...</td>\n",
-       "      <td>i'm gonna write a little letter gonna mail it ...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>i been told when a boy kiss a girl take a trip...</td>\n",
-       "      <td>i love you, because you tell me things i want ...</td>\n",
-       "      <td>(lennon/mccartney) last night i said these wor...</td>\n",
-       "      <td>love, love me do you know i love you i'll alwa...</td>\n",
-       "      <td>as i write this letter send my love to you rem...</td>\n",
-       "      <td>sha la la la la la la la sha la la la la la la...</td>\n",
-       "      <td>you'll never know how much i really love you y...</td>\n",
-       "      <td>a taste of honey! tasting much sweeter than wi...</td>\n",
-       "      <td>there is a place where i can go when i feel lo...</td>\n",
-       "      <td>well shake it up baby now (shake it up baby) t...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>nothing to do to save his life call his wife i...</td>\n",
+       "      <td>(1234) (bye) we're sgt pepper's lonely hearts ...</td>\n",
+       "      <td>i read the news today oh boy about a lucky man...</td>\n",
+       "      <td>it was twenty years ago today sgt pepper taugh...</td>\n",
+       "      <td>billy shears what would you think if i sang ou...</td>\n",
+       "      <td>picture yourself in a boat on a river with tan...</td>\n",
+       "      <td>it's getting better all the time i used to get...</td>\n",
+       "      <td>i'm fixing a hole where the rain gets in and s...</td>\n",
+       "      <td>wednesday morning at five o'clock as the day b...</td>\n",
+       "      <td>for the benefit of mr kite there will be a sho...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>mode</th>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
-       "      <td>0</td>\n",
        "      <td>1</td>\n",
+       "      <td>0</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>...</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
+       "      <td>0</td>\n",
        "      <td>1</td>\n",
+       "      <td>0</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
-       "      <td>0</td>\n",
        "      <td>1</td>\n",
-       "      <td>0</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>name</th>\n",
-       "      <td>Wild Honey Pie - Remastered 2009</td>\n",
+       "      <td>Wild Honey Pie - Remastered</td>\n",
        "      <td>Flying - Remastered 2009</td>\n",
-       "      <td>Kansas City / Hey-Hey-Hey-Hey - Remastered 2009</td>\n",
+       "      <td>Kansas City / Hey-Hey-Hey-Hey - Remastered</td>\n",
+       "      <td>When I'm Sixty-Four - Take 2</td>\n",
        "      <td>Twist And Shout - Live / Remastered</td>\n",
        "      <td>She's A Woman - Live / Remastered</td>\n",
        "      <td>Dizzy Miss Lizzy - Live / Remastered</td>\n",
        "      <td>Ticket To Ride - Live / Remastered</td>\n",
        "      <td>Can't Buy Me Love - Live / Remastered</td>\n",
        "      <td>Things We Said Today - Live / Remastered</td>\n",
-       "      <td>Roll Over Beethoven - Live / Remastered</td>\n",
        "      <td>...</td>\n",
-       "      <td>Boys - Remastered 2009</td>\n",
-       "      <td>Ask Me Why - Remastered 2009</td>\n",
-       "      <td>Please Please Me - Remastered 2009</td>\n",
-       "      <td>Love Me Do - Remastered 2009</td>\n",
-       "      <td>P.S. I Love You - Remastered 2009</td>\n",
-       "      <td>Baby It's You - Remastered 2009</td>\n",
-       "      <td>Do You Want To Know A Secret - Remastered 2009</td>\n",
-       "      <td>A Taste Of Honey - Remastered 2009</td>\n",
-       "      <td>There's A Place - Remastered 2009</td>\n",
-       "      <td>Twist And Shout - Remastered 2009</td>\n",
+       "      <td>Good Morning Good Morning - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Reprise...</td>\n",
+       "      <td>A Day In The Life - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Take 9...</td>\n",
+       "      <td>With A Little Help From My Friends - Take 1 / ...</td>\n",
+       "      <td>Lucy In The Sky With Diamonds - Take 1</td>\n",
+       "      <td>Getting Better - Take 1 / Instrumental And Spe...</td>\n",
+       "      <td>Fixing A Hole - Speech And Take 3</td>\n",
+       "      <td>She's Leaving Home - Take 1 / Instrumental</td>\n",
+       "      <td>Being For The Benefit Of Mr. Kite! - Take 4</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>nnrc_sentiment</th>\n",
+       "      <td>{'joy': 0.25, 'positive': 1.0}</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>{'anger': 0.2727272727272727, 'surprise': 0.36...</td>\n",
+       "      <td>{'anger': 0.4, 'trust': 0.4, 'sadness': 0.6, '...</td>\n",
+       "      <td>{'anger': 0.1, 'surprise': 0.1, 'negative': 0....</td>\n",
+       "      <td>{'anger': 0.3333333333333333, 'fear': 0.333333...</td>\n",
+       "      <td>{'anger': 0.2857142857142857, 'surprise': 0.28...</td>\n",
+       "      <td>{'anger': 0.07692307692307693, 'trust': 0.1538...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'anger': 0.06666666666666667, 'trust': 0.8666...</td>\n",
+       "      <td>{'anger': 1.0, 'trust': 0.18181818181818182, '...</td>\n",
+       "      <td>{'trust': 0.625, 'fear': 0.125, 'surprise': 0....</td>\n",
+       "      <td>{'anger': 0.7, 'trust': 1.0, 'sadness': 1.0, '...</td>\n",
+       "      <td>{'fear': 0.125, 'negative': 0.125, 'joy': 1.0,...</td>\n",
+       "      <td>{'surprise': 0.14285714285714285, 'negative': ...</td>\n",
+       "      <td>{'anger': 0.42857142857142855, 'disgust': 0.57...</td>\n",
+       "      <td>{'anger': 0.2, 'sadness': 0.2, 'negative': 1.0...</td>\n",
+       "      <td>{'anger': 0.4, 'trust': 0.6, 'sadness': 0.2, '...</td>\n",
+       "      <td>{'anger': 0.09090909090909091, 'trust': 0.7272...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>nrc_sentiment</th>\n",
+       "      <td>{'joy': 1, 'positive': 4}</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>{'anger': 3, 'surprise': 4, 'positive': 11, 't...</td>\n",
+       "      <td>{'anger': 2, 'trust': 2, 'fear': 1, 'surprise'...</td>\n",
+       "      <td>{'anger': 1, 'surprise': 1, 'negative': 9, 'jo...</td>\n",
+       "      <td>{'anger': 2, 'fear': 2, 'negative': 2, 'joy': ...</td>\n",
+       "      <td>{'anger': 10, 'surprise': 10, 'positive': 35, ...</td>\n",
+       "      <td>{'anger': 1, 'trust': 2, 'fear': 1, 'surprise'...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'anger': 1, 'trust': 13, 'fear': 2, 'surprise...</td>\n",
+       "      <td>{'anger': 11, 'trust': 2, 'fear': 11, 'surpris...</td>\n",
+       "      <td>{'trust': 5, 'fear': 1, 'surprise': 2, 'negati...</td>\n",
+       "      <td>{'anger': 7, 'trust': 10, 'fear': 8, 'surprise...</td>\n",
+       "      <td>{'fear': 1, 'negative': 1, 'joy': 8, 'trust': ...</td>\n",
+       "      <td>{'surprise': 2, 'negative': 1, 'positive': 14,...</td>\n",
+       "      <td>{'anger': 3, 'disgust': 4, 'fear': 3, 'surpris...</td>\n",
+       "      <td>{'anger': 1, 'fear': 1, 'negative': 5, 'positi...</td>\n",
+       "      <td>{'anger': 4, 'trust': 6, 'fear': 1, 'surprise'...</td>\n",
+       "      <td>{'anger': 1, 'trust': 8, 'fear': 2, 'surprise'...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>original_lyrics</th>\n",
        "      <td>\\n\\nHoney Pie\\nHoney Pie\\nI love you, Honey Pi...</td>\n",
        "      <td>\\n\\n[Instrumental]\\n\\n</td>\n",
        "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
        "      <td>\\n\\n[Verse 1]\\nWell shake it up baby now (shak...</td>\n",
        "      <td>\\n\\n[Chorus]\\nMy love don't give me presents\\n...</td>\n",
        "      <td>\\n\\n{Intro}\\n\\nYou make me dizzy, Miss Lizzy\\n...</td>\n",
        "      <td>\\n\\n[Verse 1]\\nI think I'm going to be sad\\nI ...</td>\n",
        "      <td>\\n\\n[Chorus 1]\\nCan't buy me love, love\\nCan't...</td>\n",
        "      <td>\\n\\n[Verse 1]\\nYou say you will love me\\nIf I ...</td>\n",
-       "      <td>\\n\\nI'm gonna write a little letter\\nGonna mai...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>\\n\\n[Verse 1]\\nI been told when a boy kiss a g...</td>\n",
-       "      <td>\\n\\n[Verse 1]\\nI love you, because you tell me...</td>\n",
-       "      <td>\\n\\n(Lennon/McCartney)\\n\\nLast night I said th...</td>\n",
-       "      <td>\\n\\nLove, love me do\\nYou know I love you\\nI'l...</td>\n",
-       "      <td>\\n\\nAs I write this letter\\nSend my love to yo...</td>\n",
-       "      <td>\\n\\n[Intro-The Beatles]\\nSha la la la la la la...</td>\n",
-       "      <td>\\n\\n[Intro]\\nYou'll never know how much I real...</td>\n",
-       "      <td>\\n\\n[Intro]\\nA taste of honey! Tasting much sw...</td>\n",
-       "      <td>\\n\\n[Verse 1]\\nThere is a place\\nWhere I can g...</td>\n",
-       "      <td>\\n\\n[Verse 1]\\nWell shake it up baby now (shak...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nNothing to do to save his life ...</td>\n",
+       "      <td>\\n\\n[Intro]\\n(1,2,3,4)\\n\\n(Bye!)\\n\\n[Verse]\\nW...</td>\n",
+       "      <td>\\n\\n[Verse 1: John Lennon]\\nI read the news to...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nIt was twenty years ago today\\n...</td>\n",
+       "      <td>\\n\\n[Segue]\\nBilly Shears!\\n\\n[Verse 1]\\nWhat ...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nPicture yourself in a boat on a...</td>\n",
+       "      <td>\\n\\n[Intro]\\nIt's getting better all the time\\...</td>\n",
+       "      <td>\\n\\n[Chorus]\\nI'm fixing a hole where the rain...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nWednesday morning at five o'clo...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nFor the benefit of Mr. Kite\\nTh...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>popularity</th>\n",
-       "      <td>43</td>\n",
        "      <td>44</td>\n",
-       "      <td>38</td>\n",
+       "      <td>45</td>\n",
+       "      <td>39</td>\n",
+       "      <td>35</td>\n",
        "      <td>48</td>\n",
+       "      <td>46</td>\n",
+       "      <td>45</td>\n",
+       "      <td>45</td>\n",
        "      <td>45</td>\n",
-       "      <td>44</td>\n",
-       "      <td>44</td>\n",
-       "      <td>44</td>\n",
-       "      <td>43</td>\n",
        "      <td>43</td>\n",
        "      <td>...</td>\n",
-       "      <td>42</td>\n",
+       "      <td>40</td>\n",
        "      <td>41</td>\n",
-       "      <td>48</td>\n",
-       "      <td>55</td>\n",
-       "      <td>43</td>\n",
        "      <td>44</td>\n",
-       "      <td>48</td>\n",
-       "      <td>40</td>\n",
-       "      <td>43</td>\n",
-       "      <td>64</td>\n",
+       "      <td>39</td>\n",
+       "      <td>38</td>\n",
+       "      <td>37</td>\n",
+       "      <td>36</td>\n",
+       "      <td>35</td>\n",
+       "      <td>35</td>\n",
+       "      <td>35</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>preview_url</th>\n",
-       "      <td>https://p.scdn.co/mp3-preview/ddebab4d5e87d46a...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/15f07b753cb7e50c...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/bd13930c7706bdd4...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/cd82d2f8f92a7222...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/37806a7d82c5d2a8...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/5ee6d20e1808908e...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/558bb39228550744...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/c6b9c820e62868db...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/7b71156485b9e3e1...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/318950f70347c556...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/c84bcc2dd65c3d9b...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/f42256fa5367c68f...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/c7974d03d8cd26de...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/c0c7944dcb9d2457...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/5ef1f2ba07489648...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/d7eeb1f68c39066d...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/5bd705943290818c...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/dd94439cdf6e7668...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/5260a1d4f12c23ac...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/b7e3bc96b46e4dcc...</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>...</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>sentiment</th>\n",
-       "      <td>{'label': 'pos', 'probability': {'neutral': 0....</td>\n",
+       "      <td>{'label': 'pos', 'probability': {'pos': 0.6088...</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
-       "      <td>{'label': 'pos', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neutral', 'probability': {'neutral'...</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>{'label': 'pos', 'probability': {'pos': 0.5000...</td>\n",
+       "      <td>{'label': 'neutral', 'probability': {'pos': 0....</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.4047...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.1745...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.2616...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.3672...</td>\n",
        "      <td>...</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'pos', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'pos', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'pos', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'neg', 'probability': {'neutral': 0....</td>\n",
-       "      <td>{'label': 'pos', 'probability': {'neutral': 0....</td>\n",
+       "      <td>{'label': 'neutral', 'probability': {'pos': 0....</td>\n",
+       "      <td>{'label': 'pos', 'probability': {'pos': 0.5616...</td>\n",
+       "      <td>{'label': 'neutral', 'probability': {'pos': 0....</td>\n",
+       "      <td>{'label': 'pos', 'probability': {'pos': 0.7184...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.4475...</td>\n",
+       "      <td>{'label': 'neutral', 'probability': {'pos': 0....</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.1925...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.2385...</td>\n",
+       "      <td>{'label': 'neutral', 'probability': {'pos': 0....</td>\n",
+       "      <td>{'label': 'neutral', 'probability': {'pos': 0....</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>speechiness</th>\n",
        "      <td>0.0506</td>\n",
        "      <td>0.0501</td>\n",
        "      <td>0.0335</td>\n",
+       "      <td>0.127</td>\n",
        "      <td>0.0395</td>\n",
        "      <td>0.0662</td>\n",
        "      <td>0.0461</td>\n",
        "      <td>0.0423</td>\n",
        "      <td>0.0571</td>\n",
        "      <td>0.0392</td>\n",
-       "      <td>0.0398</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.0504</td>\n",
-       "      <td>0.0378</td>\n",
-       "      <td>0.028</td>\n",
-       "      <td>0.0806</td>\n",
-       "      <td>0.0291</td>\n",
-       "      <td>0.0345</td>\n",
-       "      <td>0.0368</td>\n",
-       "      <td>0.0327</td>\n",
-       "      <td>0.0292</td>\n",
-       "      <td>0.0452</td>\n",
+       "      <td>0.0895</td>\n",
+       "      <td>0.0547</td>\n",
+       "      <td>0.0453</td>\n",
+       "      <td>0.0731</td>\n",
+       "      <td>0.107</td>\n",
+       "      <td>0.0481</td>\n",
+       "      <td>0.0729</td>\n",
+       "      <td>0.0538</td>\n",
+       "      <td>0.0369</td>\n",
+       "      <td>0.0488</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>tempo</th>\n",
        "      <td>89.9</td>\n",
        "      <td>92.929</td>\n",
        "      <td>131.36</td>\n",
+       "      <td>132.645</td>\n",
        "      <td>126.441</td>\n",
        "      <td>175.86</td>\n",
        "      <td>129.417</td>\n",
        "      <td>121.216</td>\n",
        "      <td>173.283</td>\n",
        "      <td>146.636</td>\n",
-       "      <td>179.24</td>\n",
        "      <td>...</td>\n",
-       "      <td>142.445</td>\n",
-       "      <td>133.942</td>\n",
-       "      <td>139.388</td>\n",
-       "      <td>147.997</td>\n",
-       "      <td>134.435</td>\n",
-       "      <td>112.421</td>\n",
-       "      <td>124.451</td>\n",
-       "      <td>101.408</td>\n",
-       "      <td>140.928</td>\n",
-       "      <td>124.631</td>\n",
+       "      <td>121.559</td>\n",
+       "      <td>118.778</td>\n",
+       "      <td>80.895</td>\n",
+       "      <td>94.509</td>\n",
+       "      <td>111.388</td>\n",
+       "      <td>99.567</td>\n",
+       "      <td>127.565</td>\n",
+       "      <td>113.629</td>\n",
+       "      <td>127.648</td>\n",
+       "      <td>111.717</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>time_signature</th>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
-       "      <td>3</td>\n",
+       "      <td>4</td>\n",
        "      <td>...</td>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
-       "      <td>3</td>\n",
        "      <td>4</td>\n",
+       "      <td>3</td>\n",
        "      <td>4</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <td>https://api.spotify.com/v1/tracks/2ucFulEWapRA...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/2z1p43SNSbeo...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/3ckvsHnEffhh...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5cXiWs6VoLlD...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/4edArG2VehvJ...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/150EAeMGWJRu...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/1fVeHYkyMxrj...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/0GRplBEB2FWC...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/1eVymk74iroq...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/2p5a9gu6NECV...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/1HyLh5cctOnP...</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/43feVCF6QfqI...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/3NwEPV9MDr1z...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2Iccm3cKBQHW...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2OLMjGIhCNI6...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/01n20rdBC5cz...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/5gnrZoSS7nbD...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/5FBxWhG0nbBA...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6tEwCsVtZ5tI...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/50jq8RgbDfmN...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/4Z1fbYp0HuxL...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3pY5chBSUotR...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5ToEv4nDN51O...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3ZFPe2aiLQuE...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2BOawXVznHmi...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1alxZZpi5dBL...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1k1kJBeaL3FC...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/42uZOBjvKNv4...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5JnPM6eKhHJt...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3HEC6nzAo3U5...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3qchAN1uJ1Ki...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>track_number</th>\n",
        "      <td>5</td>\n",
        "      <td>3</td>\n",
        "      <td>7</td>\n",
+       "      <td>9</td>\n",
        "      <td>1</td>\n",
        "      <td>2</td>\n",
        "      <td>3</td>\n",
        "      <td>4</td>\n",
        "      <td>5</td>\n",
        "      <td>6</td>\n",
-       "      <td>7</td>\n",
        "      <td>...</td>\n",
-       "      <td>5</td>\n",
-       "      <td>6</td>\n",
-       "      <td>7</td>\n",
-       "      <td>8</td>\n",
-       "      <td>9</td>\n",
-       "      <td>10</td>\n",
        "      <td>11</td>\n",
        "      <td>12</td>\n",
        "      <td>13</td>\n",
-       "      <td>14</td>\n",
+       "      <td>1</td>\n",
+       "      <td>2</td>\n",
+       "      <td>3</td>\n",
+       "      <td>4</td>\n",
+       "      <td>5</td>\n",
+       "      <td>6</td>\n",
+       "      <td>7</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>type</th>\n",
        "      <td>spotify:track:2ucFulEWapRAmTn7l6f5Q7</td>\n",
        "      <td>spotify:track:2z1p43SNSbeowzy8WdYHNk</td>\n",
        "      <td>spotify:track:3ckvsHnEffhhS5c0Cs6Gv5</td>\n",
+       "      <td>spotify:track:5cXiWs6VoLlDlowJQo0UPk</td>\n",
        "      <td>spotify:track:4edArG2VehvJdwOZfYOxtK</td>\n",
        "      <td>spotify:track:150EAeMGWJRubuH8zyx7h8</td>\n",
        "      <td>spotify:track:1fVeHYkyMxrjbjRAD9uWsZ</td>\n",
        "      <td>spotify:track:0GRplBEB2FWCKutwMmS6nY</td>\n",
        "      <td>spotify:track:1eVymk74iroqhsZxm0Vy3g</td>\n",
        "      <td>spotify:track:2p5a9gu6NECVSvBtGSU1vm</td>\n",
-       "      <td>spotify:track:1HyLh5cctOnP186CBi8bhm</td>\n",
        "      <td>...</td>\n",
-       "      <td>spotify:track:43feVCF6QfqIt9LnLs9BAH</td>\n",
-       "      <td>spotify:track:3NwEPV9MDr1z3KcHiAuz9d</td>\n",
-       "      <td>spotify:track:2Iccm3cKBQHWt5yk0yX9nh</td>\n",
-       "      <td>spotify:track:2OLMjGIhCNI6j34ysPscbp</td>\n",
-       "      <td>spotify:track:01n20rdBC5czKAhxmGREkr</td>\n",
-       "      <td>spotify:track:5gnrZoSS7nbDYtHp32RFiI</td>\n",
-       "      <td>spotify:track:5FBxWhG0nbBAF6lWgJFklM</td>\n",
-       "      <td>spotify:track:6tEwCsVtZ5tI8uHNJSHQ3b</td>\n",
-       "      <td>spotify:track:50jq8RgbDfmNNd0NiRnl4L</td>\n",
-       "      <td>spotify:track:4Z1fbYp0HuxLBje4MOZcSD</td>\n",
+       "      <td>spotify:track:3pY5chBSUotRa6RoIfwJjc</td>\n",
+       "      <td>spotify:track:5ToEv4nDN51OyAjK65A9YS</td>\n",
+       "      <td>spotify:track:3ZFPe2aiLQuEfDxSqQstZp</td>\n",
+       "      <td>spotify:track:2BOawXVznHmi2KJzRFstBN</td>\n",
+       "      <td>spotify:track:1alxZZpi5dBLcmV3WkYIzN</td>\n",
+       "      <td>spotify:track:1k1kJBeaL3FCUG2vOJ1z0g</td>\n",
+       "      <td>spotify:track:42uZOBjvKNv4QKnBmjOwb0</td>\n",
+       "      <td>spotify:track:5JnPM6eKhHJtkWfS6ymUMF</td>\n",
+       "      <td>spotify:track:3HEC6nzAo3U5z7blaCNBcF</td>\n",
+       "      <td>spotify:track:3qchAN1uJ1KiF8yxmqb3Ov</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>valence</th>\n",
-       "      <td>0.153</td>\n",
-       "      <td>0.246</td>\n",
-       "      <td>0.929</td>\n",
-       "      <td>0.588</td>\n",
-       "      <td>0.562</td>\n",
-       "      <td>0.758</td>\n",
-       "      <td>0.405</td>\n",
-       "      <td>0.669</td>\n",
-       "      <td>0.395</td>\n",
-       "      <td>0.726</td>\n",
+       "      <td>0.152</td>\n",
+       "      <td>0.261</td>\n",
+       "      <td>0.924</td>\n",
+       "      <td>0.462</td>\n",
+       "      <td>0.613</td>\n",
+       "      <td>0.59</td>\n",
+       "      <td>0.756</td>\n",
+       "      <td>0.409</td>\n",
+       "      <td>0.677</td>\n",
+       "      <td>0.368</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.825</td>\n",
-       "      <td>0.606</td>\n",
-       "      <td>0.708</td>\n",
-       "      <td>0.765</td>\n",
-       "      <td>0.78</td>\n",
-       "      <td>0.889</td>\n",
-       "      <td>0.636</td>\n",
-       "      <td>0.378</td>\n",
-       "      <td>0.928</td>\n",
-       "      <td>0.942</td>\n",
+       "      <td>0.849</td>\n",
+       "      <td>0.794</td>\n",
+       "      <td>0.133</td>\n",
+       "      <td>0.5</td>\n",
+       "      <td>0.38</td>\n",
+       "      <td>0.328</td>\n",
+       "      <td>0.33</td>\n",
+       "      <td>0.641</td>\n",
+       "      <td>0.184</td>\n",
+       "      <td>0.536</td>\n",
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
-       "<p>41 rows × 229 columns</p>\n",
+       "<p>42 rows × 261 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
        "                                                                 0    \\\n",
        "_id                                           2ucFulEWapRAmTn7l6f5Q7   \n",
        "acousticness                                                   0.425   \n",
-       "album              {'id': '03Qh833fEdVT30Pfs93ea6', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      03Qh833fEdVT30Pfs93ea6   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/2ucF...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                 0.0598502   \n",
        "ctitle                                                wild honey pie   \n",
        "danceability                                                   0.792   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBAYE0601648'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/2u...   \n",
-       "gloom                                                       0.418731   \n",
        "href               https://api.spotify.com/v1/tracks/2ucFulEWapRA...   \n",
        "id                                            2ucFulEWapRAmTn7l6f5Q7   \n",
+       "ignore                                                           NaN   \n",
        "instrumentalness                                               0.627   \n",
        "key                                                                2   \n",
        "liveness                                                       0.789   \n",
        "loudness                                                     -11.185   \n",
        "lyrical_density                                             0.169898   \n",
-       "lyrics                     honey pie honey pie i love you, honey pie   \n",
+       "lyrics                      honey pie honey pie i love you honey pie   \n",
        "mode                                                               1   \n",
-       "name                                Wild Honey Pie - Remastered 2009   \n",
+       "name                                     Wild Honey Pie - Remastered   \n",
+       "nnrc_sentiment                        {'joy': 0.25, 'positive': 1.0}   \n",
+       "nrc_sentiment                              {'joy': 1, 'positive': 4}   \n",
        "original_lyrics    \\n\\nHoney Pie\\nHoney Pie\\nI love you, Honey Pi...   \n",
-       "popularity                                                        43   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/ddebab4d5e87d46a...   \n",
-       "sentiment          {'label': 'pos', 'probability': {'neutral': 0....   \n",
+       "popularity                                                        44   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'pos', 'probability': {'pos': 0.6088...   \n",
        "speechiness                                                   0.0506   \n",
        "tempo                                                           89.9   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       5   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:2ucFulEWapRAmTn7l6f5Q7   \n",
-       "valence                                                        0.153   \n",
+       "valence                                                        0.152   \n",
        "\n",
        "                                                                 1    \\\n",
        "_id                                           2z1p43SNSbeowzy8WdYHNk   \n",
        "acousticness                                                   0.368   \n",
-       "album              {'id': '6P9yO0ukhOx3dvmhGKeYoC', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      6P9yO0ukhOx3dvmhGKeYoC   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/2z1p...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
        "ctitle                                                        flying   \n",
        "danceability                                                   0.551   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBAYE0601635'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/2z...   \n",
-       "gloom                                                            NaN   \n",
        "href               https://api.spotify.com/v1/tracks/2z1p43SNSbeo...   \n",
        "id                                            2z1p43SNSbeowzy8WdYHNk   \n",
+       "ignore                                                           NaN   \n",
        "instrumentalness                                                0.88   \n",
        "key                                                                0   \n",
        "liveness                                                      0.0932   \n",
        "loudness                                                     -14.755   \n",
        "lyrical_density                                                    0   \n",
-       "lyrics                                                                 \n",
+       "lyrics                                                           NaN   \n",
        "mode                                                               1   \n",
        "name                                        Flying - Remastered 2009   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
        "original_lyrics                               \\n\\n[Instrumental]\\n\\n   \n",
-       "popularity                                                        44   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/15f07b753cb7e50c...   \n",
+       "popularity                                                        45   \n",
+       "preview_url                                                     None   \n",
        "sentiment                                                        NaN   \n",
        "speechiness                                                   0.0501   \n",
        "tempo                                                         92.929   \n",
        "track_number                                                       3   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:2z1p43SNSbeowzy8WdYHNk   \n",
-       "valence                                                        0.246   \n",
+       "valence                                                        0.261   \n",
        "\n",
        "                                                                 2    \\\n",
        "_id                                           3ckvsHnEffhhS5c0Cs6Gv5   \n",
        "acousticness                                                   0.614   \n",
-       "album              {'id': '7BgGBZndAvDlKOcwe5rscZ', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      7BgGBZndAvDlKOcwe5rscZ   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/3ckv...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
        "ctitle                                      kansas city heyheyheyhey   \n",
        "danceability                                                   0.588   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBAYE0601457'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/3c...   \n",
-       "gloom                                                            NaN   \n",
        "href               https://api.spotify.com/v1/tracks/3ckvsHnEffhh...   \n",
        "id                                            3ckvsHnEffhhS5c0Cs6Gv5   \n",
+       "ignore                                                           NaN   \n",
        "instrumentalness                                            8.92e-05   \n",
        "key                                                                7   \n",
        "liveness                                                       0.877   \n",
        "lyrical_density                                                  NaN   \n",
        "lyrics                                                           NaN   \n",
        "mode                                                               1   \n",
-       "name                 Kansas City / Hey-Hey-Hey-Hey - Remastered 2009   \n",
+       "name                      Kansas City / Hey-Hey-Hey-Hey - Remastered   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
        "original_lyrics                                                  NaN   \n",
-       "popularity                                                        38   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/bd13930c7706bdd4...   \n",
+       "popularity                                                        39   \n",
+       "preview_url                                                     None   \n",
        "sentiment                                                        NaN   \n",
        "speechiness                                                   0.0335   \n",
        "tempo                                                         131.36   \n",
        "track_number                                                       7   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:3ckvsHnEffhhS5c0Cs6Gv5   \n",
-       "valence                                                        0.929   \n",
+       "valence                                                        0.924   \n",
        "\n",
        "                                                                 3    \\\n",
+       "_id                                           5cXiWs6VoLlDlowJQo0UPk   \n",
+       "acousticness                                                    0.22   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/5cXi...   \n",
+       "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
+       "artist_name                                              The Beatles   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                             when im sixtyfour   \n",
+       "danceability                                                   0.818   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                   178653   \n",
+       "energy                                                         0.231   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBUM71701196'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/5c...   \n",
+       "href               https://api.spotify.com/v1/tracks/5cXiWs6VoLlD...   \n",
+       "id                                            5cXiWs6VoLlDlowJQo0UPk   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                                   0   \n",
+       "key                                                                7   \n",
+       "liveness                                                      0.0747   \n",
+       "loudness                                                     -11.951   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               1   \n",
+       "name                                    When I'm Sixty-Four - Take 2   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        35   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                    0.127   \n",
+       "tempo                                                        132.645   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/5cXiWs6VoLlD...   \n",
+       "track_number                                                       9   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:5cXiWs6VoLlDlowJQo0UPk   \n",
+       "valence                                                        0.462   \n",
+       "\n",
+       "                                                                 4    \\\n",
        "_id                                           4edArG2VehvJdwOZfYOxtK   \n",
        "acousticness                                                7.67e-05   \n",
-       "album              {'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      5XfJmldgWzrc1AIdbBaVZn   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/4edA...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                  0.293946   \n",
        "ctitle                                               twist and shout   \n",
        "danceability                                                   0.311   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBUM71603960'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/4e...   \n",
-       "gloom                                                       0.238815   \n",
        "href               https://api.spotify.com/v1/tracks/4edArG2VehvJ...   \n",
        "id                                            4edArG2VehvJdwOZfYOxtK   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                            2.04e-06   \n",
        "key                                                                2   \n",
        "liveness                                                       0.508   \n",
        "lyrics             well shake it up baby now (shake it up baby) t...   \n",
        "mode                                                               1   \n",
        "name                             Twist And Shout - Live / Remastered   \n",
+       "nnrc_sentiment     {'anger': 0.2727272727272727, 'surprise': 0.36...   \n",
+       "nrc_sentiment      {'anger': 3, 'surprise': 4, 'positive': 11, 't...   \n",
        "original_lyrics    \\n\\n[Verse 1]\\nWell shake it up baby now (shak...   \n",
        "popularity                                                        48   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/cd82d2f8f92a7222...   \n",
-       "sentiment          {'label': 'pos', 'probability': {'neutral': 0....   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'pos', 'probability': {'pos': 0.5000...   \n",
        "speechiness                                                   0.0395   \n",
        "tempo                                                        126.441   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       1   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:4edArG2VehvJdwOZfYOxtK   \n",
-       "valence                                                        0.588   \n",
+       "valence                                                        0.613   \n",
        "\n",
-       "                                                                 4    \\\n",
+       "                                                                 5    \\\n",
        "_id                                           150EAeMGWJRubuH8zyx7h8   \n",
        "acousticness                                                 0.00675   \n",
-       "album              {'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      5XfJmldgWzrc1AIdbBaVZn   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/150E...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                  0.316303   \n",
        "ctitle                                                  shes a woman   \n",
        "danceability                                                   0.188   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBUM71603957'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/15...   \n",
-       "gloom                                                        0.22727   \n",
        "href               https://api.spotify.com/v1/tracks/150EAeMGWJRu...   \n",
        "id                                            150EAeMGWJRubuH8zyx7h8   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                            2.42e-05   \n",
        "key                                                                9   \n",
        "liveness                                                        0.85   \n",
        "lyrics             my love don't give me presents i know that she...   \n",
        "mode                                                               1   \n",
        "name                               She's A Woman - Live / Remastered   \n",
+       "nnrc_sentiment     {'anger': 0.4, 'trust': 0.4, 'sadness': 0.6, '...   \n",
+       "nrc_sentiment      {'anger': 2, 'trust': 2, 'fear': 1, 'surprise'...   \n",
        "original_lyrics    \\n\\n[Chorus]\\nMy love don't give me presents\\n...   \n",
-       "popularity                                                        45   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/37806a7d82c5d2a8...   \n",
-       "sentiment          {'label': 'neutral', 'probability': {'neutral'...   \n",
+       "popularity                                                        46   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neutral', 'probability': {'pos': 0....   \n",
        "speechiness                                                   0.0662   \n",
        "tempo                                                         175.86   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       2   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:150EAeMGWJRubuH8zyx7h8   \n",
-       "valence                                                        0.562   \n",
+       "valence                                                         0.59   \n",
        "\n",
-       "                                                                 5    \\\n",
+       "                                                                 6    \\\n",
        "_id                                           1fVeHYkyMxrjbjRAD9uWsZ   \n",
        "acousticness                                                  0.0131   \n",
-       "album              {'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      5XfJmldgWzrc1AIdbBaVZn   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/1fVe...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                  0.445783   \n",
        "ctitle                                              dizzy miss lizzy   \n",
        "danceability                                                   0.406   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBUM71603952'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/1f...   \n",
-       "gloom                                                       0.154272   \n",
        "href               https://api.spotify.com/v1/tracks/1fVeHYkyMxrj...   \n",
        "id                                            1fVeHYkyMxrjbjRAD9uWsZ   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                            0.000141   \n",
        "key                                                               11   \n",
        "liveness                                                       0.496   \n",
        "loudness                                                      -6.879   \n",
        "lyrical_density                                             0.796421   \n",
-       "lyrics             {intro} you make me dizzy, miss lizzy the way ...   \n",
+       "lyrics             {intro} you make me dizzy miss lizzy the way y...   \n",
        "mode                                                               0   \n",
        "name                            Dizzy Miss Lizzy - Live / Remastered   \n",
+       "nnrc_sentiment     {'anger': 0.1, 'surprise': 0.1, 'negative': 0....   \n",
+       "nrc_sentiment      {'anger': 1, 'surprise': 1, 'negative': 9, 'jo...   \n",
        "original_lyrics    \\n\\n{Intro}\\n\\nYou make me dizzy, Miss Lizzy\\n...   \n",
-       "popularity                                                        44   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/5ee6d20e1808908e...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
+       "popularity                                                        45   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.4047...   \n",
        "speechiness                                                   0.0461   \n",
        "tempo                                                        129.417   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       3   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:1fVeHYkyMxrjbjRAD9uWsZ   \n",
-       "valence                                                        0.758   \n",
+       "valence                                                        0.756   \n",
        "\n",
-       "                                                                 6    \\\n",
+       "                                                                 7    \\\n",
        "_id                                           0GRplBEB2FWCKutwMmS6nY   \n",
        "acousticness                                                 0.00327   \n",
-       "album              {'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      5XfJmldgWzrc1AIdbBaVZn   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/0GRp...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                  0.334303   \n",
        "ctitle                                                ticket to ride   \n",
        "danceability                                                    0.39   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBUM71603959'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/0G...   \n",
-       "gloom                                                        0.35295   \n",
        "href               https://api.spotify.com/v1/tracks/0GRplBEB2FWC...   \n",
        "id                                            0GRplBEB2FWCKutwMmS6nY   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                                   0   \n",
        "key                                                                9   \n",
        "liveness                                                       0.366   \n",
        "lyrics             i think i'm going to be sad i think it's today...   \n",
        "mode                                                               1   \n",
        "name                              Ticket To Ride - Live / Remastered   \n",
+       "nnrc_sentiment     {'anger': 0.3333333333333333, 'fear': 0.333333...   \n",
+       "nrc_sentiment      {'anger': 2, 'fear': 2, 'negative': 2, 'joy': ...   \n",
        "original_lyrics    \\n\\n[Verse 1]\\nI think I'm going to be sad\\nI ...   \n",
-       "popularity                                                        44   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/558bb39228550744...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
+       "popularity                                                        45   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.1745...   \n",
        "speechiness                                                   0.0423   \n",
        "tempo                                                        121.216   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       4   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:0GRplBEB2FWCKutwMmS6nY   \n",
-       "valence                                                        0.405   \n",
+       "valence                                                        0.409   \n",
        "\n",
-       "                                                                 7    \\\n",
+       "                                                                 8    \\\n",
        "_id                                           1eVymk74iroqhsZxm0Vy3g   \n",
        "acousticness                                                 0.00865   \n",
-       "album              {'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      5XfJmldgWzrc1AIdbBaVZn   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/1eVy...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                  0.493981   \n",
        "ctitle                                              cant buy me love   \n",
        "danceability                                                     0.2   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBUM71603951'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/1e...   \n",
-       "gloom                                                       0.242494   \n",
        "href               https://api.spotify.com/v1/tracks/1eVymk74iroq...   \n",
        "id                                            1eVymk74iroqhsZxm0Vy3g   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                                   0   \n",
        "key                                                                5   \n",
        "liveness                                                       0.894   \n",
        "loudness                                                      -7.606   \n",
        "lyrical_density                                              1.47553   \n",
-       "lyrics             can't buy me love, love can't buy me love i'll...   \n",
+       "lyrics             can't buy me love love can't buy me love i'll ...   \n",
        "mode                                                               1   \n",
        "name                           Can't Buy Me Love - Live / Remastered   \n",
+       "nnrc_sentiment     {'anger': 0.2857142857142857, 'surprise': 0.28...   \n",
+       "nrc_sentiment      {'anger': 10, 'surprise': 10, 'positive': 35, ...   \n",
        "original_lyrics    \\n\\n[Chorus 1]\\nCan't buy me love, love\\nCan't...   \n",
-       "popularity                                                        44   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/c6b9c820e62868db...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
+       "popularity                                                        45   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.2616...   \n",
        "speechiness                                                   0.0571   \n",
        "tempo                                                        173.283   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       5   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:1eVymk74iroqhsZxm0Vy3g   \n",
-       "valence                                                        0.669   \n",
+       "valence                                                        0.677   \n",
        "\n",
-       "                                                                 8    \\\n",
+       "                                                                 9    \\\n",
        "_id                                           2p5a9gu6NECVSvBtGSU1vm   \n",
        "acousticness                                                  0.0836   \n",
-       "album              {'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      5XfJmldgWzrc1AIdbBaVZn   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/2p5a...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                   0.24995   \n",
        "ctitle                                          things we said today   \n",
        "danceability                                                   0.307   \n",
        "disc_number                                                        1   \n",
        "explicit                                                       False   \n",
        "external_ids                                {'isrc': 'GBUM71603958'}   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/2p...   \n",
-       "gloom                                                       0.307075   \n",
        "href               https://api.spotify.com/v1/tracks/2p5a9gu6NECV...   \n",
        "id                                            2p5a9gu6NECVSvBtGSU1vm   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                                   0   \n",
        "key                                                                5   \n",
        "liveness                                                       0.756   \n",
        "lyrics             you say you will love me if i have to go you'l...   \n",
        "mode                                                               1   \n",
        "name                        Things We Said Today - Live / Remastered   \n",
+       "nnrc_sentiment     {'anger': 0.07692307692307693, 'trust': 0.1538...   \n",
+       "nrc_sentiment      {'anger': 1, 'trust': 2, 'fear': 1, 'surprise'...   \n",
        "original_lyrics    \\n\\n[Verse 1]\\nYou say you will love me\\nIf I ...   \n",
        "popularity                                                        43   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/7b71156485b9e3e1...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.3672...   \n",
        "speechiness                                                   0.0392   \n",
        "tempo                                                        146.636   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       6   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:2p5a9gu6NECVSvBtGSU1vm   \n",
-       "valence                                                        0.395   \n",
-       "\n",
-       "                                                                 9    \\\n",
-       "_id                                           1HyLh5cctOnP186CBi8bhm   \n",
-       "acousticness                                                 0.00242   \n",
-       "album              {'id': '5XfJmldgWzrc1AIdbBaVZn', 'uri': 'spoti...   \n",
-       "album_id                                      5XfJmldgWzrc1AIdbBaVZn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/1HyL...   \n",
-       "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
-       "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
-       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                  0.467134   \n",
-       "ctitle                                           roll over beethoven   \n",
-       "danceability                                                   0.204   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   134013   \n",
-       "energy                                                         0.808   \n",
-       "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBUM71603955'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/1H...   \n",
-       "gloom                                                        0.22049   \n",
-       "href               https://api.spotify.com/v1/tracks/1HyLh5cctOnP...   \n",
-       "id                                            1HyLh5cctOnP186CBi8bhm   \n",
-       "instrumentalness                                                   0   \n",
-       "key                                                                2   \n",
-       "liveness                                                       0.634   \n",
-       "loudness                                                      -7.948   \n",
-       "lyrical_density                                               1.7461   \n",
-       "lyrics             i'm gonna write a little letter gonna mail it ...   \n",
-       "mode                                                               1   \n",
-       "name                         Roll Over Beethoven - Live / Remastered   \n",
-       "original_lyrics    \\n\\nI'm gonna write a little letter\\nGonna mai...   \n",
-       "popularity                                                        43   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/318950f70347c556...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0398   \n",
-       "tempo                                                         179.24   \n",
-       "time_signature                                                     3   \n",
-       "track_href         https://api.spotify.com/v1/tracks/1HyLh5cctOnP...   \n",
-       "track_number                                                       7   \n",
-       "type                                                  audio_features   \n",
-       "uri                             spotify:track:1HyLh5cctOnP186CBi8bhm   \n",
-       "valence                                                        0.726   \n",
+       "valence                                                        0.368   \n",
        "\n",
        "                                         ...                          \\\n",
        "_id                                      ...                           \n",
        "artist_name                              ...                           \n",
        "artists                                  ...                           \n",
        "available_markets                        ...                           \n",
-       "complexity                               ...                           \n",
        "ctitle                                   ...                           \n",
        "danceability                             ...                           \n",
        "disc_number                              ...                           \n",
        "explicit                                 ...                           \n",
        "external_ids                             ...                           \n",
        "external_urls                            ...                           \n",
-       "gloom                                    ...                           \n",
        "href                                     ...                           \n",
        "id                                       ...                           \n",
+       "ignore                                   ...                           \n",
        "instrumentalness                         ...                           \n",
        "key                                      ...                           \n",
        "liveness                                 ...                           \n",
        "lyrics                                   ...                           \n",
        "mode                                     ...                           \n",
        "name                                     ...                           \n",
+       "nnrc_sentiment                           ...                           \n",
+       "nrc_sentiment                            ...                           \n",
        "original_lyrics                          ...                           \n",
        "popularity                               ...                           \n",
        "preview_url                              ...                           \n",
        "uri                                      ...                           \n",
        "valence                                  ...                           \n",
        "\n",
-       "                                                                 219  \\\n",
-       "_id                                           43feVCF6QfqIt9LnLs9BAH   \n",
-       "acousticness                                                   0.607   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/43fe...   \n",
+       "                                                                 251  \\\n",
+       "_id                                           3pY5chBSUotRa6RoIfwJjc   \n",
+       "acousticness                                                0.000366   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/3pY5...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                          boys   \n",
-       "danceability                                                   0.402   \n",
+       "ctitle                                     good morning good morning   \n",
+       "danceability                                                   0.516   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   146440   \n",
-       "energy                                                          0.86   \n",
+       "duration_ms                                                   154467   \n",
+       "energy                                                         0.774   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601414'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/43...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/43feVCF6QfqI...   \n",
-       "id                                            43feVCF6QfqIt9LnLs9BAH   \n",
+       "external_ids                                {'isrc': 'GBUM71700950'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/3p...   \n",
+       "href               https://api.spotify.com/v1/tracks/3pY5chBSUotR...   \n",
+       "id                                            3pY5chBSUotRa6RoIfwJjc   \n",
+       "ignore                                                           NaN   \n",
        "instrumentalness                                                   0   \n",
-       "key                                                                4   \n",
-       "liveness                                                       0.736   \n",
-       "loudness                                                      -10.31   \n",
-       "lyrical_density                                             0.901393   \n",
-       "lyrics             i been told when a boy kiss a girl take a trip...   \n",
+       "key                                                                2   \n",
+       "liveness                                                         0.5   \n",
+       "loudness                                                      -6.955   \n",
+       "lyrical_density                                              1.28183   \n",
+       "lyrics             nothing to do to save his life call his wife i...   \n",
        "mode                                                               1   \n",
-       "name                                          Boys - Remastered 2009   \n",
-       "original_lyrics    \\n\\n[Verse 1]\\nI been told when a boy kiss a g...   \n",
-       "popularity                                                        42   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/c84bcc2dd65c3d9b...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0504   \n",
-       "tempo                                                        142.445   \n",
+       "name                               Good Morning Good Morning - Remix   \n",
+       "nnrc_sentiment     {'anger': 0.06666666666666667, 'trust': 0.8666...   \n",
+       "nrc_sentiment      {'anger': 1, 'trust': 13, 'fear': 2, 'surprise...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nNothing to do to save his life ...   \n",
+       "popularity                                                        40   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neutral', 'probability': {'pos': 0....   \n",
+       "speechiness                                                   0.0895   \n",
+       "tempo                                                        121.559   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/43feVCF6QfqI...   \n",
-       "track_number                                                       5   \n",
+       "track_href         https://api.spotify.com/v1/tracks/3pY5chBSUotR...   \n",
+       "track_number                                                      11   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:43feVCF6QfqIt9LnLs9BAH   \n",
-       "valence                                                        0.825   \n",
-       "\n",
-       "                                                                 220  \\\n",
-       "_id                                           3NwEPV9MDr1z3KcHiAuz9d   \n",
-       "acousticness                                                   0.767   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/3NwE...   \n",
+       "uri                             spotify:track:3pY5chBSUotRa6RoIfwJjc   \n",
+       "valence                                                        0.849   \n",
+       "\n",
+       "                                                                 252  \\\n",
+       "_id                                           5ToEv4nDN51OyAjK65A9YS   \n",
+       "acousticness                                                0.000236   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/5ToE...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                    ask me why   \n",
-       "danceability                                                   0.605   \n",
+       "ctitle                   sgt peppers lonely hearts club band reprise   \n",
+       "danceability                                                   0.576   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   146533   \n",
-       "energy                                                         0.394   \n",
+       "duration_ms                                                    80600   \n",
+       "energy                                                         0.945   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601415'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/3N...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/3NwEPV9MDr1z...   \n",
-       "id                                            3NwEPV9MDr1z3KcHiAuz9d   \n",
-       "instrumentalness                                                   0   \n",
-       "key                                                                4   \n",
-       "liveness                                                      0.0967   \n",
-       "loudness                                                      -11.33   \n",
-       "lyrical_density                                              1.01001   \n",
-       "lyrics             i love you, because you tell me things i want ...   \n",
+       "external_ids                                {'isrc': 'GBUM71700957'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/5T...   \n",
+       "href               https://api.spotify.com/v1/tracks/5ToEv4nDN51O...   \n",
+       "id                                            5ToEv4nDN51OyAjK65A9YS   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.124   \n",
+       "key                                                                0   \n",
+       "liveness                                                       0.463   \n",
+       "loudness                                                      -5.376   \n",
+       "lyrical_density                                              1.00496   \n",
+       "lyrics             (1234) (bye) we're sgt pepper's lonely hearts ...   \n",
        "mode                                                               1   \n",
-       "name                                    Ask Me Why - Remastered 2009   \n",
-       "original_lyrics    \\n\\n[Verse 1]\\nI love you, because you tell me...   \n",
+       "name               Sgt. Pepper's Lonely Hearts Club Band (Reprise...   \n",
+       "nnrc_sentiment     {'anger': 1.0, 'trust': 0.18181818181818182, '...   \n",
+       "nrc_sentiment      {'anger': 11, 'trust': 2, 'fear': 11, 'surpris...   \n",
+       "original_lyrics    \\n\\n[Intro]\\n(1,2,3,4)\\n\\n(Bye!)\\n\\n[Verse]\\nW...   \n",
        "popularity                                                        41   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/f42256fa5367c68f...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0378   \n",
-       "tempo                                                        133.942   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'pos', 'probability': {'pos': 0.5616...   \n",
+       "speechiness                                                   0.0547   \n",
+       "tempo                                                        118.778   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/3NwEPV9MDr1z...   \n",
-       "track_number                                                       6   \n",
+       "track_href         https://api.spotify.com/v1/tracks/5ToEv4nDN51O...   \n",
+       "track_number                                                      12   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:3NwEPV9MDr1z3KcHiAuz9d   \n",
-       "valence                                                        0.606   \n",
-       "\n",
-       "                                                                 221  \\\n",
-       "_id                                           2Iccm3cKBQHWt5yk0yX9nh   \n",
-       "acousticness                                                   0.334   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/2Icc...   \n",
+       "uri                             spotify:track:5ToEv4nDN51OyAjK65A9YS   \n",
+       "valence                                                        0.794   \n",
+       "\n",
+       "                                                                 253  \\\n",
+       "_id                                           3ZFPe2aiLQuEfDxSqQstZp   \n",
+       "acousticness                                                   0.254   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/3ZFP...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                              please please me   \n",
-       "danceability                                                   0.527   \n",
+       "ctitle                                             a day in the life   \n",
+       "danceability                                                   0.339   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   120853   \n",
-       "energy                                                          0.48   \n",
+       "duration_ms                                                   330920   \n",
+       "energy                                                         0.446   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601416'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/2I...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/2Iccm3cKBQHW...   \n",
-       "id                                            2Iccm3cKBQHWt5yk0yX9nh   \n",
-       "instrumentalness                                                   0   \n",
+       "external_ids                                {'isrc': 'GBUM71700946'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/3Z...   \n",
+       "href               https://api.spotify.com/v1/tracks/3ZFPe2aiLQuE...   \n",
+       "id                                            3ZFPe2aiLQuEfDxSqQstZp   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                            0.000177   \n",
        "key                                                                4   \n",
-       "liveness                                                      0.0702   \n",
-       "loudness                                                       -9.61   \n",
-       "lyrical_density                                              2.19275   \n",
-       "lyrics             (lennon/mccartney) last night i said these wor...   \n",
-       "mode                                                               1   \n",
-       "name                              Please Please Me - Remastered 2009   \n",
-       "original_lyrics    \\n\\n(Lennon/McCartney)\\n\\nLast night I said th...   \n",
-       "popularity                                                        48   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/c7974d03d8cd26de...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                    0.028   \n",
-       "tempo                                                        139.388   \n",
+       "liveness                                                         0.9   \n",
+       "loudness                                                     -10.854   \n",
+       "lyrical_density                                             0.640638   \n",
+       "lyrics             i read the news today oh boy about a lucky man...   \n",
+       "mode                                                               0   \n",
+       "name                                       A Day In The Life - Remix   \n",
+       "nnrc_sentiment     {'trust': 0.625, 'fear': 0.125, 'surprise': 0....   \n",
+       "nrc_sentiment      {'trust': 5, 'fear': 1, 'surprise': 2, 'negati...   \n",
+       "original_lyrics    \\n\\n[Verse 1: John Lennon]\\nI read the news to...   \n",
+       "popularity                                                        44   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neutral', 'probability': {'pos': 0....   \n",
+       "speechiness                                                   0.0453   \n",
+       "tempo                                                         80.895   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/2Iccm3cKBQHW...   \n",
-       "track_number                                                       7   \n",
+       "track_href         https://api.spotify.com/v1/tracks/3ZFPe2aiLQuE...   \n",
+       "track_number                                                      13   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:2Iccm3cKBQHWt5yk0yX9nh   \n",
-       "valence                                                        0.708   \n",
-       "\n",
-       "                                                                 222  \\\n",
-       "_id                                           2OLMjGIhCNI6j34ysPscbp   \n",
-       "acousticness                                                   0.386   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/2OLM...   \n",
+       "uri                             spotify:track:3ZFPe2aiLQuEfDxSqQstZp   \n",
+       "valence                                                        0.133   \n",
+       "\n",
+       "                                                                 254  \\\n",
+       "_id                                           2BOawXVznHmi2KJzRFstBN   \n",
+       "acousticness                                                   0.291   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/2BOa...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                    love me do   \n",
-       "danceability                                                    0.52   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   141693   \n",
-       "energy                                                         0.829   \n",
+       "ctitle                           sgt peppers lonely hearts club band   \n",
+       "danceability                                                   0.583   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                   156440   \n",
+       "energy                                                         0.687   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601417'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/2O...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/2OLMjGIhCNI6...   \n",
-       "id                                            2OLMjGIhCNI6j34ysPscbp   \n",
-       "instrumentalness                                             6.2e-05   \n",
+       "external_ids                                {'isrc': 'GBUM71701188'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/2B...   \n",
+       "href               https://api.spotify.com/v1/tracks/2BOawXVznHmi...   \n",
+       "id                                            2BOawXVznHmi2KJzRFstBN   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                              0.0174   \n",
        "key                                                                0   \n",
-       "liveness                                                       0.227   \n",
-       "loudness                                                      -6.228   \n",
-       "lyrical_density                                             0.783384   \n",
-       "lyrics             love, love me do you know i love you i'll alwa...   \n",
+       "liveness                                                       0.668   \n",
+       "loudness                                                      -7.932   \n",
+       "lyrical_density                                               1.0675   \n",
+       "lyrics             it was twenty years ago today sgt pepper taugh...   \n",
        "mode                                                               1   \n",
-       "name                                    Love Me Do - Remastered 2009   \n",
-       "original_lyrics    \\n\\nLove, love me do\\nYou know I love you\\nI'l...   \n",
-       "popularity                                                        55   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/c0c7944dcb9d2457...   \n",
-       "sentiment          {'label': 'pos', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0806   \n",
-       "tempo                                                        147.997   \n",
+       "name               Sgt. Pepper's Lonely Hearts Club Band - Take 9...   \n",
+       "nnrc_sentiment     {'anger': 0.7, 'trust': 1.0, 'sadness': 1.0, '...   \n",
+       "nrc_sentiment      {'anger': 7, 'trust': 10, 'fear': 8, 'surprise...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nIt was twenty years ago today\\n...   \n",
+       "popularity                                                        39   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'pos', 'probability': {'pos': 0.7184...   \n",
+       "speechiness                                                   0.0731   \n",
+       "tempo                                                         94.509   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/2OLMjGIhCNI6...   \n",
-       "track_number                                                       8   \n",
+       "track_href         https://api.spotify.com/v1/tracks/2BOawXVznHmi...   \n",
+       "track_number                                                       1   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:2OLMjGIhCNI6j34ysPscbp   \n",
-       "valence                                                        0.765   \n",
-       "\n",
-       "                                                                 223  \\\n",
-       "_id                                           01n20rdBC5czKAhxmGREkr   \n",
-       "acousticness                                                   0.389   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/01n2...   \n",
+       "uri                             spotify:track:2BOawXVznHmi2KJzRFstBN   \n",
+       "valence                                                          0.5   \n",
+       "\n",
+       "                                                                 255  \\\n",
+       "_id                                           1alxZZpi5dBLcmV3WkYIzN   \n",
+       "acousticness                                                   0.232   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/1alx...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                 ps i love you   \n",
-       "danceability                                                   0.635   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   124360   \n",
-       "energy                                                         0.656   \n",
+       "ctitle                            with a little help from my friends   \n",
+       "danceability                                                   0.913   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                   196520   \n",
+       "energy                                                         0.603   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601418'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/01...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/01n20rdBC5cz...   \n",
-       "id                                            01n20rdBC5czKAhxmGREkr   \n",
-       "instrumentalness                                             0.00127   \n",
-       "key                                                                2   \n",
-       "liveness                                                      0.0828   \n",
-       "loudness                                                        -8.5   \n",
-       "lyrical_density                                               1.2303   \n",
-       "lyrics             as i write this letter send my love to you rem...   \n",
-       "mode                                                               1   \n",
-       "name                               P.S. I Love You - Remastered 2009   \n",
-       "original_lyrics    \\n\\nAs I write this letter\\nSend my love to yo...   \n",
-       "popularity                                                        43   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/5ef1f2ba07489648...   \n",
-       "sentiment          {'label': 'pos', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0291   \n",
-       "tempo                                                        134.435   \n",
+       "external_ids                                {'isrc': 'GBUM71701189'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/1a...   \n",
+       "href               https://api.spotify.com/v1/tracks/1alxZZpi5dBL...   \n",
+       "id                                            1alxZZpi5dBLcmV3WkYIzN   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.531   \n",
+       "key                                                                6   \n",
+       "liveness                                                       0.154   \n",
+       "loudness                                                      -7.878   \n",
+       "lyrical_density                                              1.51639   \n",
+       "lyrics             billy shears what would you think if i sang ou...   \n",
+       "mode                                                               0   \n",
+       "name               With A Little Help From My Friends - Take 1 / ...   \n",
+       "nnrc_sentiment     {'fear': 0.125, 'negative': 0.125, 'joy': 1.0,...   \n",
+       "nrc_sentiment      {'fear': 1, 'negative': 1, 'joy': 8, 'trust': ...   \n",
+       "original_lyrics    \\n\\n[Segue]\\nBilly Shears!\\n\\n[Verse 1]\\nWhat ...   \n",
+       "popularity                                                        38   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.4475...   \n",
+       "speechiness                                                    0.107   \n",
+       "tempo                                                        111.388   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/01n20rdBC5cz...   \n",
-       "track_number                                                       9   \n",
+       "track_href         https://api.spotify.com/v1/tracks/1alxZZpi5dBL...   \n",
+       "track_number                                                       2   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:01n20rdBC5czKAhxmGREkr   \n",
-       "valence                                                         0.78   \n",
-       "\n",
-       "                                                                 224  \\\n",
-       "_id                                           5gnrZoSS7nbDYtHp32RFiI   \n",
-       "acousticness                                                   0.778   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/5gnr...   \n",
+       "uri                             spotify:track:1alxZZpi5dBLcmV3WkYIzN   \n",
+       "valence                                                         0.38   \n",
+       "\n",
+       "                                                                 256  \\\n",
+       "_id                                           1k1kJBeaL3FCUG2vOJ1z0g   \n",
+       "acousticness                                                   0.749   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/1k1k...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                  baby its you   \n",
-       "danceability                                                   0.608   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   160520   \n",
-       "energy                                                         0.494   \n",
+       "ctitle                                 lucy in the sky with diamonds   \n",
+       "danceability                                                   0.423   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                   238867   \n",
+       "energy                                                         0.361   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601419'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/5g...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/5gnrZoSS7nbD...   \n",
-       "id                                            5gnrZoSS7nbDYtHp32RFiI   \n",
-       "instrumentalness                                                   0   \n",
-       "key                                                                4   \n",
-       "liveness                                                      0.0926   \n",
-       "loudness                                                     -12.211   \n",
-       "lyrical_density                                              1.32694   \n",
-       "lyrics             sha la la la la la la la sha la la la la la la...   \n",
-       "mode                                                               0   \n",
-       "name                                 Baby It's You - Remastered 2009   \n",
-       "original_lyrics    \\n\\n[Intro-The Beatles]\\nSha la la la la la la...   \n",
-       "popularity                                                        44   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/d7eeb1f68c39066d...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0345   \n",
-       "tempo                                                        112.421   \n",
+       "external_ids                                {'isrc': 'GBUM71701190'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/1k...   \n",
+       "href               https://api.spotify.com/v1/tracks/1k1kJBeaL3FC...   \n",
+       "id                                            1k1kJBeaL3FCUG2vOJ1z0g   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                            4.31e-05   \n",
+       "key                                                                2   \n",
+       "liveness                                                       0.106   \n",
+       "loudness                                                     -12.382   \n",
+       "lyrical_density                                             0.778676   \n",
+       "lyrics             picture yourself in a boat on a river with tan...   \n",
+       "mode                                                               1   \n",
+       "name                          Lucy In The Sky With Diamonds - Take 1   \n",
+       "nnrc_sentiment     {'surprise': 0.14285714285714285, 'negative': ...   \n",
+       "nrc_sentiment      {'surprise': 2, 'negative': 1, 'positive': 14,...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nPicture yourself in a boat on a...   \n",
+       "popularity                                                        37   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neutral', 'probability': {'pos': 0....   \n",
+       "speechiness                                                   0.0481   \n",
+       "tempo                                                         99.567   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/5gnrZoSS7nbD...   \n",
-       "track_number                                                      10   \n",
+       "track_href         https://api.spotify.com/v1/tracks/1k1kJBeaL3FC...   \n",
+       "track_number                                                       3   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:5gnrZoSS7nbDYtHp32RFiI   \n",
-       "valence                                                        0.889   \n",
-       "\n",
-       "                                                                 225  \\\n",
-       "_id                                           5FBxWhG0nbBAF6lWgJFklM   \n",
-       "acousticness                                                   0.608   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/5FBx...   \n",
+       "uri                             spotify:track:1k1kJBeaL3FCUG2vOJ1z0g   \n",
+       "valence                                                        0.328   \n",
+       "\n",
+       "                                                                 257  \\\n",
+       "_id                                           42uZOBjvKNv4QKnBmjOwb0   \n",
+       "acousticness                                                   0.447   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/42uZ...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                  do you want to know a secret   \n",
-       "danceability                                                   0.673   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   117013   \n",
-       "energy                                                         0.349   \n",
+       "ctitle                                                getting better   \n",
+       "danceability                                                    0.73   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                   138533   \n",
+       "energy                                                         0.459   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601420'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/5F...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/5FBxWhG0nbBA...   \n",
-       "id                                            5FBxWhG0nbBAF6lWgJFklM   \n",
-       "instrumentalness                                                   0   \n",
-       "key                                                                4   \n",
-       "liveness                                                        0.38   \n",
-       "loudness                                                     -12.414   \n",
-       "lyrical_density                                               1.1879   \n",
-       "lyrics             you'll never know how much i really love you y...   \n",
+       "external_ids                                {'isrc': 'GBUM71701191'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/42...   \n",
+       "href               https://api.spotify.com/v1/tracks/42uZOBjvKNv4...   \n",
+       "id                                            42uZOBjvKNv4QKnBmjOwb0   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.121   \n",
+       "key                                                                0   \n",
+       "liveness                                                       0.183   \n",
+       "loudness                                                     -10.511   \n",
+       "lyrical_density                                              1.23436   \n",
+       "lyrics             it's getting better all the time i used to get...   \n",
        "mode                                                               1   \n",
-       "name                  Do You Want To Know A Secret - Remastered 2009   \n",
-       "original_lyrics    \\n\\n[Intro]\\nYou'll never know how much I real...   \n",
-       "popularity                                                        48   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/5bd705943290818c...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0368   \n",
-       "tempo                                                        124.451   \n",
+       "name               Getting Better - Take 1 / Instrumental And Spe...   \n",
+       "nnrc_sentiment     {'anger': 0.42857142857142855, 'disgust': 0.57...   \n",
+       "nrc_sentiment      {'anger': 3, 'disgust': 4, 'fear': 3, 'surpris...   \n",
+       "original_lyrics    \\n\\n[Intro]\\nIt's getting better all the time\\...   \n",
+       "popularity                                                        36   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.1925...   \n",
+       "speechiness                                                   0.0729   \n",
+       "tempo                                                        127.565   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/5FBxWhG0nbBA...   \n",
-       "track_number                                                      11   \n",
+       "track_href         https://api.spotify.com/v1/tracks/42uZOBjvKNv4...   \n",
+       "track_number                                                       4   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:5FBxWhG0nbBAF6lWgJFklM   \n",
-       "valence                                                        0.636   \n",
-       "\n",
-       "                                                                 226  \\\n",
-       "_id                                           6tEwCsVtZ5tI8uHNJSHQ3b   \n",
-       "acousticness                                                   0.698   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/6tEw...   \n",
+       "uri                             spotify:track:42uZOBjvKNv4QKnBmjOwb0   \n",
+       "valence                                                         0.33   \n",
+       "\n",
+       "                                                                 258  \\\n",
+       "_id                                           5JnPM6eKhHJtkWfS6ymUMF   \n",
+       "acousticness                                                   0.162   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/5JnP...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                              a taste of honey   \n",
-       "danceability                                                    0.42   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   123480   \n",
-       "energy                                                         0.372   \n",
+       "ctitle                                                 fixing a hole   \n",
+       "danceability                                                   0.591   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                   207840   \n",
+       "energy                                                         0.554   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601421'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/6t...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/6tEwCsVtZ5tI...   \n",
-       "id                                            6tEwCsVtZ5tI8uHNJSHQ3b   \n",
-       "instrumentalness                                                   0   \n",
-       "key                                                                1   \n",
-       "liveness                                                       0.104   \n",
-       "loudness                                                     -11.416   \n",
-       "lyrical_density                                              0.74506   \n",
-       "lyrics             a taste of honey! tasting much sweeter than wi...   \n",
-       "mode                                                               0   \n",
-       "name                              A Taste Of Honey - Remastered 2009   \n",
-       "original_lyrics    \\n\\n[Intro]\\nA taste of honey! Tasting much sw...   \n",
-       "popularity                                                        40   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/dd94439cdf6e7668...   \n",
-       "sentiment          {'label': 'pos', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0327   \n",
-       "tempo                                                        101.408   \n",
-       "time_signature                                                     3   \n",
-       "track_href         https://api.spotify.com/v1/tracks/6tEwCsVtZ5tI...   \n",
-       "track_number                                                      12   \n",
+       "external_ids                                {'isrc': 'GBUM71701192'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/5J...   \n",
+       "href               https://api.spotify.com/v1/tracks/5JnPM6eKhHJt...   \n",
+       "id                                            5JnPM6eKhHJtkWfS6ymUMF   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                            7.85e-05   \n",
+       "key                                                                5   \n",
+       "liveness                                                      0.0437   \n",
+       "loudness                                                      -7.154   \n",
+       "lyrical_density                                             0.702463   \n",
+       "lyrics             i'm fixing a hole where the rain gets in and s...   \n",
+       "mode                                                               1   \n",
+       "name                               Fixing A Hole - Speech And Take 3   \n",
+       "nnrc_sentiment     {'anger': 0.2, 'sadness': 0.2, 'negative': 1.0...   \n",
+       "nrc_sentiment      {'anger': 1, 'fear': 1, 'negative': 5, 'positi...   \n",
+       "original_lyrics    \\n\\n[Chorus]\\nI'm fixing a hole where the rain...   \n",
+       "popularity                                                        35   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.2385...   \n",
+       "speechiness                                                   0.0538   \n",
+       "tempo                                                        113.629   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/5JnPM6eKhHJt...   \n",
+       "track_number                                                       5   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:6tEwCsVtZ5tI8uHNJSHQ3b   \n",
-       "valence                                                        0.378   \n",
-       "\n",
-       "                                                                 227  \\\n",
-       "_id                                           50jq8RgbDfmNNd0NiRnl4L   \n",
-       "acousticness                                                   0.629   \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...   \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/50jq...   \n",
+       "uri                             spotify:track:5JnPM6eKhHJtkWfS6ymUMF   \n",
+       "valence                                                        0.641   \n",
+       "\n",
+       "                                                                 259  \\\n",
+       "_id                                           3HEC6nzAo3U5z7blaCNBcF   \n",
+       "acousticness                                                   0.919   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/3HEC...   \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2   \n",
        "artist_name                                              The Beatles   \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "complexity                                                       NaN   \n",
-       "ctitle                                                theres a place   \n",
-       "danceability                                                   0.455   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   110493   \n",
-       "energy                                                         0.582   \n",
+       "ctitle                                             shes leaving home   \n",
+       "danceability                                                   0.443   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                   229120   \n",
+       "energy                                                         0.118   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBAYE0601422'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/50...   \n",
-       "gloom                                                            NaN   \n",
-       "href               https://api.spotify.com/v1/tracks/50jq8RgbDfmN...   \n",
-       "id                                            50jq8RgbDfmNNd0NiRnl4L   \n",
-       "instrumentalness                                            4.22e-06   \n",
+       "external_ids                                {'isrc': 'GBUM71701193'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/3H...   \n",
+       "href               https://api.spotify.com/v1/tracks/3HEC6nzAo3U5...   \n",
+       "id                                            3HEC6nzAo3U5z7blaCNBcF   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.928   \n",
        "key                                                                4   \n",
-       "liveness                                                       0.172   \n",
-       "loudness                                                     -10.009   \n",
-       "lyrical_density                                             0.895984   \n",
-       "lyrics             there is a place where i can go when i feel lo...   \n",
+       "liveness                                                       0.125   \n",
+       "loudness                                                     -12.964   \n",
+       "lyrical_density                                             0.999476   \n",
+       "lyrics             wednesday morning at five o'clock as the day b...   \n",
        "mode                                                               1   \n",
-       "name                               There's A Place - Remastered 2009   \n",
-       "original_lyrics    \\n\\n[Verse 1]\\nThere is a place\\nWhere I can g...   \n",
-       "popularity                                                        43   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/5260a1d4f12c23ac...   \n",
-       "sentiment          {'label': 'neg', 'probability': {'neutral': 0....   \n",
-       "speechiness                                                   0.0292   \n",
-       "tempo                                                        140.928   \n",
-       "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/50jq8RgbDfmN...   \n",
-       "track_number                                                      13   \n",
+       "name                      She's Leaving Home - Take 1 / Instrumental   \n",
+       "nnrc_sentiment     {'anger': 0.4, 'trust': 0.6, 'sadness': 0.2, '...   \n",
+       "nrc_sentiment      {'anger': 4, 'trust': 6, 'fear': 1, 'surprise'...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nWednesday morning at five o'clo...   \n",
+       "popularity                                                        35   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neutral', 'probability': {'pos': 0....   \n",
+       "speechiness                                                   0.0369   \n",
+       "tempo                                                        127.648   \n",
+       "time_signature                                                     3   \n",
+       "track_href         https://api.spotify.com/v1/tracks/3HEC6nzAo3U5...   \n",
+       "track_number                                                       6   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:50jq8RgbDfmNNd0NiRnl4L   \n",
-       "valence                                                        0.928   \n",
-       "\n",
-       "                                                                 228  \n",
-       "_id                                           4Z1fbYp0HuxLBje4MOZcSD  \n",
-       "acousticness                                                   0.641  \n",
-       "album              {'id': '7gDXyW16byCQOgK965BRzn', 'uri': 'spoti...  \n",
-       "album_id                                      7gDXyW16byCQOgK965BRzn  \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/4Z1f...  \n",
+       "uri                             spotify:track:3HEC6nzAo3U5z7blaCNBcF   \n",
+       "valence                                                        0.184   \n",
+       "\n",
+       "                                                                 260  \n",
+       "_id                                           3qchAN1uJ1KiF8yxmqb3Ov  \n",
+       "acousticness                                                   0.482  \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...  \n",
+       "album_id                                      3LXItxKnnJcEDc5QdTc00n  \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/3qch...  \n",
        "artist_id                                     3WrFJ7ztbogyGnTHbHJFl2  \n",
        "artist_name                                              The Beatles  \n",
-       "artists            [{'id': '3WrFJ7ztbogyGnTHbHJFl2', 'type': 'art...  \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...  \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...  \n",
-       "complexity                                                       NaN  \n",
-       "ctitle                                               twist and shout  \n",
-       "danceability                                                   0.482  \n",
-       "disc_number                                                        1  \n",
-       "duration_ms                                                   155227  \n",
-       "energy                                                         0.849  \n",
+       "ctitle                              being for the benefit of mr kite  \n",
+       "danceability                                                   0.595  \n",
+       "disc_number                                                        2  \n",
+       "duration_ms                                                   187213  \n",
+       "energy                                                         0.378  \n",
        "explicit                                                       False  \n",
-       "external_ids                                {'isrc': 'GBAYE0601423'}  \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/4Z...  \n",
-       "gloom                                                            NaN  \n",
-       "href               https://api.spotify.com/v1/tracks/4Z1fbYp0HuxL...  \n",
-       "id                                            4Z1fbYp0HuxLBje4MOZcSD  \n",
-       "instrumentalness                                            7.74e-06  \n",
-       "key                                                                2  \n",
-       "liveness                                                      0.0414  \n",
-       "loudness                                                      -9.198  \n",
-       "lyrical_density                                              1.70075  \n",
-       "lyrics             well shake it up baby now (shake it up baby) t...  \n",
+       "external_ids                                {'isrc': 'GBUM71701194'}  \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/3q...  \n",
+       "href               https://api.spotify.com/v1/tracks/3qchAN1uJ1Ki...  \n",
+       "id                                            3qchAN1uJ1KiF8yxmqb3Ov  \n",
+       "ignore                                                           NaN  \n",
+       "instrumentalness                                            8.96e-06  \n",
+       "key                                                                0  \n",
+       "liveness                                                       0.432  \n",
+       "loudness                                                     -11.467  \n",
+       "lyrical_density                                             0.806568  \n",
+       "lyrics             for the benefit of mr kite there will be a sho...  \n",
        "mode                                                               1  \n",
-       "name                               Twist And Shout - Remastered 2009  \n",
-       "original_lyrics    \\n\\n[Verse 1]\\nWell shake it up baby now (shak...  \n",
-       "popularity                                                        64  \n",
-       "preview_url        https://p.scdn.co/mp3-preview/b7e3bc96b46e4dcc...  \n",
-       "sentiment          {'label': 'pos', 'probability': {'neutral': 0....  \n",
-       "speechiness                                                   0.0452  \n",
-       "tempo                                                        124.631  \n",
+       "name                     Being For The Benefit Of Mr. Kite! - Take 4  \n",
+       "nnrc_sentiment     {'anger': 0.09090909090909091, 'trust': 0.7272...  \n",
+       "nrc_sentiment      {'anger': 1, 'trust': 8, 'fear': 2, 'surprise'...  \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nFor the benefit of Mr. Kite\\nTh...  \n",
+       "popularity                                                        35  \n",
+       "preview_url                                                     None  \n",
+       "sentiment          {'label': 'neutral', 'probability': {'pos': 0....  \n",
+       "speechiness                                                   0.0488  \n",
+       "tempo                                                        111.717  \n",
        "time_signature                                                     4  \n",
-       "track_href         https://api.spotify.com/v1/tracks/4Z1fbYp0HuxL...  \n",
-       "track_number                                                      14  \n",
+       "track_href         https://api.spotify.com/v1/tracks/3qchAN1uJ1Ki...  \n",
+       "track_number                                                       7  \n",
        "type                                                  audio_features  \n",
-       "uri                             spotify:track:4Z1fbYp0HuxLBje4MOZcSD  \n",
-       "valence                                                        0.942  \n",
+       "uri                             spotify:track:3qchAN1uJ1KiF8yxmqb3Ov  \n",
+       "valence                                                        0.536  \n",
        "\n",
-       "[41 rows x 229 columns]"
+       "[42 rows x 261 columns]"
       ]
      },
-     "execution_count": 37,
+     "execution_count": 18,
      "metadata": {},
      "output_type": "execute_result"
     }
   },
   {
    "cell_type": "code",
-   "execution_count": 33,
+   "execution_count": 19,
    "metadata": {
     "scrolled": true
    },
      "data": {
       "text/html": [
        "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
        "<table border=\"1\" class=\"dataframe\">\n",
        "  <thead>\n",
        "    <tr style=\"text-align: right;\">\n",
        "      <th>8</th>\n",
        "      <th>9</th>\n",
        "      <th>...</th>\n",
-       "      <th>265</th>\n",
-       "      <th>266</th>\n",
-       "      <th>267</th>\n",
-       "      <th>268</th>\n",
-       "      <th>269</th>\n",
-       "      <th>270</th>\n",
-       "      <th>271</th>\n",
-       "      <th>272</th>\n",
-       "      <th>273</th>\n",
-       "      <th>274</th>\n",
+       "      <th>456</th>\n",
+       "      <th>457</th>\n",
+       "      <th>458</th>\n",
+       "      <th>459</th>\n",
+       "      <th>460</th>\n",
+       "      <th>461</th>\n",
+       "      <th>462</th>\n",
+       "      <th>463</th>\n",
+       "      <th>464</th>\n",
+       "      <th>465</th>\n",
        "    </tr>\n",
        "  </thead>\n",
        "  <tbody>\n",
        "    <tr>\n",
        "      <th>_id</th>\n",
-       "      <td>3u06WsJ1KtvEqmmmZqy76J</td>\n",
-       "      <td>1lLK53LFXWvPzPYtlJIvt0</td>\n",
-       "      <td>74tlMxJ8wF0sNp93GBEPdK</td>\n",
        "      <td>1jgefM2ZP7RnPVShhy1eUM</td>\n",
-       "      <td>4HKaTAMIXT88muGU1JN9lI</td>\n",
        "      <td>7FagS2T3y5XwDpYvyHfvmc</td>\n",
-       "      <td>0B5CEdw4WBs91yn444ZP27</td>\n",
+       "      <td>4pKN6TNF59rJ1PCtPoeppg</td>\n",
+       "      <td>39OF4xTwA6f5BaIeA9aAwF</td>\n",
+       "      <td>2uO1HbJhQvmXpjclLmLEeK</td>\n",
        "      <td>19LYBNYOMwmDKXvhwq5Ggv</td>\n",
-       "      <td>281J4XFm5DLfVt1nKNBsPn</td>\n",
        "      <td>56ljxn1tdisThe4xcVe4px</td>\n",
+       "      <td>2Ax0tajnMzn8bB0jkmGNCK</td>\n",
+       "      <td>2l4gWzhTj7Yt1IvMTWnSgF</td>\n",
+       "      <td>7otIbWwB2rkqB3BHl6v296</td>\n",
        "      <td>...</td>\n",
-       "      <td>2BxO4VLPjzrApKTHZjpz9G</td>\n",
-       "      <td>6L7tmFIPKy98Js8ytCB1pT</td>\n",
-       "      <td>2gB58ki3GMqyNsdsPpDECH</td>\n",
-       "      <td>6C0au9ut1avz4zhryYHudG</td>\n",
-       "      <td>1NvBOki5VmSSVelycoMo96</td>\n",
-       "      <td>31KuT5lcyp6NlDBjp3EVTp</td>\n",
-       "      <td>3u0cZhyEPYIe9qDKPEeS4g</td>\n",
-       "      <td>6gVXeA52q3FbLANm6gW0Ma</td>\n",
-       "      <td>2rNBqTve7unpL01DuTyX3P</td>\n",
-       "      <td>3Ey71ndsJ2GDMgT0hVJlPs</td>\n",
+       "      <td>1F69leTp8WQHMFVQ5gOtIS</td>\n",
+       "      <td>3nc2vvots8KXJIssvtJvh6</td>\n",
+       "      <td>0cNyluZzzBVbsk2UY7Spca</td>\n",
+       "      <td>6dx6G9OexgRFCulfKI4sPN</td>\n",
+       "      <td>6fZKfyDrl9Nph0ifIGvOxs</td>\n",
+       "      <td>660iobQYqexXXNfRomqz3o</td>\n",
+       "      <td>6AX8HMe53fbGdNNAnC8LSz</td>\n",
+       "      <td>16FlhqpxLT6WTfiLVEZ7Vv</td>\n",
+       "      <td>5UXwp4rKvtXtKJpe0iIctM</td>\n",
+       "      <td>1tiyUANzZamsPZlHhZBbOd</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>acousticness</th>\n",
-       "      <td>0.107</td>\n",
-       "      <td>0.536</td>\n",
-       "      <td>0.00352</td>\n",
        "      <td>0.148</td>\n",
-       "      <td>0.0328</td>\n",
        "      <td>0.000552</td>\n",
-       "      <td>0.347</td>\n",
+       "      <td>0.000215</td>\n",
+       "      <td>0.27</td>\n",
+       "      <td>2.35e-05</td>\n",
        "      <td>0.109</td>\n",
-       "      <td>0.0391</td>\n",
        "      <td>0.024</td>\n",
+       "      <td>0.859</td>\n",
+       "      <td>0.483</td>\n",
+       "      <td>0.198</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.181</td>\n",
-       "      <td>0.0207</td>\n",
-       "      <td>0.00742</td>\n",
-       "      <td>0.0184</td>\n",
-       "      <td>0.002</td>\n",
-       "      <td>0.000283</td>\n",
-       "      <td>0.395</td>\n",
-       "      <td>0.147</td>\n",
-       "      <td>0.474</td>\n",
-       "      <td>0.173</td>\n",
+       "      <td>0.355</td>\n",
+       "      <td>0.312</td>\n",
+       "      <td>0.0107</td>\n",
+       "      <td>0.028</td>\n",
+       "      <td>0.0304</td>\n",
+       "      <td>0.0153</td>\n",
+       "      <td>0.000231</td>\n",
+       "      <td>0.0248</td>\n",
+       "      <td>0.00309</td>\n",
+       "      <td>0.0547</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>album</th>\n",
-       "      <td>{'id': '6FjXxl9VLURGuubdXUn2J3', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...</td>\n",
-       "      <td>{'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3CHu7qW160uqPZHW3TMZ1l', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3CHu7qW160uqPZHW3TMZ1l', 'type': 'albu...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>{'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...</td>\n",
-       "      <td>{'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...</td>\n",
-       "      <td>{'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...</td>\n",
-       "      <td>{'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...</td>\n",
-       "      <td>{'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...</td>\n",
-       "      <td>{'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...</td>\n",
-       "      <td>{'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...</td>\n",
-       "      <td>{'id': '62ZT16LY1phGM0O8x5qW1z', 'type': 'albu...</td>\n",
-       "      <td>{'id': '4g9Jfls8z2nbQxj5PiXkiy', 'type': 'albu...</td>\n",
-       "      <td>{'id': '4fhWcu56Bbh5wALuTouFVW', 'type': 'albu...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>album_id</th>\n",
-       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
-       "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
-       "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
-       "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
-       "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
        "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
        "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
        "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
        "      <td>3CHu7qW160uqPZHW3TMZ1l</td>\n",
        "      <td>3CHu7qW160uqPZHW3TMZ1l</td>\n",
+       "      <td>3CHu7qW160uqPZHW3TMZ1l</td>\n",
+       "      <td>3CHu7qW160uqPZHW3TMZ1l</td>\n",
        "      <td>...</td>\n",
-       "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
-       "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
-       "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
-       "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
-       "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
-       "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
-       "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
-       "      <td>62ZT16LY1phGM0O8x5qW1z</td>\n",
-       "      <td>4g9Jfls8z2nbQxj5PiXkiy</td>\n",
-       "      <td>4fhWcu56Bbh5wALuTouFVW</td>\n",
+       "      <td>6hB5kO3oV3tlnblCNSSA9Z</td>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>34d9ClCaKRoQ8pMeJ9Gfvt</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>analysis_url</th>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/3u06...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/1lLK...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/74tl...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/1jge...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/4HKa...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/7Fag...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/0B5C...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/4pKN...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/39OF...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/2uO1...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/19LY...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/281J...</td>\n",
        "      <td>https://api.spotify.com/v1/audio-analysis/56lj...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/2Ax0...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/2l4g...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/7otI...</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/2BxO...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/6L7t...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/2gB5...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/6C0a...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/1NvB...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/31Ku...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/3u0c...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/6gVX...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/2rNB...</td>\n",
-       "      <td>https://api.spotify.com/v1/audio-analysis/3Ey7...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/1F69...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/3nc2...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/0cNy...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/6dx6...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/6fZK...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/660i...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/6AX8...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/16Fl...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/5UXw...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/1tiy...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>artist_id</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>artists</th>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
-       "      <td>[{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>available_markets</th>\n",
-       "      <td>[AD, AR, AT, AU, BG, BO, BR, CL, CO, CR, CY, C...</td>\n",
-       "      <td>[GB]</td>\n",
-       "      <td>[GB]</td>\n",
-       "      <td>[GB]</td>\n",
-       "      <td>[GB]</td>\n",
        "      <td>[GB]</td>\n",
        "      <td>[GB]</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "      <td>...</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
-       "      <td>[GB]</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
        "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
-       "      <td>[AD, AR, AT, AU, BE, BG, BO, CH, CL, CO, CR, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>ctitle</th>\n",
+       "      <td>not fade away</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>just my imagination</td>\n",
+       "      <td>far away eyes</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>everybody needs somebody to love finale</td>\n",
+       "      <td>just my imagination</td>\n",
+       "      <td>band introductions</td>\n",
+       "      <td>martin scorsese intro</td>\n",
+       "      <td>little ta</td>\n",
+       "      <td>...</td>\n",
+       "      <td>mannish boy</td>\n",
+       "      <td>mannish boy</td>\n",
+       "      <td>let it rock</td>\n",
+       "      <td>all down the line</td>\n",
+       "      <td>honky tonk women</td>\n",
+       "      <td>star star</td>\n",
+       "      <td>when the whip comes down</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>you cant always get what you want</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>danceability</th>\n",
-       "      <td>0.216</td>\n",
-       "      <td>0.395</td>\n",
-       "      <td>0.367</td>\n",
        "      <td>0.282</td>\n",
-       "      <td>0.427</td>\n",
        "      <td>0.318</td>\n",
-       "      <td>0.42</td>\n",
+       "      <td>0.294</td>\n",
+       "      <td>0.405</td>\n",
+       "      <td>0.119</td>\n",
        "      <td>0.243</td>\n",
-       "      <td>0.303</td>\n",
        "      <td>0.412</td>\n",
+       "      <td>0.322</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0.385</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.46</td>\n",
-       "      <td>0.44</td>\n",
-       "      <td>0.438</td>\n",
-       "      <td>0.245</td>\n",
-       "      <td>0.124</td>\n",
-       "      <td>0.213</td>\n",
-       "      <td>0.262</td>\n",
-       "      <td>0.486</td>\n",
-       "      <td>0.416</td>\n",
-       "      <td>0.282</td>\n",
+       "      <td>0.33</td>\n",
+       "      <td>0.329</td>\n",
+       "      <td>0.378</td>\n",
+       "      <td>0.251</td>\n",
+       "      <td>0.361</td>\n",
+       "      <td>0.224</td>\n",
+       "      <td>0.223</td>\n",
+       "      <td>0.579</td>\n",
+       "      <td>0.47</td>\n",
+       "      <td>0.349</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>disc_number</th>\n",
-       "      <td>2</td>\n",
-       "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
+       "      <td>2</td>\n",
+       "      <td>2</td>\n",
        "      <td>...</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>duration_ms</th>\n",
-       "      <td>180280</td>\n",
-       "      <td>305280</td>\n",
-       "      <td>293773</td>\n",
        "      <td>191787</td>\n",
-       "      <td>409360</td>\n",
        "      <td>303627</td>\n",
-       "      <td>291240</td>\n",
+       "      <td>400093</td>\n",
+       "      <td>351107</td>\n",
+       "      <td>375240</td>\n",
        "      <td>246000</td>\n",
-       "      <td>262933</td>\n",
        "      <td>399867</td>\n",
+       "      <td>99893</td>\n",
+       "      <td>12400</td>\n",
+       "      <td>249307</td>\n",
        "      <td>...</td>\n",
-       "      <td>135040</td>\n",
-       "      <td>147040</td>\n",
-       "      <td>155600</td>\n",
-       "      <td>164320</td>\n",
-       "      <td>148560</td>\n",
-       "      <td>189600</td>\n",
-       "      <td>291253</td>\n",
-       "      <td>144867</td>\n",
-       "      <td>286680</td>\n",
-       "      <td>929458</td>\n",
+       "      <td>625413</td>\n",
+       "      <td>625480</td>\n",
+       "      <td>132533</td>\n",
+       "      <td>236627</td>\n",
+       "      <td>218280</td>\n",
+       "      <td>227547</td>\n",
+       "      <td>313213</td>\n",
+       "      <td>388907</td>\n",
+       "      <td>515560</td>\n",
+       "      <td>446907</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>energy</th>\n",
-       "      <td>0.669</td>\n",
-       "      <td>0.733</td>\n",
-       "      <td>0.962</td>\n",
        "      <td>0.883</td>\n",
-       "      <td>0.944</td>\n",
        "      <td>0.976</td>\n",
-       "      <td>0.951</td>\n",
+       "      <td>0.964</td>\n",
+       "      <td>0.646</td>\n",
+       "      <td>0.991</td>\n",
        "      <td>0.978</td>\n",
-       "      <td>0.951</td>\n",
        "      <td>0.934</td>\n",
-       "      <td>...</td>\n",
-       "      <td>0.976</td>\n",
-       "      <td>0.932</td>\n",
-       "      <td>0.912</td>\n",
-       "      <td>0.964</td>\n",
-       "      <td>0.92</td>\n",
+       "      <td>0.995</td>\n",
+       "      <td>0.602</td>\n",
        "      <td>0.929</td>\n",
-       "      <td>0.835</td>\n",
-       "      <td>0.451</td>\n",
-       "      <td>0.672</td>\n",
-       "      <td>0.898</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.73</td>\n",
+       "      <td>0.742</td>\n",
+       "      <td>0.983</td>\n",
+       "      <td>0.981</td>\n",
+       "      <td>0.957</td>\n",
+       "      <td>0.98</td>\n",
+       "      <td>0.991</td>\n",
+       "      <td>0.904</td>\n",
+       "      <td>0.946</td>\n",
+       "      <td>0.677</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>explicit</th>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
-       "      <td>True</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
-       "      <td>...</td>\n",
        "      <td>False</td>\n",
+       "      <td>...</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
+       "      <td>True</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "      <td>False</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>external_ids</th>\n",
-       "      <td>{'isrc': 'GBUM71109053'}</td>\n",
-       "      <td>{'isrc': 'GBCBR1500394'}</td>\n",
-       "      <td>{'isrc': 'GBCBR1500392'}</td>\n",
        "      <td>{'isrc': 'GBCBR1500391'}</td>\n",
-       "      <td>{'isrc': 'GBCBR1500396'}</td>\n",
        "      <td>{'isrc': 'GBCBR1500401'}</td>\n",
-       "      <td>{'isrc': 'GBCBR1500404'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101705'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101708'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101714'}</td>\n",
        "      <td>{'isrc': 'USA171210012'}</td>\n",
-       "      <td>{'isrc': 'GBUM70802505'}</td>\n",
        "      <td>{'isrc': 'GBUM70802502'}</td>\n",
+       "      <td>{'isrc': 'GBUM70802637'}</td>\n",
+       "      <td>{'isrc': 'GBUM70803078'}</td>\n",
+       "      <td>{'isrc': 'GBUM70802501'}</td>\n",
        "      <td>...</td>\n",
-       "      <td>{'isrc': 'USA171210005'}</td>\n",
-       "      <td>{'isrc': 'USA171210006'}</td>\n",
-       "      <td>{'isrc': 'USA171210008'}</td>\n",
-       "      <td>{'isrc': 'USA171210009'}</td>\n",
-       "      <td>{'isrc': 'USA171210010'}</td>\n",
-       "      <td>{'isrc': 'USA171210011'}</td>\n",
-       "      <td>{'isrc': 'GBCBR1500395'}</td>\n",
-       "      <td>{'isrc': 'GBUM70909519'}</td>\n",
-       "      <td>{'isrc': 'GBUM71604631'}</td>\n",
-       "      <td>{'isrc': 'GBCBR1600265'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1200225'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1200225'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101698'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101699'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101700'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101701'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101702'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101703'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1101704'}</td>\n",
+       "      <td>{'isrc': 'GBCBR1600555'}</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>external_urls</th>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/3u...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/1l...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/74...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/1j...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/4H...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/7F...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/0B...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/4p...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/39...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/2u...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/19...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/28...</td>\n",
        "      <td>{'spotify': 'https://open.spotify.com/track/56...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/2A...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/2l...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/7o...</td>\n",
        "      <td>...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/2B...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/6L...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/2g...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/6C...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/1N...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/31...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/3u...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/6g...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/2r...</td>\n",
-       "      <td>{'spotify': 'https://open.spotify.com/track/3E...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/1F...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/3n...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/0c...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/6d...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/6f...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/66...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/6A...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/16...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/5U...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/1t...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>href</th>\n",
-       "      <td>https://api.spotify.com/v1/tracks/3u06WsJ1KtvE...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/1lLK53LFXWvP...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/74tlMxJ8wF0s...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/1jgefM2ZP7Rn...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/4HKaTAMIXT88...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/7FagS2T3y5Xw...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/0B5CEdw4WBs9...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4pKN6TNF59rJ...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/39OF4xTwA6f5...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2uO1HbJhQvmX...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/19LYBNYOMwmD...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/281J4XFm5DLf...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/56ljxn1tdisT...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2Ax0tajnMzn8...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2l4gWzhTj7Yt...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/7otIbWwB2rkq...</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2BxO4VLPjzrA...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6L7tmFIPKy98...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2gB58ki3GMqy...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6C0au9ut1avz...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/1NvBOki5VmSS...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/31KuT5lcyp6N...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/3u0cZhyEPYIe...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6gVXeA52q3Fb...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2rNBqTve7unp...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/3Ey71ndsJ2GD...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1F69leTp8WQH...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3nc2vvots8KX...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/0cNyluZzzBVb...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6dx6G9OexgRF...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6fZKfyDrl9Np...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/660iobQYqexX...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6AX8HMe53fbG...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/16FlhqpxLT6W...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5UXwp4rKvtXt...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1tiyUANzZams...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>id</th>\n",
-       "      <td>3u06WsJ1KtvEqmmmZqy76J</td>\n",
-       "      <td>1lLK53LFXWvPzPYtlJIvt0</td>\n",
-       "      <td>74tlMxJ8wF0sNp93GBEPdK</td>\n",
        "      <td>1jgefM2ZP7RnPVShhy1eUM</td>\n",
-       "      <td>4HKaTAMIXT88muGU1JN9lI</td>\n",
        "      <td>7FagS2T3y5XwDpYvyHfvmc</td>\n",
-       "      <td>0B5CEdw4WBs91yn444ZP27</td>\n",
+       "      <td>4pKN6TNF59rJ1PCtPoeppg</td>\n",
+       "      <td>39OF4xTwA6f5BaIeA9aAwF</td>\n",
+       "      <td>2uO1HbJhQvmXpjclLmLEeK</td>\n",
        "      <td>19LYBNYOMwmDKXvhwq5Ggv</td>\n",
-       "      <td>281J4XFm5DLfVt1nKNBsPn</td>\n",
        "      <td>56ljxn1tdisThe4xcVe4px</td>\n",
+       "      <td>2Ax0tajnMzn8bB0jkmGNCK</td>\n",
+       "      <td>2l4gWzhTj7Yt1IvMTWnSgF</td>\n",
+       "      <td>7otIbWwB2rkqB3BHl6v296</td>\n",
+       "      <td>...</td>\n",
+       "      <td>1F69leTp8WQHMFVQ5gOtIS</td>\n",
+       "      <td>3nc2vvots8KXJIssvtJvh6</td>\n",
+       "      <td>0cNyluZzzBVbsk2UY7Spca</td>\n",
+       "      <td>6dx6G9OexgRFCulfKI4sPN</td>\n",
+       "      <td>6fZKfyDrl9Nph0ifIGvOxs</td>\n",
+       "      <td>660iobQYqexXXNfRomqz3o</td>\n",
+       "      <td>6AX8HMe53fbGdNNAnC8LSz</td>\n",
+       "      <td>16FlhqpxLT6WTfiLVEZ7Vv</td>\n",
+       "      <td>5UXwp4rKvtXtKJpe0iIctM</td>\n",
+       "      <td>1tiyUANzZamsPZlHhZBbOd</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>ignore</th>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
+       "      <td>True</td>\n",
        "      <td>...</td>\n",
-       "      <td>2BxO4VLPjzrApKTHZjpz9G</td>\n",
-       "      <td>6L7tmFIPKy98Js8ytCB1pT</td>\n",
-       "      <td>2gB58ki3GMqyNsdsPpDECH</td>\n",
-       "      <td>6C0au9ut1avz4zhryYHudG</td>\n",
-       "      <td>1NvBOki5VmSSVelycoMo96</td>\n",
-       "      <td>31KuT5lcyp6NlDBjp3EVTp</td>\n",
-       "      <td>3u0cZhyEPYIe9qDKPEeS4g</td>\n",
-       "      <td>6gVXeA52q3FbLANm6gW0Ma</td>\n",
-       "      <td>2rNBqTve7unpL01DuTyX3P</td>\n",
-       "      <td>3Ey71ndsJ2GDMgT0hVJlPs</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>instrumentalness</th>\n",
-       "      <td>0.00432</td>\n",
-       "      <td>1.57e-06</td>\n",
-       "      <td>0.000172</td>\n",
        "      <td>0.00116</td>\n",
-       "      <td>1.16e-05</td>\n",
        "      <td>0.000973</td>\n",
-       "      <td>0.0296</td>\n",
+       "      <td>0.189</td>\n",
+       "      <td>0.00188</td>\n",
+       "      <td>0.725</td>\n",
        "      <td>0.762</td>\n",
-       "      <td>0.0905</td>\n",
        "      <td>0.00914</td>\n",
+       "      <td>2.47e-05</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0.00435</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.744</td>\n",
-       "      <td>0.913</td>\n",
-       "      <td>0.848</td>\n",
-       "      <td>0.411</td>\n",
-       "      <td>0.963</td>\n",
-       "      <td>0.269</td>\n",
-       "      <td>3.15e-05</td>\n",
-       "      <td>0.000541</td>\n",
-       "      <td>0.463</td>\n",
-       "      <td>0.122</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0.000217</td>\n",
+       "      <td>0.703</td>\n",
+       "      <td>0.0209</td>\n",
+       "      <td>0.0681</td>\n",
+       "      <td>0.101</td>\n",
+       "      <td>0.113</td>\n",
+       "      <td>0.572</td>\n",
+       "      <td>2.2e-05</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>key</th>\n",
-       "      <td>5</td>\n",
-       "      <td>5</td>\n",
-       "      <td>0</td>\n",
        "      <td>9</td>\n",
-       "      <td>7</td>\n",
        "      <td>4</td>\n",
-       "      <td>11</td>\n",
        "      <td>2</td>\n",
+       "      <td>5</td>\n",
        "      <td>11</td>\n",
        "      <td>2</td>\n",
+       "      <td>2</td>\n",
+       "      <td>4</td>\n",
+       "      <td>10</td>\n",
+       "      <td>2</td>\n",
        "      <td>...</td>\n",
-       "      <td>1</td>\n",
-       "      <td>9</td>\n",
        "      <td>7</td>\n",
        "      <td>2</td>\n",
-       "      <td>4</td>\n",
-       "      <td>9</td>\n",
+       "      <td>2</td>\n",
        "      <td>0</td>\n",
+       "      <td>7</td>\n",
        "      <td>9</td>\n",
+       "      <td>2</td>\n",
        "      <td>4</td>\n",
        "      <td>9</td>\n",
+       "      <td>0</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>liveness</th>\n",
-       "      <td>0.443</td>\n",
-       "      <td>0.965</td>\n",
-       "      <td>0.962</td>\n",
        "      <td>0.969</td>\n",
-       "      <td>0.983</td>\n",
        "      <td>0.97</td>\n",
        "      <td>0.952</td>\n",
+       "      <td>0.876</td>\n",
+       "      <td>0.961</td>\n",
        "      <td>0.763</td>\n",
-       "      <td>0.985</td>\n",
        "      <td>0.918</td>\n",
+       "      <td>0.951</td>\n",
+       "      <td>0.699</td>\n",
+       "      <td>0.851</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.824</td>\n",
-       "      <td>0.891</td>\n",
-       "      <td>0.702</td>\n",
+       "      <td>0.575</td>\n",
+       "      <td>0.777</td>\n",
+       "      <td>0.831</td>\n",
+       "      <td>0.985</td>\n",
+       "      <td>0.967</td>\n",
+       "      <td>0.984</td>\n",
+       "      <td>0.988</td>\n",
+       "      <td>0.92</td>\n",
        "      <td>0.93</td>\n",
-       "      <td>0.616</td>\n",
-       "      <td>0.932</td>\n",
-       "      <td>0.761</td>\n",
-       "      <td>0.295</td>\n",
-       "      <td>0.263</td>\n",
-       "      <td>0.914</td>\n",
+       "      <td>0.409</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>loudness</th>\n",
-       "      <td>-4.303</td>\n",
-       "      <td>-8.658</td>\n",
-       "      <td>-5.589</td>\n",
        "      <td>-7.634</td>\n",
-       "      <td>-5.342</td>\n",
        "      <td>-5.105</td>\n",
-       "      <td>-6.494</td>\n",
+       "      <td>-5.963</td>\n",
+       "      <td>-8.871</td>\n",
+       "      <td>-4.511</td>\n",
        "      <td>-5.918</td>\n",
-       "      <td>-3.822</td>\n",
        "      <td>-3.937</td>\n",
+       "      <td>-5.071</td>\n",
+       "      <td>-16.689</td>\n",
+       "      <td>-2.877</td>\n",
        "      <td>...</td>\n",
-       "      <td>-6.162</td>\n",
-       "      <td>-5.23</td>\n",
+       "      <td>-5.973</td>\n",
+       "      <td>-5.986</td>\n",
+       "      <td>-5.918</td>\n",
+       "      <td>-5.255</td>\n",
+       "      <td>-6.338</td>\n",
        "      <td>-5.511</td>\n",
-       "      <td>-5.626</td>\n",
-       "      <td>-4.728</td>\n",
-       "      <td>-4.779</td>\n",
-       "      <td>-6.423</td>\n",
-       "      <td>-10.86</td>\n",
-       "      <td>-4.932</td>\n",
-       "      <td>-5.708</td>\n",
+       "      <td>-5.136</td>\n",
+       "      <td>-6.108</td>\n",
+       "      <td>-5.641</td>\n",
+       "      <td>-5.968</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>lyrical_density</th>\n",
+       "      <td>0.693478</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.225451</td>\n",
+       "      <td>0.225427</td>\n",
+       "      <td>1.1997</td>\n",
+       "      <td>0.845212</td>\n",
+       "      <td>0.650541</td>\n",
+       "      <td>1.04594</td>\n",
+       "      <td>0.743903</td>\n",
+       "      <td>0.779107</td>\n",
+       "      <td>0.568314</td>\n",
+       "      <td>0.912942</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>lyrics</th>\n",
+       "      <td>i'm going to tell you how it's going to be you...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>everything gonna be alright oh yeah yeah now w...</td>\n",
+       "      <td>everything gonna be alright oh yeah yeah now w...</td>\n",
+       "      <td>in the heat of the day down in mobile alabama ...</td>\n",
+       "      <td>yeah heard the diesel drumming all down the li...</td>\n",
+       "      <td>i met a gin-soaked barroom queen in memphis sh...</td>\n",
+       "      <td>baby baby i've been so sad since you've been g...</td>\n",
+       "      <td>yeah mama and papa told me i was crazy to stay...</td>\n",
+       "      <td>i'll never be your beast of burden my back is ...</td>\n",
+       "      <td>i've been holding out so long i've been sleepi...</td>\n",
+       "      <td>i saw her today at the reception a glass of wi...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>mode</th>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
-       "      <td>1</td>\n",
+       "      <td>0</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>0</td>\n",
-       "      <td>1</td>\n",
-       "      <td>...</td>\n",
        "      <td>0</td>\n",
+       "      <td>...</td>\n",
+       "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "      <td>1</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>name</th>\n",
-       "      <td>You Win Again</td>\n",
-       "      <td>Faraway Eyes - Live</td>\n",
-       "      <td>Honky Tonk Women - Live</td>\n",
        "      <td>Not Fade Away - Live</td>\n",
-       "      <td>I Go Wild - Live</td>\n",
        "      <td>Jumpin' Jack Flash - Live</td>\n",
-       "      <td>Street Fighting Man - Live</td>\n",
+       "      <td>Just My Imagination - Live</td>\n",
+       "      <td>Far Away Eyes - Live</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
        "      <td>Everybody Needs Somebody To Love (Finale) - Li...</td>\n",
-       "      <td>Jumping Jack Flash - Live At The Beacon Theatr...</td>\n",
        "      <td>Just My Imagination - Live At The Beacon Theat...</td>\n",
+       "      <td>Band Introductions - Live At The Beacon Theatr...</td>\n",
+       "      <td>Martin Scorsese Intro - Live At The Beacon The...</td>\n",
+       "      <td>Little T&amp;A - Live At The Beacon Theatre, New Y...</td>\n",
        "      <td>...</td>\n",
-       "      <td>I'm Alright - Live In Ireland / 1965</td>\n",
-       "      <td>Off The Hook - Live In Ireland / 1965</td>\n",
-       "      <td>Little Red Rooster - Live In Ireland / 1965</td>\n",
-       "      <td>Route 66 - Live In Ireland / 1965</td>\n",
-       "      <td>I'm Moving On - Live In Ireland / 1965</td>\n",
-       "      <td>The Last Time - Live In Ireland / 1965</td>\n",
-       "      <td>Shine a Light - Live</td>\n",
-       "      <td>The Worst - 2009 Re-Mastered Digital Version</td>\n",
-       "      <td>All Of Your Love</td>\n",
-       "      <td>Midnight Rambler - Live</td>\n",
+       "      <td>Mannish Boy - Live</td>\n",
+       "      <td>Mannish Boy - Live</td>\n",
+       "      <td>Let It Rock - Live</td>\n",
+       "      <td>All Down The Line - Live</td>\n",
+       "      <td>Honky Tonk Women - Live</td>\n",
+       "      <td>Star Star - Live</td>\n",
+       "      <td>When The Whip Comes Down - Live</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "      <td>You Can’t Always Get What You Want - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>popularity</th>\n",
-       "      <td>17</td>\n",
-       "      <td>16</td>\n",
-       "      <td>19</td>\n",
-       "      <td>18</td>\n",
-       "      <td>15</td>\n",
-       "      <td>15</td>\n",
-       "      <td>18</td>\n",
-       "      <td>27</td>\n",
-       "      <td>37</td>\n",
-       "      <td>28</td>\n",
+       "      <th>nnrc_sentiment</th>\n",
+       "      <td>{'negative': 0.3157894736842105, 'joy': 0.8421...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
        "      <td>...</td>\n",
-       "      <td>26</td>\n",
-       "      <td>26</td>\n",
-       "      <td>27</td>\n",
-       "      <td>28</td>\n",
-       "      <td>24</td>\n",
-       "      <td>26</td>\n",
-       "      <td>17</td>\n",
-       "      <td>29</td>\n",
-       "      <td>49</td>\n",
-       "      <td>34</td>\n",
+       "      <td>{'anger': 0.07692307692307693, 'trust': 0.3076...</td>\n",
+       "      <td>{'anger': 0.07692307692307693, 'trust': 0.3076...</td>\n",
+       "      <td>{'anger': 0.3333333333333333, 'sadness': 0.111...</td>\n",
+       "      <td>{'anger': 0.5, 'sadness': 0.3333333333333333, ...</td>\n",
+       "      <td>{'anger': 0.2, 'trust': 0.4, 'sadness': 0.8, '...</td>\n",
+       "      <td>{'anger': 0.1, 'trust': 0.6, 'sadness': 0.0666...</td>\n",
+       "      <td>{'anger': 0.9565217391304348, 'trust': 0.17391...</td>\n",
+       "      <td>{'anger': 0.4230769230769231, 'trust': 0.57692...</td>\n",
+       "      <td>{'anger': 0.16666666666666666, 'disgust': 0.75...</td>\n",
+       "      <td>{'anger': 0.4, 'trust': 0.5, 'sadness': 0.4, '...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>nrc_sentiment</th>\n",
+       "      <td>{'negative': 6, 'joy': 16, 'trust': 4, 'positi...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'anger': 1, 'trust': 4, 'fear': 1, 'surprise'...</td>\n",
+       "      <td>{'anger': 1, 'trust': 4, 'fear': 1, 'surprise'...</td>\n",
+       "      <td>{'anger': 3, 'fear': 3, 'surprise': 4, 'negati...</td>\n",
+       "      <td>{'anger': 3, 'fear': 2, 'surprise': 1, 'negati...</td>\n",
+       "      <td>{'anger': 1, 'trust': 2, 'fear': 5, 'negative'...</td>\n",
+       "      <td>{'anger': 3, 'trust': 18, 'fear': 3, 'surprise...</td>\n",
+       "      <td>{'anger': 22, 'trust': 4, 'fear': 2, 'surprise...</td>\n",
+       "      <td>{'anger': 11, 'trust': 15, 'fear': 12, 'surpri...</td>\n",
+       "      <td>{'anger': 2, 'disgust': 9, 'fear': 3, 'surpris...</td>\n",
+       "      <td>{'anger': 4, 'trust': 5, 'fear': 3, 'surprise'...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>preview_url</th>\n",
-       "      <td>https://p.scdn.co/mp3-preview/21de20d8795c3d60...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/5afdaabfa28e067f...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/671f51874a70b3f7...</td>\n",
+       "      <th>original_lyrics</th>\n",
+       "      <td>\\n\\n[Chorus]\\nI'm going to tell you how it's g...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nEverything gonna be alright\\nOh...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nEverything gonna be alright\\nOh...</td>\n",
+       "      <td>\\n\\n[Verse]\\nIn the heat of the day down in Mo...</td>\n",
+       "      <td>\\n\\n[Verse]\\nYeah, heard the diesel drumming a...</td>\n",
+       "      <td>\\n\\nI met a gin-soaked barroom queen in Memphi...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nBaby, baby, I've been so sad si...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nYeah, mama and papa told me\\nI ...</td>\n",
+       "      <td>\\n\\n[Intro]\\nI'll never be your beast of burde...</td>\n",
+       "      <td>\\n\\n[Produced by The Glimmer Twins]\\n\\n[Verse ...</td>\n",
+       "      <td>\\n\\n[Intro: London Bach Choir]\\nI saw her toda...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>popularity</th>\n",
+       "      <td>14</td>\n",
+       "      <td>12</td>\n",
+       "      <td>19</td>\n",
+       "      <td>18</td>\n",
+       "      <td>18</td>\n",
+       "      <td>21</td>\n",
+       "      <td>26</td>\n",
+       "      <td>21</td>\n",
+       "      <td>0</td>\n",
+       "      <td>22</td>\n",
+       "      <td>...</td>\n",
+       "      <td>21</td>\n",
+       "      <td>2</td>\n",
+       "      <td>20</td>\n",
+       "      <td>19</td>\n",
+       "      <td>21</td>\n",
+       "      <td>20</td>\n",
+       "      <td>19</td>\n",
+       "      <td>25</td>\n",
+       "      <td>22</td>\n",
+       "      <td>36</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>preview_url</th>\n",
        "      <td>https://p.scdn.co/mp3-preview/bba1991141c6e594...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/dc5e2c9ed7a5ae3d...</td>\n",
        "      <td>https://p.scdn.co/mp3-preview/17aed72343067677...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/9e13894d09e23cff...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/b051b48d71a46bd5...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/6f8c3efc615a554b...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/707e111a5eef5440...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/63e454d027fa6809...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/2b9e3ebd8aec9ab2...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/7fd37df80648f4d8...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/bb4461680e5ab01d...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/64c62c7e8f7eb6bf...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/4e412cd1b893a89b...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/feac308c8b6794c2...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/e2a9e826d6585979...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/1d796622e5630f76...</td>\n",
-       "      <td>https://p.scdn.co/mp3-preview/20b0c963ec9199d1...</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>...</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "      <td>None</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>sentiment</th>\n",
+       "      <td>{'label': 'pos', 'probability': {'pos': 0.5669...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.3814...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.3814...</td>\n",
+       "      <td>{'label': 'neutral', 'probability': {'pos': 0....</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.4794...</td>\n",
+       "      <td>{'label': 'neutral', 'probability': {'pos': 0....</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.3255...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.2602...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.2596...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.2422...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.3829...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>speechiness</th>\n",
-       "      <td>0.0313</td>\n",
-       "      <td>0.0411</td>\n",
-       "      <td>0.11</td>\n",
        "      <td>0.0936</td>\n",
-       "      <td>0.0779</td>\n",
        "      <td>0.0806</td>\n",
-       "      <td>0.0597</td>\n",
+       "      <td>0.0742</td>\n",
+       "      <td>0.0356</td>\n",
+       "      <td>0.11</td>\n",
        "      <td>0.421</td>\n",
-       "      <td>0.0667</td>\n",
        "      <td>0.0728</td>\n",
+       "      <td>0.592</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0.0692</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.12</td>\n",
-       "      <td>0.0562</td>\n",
-       "      <td>0.0757</td>\n",
-       "      <td>0.152</td>\n",
-       "      <td>0.103</td>\n",
-       "      <td>0.059</td>\n",
-       "      <td>0.0687</td>\n",
-       "      <td>0.033</td>\n",
-       "      <td>0.0329</td>\n",
-       "      <td>0.074</td>\n",
+       "      <td>0.131</td>\n",
+       "      <td>0.137</td>\n",
+       "      <td>0.0857</td>\n",
+       "      <td>0.114</td>\n",
+       "      <td>0.0504</td>\n",
+       "      <td>0.112</td>\n",
+       "      <td>0.11</td>\n",
+       "      <td>0.0406</td>\n",
+       "      <td>0.0399</td>\n",
+       "      <td>0.0311</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>tempo</th>\n",
-       "      <td>84.544</td>\n",
-       "      <td>106.226</td>\n",
-       "      <td>114.303</td>\n",
        "      <td>99.59</td>\n",
-       "      <td>112.123</td>\n",
        "      <td>141.754</td>\n",
-       "      <td>127.952</td>\n",
+       "      <td>118.246</td>\n",
+       "      <td>93.57</td>\n",
+       "      <td>164.942</td>\n",
        "      <td>181.122</td>\n",
-       "      <td>140.183</td>\n",
        "      <td>113.354</td>\n",
+       "      <td>106.682</td>\n",
+       "      <td>0</td>\n",
+       "      <td>137.735</td>\n",
        "      <td>...</td>\n",
-       "      <td>117.236</td>\n",
-       "      <td>76.844</td>\n",
-       "      <td>115.7</td>\n",
-       "      <td>166.196</td>\n",
-       "      <td>162.889</td>\n",
-       "      <td>180.024</td>\n",
-       "      <td>78.569</td>\n",
-       "      <td>69.393</td>\n",
-       "      <td>75.354</td>\n",
-       "      <td>129.742</td>\n",
+       "      <td>173.625</td>\n",
+       "      <td>170.818</td>\n",
+       "      <td>152.922</td>\n",
+       "      <td>162.735</td>\n",
+       "      <td>117.921</td>\n",
+       "      <td>159.078</td>\n",
+       "      <td>154.808</td>\n",
+       "      <td>108.156</td>\n",
+       "      <td>117.17</td>\n",
+       "      <td>144.952</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>time_signature</th>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
-       "      <td>4</td>\n",
+       "      <td>0</td>\n",
        "      <td>4</td>\n",
        "      <td>...</td>\n",
-       "      <td>4</td>\n",
-       "      <td>4</td>\n",
        "      <td>3</td>\n",
+       "      <td>3</td>\n",
+       "      <td>4</td>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
        "      <td>4</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>track_href</th>\n",
-       "      <td>https://api.spotify.com/v1/tracks/3u06WsJ1KtvE...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/1lLK53LFXWvP...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/74tlMxJ8wF0s...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/1jgefM2ZP7Rn...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/4HKaTAMIXT88...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/7FagS2T3y5Xw...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/0B5CEdw4WBs9...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4pKN6TNF59rJ...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/39OF4xTwA6f5...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2uO1HbJhQvmX...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/19LYBNYOMwmD...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/281J4XFm5DLf...</td>\n",
        "      <td>https://api.spotify.com/v1/tracks/56ljxn1tdisT...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2Ax0tajnMzn8...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2l4gWzhTj7Yt...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/7otIbWwB2rkq...</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2BxO4VLPjzrA...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6L7tmFIPKy98...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2gB58ki3GMqy...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6C0au9ut1avz...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/1NvBOki5VmSS...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/31KuT5lcyp6N...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/3u0cZhyEPYIe...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/6gVXeA52q3Fb...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/2rNBqTve7unp...</td>\n",
-       "      <td>https://api.spotify.com/v1/tracks/3Ey71ndsJ2GD...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1F69leTp8WQH...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3nc2vvots8KX...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/0cNyluZzzBVb...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6dx6G9OexgRF...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6fZKfyDrl9Np...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/660iobQYqexX...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6AX8HMe53fbG...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/16FlhqpxLT6W...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5UXwp4rKvtXt...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1tiyUANzZams...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>track_number</th>\n",
-       "      <td>11</td>\n",
-       "      <td>4</td>\n",
-       "      <td>2</td>\n",
        "      <td>1</td>\n",
-       "      <td>6</td>\n",
        "      <td>11</td>\n",
-       "      <td>14</td>\n",
+       "      <td>8</td>\n",
+       "      <td>11</td>\n",
+       "      <td>17</td>\n",
        "      <td>13</td>\n",
+       "      <td>8</td>\n",
+       "      <td>12</td>\n",
        "      <td>1</td>\n",
        "      <td>8</td>\n",
        "      <td>...</td>\n",
+       "      <td>13</td>\n",
+       "      <td>6</td>\n",
+       "      <td>1</td>\n",
+       "      <td>2</td>\n",
+       "      <td>3</td>\n",
+       "      <td>4</td>\n",
+       "      <td>5</td>\n",
        "      <td>6</td>\n",
        "      <td>7</td>\n",
-       "      <td>9</td>\n",
        "      <td>10</td>\n",
-       "      <td>11</td>\n",
-       "      <td>12</td>\n",
-       "      <td>5</td>\n",
-       "      <td>4</td>\n",
-       "      <td>4</td>\n",
-       "      <td>11</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>type</th>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>uri</th>\n",
-       "      <td>spotify:track:3u06WsJ1KtvEqmmmZqy76J</td>\n",
-       "      <td>spotify:track:1lLK53LFXWvPzPYtlJIvt0</td>\n",
-       "      <td>spotify:track:74tlMxJ8wF0sNp93GBEPdK</td>\n",
        "      <td>spotify:track:1jgefM2ZP7RnPVShhy1eUM</td>\n",
-       "      <td>spotify:track:4HKaTAMIXT88muGU1JN9lI</td>\n",
        "      <td>spotify:track:7FagS2T3y5XwDpYvyHfvmc</td>\n",
-       "      <td>spotify:track:0B5CEdw4WBs91yn444ZP27</td>\n",
+       "      <td>spotify:track:4pKN6TNF59rJ1PCtPoeppg</td>\n",
+       "      <td>spotify:track:39OF4xTwA6f5BaIeA9aAwF</td>\n",
+       "      <td>spotify:track:2uO1HbJhQvmXpjclLmLEeK</td>\n",
        "      <td>spotify:track:19LYBNYOMwmDKXvhwq5Ggv</td>\n",
-       "      <td>spotify:track:281J4XFm5DLfVt1nKNBsPn</td>\n",
        "      <td>spotify:track:56ljxn1tdisThe4xcVe4px</td>\n",
+       "      <td>spotify:track:2Ax0tajnMzn8bB0jkmGNCK</td>\n",
+       "      <td>spotify:track:2l4gWzhTj7Yt1IvMTWnSgF</td>\n",
+       "      <td>spotify:track:7otIbWwB2rkqB3BHl6v296</td>\n",
        "      <td>...</td>\n",
-       "      <td>spotify:track:2BxO4VLPjzrApKTHZjpz9G</td>\n",
-       "      <td>spotify:track:6L7tmFIPKy98Js8ytCB1pT</td>\n",
-       "      <td>spotify:track:2gB58ki3GMqyNsdsPpDECH</td>\n",
-       "      <td>spotify:track:6C0au9ut1avz4zhryYHudG</td>\n",
-       "      <td>spotify:track:1NvBOki5VmSSVelycoMo96</td>\n",
-       "      <td>spotify:track:31KuT5lcyp6NlDBjp3EVTp</td>\n",
-       "      <td>spotify:track:3u0cZhyEPYIe9qDKPEeS4g</td>\n",
-       "      <td>spotify:track:6gVXeA52q3FbLANm6gW0Ma</td>\n",
-       "      <td>spotify:track:2rNBqTve7unpL01DuTyX3P</td>\n",
-       "      <td>spotify:track:3Ey71ndsJ2GDMgT0hVJlPs</td>\n",
+       "      <td>spotify:track:1F69leTp8WQHMFVQ5gOtIS</td>\n",
+       "      <td>spotify:track:3nc2vvots8KXJIssvtJvh6</td>\n",
+       "      <td>spotify:track:0cNyluZzzBVbsk2UY7Spca</td>\n",
+       "      <td>spotify:track:6dx6G9OexgRFCulfKI4sPN</td>\n",
+       "      <td>spotify:track:6fZKfyDrl9Nph0ifIGvOxs</td>\n",
+       "      <td>spotify:track:660iobQYqexXXNfRomqz3o</td>\n",
+       "      <td>spotify:track:6AX8HMe53fbGdNNAnC8LSz</td>\n",
+       "      <td>spotify:track:16FlhqpxLT6WTfiLVEZ7Vv</td>\n",
+       "      <td>spotify:track:5UXwp4rKvtXtKJpe0iIctM</td>\n",
+       "      <td>spotify:track:1tiyUANzZamsPZlHhZBbOd</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>valence</th>\n",
-       "      <td>0.524</td>\n",
-       "      <td>0.482</td>\n",
-       "      <td>0.426</td>\n",
-       "      <td>0.672</td>\n",
-       "      <td>0.432</td>\n",
-       "      <td>0.362</td>\n",
-       "      <td>0.433</td>\n",
-       "      <td>0.185</td>\n",
-       "      <td>0.413</td>\n",
-       "      <td>0.436</td>\n",
+       "      <td>0.678</td>\n",
+       "      <td>0.359</td>\n",
+       "      <td>0.639</td>\n",
+       "      <td>0.562</td>\n",
+       "      <td>0.294</td>\n",
+       "      <td>0.184</td>\n",
+       "      <td>0.453</td>\n",
+       "      <td>0.0348</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0.596</td>\n",
        "      <td>...</td>\n",
-       "      <td>0.284</td>\n",
-       "      <td>0.549</td>\n",
-       "      <td>0.431</td>\n",
-       "      <td>0.588</td>\n",
-       "      <td>0.244</td>\n",
-       "      <td>0.484</td>\n",
-       "      <td>0.5</td>\n",
-       "      <td>0.245</td>\n",
-       "      <td>0.303</td>\n",
-       "      <td>0.363</td>\n",
+       "      <td>0.478</td>\n",
+       "      <td>0.517</td>\n",
+       "      <td>0.623</td>\n",
+       "      <td>0.59</td>\n",
+       "      <td>0.727</td>\n",
+       "      <td>0.646</td>\n",
+       "      <td>0.563</td>\n",
+       "      <td>0.644</td>\n",
+       "      <td>0.847</td>\n",
+       "      <td>0.16</td>\n",
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
-       "<p>34 rows × 275 columns</p>\n",
+       "<p>42 rows × 466 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
        "                                                                 0    \\\n",
-       "_id                                           3u06WsJ1KtvEqmmmZqy76J   \n",
-       "acousticness                                                   0.107   \n",
-       "album              {'id': '6FjXxl9VLURGuubdXUn2J3', 'type': 'albu...   \n",
-       "album_id                                      6FjXxl9VLURGuubdXUn2J3   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/3u06...   \n",
-       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
-       "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
-       "available_markets  [AD, AR, AT, AU, BG, BO, BR, CL, CO, CR, CY, C...   \n",
-       "danceability                                                   0.216   \n",
-       "disc_number                                                        2   \n",
-       "duration_ms                                                   180280   \n",
-       "energy                                                         0.669   \n",
-       "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBUM71109053'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/3u...   \n",
-       "href               https://api.spotify.com/v1/tracks/3u06WsJ1KtvE...   \n",
-       "id                                            3u06WsJ1KtvEqmmmZqy76J   \n",
-       "instrumentalness                                             0.00432   \n",
-       "key                                                                5   \n",
-       "liveness                                                       0.443   \n",
-       "loudness                                                      -4.303   \n",
-       "mode                                                               1   \n",
-       "name                                                   You Win Again   \n",
-       "popularity                                                        17   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/21de20d8795c3d60...   \n",
-       "speechiness                                                   0.0313   \n",
-       "tempo                                                         84.544   \n",
-       "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/3u06WsJ1KtvE...   \n",
-       "track_number                                                      11   \n",
-       "type                                                  audio_features   \n",
-       "uri                             spotify:track:3u06WsJ1KtvEqmmmZqy76J   \n",
-       "valence                                                        0.524   \n",
-       "\n",
-       "                                                                 1    \\\n",
-       "_id                                           1lLK53LFXWvPzPYtlJIvt0   \n",
-       "acousticness                                                   0.536   \n",
-       "album              {'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...   \n",
-       "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/1lLK...   \n",
-       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
-       "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
-       "available_markets                                               [GB]   \n",
-       "danceability                                                   0.395   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   305280   \n",
-       "energy                                                         0.733   \n",
-       "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBCBR1500394'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/1l...   \n",
-       "href               https://api.spotify.com/v1/tracks/1lLK53LFXWvP...   \n",
-       "id                                            1lLK53LFXWvPzPYtlJIvt0   \n",
-       "instrumentalness                                            1.57e-06   \n",
-       "key                                                                5   \n",
-       "liveness                                                       0.965   \n",
-       "loudness                                                      -8.658   \n",
-       "mode                                                               1   \n",
-       "name                                             Faraway Eyes - Live   \n",
-       "popularity                                                        16   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/5afdaabfa28e067f...   \n",
-       "speechiness                                                   0.0411   \n",
-       "tempo                                                        106.226   \n",
-       "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/1lLK53LFXWvP...   \n",
-       "track_number                                                       4   \n",
-       "type                                                  audio_features   \n",
-       "uri                             spotify:track:1lLK53LFXWvPzPYtlJIvt0   \n",
-       "valence                                                        0.482   \n",
-       "\n",
-       "                                                                 2    \\\n",
-       "_id                                           74tlMxJ8wF0sNp93GBEPdK   \n",
-       "acousticness                                                 0.00352   \n",
-       "album              {'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...   \n",
-       "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/74tl...   \n",
-       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
-       "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
-       "available_markets                                               [GB]   \n",
-       "danceability                                                   0.367   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   293773   \n",
-       "energy                                                         0.962   \n",
-       "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBCBR1500392'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/74...   \n",
-       "href               https://api.spotify.com/v1/tracks/74tlMxJ8wF0s...   \n",
-       "id                                            74tlMxJ8wF0sNp93GBEPdK   \n",
-       "instrumentalness                                            0.000172   \n",
-       "key                                                                0   \n",
-       "liveness                                                       0.962   \n",
-       "loudness                                                      -5.589   \n",
-       "mode                                                               1   \n",
-       "name                                         Honky Tonk Women - Live   \n",
-       "popularity                                                        19   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/671f51874a70b3f7...   \n",
-       "speechiness                                                     0.11   \n",
-       "tempo                                                        114.303   \n",
-       "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/74tlMxJ8wF0s...   \n",
-       "track_number                                                       2   \n",
-       "type                                                  audio_features   \n",
-       "uri                             spotify:track:74tlMxJ8wF0sNp93GBEPdK   \n",
-       "valence                                                        0.426   \n",
-       "\n",
-       "                                                                 3    \\\n",
        "_id                                           1jgefM2ZP7RnPVShhy1eUM   \n",
        "acousticness                                                   0.148   \n",
-       "album              {'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/1jge...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets                                               [GB]   \n",
+       "ctitle                                                 not fade away   \n",
        "danceability                                                   0.282   \n",
        "disc_number                                                        1   \n",
        "duration_ms                                                   191787   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/1j...   \n",
        "href               https://api.spotify.com/v1/tracks/1jgefM2ZP7Rn...   \n",
        "id                                            1jgefM2ZP7RnPVShhy1eUM   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                             0.00116   \n",
        "key                                                                9   \n",
        "liveness                                                       0.969   \n",
        "loudness                                                      -7.634   \n",
+       "lyrical_density                                             0.693478   \n",
+       "lyrics             i'm going to tell you how it's going to be you...   \n",
        "mode                                                               1   \n",
        "name                                            Not Fade Away - Live   \n",
-       "popularity                                                        18   \n",
+       "nnrc_sentiment     {'negative': 0.3157894736842105, 'joy': 0.8421...   \n",
+       "nrc_sentiment      {'negative': 6, 'joy': 16, 'trust': 4, 'positi...   \n",
+       "original_lyrics    \\n\\n[Chorus]\\nI'm going to tell you how it's g...   \n",
+       "popularity                                                        14   \n",
        "preview_url        https://p.scdn.co/mp3-preview/bba1991141c6e594...   \n",
+       "sentiment          {'label': 'pos', 'probability': {'pos': 0.5669...   \n",
        "speechiness                                                   0.0936   \n",
        "tempo                                                          99.59   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       1   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:1jgefM2ZP7RnPVShhy1eUM   \n",
-       "valence                                                        0.672   \n",
-       "\n",
-       "                                                                 4    \\\n",
-       "_id                                           4HKaTAMIXT88muGU1JN9lI   \n",
-       "acousticness                                                  0.0328   \n",
-       "album              {'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...   \n",
-       "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/4HKa...   \n",
-       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
-       "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
-       "available_markets                                               [GB]   \n",
-       "danceability                                                   0.427   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   409360   \n",
-       "energy                                                         0.944   \n",
-       "explicit                                                        True   \n",
-       "external_ids                                {'isrc': 'GBCBR1500396'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/4H...   \n",
-       "href               https://api.spotify.com/v1/tracks/4HKaTAMIXT88...   \n",
-       "id                                            4HKaTAMIXT88muGU1JN9lI   \n",
-       "instrumentalness                                            1.16e-05   \n",
-       "key                                                                7   \n",
-       "liveness                                                       0.983   \n",
-       "loudness                                                      -5.342   \n",
-       "mode                                                               1   \n",
-       "name                                                I Go Wild - Live   \n",
-       "popularity                                                        15   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/dc5e2c9ed7a5ae3d...   \n",
-       "speechiness                                                   0.0779   \n",
-       "tempo                                                        112.123   \n",
-       "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/4HKaTAMIXT88...   \n",
-       "track_number                                                       6   \n",
-       "type                                                  audio_features   \n",
-       "uri                             spotify:track:4HKaTAMIXT88muGU1JN9lI   \n",
-       "valence                                                        0.432   \n",
+       "valence                                                        0.678   \n",
        "\n",
-       "                                                                 5    \\\n",
+       "                                                                 1    \\\n",
        "_id                                           7FagS2T3y5XwDpYvyHfvmc   \n",
        "acousticness                                                0.000552   \n",
-       "album              {'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/7Fag...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets                                               [GB]   \n",
+       "ctitle                                             jumpin jack flash   \n",
        "danceability                                                   0.318   \n",
        "disc_number                                                        1   \n",
        "duration_ms                                                   303627   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/7F...   \n",
        "href               https://api.spotify.com/v1/tracks/7FagS2T3y5Xw...   \n",
        "id                                            7FagS2T3y5XwDpYvyHfvmc   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                            0.000973   \n",
        "key                                                                4   \n",
        "liveness                                                        0.97   \n",
        "loudness                                                      -5.105   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
        "mode                                                               1   \n",
        "name                                       Jumpin' Jack Flash - Live   \n",
-       "popularity                                                        15   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        12   \n",
        "preview_url        https://p.scdn.co/mp3-preview/17aed72343067677...   \n",
+       "sentiment                                                        NaN   \n",
        "speechiness                                                   0.0806   \n",
        "tempo                                                        141.754   \n",
        "time_signature                                                     4   \n",
        "track_number                                                      11   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:7FagS2T3y5XwDpYvyHfvmc   \n",
-       "valence                                                        0.362   \n",
+       "valence                                                        0.359   \n",
        "\n",
-       "                                                                 6    \\\n",
-       "_id                                           0B5CEdw4WBs91yn444ZP27   \n",
-       "acousticness                                                   0.347   \n",
-       "album              {'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...   \n",
-       "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/0B5C...   \n",
+       "                                                                 2    \\\n",
+       "_id                                           4pKN6TNF59rJ1PCtPoeppg   \n",
+       "acousticness                                                0.000215   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/4pKN...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
-       "available_markets                                               [GB]   \n",
-       "danceability                                                    0.42   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                           just my imagination   \n",
+       "danceability                                                   0.294   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   291240   \n",
-       "energy                                                         0.951   \n",
+       "duration_ms                                                   400093   \n",
+       "energy                                                         0.964   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBCBR1500404'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/0B...   \n",
-       "href               https://api.spotify.com/v1/tracks/0B5CEdw4WBs9...   \n",
-       "id                                            0B5CEdw4WBs91yn444ZP27   \n",
-       "instrumentalness                                              0.0296   \n",
-       "key                                                               11   \n",
+       "external_ids                                {'isrc': 'GBCBR1101705'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/4p...   \n",
+       "href               https://api.spotify.com/v1/tracks/4pKN6TNF59rJ...   \n",
+       "id                                            4pKN6TNF59rJ1PCtPoeppg   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.189   \n",
+       "key                                                                2   \n",
        "liveness                                                       0.952   \n",
-       "loudness                                                      -6.494   \n",
+       "loudness                                                      -5.963   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               1   \n",
+       "name                                      Just My Imagination - Live   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        19   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0742   \n",
+       "tempo                                                        118.246   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/4pKN6TNF59rJ...   \n",
+       "track_number                                                       8   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:4pKN6TNF59rJ1PCtPoeppg   \n",
+       "valence                                                        0.639   \n",
+       "\n",
+       "                                                                 3    \\\n",
+       "_id                                           39OF4xTwA6f5BaIeA9aAwF   \n",
+       "acousticness                                                    0.27   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/39OF...   \n",
+       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
+       "artist_name                                       The Rolling Stones   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                                 far away eyes   \n",
+       "danceability                                                   0.405   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   351107   \n",
+       "energy                                                         0.646   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBCBR1101708'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/39...   \n",
+       "href               https://api.spotify.com/v1/tracks/39OF4xTwA6f5...   \n",
+       "id                                            39OF4xTwA6f5BaIeA9aAwF   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                             0.00188   \n",
+       "key                                                                5   \n",
+       "liveness                                                       0.876   \n",
+       "loudness                                                      -8.871   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
        "mode                                                               1   \n",
-       "name                                      Street Fighting Man - Live   \n",
+       "name                                            Far Away Eyes - Live   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
        "popularity                                                        18   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/9e13894d09e23cff...   \n",
-       "speechiness                                                   0.0597   \n",
-       "tempo                                                        127.952   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0356   \n",
+       "tempo                                                          93.57   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/0B5CEdw4WBs9...   \n",
-       "track_number                                                      14   \n",
+       "track_href         https://api.spotify.com/v1/tracks/39OF4xTwA6f5...   \n",
+       "track_number                                                      11   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:0B5CEdw4WBs91yn444ZP27   \n",
-       "valence                                                        0.433   \n",
+       "uri                             spotify:track:39OF4xTwA6f5BaIeA9aAwF   \n",
+       "valence                                                        0.562   \n",
        "\n",
-       "                                                                 7    \\\n",
+       "                                                                 4    \\\n",
+       "_id                                           2uO1HbJhQvmXpjclLmLEeK   \n",
+       "acousticness                                                2.35e-05   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/2uO1...   \n",
+       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
+       "artist_name                                       The Rolling Stones   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                             jumpin jack flash   \n",
+       "danceability                                                   0.119   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   375240   \n",
+       "energy                                                         0.991   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBCBR1101714'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/2u...   \n",
+       "href               https://api.spotify.com/v1/tracks/2uO1HbJhQvmX...   \n",
+       "id                                            2uO1HbJhQvmXpjclLmLEeK   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.725   \n",
+       "key                                                               11   \n",
+       "liveness                                                       0.961   \n",
+       "loudness                                                      -4.511   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               0   \n",
+       "name                                       Jumpin' Jack Flash - Live   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        18   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                     0.11   \n",
+       "tempo                                                        164.942   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/2uO1HbJhQvmX...   \n",
+       "track_number                                                      17   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:2uO1HbJhQvmXpjclLmLEeK   \n",
+       "valence                                                        0.294   \n",
+       "\n",
+       "                                                                 5    \\\n",
        "_id                                           19LYBNYOMwmDKXvhwq5Ggv   \n",
        "acousticness                                                   0.109   \n",
-       "album              {'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      5eTqRwTGKPBUiUuN1rFaXD   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/19LY...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                       everybody needs somebody to love finale   \n",
        "danceability                                                   0.243   \n",
        "disc_number                                                        1   \n",
        "duration_ms                                                   246000   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/19...   \n",
        "href               https://api.spotify.com/v1/tracks/19LYBNYOMwmD...   \n",
        "id                                            19LYBNYOMwmDKXvhwq5Ggv   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                               0.762   \n",
        "key                                                                2   \n",
        "liveness                                                       0.763   \n",
        "loudness                                                      -5.918   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
        "mode                                                               1   \n",
        "name               Everybody Needs Somebody To Love (Finale) - Li...   \n",
-       "popularity                                                        27   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/b051b48d71a46bd5...   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        21   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
        "speechiness                                                    0.421   \n",
        "tempo                                                        181.122   \n",
        "time_signature                                                     4   \n",
        "track_number                                                      13   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:19LYBNYOMwmDKXvhwq5Ggv   \n",
-       "valence                                                        0.185   \n",
-       "\n",
-       "                                                                 8    \\\n",
-       "_id                                           281J4XFm5DLfVt1nKNBsPn   \n",
-       "acousticness                                                  0.0391   \n",
-       "album              {'id': '3CHu7qW160uqPZHW3TMZ1l', 'type': 'albu...   \n",
-       "album_id                                      3CHu7qW160uqPZHW3TMZ1l   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/281J...   \n",
-       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
-       "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
-       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                   0.303   \n",
-       "disc_number                                                        1   \n",
-       "duration_ms                                                   262933   \n",
-       "energy                                                         0.951   \n",
-       "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBUM70802505'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/28...   \n",
-       "href               https://api.spotify.com/v1/tracks/281J4XFm5DLf...   \n",
-       "id                                            281J4XFm5DLfVt1nKNBsPn   \n",
-       "instrumentalness                                              0.0905   \n",
-       "key                                                               11   \n",
-       "liveness                                                       0.985   \n",
-       "loudness                                                      -3.822   \n",
-       "mode                                                               0   \n",
-       "name               Jumping Jack Flash - Live At The Beacon Theatr...   \n",
-       "popularity                                                        37   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/6f8c3efc615a554b...   \n",
-       "speechiness                                                   0.0667   \n",
-       "tempo                                                        140.183   \n",
-       "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/281J4XFm5DLf...   \n",
-       "track_number                                                       1   \n",
-       "type                                                  audio_features   \n",
-       "uri                             spotify:track:281J4XFm5DLfVt1nKNBsPn   \n",
-       "valence                                                        0.413   \n",
+       "valence                                                        0.184   \n",
        "\n",
-       "                                                                 9    \\\n",
+       "                                                                 6    \\\n",
        "_id                                           56ljxn1tdisThe4xcVe4px   \n",
        "acousticness                                                   0.024   \n",
-       "album              {'id': '3CHu7qW160uqPZHW3TMZ1l', 'type': 'albu...   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
        "album_id                                      3CHu7qW160uqPZHW3TMZ1l   \n",
        "analysis_url       https://api.spotify.com/v1/audio-analysis/56lj...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                           just my imagination   \n",
        "danceability                                                   0.412   \n",
        "disc_number                                                        1   \n",
        "duration_ms                                                   399867   \n",
        "external_urls      {'spotify': 'https://open.spotify.com/track/56...   \n",
        "href               https://api.spotify.com/v1/tracks/56ljxn1tdisT...   \n",
        "id                                            56ljxn1tdisThe4xcVe4px   \n",
+       "ignore                                                          True   \n",
        "instrumentalness                                             0.00914   \n",
        "key                                                                2   \n",
        "liveness                                                       0.918   \n",
        "loudness                                                      -3.937   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
        "mode                                                               1   \n",
        "name               Just My Imagination - Live At The Beacon Theat...   \n",
-       "popularity                                                        28   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/707e111a5eef5440...   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        26   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
        "speechiness                                                   0.0728   \n",
        "tempo                                                        113.354   \n",
        "time_signature                                                     4   \n",
        "track_number                                                       8   \n",
        "type                                                  audio_features   \n",
        "uri                             spotify:track:56ljxn1tdisThe4xcVe4px   \n",
-       "valence                                                        0.436   \n",
+       "valence                                                        0.453   \n",
        "\n",
-       "                                         ...                          \\\n",
-       "_id                                      ...                           \n",
-       "acousticness                             ...                           \n",
-       "album                                    ...                           \n",
-       "album_id                                 ...                           \n",
-       "analysis_url                             ...                           \n",
-       "artist_id                                ...                           \n",
-       "artist_name                              ...                           \n",
-       "artists                                  ...                           \n",
-       "available_markets                        ...                           \n",
-       "danceability                             ...                           \n",
-       "disc_number                              ...                           \n",
-       "duration_ms                              ...                           \n",
-       "energy                                   ...                           \n",
-       "explicit                                 ...                           \n",
-       "external_ids                             ...                           \n",
-       "external_urls                            ...                           \n",
-       "href                                     ...                           \n",
-       "id                                       ...                           \n",
-       "instrumentalness                         ...                           \n",
-       "key                                      ...                           \n",
-       "liveness                                 ...                           \n",
-       "loudness                                 ...                           \n",
-       "mode                                     ...                           \n",
-       "name                                     ...                           \n",
-       "popularity                               ...                           \n",
-       "preview_url                              ...                           \n",
-       "speechiness                              ...                           \n",
+       "                                                                 7    \\\n",
+       "_id                                           2Ax0tajnMzn8bB0jkmGNCK   \n",
+       "acousticness                                                   0.859   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3CHu7qW160uqPZHW3TMZ1l   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/2Ax0...   \n",
+       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
+       "artist_name                                       The Rolling Stones   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                            band introductions   \n",
+       "danceability                                                   0.322   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                    99893   \n",
+       "energy                                                         0.995   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBUM70802637'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/2A...   \n",
+       "href               https://api.spotify.com/v1/tracks/2Ax0tajnMzn8...   \n",
+       "id                                            2Ax0tajnMzn8bB0jkmGNCK   \n",
+       "ignore                                                          True   \n",
+       "instrumentalness                                            2.47e-05   \n",
+       "key                                                                4   \n",
+       "liveness                                                       0.951   \n",
+       "loudness                                                      -5.071   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               1   \n",
+       "name               Band Introductions - Live At The Beacon Theatr...   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        21   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                    0.592   \n",
+       "tempo                                                        106.682   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/2Ax0tajnMzn8...   \n",
+       "track_number                                                      12   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:2Ax0tajnMzn8bB0jkmGNCK   \n",
+       "valence                                                       0.0348   \n",
+       "\n",
+       "                                                                 8    \\\n",
+       "_id                                           2l4gWzhTj7Yt1IvMTWnSgF   \n",
+       "acousticness                                                   0.483   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3CHu7qW160uqPZHW3TMZ1l   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/2l4g...   \n",
+       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
+       "artist_name                                       The Rolling Stones   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                         martin scorsese intro   \n",
+       "danceability                                                       0   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                    12400   \n",
+       "energy                                                         0.602   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBUM70803078'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/2l...   \n",
+       "href               https://api.spotify.com/v1/tracks/2l4gWzhTj7Yt...   \n",
+       "id                                            2l4gWzhTj7Yt1IvMTWnSgF   \n",
+       "ignore                                                          True   \n",
+       "instrumentalness                                                   0   \n",
+       "key                                                               10   \n",
+       "liveness                                                       0.699   \n",
+       "loudness                                                     -16.689   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               0   \n",
+       "name               Martin Scorsese Intro - Live At The Beacon The...   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                         0   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                        0   \n",
+       "tempo                                                              0   \n",
+       "time_signature                                                     0   \n",
+       "track_href         https://api.spotify.com/v1/tracks/2l4gWzhTj7Yt...   \n",
+       "track_number                                                       1   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:2l4gWzhTj7Yt1IvMTWnSgF   \n",
+       "valence                                                            0   \n",
+       "\n",
+       "                                                                 9    \\\n",
+       "_id                                           7otIbWwB2rkqB3BHl6v296   \n",
+       "acousticness                                                   0.198   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3CHu7qW160uqPZHW3TMZ1l   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/7otI...   \n",
+       "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
+       "artist_name                                       The Rolling Stones   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                                     little ta   \n",
+       "danceability                                                   0.385   \n",
+       "disc_number                                                        2   \n",
+       "duration_ms                                                   249307   \n",
+       "energy                                                         0.929   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBUM70802501'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/7o...   \n",
+       "href               https://api.spotify.com/v1/tracks/7otIbWwB2rkq...   \n",
+       "id                                            7otIbWwB2rkqB3BHl6v296   \n",
+       "ignore                                                          True   \n",
+       "instrumentalness                                             0.00435   \n",
+       "key                                                                2   \n",
+       "liveness                                                       0.851   \n",
+       "loudness                                                      -2.877   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               0   \n",
+       "name               Little T&A - Live At The Beacon Theatre, New Y...   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        22   \n",
+       "preview_url                                                     None   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0692   \n",
+       "tempo                                                        137.735   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/7otIbWwB2rkq...   \n",
+       "track_number                                                       8   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:7otIbWwB2rkqB3BHl6v296   \n",
+       "valence                                                        0.596   \n",
+       "\n",
+       "                                         ...                          \\\n",
+       "_id                                      ...                           \n",
+       "acousticness                             ...                           \n",
+       "album                                    ...                           \n",
+       "album_id                                 ...                           \n",
+       "analysis_url                             ...                           \n",
+       "artist_id                                ...                           \n",
+       "artist_name                              ...                           \n",
+       "artists                                  ...                           \n",
+       "available_markets                        ...                           \n",
+       "ctitle                                   ...                           \n",
+       "danceability                             ...                           \n",
+       "disc_number                              ...                           \n",
+       "duration_ms                              ...                           \n",
+       "energy                                   ...                           \n",
+       "explicit                                 ...                           \n",
+       "external_ids                             ...                           \n",
+       "external_urls                            ...                           \n",
+       "href                                     ...                           \n",
+       "id                                       ...                           \n",
+       "ignore                                   ...                           \n",
+       "instrumentalness                         ...                           \n",
+       "key                                      ...                           \n",
+       "liveness                                 ...                           \n",
+       "loudness                                 ...                           \n",
+       "lyrical_density                          ...                           \n",
+       "lyrics                                   ...                           \n",
+       "mode                                     ...                           \n",
+       "name                                     ...                           \n",
+       "nnrc_sentiment                           ...                           \n",
+       "nrc_sentiment                            ...                           \n",
+       "original_lyrics                          ...                           \n",
+       "popularity                               ...                           \n",
+       "preview_url                              ...                           \n",
+       "sentiment                                ...                           \n",
+       "speechiness                              ...                           \n",
        "tempo                                    ...                           \n",
        "time_signature                           ...                           \n",
        "track_href                               ...                           \n",
        "uri                                      ...                           \n",
        "valence                                  ...                           \n",
        "\n",
-       "                                                                 265  \\\n",
-       "_id                                           2BxO4VLPjzrApKTHZjpz9G   \n",
-       "acousticness                                                   0.181   \n",
-       "album              {'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...   \n",
-       "album_id                                      5eTqRwTGKPBUiUuN1rFaXD   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/2BxO...   \n",
+       "                                                                 456  \\\n",
+       "_id                                           1F69leTp8WQHMFVQ5gOtIS   \n",
+       "acousticness                                                   0.355   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6hB5kO3oV3tlnblCNSSA9Z   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/1F69...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                    0.46   \n",
+       "ctitle                                                   mannish boy   \n",
+       "danceability                                                    0.33   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   135040   \n",
-       "energy                                                         0.976   \n",
+       "duration_ms                                                   625413   \n",
+       "energy                                                          0.73   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'USA171210005'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/2B...   \n",
-       "href               https://api.spotify.com/v1/tracks/2BxO4VLPjzrA...   \n",
-       "id                                            2BxO4VLPjzrApKTHZjpz9G   \n",
-       "instrumentalness                                               0.744   \n",
-       "key                                                                1   \n",
-       "liveness                                                       0.824   \n",
-       "loudness                                                      -6.162   \n",
-       "mode                                                               0   \n",
-       "name                            I'm Alright - Live In Ireland / 1965   \n",
-       "popularity                                                        26   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/63e454d027fa6809...   \n",
-       "speechiness                                                     0.12   \n",
-       "tempo                                                        117.236   \n",
-       "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/2BxO4VLPjzrA...   \n",
-       "track_number                                                       6   \n",
+       "external_ids                                {'isrc': 'GBCBR1200225'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/1F...   \n",
+       "href               https://api.spotify.com/v1/tracks/1F69leTp8WQH...   \n",
+       "id                                            1F69leTp8WQHMFVQ5gOtIS   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                                   0   \n",
+       "key                                                                7   \n",
+       "liveness                                                       0.575   \n",
+       "loudness                                                      -5.973   \n",
+       "lyrical_density                                             0.225451   \n",
+       "lyrics             everything gonna be alright oh yeah yeah now w...   \n",
+       "mode                                                               1   \n",
+       "name                                              Mannish Boy - Live   \n",
+       "nnrc_sentiment     {'anger': 0.07692307692307693, 'trust': 0.3076...   \n",
+       "nrc_sentiment      {'anger': 1, 'trust': 4, 'fear': 1, 'surprise'...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nEverything gonna be alright\\nOh...   \n",
+       "popularity                                                        21   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.3814...   \n",
+       "speechiness                                                    0.131   \n",
+       "tempo                                                        173.625   \n",
+       "time_signature                                                     3   \n",
+       "track_href         https://api.spotify.com/v1/tracks/1F69leTp8WQH...   \n",
+       "track_number                                                      13   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:2BxO4VLPjzrApKTHZjpz9G   \n",
-       "valence                                                        0.284   \n",
+       "uri                             spotify:track:1F69leTp8WQHMFVQ5gOtIS   \n",
+       "valence                                                        0.478   \n",
        "\n",
-       "                                                                 266  \\\n",
-       "_id                                           6L7tmFIPKy98Js8ytCB1pT   \n",
-       "acousticness                                                  0.0207   \n",
-       "album              {'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...   \n",
-       "album_id                                      5eTqRwTGKPBUiUuN1rFaXD   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/6L7t...   \n",
+       "                                                                 457  \\\n",
+       "_id                                           3nc2vvots8KXJIssvtJvh6   \n",
+       "acousticness                                                   0.312   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      3yNf6JVyEEqvM4OqKEmZSC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/3nc2...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                    0.44   \n",
+       "ctitle                                                   mannish boy   \n",
+       "danceability                                                   0.329   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   147040   \n",
-       "energy                                                         0.932   \n",
+       "duration_ms                                                   625480   \n",
+       "energy                                                         0.742   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'USA171210006'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/6L...   \n",
-       "href               https://api.spotify.com/v1/tracks/6L7tmFIPKy98...   \n",
-       "id                                            6L7tmFIPKy98Js8ytCB1pT   \n",
-       "instrumentalness                                               0.913   \n",
-       "key                                                                9   \n",
-       "liveness                                                       0.891   \n",
-       "loudness                                                       -5.23   \n",
+       "external_ids                                {'isrc': 'GBCBR1200225'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/3n...   \n",
+       "href               https://api.spotify.com/v1/tracks/3nc2vvots8KX...   \n",
+       "id                                            3nc2vvots8KXJIssvtJvh6   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                                   0   \n",
+       "key                                                                2   \n",
+       "liveness                                                       0.777   \n",
+       "loudness                                                      -5.986   \n",
+       "lyrical_density                                             0.225427   \n",
+       "lyrics             everything gonna be alright oh yeah yeah now w...   \n",
        "mode                                                               1   \n",
-       "name                           Off The Hook - Live In Ireland / 1965   \n",
-       "popularity                                                        26   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/2b9e3ebd8aec9ab2...   \n",
-       "speechiness                                                   0.0562   \n",
-       "tempo                                                         76.844   \n",
-       "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/6L7tmFIPKy98...   \n",
-       "track_number                                                       7   \n",
+       "name                                              Mannish Boy - Live   \n",
+       "nnrc_sentiment     {'anger': 0.07692307692307693, 'trust': 0.3076...   \n",
+       "nrc_sentiment      {'anger': 1, 'trust': 4, 'fear': 1, 'surprise'...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nEverything gonna be alright\\nOh...   \n",
+       "popularity                                                         2   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.3814...   \n",
+       "speechiness                                                    0.137   \n",
+       "tempo                                                        170.818   \n",
+       "time_signature                                                     3   \n",
+       "track_href         https://api.spotify.com/v1/tracks/3nc2vvots8KX...   \n",
+       "track_number                                                       6   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:6L7tmFIPKy98Js8ytCB1pT   \n",
-       "valence                                                        0.549   \n",
+       "uri                             spotify:track:3nc2vvots8KXJIssvtJvh6   \n",
+       "valence                                                        0.517   \n",
        "\n",
-       "                                                                 267  \\\n",
-       "_id                                           2gB58ki3GMqyNsdsPpDECH   \n",
-       "acousticness                                                 0.00742   \n",
-       "album              {'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...   \n",
-       "album_id                                      5eTqRwTGKPBUiUuN1rFaXD   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/2gB5...   \n",
+       "                                                                 458  \\\n",
+       "_id                                           0cNyluZzzBVbsk2UY7Spca   \n",
+       "acousticness                                                  0.0107   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/0cNy...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                   0.438   \n",
+       "ctitle                                                   let it rock   \n",
+       "danceability                                                   0.378   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   155600   \n",
-       "energy                                                         0.912   \n",
+       "duration_ms                                                   132533   \n",
+       "energy                                                         0.983   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'USA171210008'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/2g...   \n",
-       "href               https://api.spotify.com/v1/tracks/2gB58ki3GMqy...   \n",
-       "id                                            2gB58ki3GMqyNsdsPpDECH   \n",
-       "instrumentalness                                               0.848   \n",
-       "key                                                                7   \n",
-       "liveness                                                       0.702   \n",
-       "loudness                                                      -5.511   \n",
+       "external_ids                                {'isrc': 'GBCBR1101698'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/0c...   \n",
+       "href               https://api.spotify.com/v1/tracks/0cNyluZzzBVb...   \n",
+       "id                                            0cNyluZzzBVbsk2UY7Spca   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                            0.000217   \n",
+       "key                                                                2   \n",
+       "liveness                                                       0.831   \n",
+       "loudness                                                      -5.918   \n",
+       "lyrical_density                                               1.1997   \n",
+       "lyrics             in the heat of the day down in mobile alabama ...   \n",
        "mode                                                               1   \n",
-       "name                     Little Red Rooster - Live In Ireland / 1965   \n",
-       "popularity                                                        27   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/7fd37df80648f4d8...   \n",
-       "speechiness                                                   0.0757   \n",
-       "tempo                                                          115.7   \n",
-       "time_signature                                                     3   \n",
-       "track_href         https://api.spotify.com/v1/tracks/2gB58ki3GMqy...   \n",
-       "track_number                                                       9   \n",
+       "name                                              Let It Rock - Live   \n",
+       "nnrc_sentiment     {'anger': 0.3333333333333333, 'sadness': 0.111...   \n",
+       "nrc_sentiment      {'anger': 3, 'fear': 3, 'surprise': 4, 'negati...   \n",
+       "original_lyrics    \\n\\n[Verse]\\nIn the heat of the day down in Mo...   \n",
+       "popularity                                                        20   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neutral', 'probability': {'pos': 0....   \n",
+       "speechiness                                                   0.0857   \n",
+       "tempo                                                        152.922   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/0cNyluZzzBVb...   \n",
+       "track_number                                                       1   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:2gB58ki3GMqyNsdsPpDECH   \n",
-       "valence                                                        0.431   \n",
+       "uri                             spotify:track:0cNyluZzzBVbsk2UY7Spca   \n",
+       "valence                                                        0.623   \n",
        "\n",
-       "                                                                 268  \\\n",
-       "_id                                           6C0au9ut1avz4zhryYHudG   \n",
-       "acousticness                                                  0.0184   \n",
-       "album              {'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...   \n",
-       "album_id                                      5eTqRwTGKPBUiUuN1rFaXD   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/6C0a...   \n",
+       "                                                                 459  \\\n",
+       "_id                                           6dx6G9OexgRFCulfKI4sPN   \n",
+       "acousticness                                                   0.028   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/6dx6...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                   0.245   \n",
+       "ctitle                                             all down the line   \n",
+       "danceability                                                   0.251   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   164320   \n",
-       "energy                                                         0.964   \n",
+       "duration_ms                                                   236627   \n",
+       "energy                                                         0.981   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'USA171210009'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/6C...   \n",
-       "href               https://api.spotify.com/v1/tracks/6C0au9ut1avz...   \n",
-       "id                                            6C0au9ut1avz4zhryYHudG   \n",
-       "instrumentalness                                               0.411   \n",
-       "key                                                                2   \n",
-       "liveness                                                        0.93   \n",
-       "loudness                                                      -5.626   \n",
+       "external_ids                                {'isrc': 'GBCBR1101699'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/6d...   \n",
+       "href               https://api.spotify.com/v1/tracks/6dx6G9OexgRF...   \n",
+       "id                                            6dx6G9OexgRFCulfKI4sPN   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.703   \n",
+       "key                                                                0   \n",
+       "liveness                                                       0.985   \n",
+       "loudness                                                      -5.255   \n",
+       "lyrical_density                                             0.845212   \n",
+       "lyrics             yeah heard the diesel drumming all down the li...   \n",
        "mode                                                               1   \n",
-       "name                               Route 66 - Live In Ireland / 1965   \n",
-       "popularity                                                        28   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/bb4461680e5ab01d...   \n",
-       "speechiness                                                    0.152   \n",
-       "tempo                                                        166.196   \n",
+       "name                                        All Down The Line - Live   \n",
+       "nnrc_sentiment     {'anger': 0.5, 'sadness': 0.3333333333333333, ...   \n",
+       "nrc_sentiment      {'anger': 3, 'fear': 2, 'surprise': 1, 'negati...   \n",
+       "original_lyrics    \\n\\n[Verse]\\nYeah, heard the diesel drumming a...   \n",
+       "popularity                                                        19   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.4794...   \n",
+       "speechiness                                                    0.114   \n",
+       "tempo                                                        162.735   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/6C0au9ut1avz...   \n",
-       "track_number                                                      10   \n",
+       "track_href         https://api.spotify.com/v1/tracks/6dx6G9OexgRF...   \n",
+       "track_number                                                       2   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:6C0au9ut1avz4zhryYHudG   \n",
-       "valence                                                        0.588   \n",
+       "uri                             spotify:track:6dx6G9OexgRFCulfKI4sPN   \n",
+       "valence                                                         0.59   \n",
        "\n",
-       "                                                                 269  \\\n",
-       "_id                                           1NvBOki5VmSSVelycoMo96   \n",
-       "acousticness                                                   0.002   \n",
-       "album              {'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...   \n",
-       "album_id                                      5eTqRwTGKPBUiUuN1rFaXD   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/1NvB...   \n",
+       "                                                                 460  \\\n",
+       "_id                                           6fZKfyDrl9Nph0ifIGvOxs   \n",
+       "acousticness                                                  0.0304   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/6fZK...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                   0.124   \n",
+       "ctitle                                              honky tonk women   \n",
+       "danceability                                                   0.361   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   148560   \n",
-       "energy                                                          0.92   \n",
+       "duration_ms                                                   218280   \n",
+       "energy                                                         0.957   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'USA171210010'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/1N...   \n",
-       "href               https://api.spotify.com/v1/tracks/1NvBOki5VmSS...   \n",
-       "id                                            1NvBOki5VmSSVelycoMo96   \n",
-       "instrumentalness                                               0.963   \n",
-       "key                                                                4   \n",
-       "liveness                                                       0.616   \n",
-       "loudness                                                      -4.728   \n",
+       "external_ids                                {'isrc': 'GBCBR1101700'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/6f...   \n",
+       "href               https://api.spotify.com/v1/tracks/6fZKfyDrl9Np...   \n",
+       "id                                            6fZKfyDrl9Nph0ifIGvOxs   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                              0.0209   \n",
+       "key                                                                7   \n",
+       "liveness                                                       0.967   \n",
+       "loudness                                                      -6.338   \n",
+       "lyrical_density                                             0.650541   \n",
+       "lyrics             i met a gin-soaked barroom queen in memphis sh...   \n",
        "mode                                                               1   \n",
-       "name                          I'm Moving On - Live In Ireland / 1965   \n",
-       "popularity                                                        24   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/64c62c7e8f7eb6bf...   \n",
-       "speechiness                                                    0.103   \n",
-       "tempo                                                        162.889   \n",
+       "name                                         Honky Tonk Women - Live   \n",
+       "nnrc_sentiment     {'anger': 0.2, 'trust': 0.4, 'sadness': 0.8, '...   \n",
+       "nrc_sentiment      {'anger': 1, 'trust': 2, 'fear': 5, 'negative'...   \n",
+       "original_lyrics    \\n\\nI met a gin-soaked barroom queen in Memphi...   \n",
+       "popularity                                                        21   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neutral', 'probability': {'pos': 0....   \n",
+       "speechiness                                                   0.0504   \n",
+       "tempo                                                        117.921   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/1NvBOki5VmSS...   \n",
-       "track_number                                                      11   \n",
+       "track_href         https://api.spotify.com/v1/tracks/6fZKfyDrl9Np...   \n",
+       "track_number                                                       3   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:1NvBOki5VmSSVelycoMo96   \n",
-       "valence                                                        0.244   \n",
+       "uri                             spotify:track:6fZKfyDrl9Nph0ifIGvOxs   \n",
+       "valence                                                        0.727   \n",
        "\n",
-       "                                                                 270  \\\n",
-       "_id                                           31KuT5lcyp6NlDBjp3EVTp   \n",
-       "acousticness                                                0.000283   \n",
-       "album              {'id': '5eTqRwTGKPBUiUuN1rFaXD', 'type': 'albu...   \n",
-       "album_id                                      5eTqRwTGKPBUiUuN1rFaXD   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/31Ku...   \n",
+       "                                                                 461  \\\n",
+       "_id                                           660iobQYqexXXNfRomqz3o   \n",
+       "acousticness                                                  0.0153   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/660i...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                   0.213   \n",
+       "ctitle                                                     star star   \n",
+       "danceability                                                   0.224   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   189600   \n",
-       "energy                                                         0.929   \n",
-       "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'USA171210011'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/31...   \n",
-       "href               https://api.spotify.com/v1/tracks/31KuT5lcyp6N...   \n",
-       "id                                            31KuT5lcyp6NlDBjp3EVTp   \n",
-       "instrumentalness                                               0.269   \n",
+       "duration_ms                                                   227547   \n",
+       "energy                                                          0.98   \n",
+       "explicit                                                        True   \n",
+       "external_ids                                {'isrc': 'GBCBR1101701'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/66...   \n",
+       "href               https://api.spotify.com/v1/tracks/660iobQYqexX...   \n",
+       "id                                            660iobQYqexXXNfRomqz3o   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                              0.0681   \n",
        "key                                                                9   \n",
-       "liveness                                                       0.932   \n",
-       "loudness                                                      -4.779   \n",
+       "liveness                                                       0.984   \n",
+       "loudness                                                      -5.511   \n",
+       "lyrical_density                                              1.04594   \n",
+       "lyrics             baby baby i've been so sad since you've been g...   \n",
        "mode                                                               1   \n",
-       "name                          The Last Time - Live In Ireland / 1965   \n",
-       "popularity                                                        26   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/4e412cd1b893a89b...   \n",
-       "speechiness                                                    0.059   \n",
-       "tempo                                                        180.024   \n",
+       "name                                                Star Star - Live   \n",
+       "nnrc_sentiment     {'anger': 0.1, 'trust': 0.6, 'sadness': 0.0666...   \n",
+       "nrc_sentiment      {'anger': 3, 'trust': 18, 'fear': 3, 'surprise...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nBaby, baby, I've been so sad si...   \n",
+       "popularity                                                        20   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.3255...   \n",
+       "speechiness                                                    0.112   \n",
+       "tempo                                                        159.078   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/31KuT5lcyp6N...   \n",
-       "track_number                                                      12   \n",
+       "track_href         https://api.spotify.com/v1/tracks/660iobQYqexX...   \n",
+       "track_number                                                       4   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:31KuT5lcyp6NlDBjp3EVTp   \n",
-       "valence                                                        0.484   \n",
+       "uri                             spotify:track:660iobQYqexXXNfRomqz3o   \n",
+       "valence                                                        0.646   \n",
        "\n",
-       "                                                                 271  \\\n",
-       "_id                                           3u0cZhyEPYIe9qDKPEeS4g   \n",
-       "acousticness                                                   0.395   \n",
-       "album              {'id': '3PbRKFafwE7Of8e4dTee72', 'type': 'albu...   \n",
-       "album_id                                      3PbRKFafwE7Of8e4dTee72   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/3u0c...   \n",
+       "                                                                 462  \\\n",
+       "_id                                           6AX8HMe53fbGdNNAnC8LSz   \n",
+       "acousticness                                                0.000231   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/6AX8...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
-       "available_markets                                               [GB]   \n",
-       "danceability                                                   0.262   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
+       "ctitle                                      when the whip comes down   \n",
+       "danceability                                                   0.223   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   291253   \n",
-       "energy                                                         0.835   \n",
+       "duration_ms                                                   313213   \n",
+       "energy                                                         0.991   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBCBR1500395'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/3u...   \n",
-       "href               https://api.spotify.com/v1/tracks/3u0cZhyEPYIe...   \n",
-       "id                                            3u0cZhyEPYIe9qDKPEeS4g   \n",
-       "instrumentalness                                            3.15e-05   \n",
-       "key                                                                0   \n",
-       "liveness                                                       0.761   \n",
-       "loudness                                                      -6.423   \n",
+       "external_ids                                {'isrc': 'GBCBR1101702'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/6A...   \n",
+       "href               https://api.spotify.com/v1/tracks/6AX8HMe53fbG...   \n",
+       "id                                            6AX8HMe53fbGdNNAnC8LSz   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.101   \n",
+       "key                                                                2   \n",
+       "liveness                                                       0.988   \n",
+       "loudness                                                      -5.136   \n",
+       "lyrical_density                                             0.743903   \n",
+       "lyrics             yeah mama and papa told me i was crazy to stay...   \n",
        "mode                                                               1   \n",
-       "name                                            Shine a Light - Live   \n",
-       "popularity                                                        17   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/feac308c8b6794c2...   \n",
-       "speechiness                                                   0.0687   \n",
-       "tempo                                                         78.569   \n",
+       "name                                 When The Whip Comes Down - Live   \n",
+       "nnrc_sentiment     {'anger': 0.9565217391304348, 'trust': 0.17391...   \n",
+       "nrc_sentiment      {'anger': 22, 'trust': 4, 'fear': 2, 'surprise...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nYeah, mama and papa told me\\nI ...   \n",
+       "popularity                                                        19   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.2602...   \n",
+       "speechiness                                                     0.11   \n",
+       "tempo                                                        154.808   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/3u0cZhyEPYIe...   \n",
+       "track_href         https://api.spotify.com/v1/tracks/6AX8HMe53fbG...   \n",
        "track_number                                                       5   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:3u0cZhyEPYIe9qDKPEeS4g   \n",
-       "valence                                                          0.5   \n",
+       "uri                             spotify:track:6AX8HMe53fbGdNNAnC8LSz   \n",
+       "valence                                                        0.563   \n",
        "\n",
-       "                                                                 272  \\\n",
-       "_id                                           6gVXeA52q3FbLANm6gW0Ma   \n",
-       "acousticness                                                   0.147   \n",
-       "album              {'id': '62ZT16LY1phGM0O8x5qW1z', 'type': 'albu...   \n",
-       "album_id                                      62ZT16LY1phGM0O8x5qW1z   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/6gVX...   \n",
+       "                                                                 463  \\\n",
+       "_id                                           16FlhqpxLT6WTfiLVEZ7Vv   \n",
+       "acousticness                                                  0.0248   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/16Fl...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                   0.486   \n",
+       "ctitle                                               beast of burden   \n",
+       "danceability                                                   0.579   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   144867   \n",
-       "energy                                                         0.451   \n",
+       "duration_ms                                                   388907   \n",
+       "energy                                                         0.904   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBUM70909519'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/6g...   \n",
-       "href               https://api.spotify.com/v1/tracks/6gVXeA52q3Fb...   \n",
-       "id                                            6gVXeA52q3FbLANm6gW0Ma   \n",
-       "instrumentalness                                            0.000541   \n",
-       "key                                                                9   \n",
-       "liveness                                                       0.295   \n",
-       "loudness                                                      -10.86   \n",
+       "external_ids                                {'isrc': 'GBCBR1101703'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/16...   \n",
+       "href               https://api.spotify.com/v1/tracks/16FlhqpxLT6W...   \n",
+       "id                                            16FlhqpxLT6WTfiLVEZ7Vv   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.113   \n",
+       "key                                                                4   \n",
+       "liveness                                                        0.92   \n",
+       "loudness                                                      -6.108   \n",
+       "lyrical_density                                             0.779107   \n",
+       "lyrics             i'll never be your beast of burden my back is ...   \n",
        "mode                                                               1   \n",
-       "name                    The Worst - 2009 Re-Mastered Digital Version   \n",
-       "popularity                                                        29   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/e2a9e826d6585979...   \n",
-       "speechiness                                                    0.033   \n",
-       "tempo                                                         69.393   \n",
+       "name                                          Beast Of Burden - Live   \n",
+       "nnrc_sentiment     {'anger': 0.4230769230769231, 'trust': 0.57692...   \n",
+       "nrc_sentiment      {'anger': 11, 'trust': 15, 'fear': 12, 'surpri...   \n",
+       "original_lyrics    \\n\\n[Intro]\\nI'll never be your beast of burde...   \n",
+       "popularity                                                        25   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.2596...   \n",
+       "speechiness                                                   0.0406   \n",
+       "tempo                                                        108.156   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/6gVXeA52q3Fb...   \n",
-       "track_number                                                       4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/16FlhqpxLT6W...   \n",
+       "track_number                                                       6   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:6gVXeA52q3FbLANm6gW0Ma   \n",
-       "valence                                                        0.245   \n",
-       "\n",
-       "                                                                 273  \\\n",
-       "_id                                           2rNBqTve7unpL01DuTyX3P   \n",
-       "acousticness                                                   0.474   \n",
-       "album              {'id': '4g9Jfls8z2nbQxj5PiXkiy', 'type': 'albu...   \n",
-       "album_id                                      4g9Jfls8z2nbQxj5PiXkiy   \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/2rNB...   \n",
+       "uri                             spotify:track:16FlhqpxLT6WTfiLVEZ7Vv   \n",
+       "valence                                                        0.644   \n",
+       "\n",
+       "                                                                 464  \\\n",
+       "_id                                           5UXwp4rKvtXtKJpe0iIctM   \n",
+       "acousticness                                                 0.00309   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      2gCp8kyDcL93s4kVP4VMTC   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/5UXw...   \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe   \n",
        "artist_name                                       The Rolling Stones   \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
        "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...   \n",
-       "danceability                                                   0.416   \n",
+       "ctitle                                                      miss you   \n",
+       "danceability                                                    0.47   \n",
        "disc_number                                                        1   \n",
-       "duration_ms                                                   286680   \n",
-       "energy                                                         0.672   \n",
+       "duration_ms                                                   515560   \n",
+       "energy                                                         0.946   \n",
        "explicit                                                       False   \n",
-       "external_ids                                {'isrc': 'GBUM71604631'}   \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/2r...   \n",
-       "href               https://api.spotify.com/v1/tracks/2rNBqTve7unp...   \n",
-       "id                                            2rNBqTve7unpL01DuTyX3P   \n",
-       "instrumentalness                                               0.463   \n",
-       "key                                                                4   \n",
-       "liveness                                                       0.263   \n",
-       "loudness                                                      -4.932   \n",
+       "external_ids                                {'isrc': 'GBCBR1101704'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/5U...   \n",
+       "href               https://api.spotify.com/v1/tracks/5UXwp4rKvtXt...   \n",
+       "id                                            5UXwp4rKvtXtKJpe0iIctM   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.572   \n",
+       "key                                                                9   \n",
+       "liveness                                                        0.93   \n",
+       "loudness                                                      -5.641   \n",
+       "lyrical_density                                             0.568314   \n",
+       "lyrics             i've been holding out so long i've been sleepi...   \n",
        "mode                                                               0   \n",
-       "name                                                All Of Your Love   \n",
-       "popularity                                                        49   \n",
-       "preview_url        https://p.scdn.co/mp3-preview/1d796622e5630f76...   \n",
-       "speechiness                                                   0.0329   \n",
-       "tempo                                                         75.354   \n",
+       "name                                                 Miss You - Live   \n",
+       "nnrc_sentiment     {'anger': 0.16666666666666666, 'disgust': 0.75...   \n",
+       "nrc_sentiment      {'anger': 2, 'disgust': 9, 'fear': 3, 'surpris...   \n",
+       "original_lyrics    \\n\\n[Produced by The Glimmer Twins]\\n\\n[Verse ...   \n",
+       "popularity                                                        22   \n",
+       "preview_url                                                     None   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.2422...   \n",
+       "speechiness                                                   0.0399   \n",
+       "tempo                                                         117.17   \n",
        "time_signature                                                     4   \n",
-       "track_href         https://api.spotify.com/v1/tracks/2rNBqTve7unp...   \n",
-       "track_number                                                       4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/5UXwp4rKvtXt...   \n",
+       "track_number                                                       7   \n",
        "type                                                  audio_features   \n",
-       "uri                             spotify:track:2rNBqTve7unpL01DuTyX3P   \n",
-       "valence                                                        0.303   \n",
-       "\n",
-       "                                                                 274  \n",
-       "_id                                           3Ey71ndsJ2GDMgT0hVJlPs  \n",
-       "acousticness                                                   0.173  \n",
-       "album              {'id': '4fhWcu56Bbh5wALuTouFVW', 'type': 'albu...  \n",
-       "album_id                                      4fhWcu56Bbh5wALuTouFVW  \n",
-       "analysis_url       https://api.spotify.com/v1/audio-analysis/3Ey7...  \n",
+       "uri                             spotify:track:5UXwp4rKvtXtKJpe0iIctM   \n",
+       "valence                                                        0.847   \n",
+       "\n",
+       "                                                                 465  \n",
+       "_id                                           1tiyUANzZamsPZlHhZBbOd  \n",
+       "acousticness                                                  0.0547  \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...  \n",
+       "album_id                                      34d9ClCaKRoQ8pMeJ9Gfvt  \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/1tiy...  \n",
        "artist_id                                     22bE4uQ6baNwSHPVcDxLCe  \n",
        "artist_name                                       The Rolling Stones  \n",
-       "artists            [{'id': '22bE4uQ6baNwSHPVcDxLCe', 'type': 'art...  \n",
-       "available_markets  [AD, AR, AT, AU, BE, BG, BO, CH, CL, CO, CR, C...  \n",
-       "danceability                                                   0.282  \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...  \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...  \n",
+       "ctitle                             you cant always get what you want  \n",
+       "danceability                                                   0.349  \n",
        "disc_number                                                        1  \n",
-       "duration_ms                                                   929458  \n",
-       "energy                                                         0.898  \n",
+       "duration_ms                                                   446907  \n",
+       "energy                                                         0.677  \n",
        "explicit                                                       False  \n",
-       "external_ids                                {'isrc': 'GBCBR1600265'}  \n",
-       "external_urls      {'spotify': 'https://open.spotify.com/track/3E...  \n",
-       "href               https://api.spotify.com/v1/tracks/3Ey71ndsJ2GD...  \n",
-       "id                                            3Ey71ndsJ2GDMgT0hVJlPs  \n",
-       "instrumentalness                                               0.122  \n",
-       "key                                                                9  \n",
-       "liveness                                                       0.914  \n",
-       "loudness                                                      -5.708  \n",
+       "external_ids                                {'isrc': 'GBCBR1600555'}  \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/1t...  \n",
+       "href               https://api.spotify.com/v1/tracks/1tiyUANzZams...  \n",
+       "id                                            1tiyUANzZamsPZlHhZBbOd  \n",
+       "ignore                                                           NaN  \n",
+       "instrumentalness                                             2.2e-05  \n",
+       "key                                                                0  \n",
+       "liveness                                                       0.409  \n",
+       "loudness                                                      -5.968  \n",
+       "lyrical_density                                             0.912942  \n",
+       "lyrics             i saw her today at the reception a glass of wi...  \n",
        "mode                                                               1  \n",
-       "name                                         Midnight Rambler - Live  \n",
-       "popularity                                                        34  \n",
-       "preview_url        https://p.scdn.co/mp3-preview/20b0c963ec9199d1...  \n",
-       "speechiness                                                    0.074  \n",
-       "tempo                                                        129.742  \n",
+       "name                       You Can’t Always Get What You Want - Live  \n",
+       "nnrc_sentiment     {'anger': 0.4, 'trust': 0.5, 'sadness': 0.4, '...  \n",
+       "nrc_sentiment      {'anger': 4, 'trust': 5, 'fear': 3, 'surprise'...  \n",
+       "original_lyrics    \\n\\n[Intro: London Bach Choir]\\nI saw her toda...  \n",
+       "popularity                                                        36  \n",
+       "preview_url                                                     None  \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.3829...  \n",
+       "speechiness                                                   0.0311  \n",
+       "tempo                                                        144.952  \n",
        "time_signature                                                     4  \n",
-       "track_href         https://api.spotify.com/v1/tracks/3Ey71ndsJ2GD...  \n",
-       "track_number                                                      11  \n",
+       "track_href         https://api.spotify.com/v1/tracks/1tiyUANzZams...  \n",
+       "track_number                                                      10  \n",
        "type                                                  audio_features  \n",
-       "uri                             spotify:track:3Ey71ndsJ2GDMgT0hVJlPs  \n",
-       "valence                                                        0.363  \n",
+       "uri                             spotify:track:1tiyUANzZamsPZlHhZBbOd  \n",
+       "valence                                                         0.16  \n",
        "\n",
-       "[34 rows x 275 columns]"
+       "[42 rows x 466 columns]"
       ]
      },
-     "execution_count": 33,
+     "execution_count": 19,
      "metadata": {},
      "output_type": "execute_result"
     }
     "stones_tracks.T"
    ]
   },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "How happy are the Beatles and Stones tracks?"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 38,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "<matplotlib.axes._subplots.AxesSubplot at 0x7f6dd7dddda0>"
-      ]
-     },
-     "execution_count": 38,
-     "metadata": {},
-     "output_type": "execute_result"
-    },
-    {
-     "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXUAAAEACAYAAABMEua6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEzdJREFUeJzt3X+MbHdZx/H3Uy+0aCl7+dUt3tKVUFrEHwsmpf6IDD8C\nVIVC4kVIwK5WRYNKJDG0/NMQEmP/IBCDiImFexFJQZC2CNpCLgckiICl0EApVbltL9jlR7k01Uhb\n7uMfM7uzbOfunN2ZOd8zZ96vZJI5c2f2+5wnZ5979jNzdiMzkSR1wymlC5AkTY9DXZI6xKEuSR3i\nUJekDnGoS1KHONQlqUP21XlSRBwFvgecAO7PzAsiYj/wHuAc4Cjwksz83ozqlCTVUPdM/QTQy8yn\nZuYFg8cuAz6amecBR4DLZ1GgJKm+ukM9Rjz3YuDw4P5h4EXTKkqStDd1h3oC10fEZyPidwaPnZmZ\n6wCZeRfwmFkUKEmqr1amDvxCZt4VEY8BboiIW+kPeklSi9Qa6oMzcTLzWxFxDXABsB4RZ2bmekQs\nA98c9dqIcPhL0h5kZuz2NWPjl4j40Yg4fXD/x4DnAjcD1wFrg6ddAly7Q2HeMrniiiuK19CWm72w\nF/Zi59te1TlTPxP4wOCMex/wd5l5Q0R8DnhvRPw2cAdwcM9VLIijR4+WLqE17MWQvRiyF5MbO9Qz\n82vA6ojH7waeM4uiJEl74xWlDVpbWytdQmvYiyF7MWQvJheTZDe1FojIWa8hSV0TEeQs3ijV9FRV\nVbqE1rAXQ/ZiyF5MzqEuSR1i/CJJLWT8IklyqDfJvHDIXgzZiyF7MTmHuiR1iJm6JLWQmbokyaHe\nJPPCIXsxZC+G7MXkHOqS1CFm6pLUQmbq0pxaXl4hIorclpdXSu++psyh3iDzwiF7MbS+fjv9vw7Z\n/K2/dnt4XEzOoS5JHWKmLhUWEZT7O+4x0Z9O0+yYqUuSHOpNMi8cshcaxeNicg51SeoQM3WpMDN1\njWKmLklyqDfJvHDIXmiUJo+Lrl70tW9mX1mSWmx40VeJtXedqtRmpi4VZqZeRtv7bqYuSXKoN8kc\necheaBSPi8k51CWpQ8zUpcLanu12Vdv7bqYuSXKoN8m8cMheaBSPi8k51CWpQ8zUpcLanu12Vdv7\nbqYuSXKoN8m8cMheaBSPi8k51CWpQ2pn6hFxCvA54FhmvjAiVoCrgf3AjcArMvOBEa8zU5d20PZs\nt6va3vcmMvVXA1/esn0l8MbMPA84Dly628UlSdNVa6hHxAHgV4C/2fLws4D3D+4fBl483dK6x7xw\nyF5oFI+LydU9U38T8KcMflaJiEcB383ME4N/PwY8bvrlSZJ2Y+wfyYiIXwXWM/OmiOhtPDy4bXXS\ngGhtbY2VlRUAlpaWWF1dpdfrf6mN/5kXYbvX67WqHrfbsz20sd1raLtfQ+n939huup7m+72xzYPq\nqaqKQ4cOAWzOy70Y+0ZpRPwZ8HLgAeBhwMOBa4DnAsuZeSIiLgSuyMyLRrzeN0qlHbT9Dbuuanvf\nZ/ZGaWa+LjMfn5lPAF4KHMnMlwMfAw4OnnYJcO1uF180Dz4rW1z2QqN4XExuks+pXwa8JiK+CjwS\nuGo6JUmS9srf/SIV1vYYoKva3nd/94skyaHeJPPCIXuhUTwuJudQl6QOMVOXCmt7tttVbe+7mbok\nyaHeJPPCIXuhUTwuJudQl6QOMVOXCmt7tttVbe+7mbokyaHeJPPCIXuhUTwuJudQl6QOMVOXCmt7\ntttVbe+7mbokyaHeJPPCIXuhUTwuJudQl6QOMVOXCmt7tttVbe+7mbokyaHeJPPCIXuhUTwuJrev\ndAGSFtfy8grr67eXLqNTzNSlwtqe7c509cL73ua+m6lLkhzqTTIvHLIXGq0qXcDcc6hLUoeYqUuF\nlc6VzdTLrG2mLkkay6HeIHPkIXuh0arSBcw9h7okdYiZulRY6VzZTL3M2mbqkqSxHOoNMkceshca\nrSpdwNxzqEtSh5ipS4WVzpXN1MusbaYuSRrLod4gc+Qhe6HRqtIFzD2HuiR1yNhMPSJOBT4BPJT+\nH9V4X2a+PiJWgKuB/cCNwCsy84ERrzdTl3ZQOlc2Uy+zdrFMPTO/DzwzM58KrAIXRcTTgSuBN2bm\necBx4NLdLi5Jmq5a8Utm/u/g7qn0z9YTeCbw/sHjh4EXT726jjFHHrIXGq0qXcDcqzXUI+KUiPg8\ncBfwEeA/geOZeWLwlGPA42ZToiSprl19Tj0izgA+AFwBvD0znzR4/ADwocz82RGvMVOXdlA6VzZT\nL7P2rDL1fbt5cmbeExEfBy4EliLilMHZ+gHgGyd73draGisrKwAsLS2xurpKr9cDhj+Gu+32Im8P\nbWz3Gtp+yGCwllTR3P62ZXuwteV4qKqKQ4cOAWzOy72o8+mXRwP3Z+b3IuJhwPXAnwOXAP+Qme+J\niL8CvpCZbxvxes/UB6qq2vxmXnT2Ymhxz1ZHrV8xHIBNr92ksmfqZwGHI+IU+hn8ezLzwxFxC3B1\nRLwB+Dxw1W4XlyRNl7/7RSrMM/VF3Hd/94skqQaHeoP8bPaQvdBoVekC5p5DXZI6xExdKsxMfRH3\n3UxdklSDQ71B5shD9kKjVaULmHsOdUnqEDN1qTAz9UXcdzN1SVINDvUGmSMP2QuNVpUuYO451CWp\nQ8zUpcLM1Bdx383UJUk1ONQbZI48ZC80WlW6gLnnUJekDjFTlwozU1/EfTdTlyTV4FBvkDnykL3Q\naFXpAuaeQ12SOsRMXSrMTH0R991MXZJUg0O9QebIQ/ZCo1WlC5h7DnVJ6hAzdakwM/VF3HczdUlS\nDQ71BpkjD9kLjVaVLmDuOdQlqUPM1KXCzNQXcd/N1CVJNTjUG2SOPGQvNFpVuoC551CXpA4xU5cK\nM1NfxH03U5ck1eBQb5A58pC90GhV6QLmnkNdkjrETF0qzEx9Efe9YKYeEQci4khEfDkibo6IPx48\nvj8iboiIWyPi+oh4xG4XlyRNV5345QHgNZn5k8DPA6+KiPOBy4CPZuZ5wBHg8tmV2Q3myEP2QqNV\npQuYe2OHembelZk3De7fC9wCHAAuBg4PnnYYeNGsipQk1bOrTD0iVuj/V/pTwJ2ZuX/Lv30nMx81\n4jVm6tIOzNQXcd9b8Dn1iDgdeB/w6sEZu5NaklpmX50nRcQ++gP9bzPz2sHD6xFxZmauR8Qy8M2T\nvX5tbY2VlRUAlpaWWF1dpdfrAcNsdRG2t+bIbain5PbGY22pp/T20MZ2r6HtjceaWm/c+m8GVgvW\n09T2YGvbfDh06BDA5rzci1rxS0S8E/h2Zr5my2NXAndn5pUR8Vpgf2ZeNuK1xi8DVVVtfjMvOnsx\nZPyydf2KHx74Ta7dpNnFL2OHekT8IvAJ4Gb6HUjgdcBngPcCZwN3AAcz8/iI1zvUpR041Bdx3wsO\n9Uk51KWdOdQXcd9b8EapJudns4e292J5eYWIKHJbXl4p0gONUpUuYO7VeqNUmrX19dspdda0vr7r\nkyGptYxf1AqlI4iSx2jpfTd+KbO28YskaSyHeoPM1IfshUarShcw9xzqktQhZupqhdK5spl6KYu6\n72bqkqQaHOoNMkceshcarSpdwNzzc+ratLy8Mvi8uKR5ZaauTYub7Zqpl7Oo+26mLkmqwaHeIHPk\nrarSBaiVqtIFzD0zdYlTBxGINP/M1LVpcbNdc+VyFnXfzdQlSTU41Btkpr5VVboAtVJVuoC551CX\npA4xU9cmM/VS3PdFXNtMXZI0lkO9QWbqW1WlC1ArVaULmHsOdUnqEDN1bTJTL8V9X8S1zdQlSWM5\n1Btkpr5VVboAtVJVuoC551CXpA4xU9cmM/VS3PdFXNtMXZI0lkO9QWbqW1WlC1ArVaULmHsOdUnq\nEDN1bTJTL8V9X8S1zdQlSWM51Btkpr5VVboAtVJVuoC551CXpA4xU9cmM/VS3PdFXNtMXZI01tih\nHhFXRcR6RHxxy2P7I+KGiLg1Iq6PiEfMtszmLC+vEBFFbsvLK6V3v0FV6QLUSlXpAuZenTP1dwDP\n2/bYZcBHM/M84Ahw+bQLK2V9/Xb6P5LN4vaxHf+9v7Yk7V2tTD0izgE+mJk/M9j+CvCMzFyPiGWg\nyszzT/LaucrUS+fKJXtVet8Xc+3S67vvpdZuW6b+2MxcB8jMu4DH7PHrSJKmaF8Ti6ytrbGysgLA\n0tISq6ur9Ho9YPjZ7bZs91VAb8t9prS9cf/kzy+//7vZn0m2Nx7but3k+qPqWcT1Nx5rar1x678Z\nWC1YT1Pbg60t339VVXHo0CGAzXm5F3uNX24Belvil49l5pNP8lrjl00VP3wwP2j1BYpfKn64F4v6\nY3jp9du27xU7f4/Mcu0mlY9fYnDbcB2wNrh/CXDtbhdeTL3SBbRIr3QBaqVe6QLm3tgz9Yh4N/1O\nPwpYB64ArgH+HjgbuAM4mJnHT/J6z9Trr75AZ+oPWn1B1y69vvteau1Znal7Rek2xi/GL4u1ftv2\nvcL4ZfAMryiVJHmmvk3pCGJxztQftPqCrl16ffe91NqeqUuSxnKoN6oqXUCLVKULUCtVpQuYe41c\nfKS6Th1EIJK0N2bq2yxurlx6/UVdu/T67nuptc3UJUljOdQbVZUuoEWq0gWolarSBcw9h7okdYiZ\n+jZm6ou47/a9nEXddzN1SVINDvVGVaULaJGqdAFqpap0AXPPoS5JHWKmvo2Z+iLuu30vZ1H33Uxd\nklSDQ71RVekCWqQqXYBaqSpdwNxzqEtSh5ipb2Omvoj7bt/LWdR9N1OXJNXgUG9UVbqAFqlKF6BW\nqkoXMPcc6pLUIWbq25ipL+K+2/dyFnXfzdQlSTU41BtVlS6gRarSBaiVqtIFzD2HuiR1SOsy9Xvv\nvZd77713hhXt7KyzzmIxM77S6y/q2qXXd99LrT2rTH3fnmuakXPP/WmOH/8fIpr/IeL+++9pfE1J\nmqbWDfW77/4W9913F3B642ufdtqreOCBt85whQrozfDrz5MKe6EHq/C4mIyZuiR1iEO9Ub3SBbRI\nr3QBaqVe6QLmnkNdkjrEod6oqnQBLVKVLkCtVJUuYO451CWpQxzqjeqVLqBFeqULUCv1Shcw9xzq\nktQhEw31iHh+RHwlIr4aEa+dVlHdVZUuoEWq0gWolarSBcy9PQ/16F/y+RbgecBTgJdFxPnTKqyb\nbipdQIvYC43icTGpSc7ULwBuy8zbM/N+4Grg4umU1VXHSxfQIvZCo3hcTGqSof7jwJ1bto8NHpMk\nFTLJ734Z9dvDJv6VZ/v2PYTTTjtIiV9Lc999N894haMz/vrz5GjpAtRKR0sXMPcmmZzHgMdv2T4A\nfGPUE/t/Im43/nmvNU3Jrn/b5S4cLrh2HU2uv70XJfd9kfreprVHrT/ue2SWaze48q7nYs2vu9ff\npx4RPwLcCjwb+G/gM8DLMvOW6ZUnSdqNPZ+pZ+YPIuIPgRvoZ/NXOdAlqayZ/+UjSVJzpnZF6bgL\nkSLioRFxdUTcFhH/GhGPH/V15l2NPvxJRHwpIm6KiI9ExNkl6mxC3YvTIuLXI+JERDytyfqaVKcX\nEfGSwbFxc0S8q+kam1Lje+TsiDgSETcOvk8uKlFnEyLiqohYj4gv7vCcvxjMzZsiYnXsF83MiW/0\n/3P4D+Ac4CH0ryA4f9tz/gB46+D+bwBXT2PtNt1q9uEZwGmD+7/fxT7U7cXgeacDHwc+BTytdN0F\nj4snAv8OnDHYfnTpugv24q+BVw7uPxn4Wum6Z9iPXwJWgS+e5N8vAj40uP904NPjvua0ztTrXIh0\nMcO3td9H/w3Wrhnbh8z8eGb+32Dz03T3s/11L057A3Al8P0mi2tYnV78LvCXmXkPQGZ+u+Eam1Kn\nFyeAMwb3l4CvN1hfozLzk8B3d3jKxcA7B8/9N+AREXHmTl9zWkO9zoVIm8/JzB8AxyPikVNavy12\ne0HWpcA/zbSicsb2YvCj5IHM/HCThRVQ57h4EnBeRHwyIj4VEc9rrLpm1enF64FXRMSdwD8Cf9RQ\nbW20vV9fZ8yJ4LSu8KlzIdL258SI58y72hdkRcTLgZ+jH8d00Y69iP6HdN8EXDLmNV1Q57jYRz+C\n+WX613/8S0Q8ZePMvUPq9OJlwDsy800RcSHwLvq/X2oR7foiz2mdqde5EOlO4GzY/Iz7GZm5048d\n86jWBVkR8RzgcuAFgx9Bu2hcLx5O/xu1ioivARcC13b0zdI6x8Ux4NrMPJGZR+lfA3JuM+U1qk4v\nLgXeC5CZnwZOi4hHN1Ne6xxjMDcHTnqR54ZpDfXPAk+MiHMi4qHAS4Hrtj3ngwzPyg4CR6a0dpuM\n7UNEPBV4G/DCzPxOgRqbsmMvMvOezHxsZj4hM3+C/vsLL8jMGwvVO0t1vj+uAZ4FMBhg5wL/1WiV\nzajTi9uB5wBExJOBUzv8HgP0z8ZP9lPqdcBvAgx+ajmemes7frUpvov7fPpnF7cBlw0eez3wa4P7\np9L/3/c2+t/AK6XfeZ7Ru9nj+vAR+lfg3gh8HrimdM2lerHtuUfo6Kdf6vYCeCPwJeALwMHSNZfq\nBf1PvHyS/idjbgSeXbrmGfbi3fTPvL8P3AH8FvBK4Pe2POct9D8x9IU63yNefCRJHeKfs5OkDnGo\nS1KHONQlqUMc6pLUIQ51SeoQh7okdYhDXZI6xKEuSR3y/3j8kLVGIW87AAAAAElFTkSuQmCC\n",
-      "text/plain": [
-       "<matplotlib.figure.Figure at 0x7f6dd7e18be0>"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "beatles_tracks['valence'].hist()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 35,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "<matplotlib.axes._subplots.AxesSubplot at 0x7f6de5a1f1d0>"
-      ]
-     },
-     "execution_count": 35,
-     "metadata": {},
-     "output_type": "execute_result"
-    },
-    {
-     "data": {
-      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXUAAAEACAYAAABMEua6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAGLJJREFUeJzt3X+QJHdZx/H35xI8EUg2JHpbGsgAIkZLaoMoKbF0gCgJ\nKEFLNCjCWikEfyKgEvjDE0XLWJVA+QO1JJUNagyKkgR/kUjyBaMGlctB+GEE4QJRbxVM1Gh5FbzH\nP6Z3p+9ud6d3Z6a/3+n+vKqmbrqnZ5+nn5t5tveZ6RlFBGZm1g37cidgZmaz46ZuZtYhbupmZh3i\npm5m1iFu6mZmHeKmbmbWIY2buqR9ku6SdHO1vCbpE9W6Q5KePL80zcysidN3se0rgA8DZ1TLAbw6\nIt4x86zMzGxPGh2pSzoXeA7wlr3c38zM2tG0Kb8R+AlGR+d1b5B0WNJVkh4229TMzGy3JjZ1Sc8F\n1iPiMKDaTVdExPnA1wBnA6+ZT4pmZtZUk5n604HnSXoO8HDgUZLeGhEvBoiIhyRdC7x6qztL8ofL\nmJntQURo8lYnmnikHhGvi4jHRsTjgcuA2yLixZKWASQJeD7woR1+hi8RHDx4MHsOpVxcC9fCtdj5\nsle7effLyX5H0jmMRjKHgZdP8bN64ciRI7lTKIZrMeZajLkW09tVU4+I9wDvqa4/ay4ZmZnZnvkt\niS1aXV3NnUIxXIsx12LMtZieppndNAogxbxjmJl1jSRiHi+U2uyklHKnUAzXYsy1GHMtpuembmbW\nIR6/mJkVyOMXMzNzU2+T54Vj9VosLw+QlOVy2mmPyBZbEsvLAz8ualyL6U1z8pHZTKyv38upnxXX\njuPHlS02wPr6rv+6NtuRZ+qW3eiTJnI9RvI2ddBUp4Rbd3mmbmZmbupt8rxwzLUYcy3GXIvpuamb\nmXWIZ+qWnWfqfn7YqTxTNzMzN/U2eV445lqMuRZjrsX03NTNzDqk8Uxd0j7g74D7IuJ5kgbADcBZ\nwCHgeyPic1vczzN125Fn6n5+2KnamKm/AvhIbflK4KqIeBLwAHD5boObmdlsNWrqks4FngO8pbb6\nmcAfVNevA75ttql1j+eFY67FmGsx5lpMr+mR+huBn6D6O1XS2cD9EXG8uv0+4Itnn56Zme3GxA/0\nkvRcYD0iDksabqyuLnXbDgZXV1cZDAYALC0tsbKywnA4+lEbv5n7sDwcDovKp6TlsY3lYUvLG+va\nirdV/Fomhfx/5FreWFdKPm0up5RYW1sD2OyXezHxhVJJPw+8CPgc8HDgUcCNwDcDyxFxXNKFwMGI\nuGSL+/uFUtuRXyj188NONbcXSiPidRHx2Ih4PHAZcFtEvAi4HXhBtdlLgJt2G7xvTj0q7S/XYsy1\nGHMtpjfN+9SvAF4l6R+ARwPXzCYlMzPbK3/2i2Xn8YufH3aqvY5f/M1HZlntr36pte/AgfM4evRI\nltg2P/6YgBZ5XjjmWmw4xujlqWj9MvoawbL4cTE9N3Uzsw7xTN2y6/tMPee++7lZLn+eupmZuam3\nyfPCMdeiLuVOoBh+XEzPTd3MrEM8U7fsPFP3TN1O5Zm6mZm5qbfJ88Ix16Iu5U6gGH5cTM9N3cys\nQzxTt+w8U/dM3U7lmbqZmbmpt8nzwjHXoi7lTqAYflxMz03dzKxDPFO37DxT90zdTjW3mbqk/ZLe\nJ+kuSXdLOlitv1bSJ6r1hyQ9eS+Jm5nZ7DT5jtJjwDMi4gJgBbhE0tOqm388Ii6IiKdExAfnmWgX\neF445lrUpdwJFMOPi+k1mqlHxP9UV/cz+rak49Vynq9sMTOzLTWaqUvaB7wfeALwqxHxWknXAhcy\n+uqWdwNXRMRDW9zXM3XbkWfqnqnbqeb6HaURcRy4QNIZwDskfQWjJr4u6WHAbwKvAd6w1f1XV1cZ\nDAYALC0tsbKywnA4BMZ/bnm538tjG8vDlpY31rUVr6z4pfz/e3lISom1tTWAzX65F7t+94uknwIe\njIira+u+EXh1RDxvi+19pF5JKW3+Z/ZdvRY+Ur+dE5t8e7FLe276OTI2z3e/nCPpzOr6w4GLgL+X\ntFytE/B84EO7DW5mZrM18Uhd0lcB1zH6BbAPeFtE/JykdwPnMDrUOAy8vPaCav3+PlK3HflI3TN1\nO9Vej9R98pFl56bupm6n8gd6LQC/B3fMtahLuRMohh8X03NTNzPrEI9fLDuPXzx+sVN5/GJmZm7q\nbfK8cMy1qEu5EyiGHxfTa3RGqZnZLC0vD1hfvzdb/AMHzuPo0SPZ4s+TZ+qWnWfq/Zup5/0/h0V4\nPcEzdTMzc1Nvk+eFY65FXcqdQEFS7gQWnpu6mVmHeKZu2Xmm7pl6hgw8Uzczs/K5qbfIc+Qx16Iu\n5U6gICl3AgvPTd3MrEM8U7fsPFP3TD1DBp2dqfuMUrPe2l81V+uSJl9nt1/S+yTdJeluSQer9QNJ\nd0q6R9LvSvIviAk8Rx5zLepSprjHGB0t57hsJ81u93pqYlOPiGPAMyLiAmAFuETS04Argasi4knA\nA8Dlc83UzMwm2tVMXdIXAO8FfhD4I2A5Io5LuhD46Yi4eIv7eKZuO/JMvY/7nr/upfelub5PXdI+\nSXcBR4FbgX8EHoiI49Um9wFfvNvgZmY2W43m4FXzvkDSGcA7gPO32my7+6+urjIYDABYWlpiZWWF\n4XAIjGerfViuz5FLyKe+fNllq1k/CnUsVf8OW1reWNdWvK3ivwn4sUzxcy2zze1vYjTlbSd+Kc+/\njf6wtrYGsNkv92LXb2mU9FPA/wA/yYnjl4MRcckW23v8Ukkpbf5nlqb9EUhi/ETr9xgAbufEJt9m\n7NLqnminFt0dv0xs6pLOAR6KiP+Q9HDgXcAvAC8B/jAi3ibp14APRMSvb3F/N/UF0N+5dglNvY/7\nnr/upfeleTb1rwKuYzR/3we8LSJ+TtLjgBuAs4C7gBdFxENb3N9NfQG4qefS133PX/fS+9Lcmvq0\n3NTHPH6pS3j8shHf45exhMcvI/6URjMz85G6jXj8kktf9z1/3UvvSz5SNzMzN/U2+fNO6lLuBAqS\ncidQkJQ7gYXnpm5m1iGeqRvgmXo+fd33/HUvvS95pm5mZm7qbfJMvS7lTqAgKXcCBUm5E1h4bupm\nZh3imboBnqnn09d9z1/30vuSZ+pmZuam3ibP1OtS7gQKknInUJCUO4GF56ZuZtYhnqkb4Jl6Pn3d\n9/x1L70veaZuZmaTm7qkcyXdJukjku6W9CPV+oOS7pN0qLpcPP90F5tn6nUpdwIFSbkTKEjKncDC\na/LF058DXhURhyU9Eni/pFur266OiKvnl56Zme3GXr54+kbgl4GvBx6MiKsmbO+Z+gLwTD2Xvu57\n/rqX3pdamalLGgArwPuqVT8k6bCkt0g6c7fBzcxstho39Wr08nbgFRHxIPBm4AkRsQIcBTyGmcAz\n9bqUO4GCpNwJFCTlTmDhNZmpI+l0Rg39tyLiJoCI+LfaJr8JvHO7+6+urjIYDABYWlpiZWVl8wuY\nNxqdl/Muj20sD+e8fHK8tuNvLG+sayveVvEPZ4yfa5ltbj/cavxSnn/D4ZCUEmtrawCb/XIvGs3U\nJb0V+ExEvKq2bjkijlbXXwl8TUR89xb39Ux9AXimnktf9z1/3UvvS3udqU9s6pKeDrwXuJvR/0IA\nrwO+m9F8/ThwBHhZRKxvcX839QXgpp5LX/c9f91L70tza+rTclMfSylt/tlVmvabemL8J3G/mwvc\nzonjmDZjl1b3RDu16G5T9xmlZmYd4iN1Azx+yaev+56/7qX3JR+pm5mZm3qb/D71upQ7gYKk3AkU\nJOVOYOG5qZuZdYhn6gZ4pp5PX/c9f91L70ueqZuZmZt6mzxTr0u5EyhIyp1AQVLuBBaem7qZWYd4\npm6AZ+r59HXf89e99L7kmbqZmbmpt2mnmfry8gBJ2S7tSxlilirlTqAgKXcCC6/R56nb/K2v30vu\nP0fNbPF5pl6IvDNt6O981XXvX+xR/NL7kmfqZmbmpt4mv0+9LuVOoCApdwIFSbkTWHgTm7qkcyXd\nJukjku6W9KPV+rMk3SLpHknvknTm/NM1M7OdNPk6u2VgOSIOS3ok8H7gUuD7gM9GxC9Keg1wVkRc\nscX9PVNvwDP1PsbOHb+vsUfxS+9Lc5upR8TRiDhcXX8Q+ChwLqPGfl212XXA83cb3MzMZmtXM3VJ\nA0ZfNn0ncGDji6Yj4ijwhbNOrms8U69LuRMoSMqdQEFS7gQWXuOmXo1e3g68ojpiL/tvFzOzHmp0\n8pGk0xk19N+KiJuq1euSDkTEejV3/9ft7r+6uspgMABgaWmJlZUVhsMhMD567cPycDjc9vaxjeVh\ny8t9jb+xrq14W8Wvazt+rmW2uX1jXTvxS+oPKSXW1tYANvvlXjQ6+UjSW4HPRMSrauuuBP49Iq70\nC6XT8wulfYydO35fY4/il96X5vZCqaSnA98DPFPSXZIOSboYuBL4Jkn3ABcBv7Db4H3jmXpdyp1A\nQVLuBAqSciew8CaOXyLiL4HTtrn5otmmY2Zm0/BnvxTC45c+xs4dv6+xR/FL70v+7BczM3NTb5Nn\n6nUpdwIFSbkTKEjKncDCc1M3M+sQz9QL4Zl6H2Pnjt/X2KP4pfclz9TNzMxNvU2eqdel3AkUJOVO\noCApdwILz03dzKxDPFMvhGfqfYydO35fY4/il96XPFM3MzM39TZ5pl6XcidQkJQ7gYKk3AksPDd1\nM7MO8Uy9EJ6p9zF27vh9jT2KX3pf8kzdzMzc1NvkmXpdyp1AQVLuBAqSciew8NzUzcw6ZOJMXdI1\nwLcA6xHx5GrdQeCljL+X9HUR8Wfb3N8z9QY8U+9j7Nzx+xp7FL/0vjTPmfq1wLO3WH91RDylumzZ\n0M3MrF0Tm3pE3AHcv8VNu/4N0neeqdel3AkUJOVOoCApdwILb5qZ+g9JOizpLZLOnFlGZma2ZxO/\neHobbwZ+JiJC0huAq4HLt9t4dXWVwWAAwNLSEisrKwyHQ2B89FrC8vLygPX1e3fc8flL1b/Dlpf7\nGn9jXVvxtopf13b8XMtsc/vGunbil9R/Ukqsra0BbPbLvWh08pGk84B3brxQ2vS26vaFeaE074uV\n+V846ue+u+79iz2KX3pfmvfJR6I2Q5e0XLvt24EP7TZwP6XcCRQk5U6gICl3AgVJuRNYeBPHL5Ku\nZ/S3y9mSPgUcBJ4haQU4DhwBXjbHHM3MrCF/9kuNxy993HfXvX+xR/FL70t7Hb/s9YVSM7MFtr86\niGvfgQPncfTokbn9fH9MQKtS7gQKknInUJCUO4GCpJbiHGP0l0L7l3m/w85N3cysQzxTr/FMvY/7\n7rr3L3bu+M3m+f48dTMzc1NvV8qdQEFS7gQKknInUJCUO4GF56ZuZtYhnqnXeKbex3133fsXO3d8\nz9TNzKwhN/VWpdwJFCTlTqAgKXcCBUm5E1h4bupmZh3imXqNZ+p93HfXvX+xc8f3TN3MzBpyU29V\nyp1AQVLuBAqScidQkJQ7gYXnpm5m1iGeqdd4pt7HfXfd+xc7d/zMM3VJ10hal/TB2rqzJN0i6R5J\n75J05m4Dm5nZ7DUZv1wLPPukdVcAfx4RTwJuA14768S6KeVOoCApdwIFSbkTKEjKncDCm9jUI+IO\n4P6TVl8KXFddvw54/ozzMjOzPWg0U5d0HvDOiHhytfzvEfHo2u2fjYizt7mvZ+rNomeMnTt+X2Pn\njt/X2Lnjz3em3sp3lK6urjIYDABYWlpiZWWF4XAIQEoJoJjl8Z9/bS8z4XbHn8/yxrq24pUWP9cy\nE27vR/x6/0kpsba2BrDZL/dir0fqHwWGEbEuaRm4PSLO3+a+PlLflDjxyXxC9DnHnqTt+IlxLfp+\nxHg72z8u5h27tLon2qlFd4/Um75PXdVlw83AanX9JcBNuw1sZmazN/FIXdL1jH51ng2sAweBG4Hf\nBx4DfAp4QUQ8sM39faTeLHrG2Lnj9zV27vh9jZ07/nyP1H3yUY2beh/33XXvX+zc8csYv9hMpNwJ\nFCTlTqAgKXcCBUm5E1h4bupmZh3i8UuNxy993HfXvX+xc8f3+MXMzBpyU29Vyp1AQVLuBAqScidQ\nkJQ7gYXnpm5m1iGeqdd4pt7HfXfd+xc7d3zP1M3MrCE39Val3AkUJOVOoCApdwIFSbkTWHhu6mZm\nHeKZeo1n6n3cd9e9f7Fzx/dM3czMGnJTb1XKnUBBUu4ECpJyJ1CQlDuBheembmbWIZ6p13im3sd9\nd937Fzt3fM/UzcysoamauqQjkj4g6S5JfzOrpLor5U6gICl3AgVJuRMoSMqdwMI7fcr7H2f0BdT3\nzyIZMzObzlQzdUmfBJ4aEZ/dYRvP1JtFzxg7d/y+xs4dv6+xc8cve6YewLsk/a2kl075s8zMbErT\njl++LiKOSvpC4FZJH42IO07eaHV1lcFgAMDS0hIrKysMh0MAUkoAxSyPZ3rzWN64vtXtnLTcRj45\n42+syxV/Y3ljXVvxtor/JuDHMsXPtcw2t78JWMkYv63laqnWf1JKrK2tAWz2y72Y2VsaJR0E/isi\nrj5pvccvmxInPplPiD7n2JO0HT8xrkXfxwC3s/3jYt6xS6t7op1adHf8suemLukLgH0R8aCkRwC3\nAK+PiFtO2s5NvVn0jLFzx+9r7Nzx+xo7d/z5NvVpxi8HgHdIiurn/M7JDd3MzNrlM0prPH7x+CVP\nfI9fxhIev1Rb+YxSMzPzkXqNZ+p93HfXvX+xc8f3kbqZmTXkpt6qlDuBgqTcCRQk5U6gICl3Agtv\n2pOPZur663+Pd7/7vbnTMDNbWEXN1J/4xKfy8Y8/Azhvrjlt7VbgZjxjdOz+xO9r7Nzxy32f+px8\nF/DUDHH/m1FTNzNbXJ6ptyrlTqAgKXcCBUm5EyhIyp3AwnNTNzPrEDf1Vg1zJ1CQYe4ECjLMnUBB\nhrkTWHhu6mZmHeKm3qqUO4GCpNwJFCTlTqAgKXcCC89N3cysQ9zUWzXMnUBBhrkTKMgwdwIFGeZO\nYOG5qZuZdchUTV3SxZL+XtI/SHrNrJLqrpQ7gYKk3AkUJOVOoCApdwILb89NXdI+4FeAZwNfCbxQ\n0pfPKrFuOpw7gYK4FmOuxZhrMa1pjtS/FvhYRNwbEQ8BNwCXziatrnogdwIFcS3GXIsx12Ja0zT1\nLwE+XVu+r1pnZmaZTPOBXlt9ethUH3u2f//DeMQjXslppy1N82P25Nixj3Ps2LyjHJl3gAVyJHcC\nBTmSO4GCHMmdwMLb80fvSroQ+OmIuLhavgKIiLjypO0W47vszMwKs5eP3p2mqZ8G3AM8C/gX4G+A\nF0bER/f0A83MbGp7Hr9ExP9J+mHgFkaz+Wvc0M3M8pr7Nx+ZmVl7ZnZG6aQTkSR9nqQbJH1M0l9L\neuysYpemQS1eKenDkg5LulXSY3Lk2YamJ6hJ+g5JxyU9pc382tSkFpK+s3ps3C3pt9vOsS0NniOP\nkXSbpEPV8+SSHHnOm6RrJK1L+uAO2/xS1TcPS1qZ+EMjYuoLo18OH2f05aIPY3QGwZeftM0PAG+u\nrn8XcMMsYpd2aViLbwQ+v7r+8j7XotrukcB7gL8CnpI774yPiy8F3g+cUS2fkzvvjLX4DeBl1fXz\ngU/mzntOtfh6YAX44Da3XwL8cXX9acCdk37mrI7Um5yIdClwXXX97YxeYO2iibWIiPdExP9Wi3fS\n3ff3Nz1B7WeBK4G5v6k0oya1eCnwqxHxnwAR8ZmWc2xLk1ocB86ori8B/9Rifq2JiDuA+3fY5FLg\nrdW27wPOlHRgp585q6be5ESkzW0i4v+AByQ9ekbxS7Lbk7IuB/50rhnlM7EW1Z+T50bEn7SZWAZN\nHhdfBjxJ0h2S/krSs1vLrl1NavF64HslfRr4I+BHWsqtNCfX6p+YcBA4zclHdU1ORDp5G22xTRc0\nPilL0ouAr2Y0jumiHWshScAbgZdMuE8XNHlcnM5oBPMNwGOBv5D0lRtH7h3SpBYvBK6NiDdW58T8\nNqPPmOqbXZ/kOasj9fsYPQg3nAv880nbfBp4DGy+x/2MiNjpz45F1aQWSLoIeC3wrdWfoF00qRaP\nYvRETZI+CVwI3NTRF0ubPC7uA26KiOMRcYTReSBPbCe9VjWpxeXA7wFExJ3A50s6p530inIfVd+s\nbNlP6mbV1P8W+FJJ50n6POAy4OaTtnkn4yOyFwC3zSh2aSbWQtIFwK8Dz4uIz2bIsS071iIi/jMi\nvigiHh8Rj2P0+sK3RsShTPnOU5PnyI3AMwGqBvZE4BOtZtmOJrW4F7gIQNL5wP4Ov8Ygtv8L9Wbg\nxbB5Fv8DEbG+40+b4au4FzM6svgYcEW17vXAt1TX9zP6zfsxRk/eQe5Xnuf4ivakWtzK6CzcQ8Bd\nwI25c85Vi5O2vY2OvvulaS2Aq4APAx8AXpA751y1YPSOlzsYvTPmEPCs3DnPqQ7XMzryPgZ8Cvg+\n4GXA99e2+RVG7xb6QJPnh08+MjPrEH+dnZlZh7ipm5l1iJu6mVmHuKmbmXWIm7qZWYe4qZuZdYib\nuplZh7ipm5l1yP8DII0KXpiILLYAAAAASUVORK5CYII=\n",
-      "text/plain": [
-       "<matplotlib.figure.Figure at 0x7f6de5994f28>"
-      ]
-     },
-     "metadata": {},
-     "output_type": "display_data"
-    }
-   ],
-   "source": [
-    "stones_tracks['valence'].hist()"
-   ]
-  },
   {
    "cell_type": "code",
-   "execution_count": 31,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "275"
-      ]
-     },
-     "execution_count": 31,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "tracks.find({'artist_id': stones_id, 'valence': {'$exists': True}}).count()"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Lyrics search<a name=\"lyricssearch\"></a>\n",
-    "Now to find the lyrics for each track. \n",
-    "\n",
-    "We start by searching for the Genius ID for the artists.\n",
-    "\n",
-    "Note that Genius doesn't like Python-generated requests to its API, so we set the header to pretend to be a command-line `curl` request.\n",
-    "\n",
-    "* [Top](#top)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 39,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "def genius_artist_search(artist_name, per_page=20):\n",
-    "    query = urllib.parse.urlencode({'q': artist_name,\n",
-    "                                    'per_page': str(per_page)\n",
-    "                                   })\n",
-    "    headers = {'Accept': 'application/json',\n",
-    "               'Authorization': 'Bearer ' + config['genius']['token'],\n",
-    "               'User-Agent': 'curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)'}\n",
-    "    request = urllib.request.Request('https://api.genius.com/search?{}'.format(query), \n",
-    "                                     headers=headers,\n",
-    "                                     method='GET')\n",
-    "    with urllib.request.urlopen(request) as f:\n",
-    "            response = json.loads(f.read().decode('utf-8'))\n",
-    "            return response"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 40,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "586"
-      ]
-     },
-     "execution_count": 40,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "response = genius_artist_search('the beatles')\n",
-    "beatles_genius_id = [hit['result']['primary_artist']['id'] for hit in response['response']['hits']][0]\n",
-    "beatles_genius_id"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 41,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "774"
-      ]
-     },
-     "execution_count": 41,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "response = genius_artist_search('rolling stones')\n",
-    "stones_genius_id = [hit['result']['primary_artist']['id'] for hit in response['response']['hits']][0]\n",
-    "stones_genius_id"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "We can now get the song information for each track for each artist. Note that Genius keeps lots of things to do with artists, including sleeve notes and the like. We're just after the lyrics."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 42,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "def genius_song_search(artist_id):\n",
-    "    songs = pd.DataFrame()\n",
-    "    page = 1\n",
-    "    while page:\n",
-    "        query = urllib.parse.urlencode({'page': page, 'per_page': 20})\n",
-    "        headers = {'Accept': 'application/json',\n",
-    "               'Authorization': 'Bearer ' + config['genius']['token'],\n",
-    "               'User-Agent': 'curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)'}\n",
-    "        request = urllib.request.Request('https://api.genius.com/artists/{id}/songs?{query}'.format(id=artist_id,\n",
-    "                                                                                               query=query), \n",
-    "                                     headers=headers,\n",
-    "                                     method='GET')\n",
-    "        with urllib.request.urlopen(request) as f:\n",
-    "            response = json.loads(f.read().decode('utf-8'))\n",
-    "            page = response['response']['next_page']\n",
-    "            for song in response['response']['songs']:\n",
-    "                if song['path'].endswith('lyrics'):\n",
-    "                    song['_id'] = song['id']\n",
-    "                    genius_tracks.replace_one({'_id': song['id']}, song, upsert=True)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 43,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "1071"
-      ]
-     },
-     "execution_count": 43,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "genius_song_search(beatles_genius_id)\n",
-    "genius_tracks.find().count()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 44,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "1071"
-      ]
-     },
-     "execution_count": 44,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "genius_song_search(stones_genius_id)\n",
-    "genius_tracks.find().count()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 45,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "{'_id': 1497768,\n",
-       " 'annotation_count': 1,\n",
-       " 'api_path': '/songs/1497768',\n",
-       " 'full_title': 'All Together on the Wireless Machine by\\xa0The\\xa0Beatles',\n",
-       " 'header_image_thumbnail_url': 'https://images.genius.com/ad1f59e8a03be4eb521e88015d15d6e8.200x200x1.jpg',\n",
-       " 'header_image_url': 'https://images.genius.com/ad1f59e8a03be4eb521e88015d15d6e8.200x200x1.jpg',\n",
-       " 'id': 1497768,\n",
-       " 'lyrics_owner_id': 1549345,\n",
-       " 'path': '/The-beatles-all-together-on-the-wireless-machine-lyrics',\n",
-       " 'primary_artist': {'api_path': '/artists/586',\n",
-       "  'header_image_url': 'https://images.genius.com/b82dbb78926a812abfa10886ac84c1a8.1000x523x1.jpg',\n",
-       "  'id': 586,\n",
-       "  'image_url': 'https://images.genius.com/ad1f59e8a03be4eb521e88015d15d6e8.200x200x1.jpg',\n",
-       "  'is_meme_verified': False,\n",
-       "  'is_verified': False,\n",
-       "  'name': 'The Beatles',\n",
-       "  'url': 'https://genius.com/artists/The-beatles'},\n",
-       " 'pyongs_count': None,\n",
-       " 'song_art_image_thumbnail_url': 'https://images.genius.com/ad1f59e8a03be4eb521e88015d15d6e8.200x200x1.jpg',\n",
-       " 'stats': {'hot': False, 'unreviewed_annotations': 0},\n",
-       " 'title': 'All Together on the Wireless Machine',\n",
-       " 'url': 'https://genius.com/The-beatles-all-together-on-the-wireless-machine-lyrics'}"
-      ]
-     },
-     "execution_count": 45,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "genius_tracks.find_one()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 46,
-   "metadata": {
-    "scrolled": false
-   },
+   "execution_count": 20,
+   "metadata": {
+    "scrolled": true
+   },
    "outputs": [
     {
      "data": {
       "text/html": [
        "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
        "<table border=\"1\" class=\"dataframe\">\n",
        "  <thead>\n",
        "    <tr style=\"text-align: right;\">\n",
        "      <th>8</th>\n",
        "      <th>9</th>\n",
        "      <th>...</th>\n",
-       "      <th>1061</th>\n",
-       "      <th>1062</th>\n",
-       "      <th>1063</th>\n",
-       "      <th>1064</th>\n",
-       "      <th>1065</th>\n",
-       "      <th>1066</th>\n",
-       "      <th>1067</th>\n",
-       "      <th>1068</th>\n",
-       "      <th>1069</th>\n",
-       "      <th>1070</th>\n",
+       "      <th>136</th>\n",
+       "      <th>137</th>\n",
+       "      <th>138</th>\n",
+       "      <th>139</th>\n",
+       "      <th>140</th>\n",
+       "      <th>141</th>\n",
+       "      <th>142</th>\n",
+       "      <th>143</th>\n",
+       "      <th>144</th>\n",
+       "      <th>145</th>\n",
        "    </tr>\n",
        "  </thead>\n",
        "  <tbody>\n",
        "    <tr>\n",
        "      <th>_id</th>\n",
-       "      <td>1497768</td>\n",
-       "      <td>210315</td>\n",
-       "      <td>123533</td>\n",
-       "      <td>123537</td>\n",
-       "      <td>117722</td>\n",
-       "      <td>210284</td>\n",
-       "      <td>1336394</td>\n",
-       "      <td>107915</td>\n",
-       "      <td>1308579</td>\n",
-       "      <td>123808</td>\n",
+       "      <td>6Unw1AAcpS1ZgZoRlj2jxA</td>\n",
+       "      <td>5hfzW7LG97Hxv62HHUKgaj</td>\n",
+       "      <td>64lecUR19lBSu317AzVZv3</td>\n",
+       "      <td>1CxhtUbe1o2PeMM3l5Kch6</td>\n",
+       "      <td>2H7Y8wYixrSlKJoaZ1N2yl</td>\n",
+       "      <td>3zkFTfcboFcOdno0CHCmTc</td>\n",
+       "      <td>7KKglMFf5KV0PIDSAOqfnH</td>\n",
+       "      <td>4raxzmnFq93jfKC8c3xcIv</td>\n",
+       "      <td>1gaAIZ4vGQ6QvDUgN2Xyus</td>\n",
+       "      <td>7krim8C3DpTu1ShdoZezix</td>\n",
        "      <td>...</td>\n",
-       "      <td>310483</td>\n",
-       "      <td>313269</td>\n",
-       "      <td>313043</td>\n",
-       "      <td>2389345</td>\n",
-       "      <td>1245984</td>\n",
-       "      <td>311907</td>\n",
-       "      <td>310293</td>\n",
-       "      <td>310289</td>\n",
-       "      <td>106069</td>\n",
-       "      <td>310543</td>\n",
+       "      <td>2zYmvi3w2T8a9Ckrv21bvW</td>\n",
+       "      <td>3ovbSnT5NNhl1gzMcw1NRZ</td>\n",
+       "      <td>4NUc1M0CS7b6zvWoyvibju</td>\n",
+       "      <td>4nklmaiY4gfQI3SB1sLGsd</td>\n",
+       "      <td>11qDTSr3Dj4TkPnBcIOqEJ</td>\n",
+       "      <td>4D6ZExVvYLZxhcAvifX5px</td>\n",
+       "      <td>48IEDejXX5LH8TAC3VIGpc</td>\n",
+       "      <td>2B5P22cfUadACK7jLQegU6</td>\n",
+       "      <td>6qttbImnJ5wuA8AtDKEy18</td>\n",
+       "      <td>0eECFDnWy0RdjMmJ8NOeAL</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>annotation_count</th>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>5</td>\n",
-       "      <td>4</td>\n",
-       "      <td>6</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>6</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
+       "      <th>acousticness</th>\n",
+       "      <td>0.00822</td>\n",
+       "      <td>0.0589</td>\n",
+       "      <td>0.0825</td>\n",
+       "      <td>0.102</td>\n",
+       "      <td>0.000801</td>\n",
+       "      <td>0.0955</td>\n",
+       "      <td>0.0147</td>\n",
+       "      <td>0.443</td>\n",
+       "      <td>0.313</td>\n",
+       "      <td>0.464</td>\n",
        "      <td>...</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>4</td>\n",
-       "      <td>1</td>\n",
-       "      <td>1</td>\n",
-       "      <td>4</td>\n",
-       "      <td>1</td>\n",
-       "      <td>16</td>\n",
-       "      <td>15</td>\n",
+       "      <td>0.000849</td>\n",
+       "      <td>0.704</td>\n",
+       "      <td>0.000101</td>\n",
+       "      <td>1.93e-05</td>\n",
+       "      <td>0.00281</td>\n",
+       "      <td>0.000849</td>\n",
+       "      <td>0.00968</td>\n",
+       "      <td>0.000135</td>\n",
+       "      <td>0.000465</td>\n",
+       "      <td>0.00101</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>api_path</th>\n",
-       "      <td>/songs/1497768</td>\n",
-       "      <td>/songs/210315</td>\n",
-       "      <td>/songs/123533</td>\n",
-       "      <td>/songs/123537</td>\n",
-       "      <td>/songs/117722</td>\n",
-       "      <td>/songs/210284</td>\n",
-       "      <td>/songs/1336394</td>\n",
-       "      <td>/songs/107915</td>\n",
-       "      <td>/songs/1308579</td>\n",
-       "      <td>/songs/123808</td>\n",
+       "      <th>album</th>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
        "      <td>...</td>\n",
-       "      <td>/songs/310483</td>\n",
-       "      <td>/songs/313269</td>\n",
-       "      <td>/songs/313043</td>\n",
-       "      <td>/songs/2389345</td>\n",
-       "      <td>/songs/1245984</td>\n",
-       "      <td>/songs/311907</td>\n",
-       "      <td>/songs/310293</td>\n",
-       "      <td>/songs/310289</td>\n",
-       "      <td>/songs/106069</td>\n",
-       "      <td>/songs/310543</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "      <td>{'external_urls': {'spotify': 'https://open.sp...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>album_id</th>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>...</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>1DBkJIEoeHrTX4WCBQGcCi</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>analysis_url</th>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/6Unw...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/5hfz...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/64le...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/1Cxh...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/2H7Y...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/3zkF...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/7KKg...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/4rax...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/1gaA...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/7kri...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/2zYm...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/3ovb...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/4NUc...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/4nkl...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/11qD...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/4D6Z...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/48IE...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/2B5P...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/6qtt...</td>\n",
+       "      <td>https://api.spotify.com/v1/audio-analysis/0eEC...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>artist_id</th>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>...</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "      <td>4Z8W4fKeB5YxbusRsdQVPb</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>artist_name</th>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>...</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Radiohead</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>artists</th>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "      <td>[{'external_urls': {'spotify': 'https://open.s...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>available_markets</th>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
+       "      <td>[AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>ctitle</th>\n",
+       "      <td>little by little caribou rmx</td>\n",
+       "      <td>lotus flower jacques greene rmx</td>\n",
+       "      <td>morning mr magpie nathan fake rmx</td>\n",
+       "      <td>bloom harmonic 313 rmx</td>\n",
+       "      <td>bloom mark pritchard rmx</td>\n",
+       "      <td>feral lone rmx</td>\n",
+       "      <td>morning mr magpie pearson sound scavenger rmx</td>\n",
+       "      <td>separator four tet rmx</td>\n",
+       "      <td>give up the ghost thriller houseghost remix</td>\n",
+       "      <td>codex illum sphere</td>\n",
+       "      <td>...</td>\n",
+       "      <td>stop whispering</td>\n",
+       "      <td>thinking about you</td>\n",
+       "      <td>anyone can play guitar</td>\n",
+       "      <td>ripcord</td>\n",
+       "      <td>vegetable</td>\n",
+       "      <td>prove yourself</td>\n",
+       "      <td>i cant</td>\n",
+       "      <td>lurgee</td>\n",
+       "      <td>blow out</td>\n",
+       "      <td>feral</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>danceability</th>\n",
+       "      <td>0.8</td>\n",
+       "      <td>0.629</td>\n",
+       "      <td>0.661</td>\n",
+       "      <td>0.443</td>\n",
+       "      <td>0.414</td>\n",
+       "      <td>0.761</td>\n",
+       "      <td>0.481</td>\n",
+       "      <td>0.461</td>\n",
+       "      <td>0.596</td>\n",
+       "      <td>0.441</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.212</td>\n",
+       "      <td>0.364</td>\n",
+       "      <td>0.294</td>\n",
+       "      <td>0.256</td>\n",
+       "      <td>0.384</td>\n",
+       "      <td>0.25</td>\n",
+       "      <td>0.284</td>\n",
+       "      <td>0.42</td>\n",
+       "      <td>0.284</td>\n",
+       "      <td>0.49</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>disc_number</th>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>...</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>duration_ms</th>\n",
+       "      <td>340160</td>\n",
+       "      <td>429947</td>\n",
+       "      <td>291987</td>\n",
+       "      <td>304333</td>\n",
+       "      <td>367280</td>\n",
+       "      <td>317507</td>\n",
+       "      <td>278893</td>\n",
+       "      <td>423000</td>\n",
+       "      <td>373760</td>\n",
+       "      <td>274373</td>\n",
+       "      <td>...</td>\n",
+       "      <td>325627</td>\n",
+       "      <td>161533</td>\n",
+       "      <td>217800</td>\n",
+       "      <td>189733</td>\n",
+       "      <td>192667</td>\n",
+       "      <td>145373</td>\n",
+       "      <td>253093</td>\n",
+       "      <td>187867</td>\n",
+       "      <td>282067</td>\n",
+       "      <td>192743</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>energy</th>\n",
+       "      <td>0.586</td>\n",
+       "      <td>0.592</td>\n",
+       "      <td>0.707</td>\n",
+       "      <td>0.665</td>\n",
+       "      <td>0.712</td>\n",
+       "      <td>0.877</td>\n",
+       "      <td>0.336</td>\n",
+       "      <td>0.455</td>\n",
+       "      <td>0.894</td>\n",
+       "      <td>0.575</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.696</td>\n",
+       "      <td>0.37</td>\n",
+       "      <td>0.813</td>\n",
+       "      <td>0.906</td>\n",
+       "      <td>0.717</td>\n",
+       "      <td>0.62</td>\n",
+       "      <td>0.825</td>\n",
+       "      <td>0.548</td>\n",
+       "      <td>0.719</td>\n",
+       "      <td>0.777</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>explicit</th>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>...</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "      <td>False</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>external_ids</th>\n",
+       "      <td>{'isrc': 'GBU4B1100013'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100014'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100015'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100016'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100017'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100018'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100020'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100019'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100031'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100032'}</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'isrc': 'GBAYE9300106'}</td>\n",
+       "      <td>{'isrc': 'GBAYE9200114'}</td>\n",
+       "      <td>{'isrc': 'GBAYE9300107'}</td>\n",
+       "      <td>{'isrc': 'GBAYE9300108'}</td>\n",
+       "      <td>{'isrc': 'GBAYE9300109'}</td>\n",
+       "      <td>{'isrc': 'GBAYE9200115'}</td>\n",
+       "      <td>{'isrc': 'GBAYE9300110'}</td>\n",
+       "      <td>{'isrc': 'GBAYE9200116'}</td>\n",
+       "      <td>{'isrc': 'GBAYE9300111'}</td>\n",
+       "      <td>{'isrc': 'GBU4B1100006'}</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>external_urls</th>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/6U...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/5h...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/64...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/1C...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/2H...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/3z...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/7K...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/4r...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/1g...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/7k...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/2z...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/3o...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/4N...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/4n...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/11...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/4D...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/48...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/2B...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/6q...</td>\n",
+       "      <td>{'spotify': 'https://open.spotify.com/track/0e...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>href</th>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6Unw1AAcpS1Z...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5hfzW7LG97Hx...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/64lecUR19lBS...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1CxhtUbe1o2P...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2H7Y8wYixrSl...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3zkFTfcboFcO...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/7KKglMFf5KV0...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4raxzmnFq93j...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1gaAIZ4vGQ6Q...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/7krim8C3DpTu...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2zYmvi3w2T8a...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3ovbSnT5NNhl...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4NUc1M0CS7b6...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4nklmaiY4gfQ...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/11qDTSr3Dj4T...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4D6ZExVvYLZx...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/48IEDejXX5LH...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2B5P22cfUadA...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6qttbImnJ5wu...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/0eECFDnWy0Rd...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>id</th>\n",
+       "      <td>6Unw1AAcpS1ZgZoRlj2jxA</td>\n",
+       "      <td>5hfzW7LG97Hxv62HHUKgaj</td>\n",
+       "      <td>64lecUR19lBSu317AzVZv3</td>\n",
+       "      <td>1CxhtUbe1o2PeMM3l5Kch6</td>\n",
+       "      <td>2H7Y8wYixrSlKJoaZ1N2yl</td>\n",
+       "      <td>3zkFTfcboFcOdno0CHCmTc</td>\n",
+       "      <td>7KKglMFf5KV0PIDSAOqfnH</td>\n",
+       "      <td>4raxzmnFq93jfKC8c3xcIv</td>\n",
+       "      <td>1gaAIZ4vGQ6QvDUgN2Xyus</td>\n",
+       "      <td>7krim8C3DpTu1ShdoZezix</td>\n",
+       "      <td>...</td>\n",
+       "      <td>2zYmvi3w2T8a9Ckrv21bvW</td>\n",
+       "      <td>3ovbSnT5NNhl1gzMcw1NRZ</td>\n",
+       "      <td>4NUc1M0CS7b6zvWoyvibju</td>\n",
+       "      <td>4nklmaiY4gfQI3SB1sLGsd</td>\n",
+       "      <td>11qDTSr3Dj4TkPnBcIOqEJ</td>\n",
+       "      <td>4D6ZExVvYLZxhcAvifX5px</td>\n",
+       "      <td>48IEDejXX5LH8TAC3VIGpc</td>\n",
+       "      <td>2B5P22cfUadACK7jLQegU6</td>\n",
+       "      <td>6qttbImnJ5wuA8AtDKEy18</td>\n",
+       "      <td>0eECFDnWy0RdjMmJ8NOeAL</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>ignore</th>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>full_title</th>\n",
-       "      <td>All Together on the Wireless Machine by The Be...</td>\n",
-       "      <td>A Little Rhyme by The Beatles (Ft. John &amp; Rodn...</td>\n",
-       "      <td>And I Love Her by The Beatles</td>\n",
-       "      <td>Any Time at All by The Beatles</td>\n",
-       "      <td>A Taste of Honey by The Beatles</td>\n",
-       "      <td>Beatle Greetings by The Beatles (Ft. George Ha...</td>\n",
-       "      <td>Can You Take Me Back by The Beatles</td>\n",
-       "      <td>Carry That Weight by The Beatles</td>\n",
-       "      <td>Down in Eastern Australia by The Beatles</td>\n",
-       "      <td>Everybody's Trying to Be My Baby by The Beatles</td>\n",
+       "      <th>instrumentalness</th>\n",
+       "      <td>0.773</td>\n",
+       "      <td>0.938</td>\n",
+       "      <td>0.0772</td>\n",
+       "      <td>0.937</td>\n",
+       "      <td>0.936</td>\n",
+       "      <td>0.00018</td>\n",
+       "      <td>0.834</td>\n",
+       "      <td>0.641</td>\n",
+       "      <td>0.849</td>\n",
+       "      <td>0.00509</td>\n",
        "      <td>...</td>\n",
-       "      <td>You Can't Catch Me by The Rolling Stones</td>\n",
-       "      <td>You Don't Have To Mean It by The Rolling Stones</td>\n",
-       "      <td>You Got Me Rocking by The Rolling Stones</td>\n",
-       "      <td>You Got the Silver by The Rolling Stones (Ft. ...</td>\n",
-       "      <td>Don't Look Back by The Rolling Stones</td>\n",
-       "      <td>Each and every day of the year by The Rolling ...</td>\n",
-       "      <td>I'm A King Bee by The Rolling Stones</td>\n",
-       "      <td>Little By Little by The Rolling Stones</td>\n",
-       "      <td>Brown Sugar by The Rolling Stones</td>\n",
-       "      <td>Citadel by The Rolling Stones</td>\n",
+       "      <td>0.0165</td>\n",
+       "      <td>7.71e-06</td>\n",
+       "      <td>0.000756</td>\n",
+       "      <td>0.366</td>\n",
+       "      <td>0.569</td>\n",
+       "      <td>0.0848</td>\n",
+       "      <td>0.3</td>\n",
+       "      <td>0.399</td>\n",
+       "      <td>0.382</td>\n",
+       "      <td>0.898</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>header_image_thumbnail_url</th>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
-       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
-       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/1360709432_...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://images.genius.com/560d707ac51a528c952d...</td>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://images.genius.com/4268a08d2b36372eb6e8...</td>\n",
+       "      <th>key</th>\n",
+       "      <td>2</td>\n",
+       "      <td>2</td>\n",
+       "      <td>0</td>\n",
+       "      <td>9</td>\n",
+       "      <td>0</td>\n",
+       "      <td>7</td>\n",
+       "      <td>0</td>\n",
+       "      <td>10</td>\n",
+       "      <td>4</td>\n",
+       "      <td>2</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://images.genius.com/9c0263f14c39b6df59e5...</td>\n",
-       "      <td>https://images.genius.com/eb7fd9257058b77179cb...</td>\n",
-       "      <td>https://images.genius.com/a8ed1f93846da84943a7...</td>\n",
-       "      <td>https://images.rapgenius.com/ac969979ccb91a0d2...</td>\n",
-       "      <td>https://images.genius.com/23bbf05f7ee8286a8905...</td>\n",
-       "      <td>https://images.genius.com/6c322c96140487d56076...</td>\n",
-       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
-       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
-       "      <td>https://images.genius.com/5b7d4f11893ff2fdeba7...</td>\n",
-       "      <td>https://images.genius.com/31323212a74c2a8d99eb...</td>\n",
+       "      <td>2</td>\n",
+       "      <td>7</td>\n",
+       "      <td>4</td>\n",
+       "      <td>2</td>\n",
+       "      <td>6</td>\n",
+       "      <td>0</td>\n",
+       "      <td>7</td>\n",
+       "      <td>0</td>\n",
+       "      <td>11</td>\n",
+       "      <td>7</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>header_image_url</th>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
-       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
-       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/1360709432_...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://images.genius.com/560d707ac51a528c952d...</td>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://images.genius.com/4268a08d2b36372eb6e8...</td>\n",
+       "      <th>liveness</th>\n",
+       "      <td>0.0846</td>\n",
+       "      <td>0.0951</td>\n",
+       "      <td>0.117</td>\n",
+       "      <td>0.111</td>\n",
+       "      <td>0.119</td>\n",
+       "      <td>0.611</td>\n",
+       "      <td>0.232</td>\n",
+       "      <td>0.0812</td>\n",
+       "      <td>0.115</td>\n",
+       "      <td>0.387</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://images.genius.com/9c0263f14c39b6df59e5...</td>\n",
-       "      <td>https://images.genius.com/eb7fd9257058b77179cb...</td>\n",
-       "      <td>https://images.genius.com/a8ed1f93846da84943a7...</td>\n",
-       "      <td>https://images.rapgenius.com/ac969979ccb91a0d2...</td>\n",
-       "      <td>https://images.genius.com/23bbf05f7ee8286a8905...</td>\n",
-       "      <td>https://images.genius.com/6c322c96140487d56076...</td>\n",
-       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
-       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
-       "      <td>https://images.genius.com/5b7d4f11893ff2fdeba7...</td>\n",
-       "      <td>https://images.genius.com/31323212a74c2a8d99eb...</td>\n",
+       "      <td>0.129</td>\n",
+       "      <td>0.0883</td>\n",
+       "      <td>0.333</td>\n",
+       "      <td>0.322</td>\n",
+       "      <td>0.187</td>\n",
+       "      <td>0.175</td>\n",
+       "      <td>0.118</td>\n",
+       "      <td>0.111</td>\n",
+       "      <td>0.24</td>\n",
+       "      <td>0.0896</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>id</th>\n",
-       "      <td>1497768</td>\n",
-       "      <td>210315</td>\n",
-       "      <td>123533</td>\n",
-       "      <td>123537</td>\n",
-       "      <td>117722</td>\n",
-       "      <td>210284</td>\n",
-       "      <td>1336394</td>\n",
-       "      <td>107915</td>\n",
-       "      <td>1308579</td>\n",
-       "      <td>123808</td>\n",
+       "      <th>loudness</th>\n",
+       "      <td>-9.633</td>\n",
+       "      <td>-8.405</td>\n",
+       "      <td>-7.023</td>\n",
+       "      <td>-13.055</td>\n",
+       "      <td>-7.97</td>\n",
+       "      <td>-7.806</td>\n",
+       "      <td>-12.43</td>\n",
+       "      <td>-12.403</td>\n",
+       "      <td>-9.477</td>\n",
+       "      <td>-10.58</td>\n",
        "      <td>...</td>\n",
-       "      <td>310483</td>\n",
-       "      <td>313269</td>\n",
-       "      <td>313043</td>\n",
-       "      <td>2389345</td>\n",
-       "      <td>1245984</td>\n",
-       "      <td>311907</td>\n",
-       "      <td>310293</td>\n",
-       "      <td>310289</td>\n",
-       "      <td>106069</td>\n",
-       "      <td>310543</td>\n",
+       "      <td>-10.059</td>\n",
+       "      <td>-14.134</td>\n",
+       "      <td>-10.772</td>\n",
+       "      <td>-10.436</td>\n",
+       "      <td>-8.868</td>\n",
+       "      <td>-10.915</td>\n",
+       "      <td>-10.256</td>\n",
+       "      <td>-12.298</td>\n",
+       "      <td>-10.739</td>\n",
+       "      <td>-11.521</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>lyrics</th>\n",
+       "      <th>lyrical_density</th>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>...</td>\n",
+       "      <td>0.396159</td>\n",
+       "      <td>1.15147</td>\n",
+       "      <td>0.688705</td>\n",
+       "      <td>0.479621</td>\n",
+       "      <td>0.711071</td>\n",
+       "      <td>0.749795</td>\n",
+       "      <td>0.56501</td>\n",
+       "      <td>0.399219</td>\n",
+       "      <td>0.340345</td>\n",
+       "      <td>0.0933886</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>lyrics</th>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>and the wise man said i don't want to hear you...</td>\n",
+       "      <td>been thinking about you your records are here ...</td>\n",
+       "      <td>destiny destiny protect me from the world dest...</td>\n",
+       "      <td>soul destroyed with clever toys for little boy...</td>\n",
+       "      <td>i never wanted anything but this i worked hard...</td>\n",
+       "      <td>i can't afford to breathe in this time nowhere...</td>\n",
+       "      <td>please forget the words that i just blurted ou...</td>\n",
+       "      <td>i feel better i feel better now you've gone i ...</td>\n",
+       "      <td>in my mind and nailed into my heels all the ti...</td>\n",
+       "      <td>you are not mine and i am not yours and that's...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>lyrics_owner_id</th>\n",
-       "      <td>1549345</td>\n",
-       "      <td>250962</td>\n",
-       "      <td>46871</td>\n",
-       "      <td>46871</td>\n",
-       "      <td>70799</td>\n",
-       "      <td>250962</td>\n",
-       "      <td>1549345</td>\n",
-       "      <td>116340</td>\n",
-       "      <td>1549345</td>\n",
-       "      <td>22533</td>\n",
+       "      <th>mode</th>\n",
+       "      <td>1</td>\n",
+       "      <td>0</td>\n",
+       "      <td>1</td>\n",
+       "      <td>0</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
+       "      <td>0</td>\n",
        "      <td>...</td>\n",
-       "      <td>354383</td>\n",
-       "      <td>354608</td>\n",
-       "      <td>354382</td>\n",
-       "      <td>1217557</td>\n",
-       "      <td>1549345</td>\n",
-       "      <td>354385</td>\n",
-       "      <td>354383</td>\n",
-       "      <td>354383</td>\n",
-       "      <td>16</td>\n",
-       "      <td>354608</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>0</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>0</td>\n",
+       "      <td>1</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>original_lyrics</th>\n",
+       "      <th>name</th>\n",
+       "      <td>Little By Little (Caribou Rmx)</td>\n",
+       "      <td>Lotus Flower (Jacques Greene Rmx)</td>\n",
+       "      <td>Morning Mr Magpie (Nathan Fake Rmx)</td>\n",
+       "      <td>Bloom (Harmonic 313 Rmx)</td>\n",
+       "      <td>Bloom (Mark Pritchard Rmx)</td>\n",
+       "      <td>Feral (Lone RMX)</td>\n",
+       "      <td>Morning Mr Magpie (Pearson Sound Scavenger RMX)</td>\n",
+       "      <td>Separator (Four Tet RMX)</td>\n",
+       "      <td>Give Up The Ghost (Thriller Houseghost Remix)</td>\n",
+       "      <td>Codex (Illum Sphere)</td>\n",
+       "      <td>...</td>\n",
+       "      <td>Stop Whispering</td>\n",
+       "      <td>Thinking About You</td>\n",
+       "      <td>Anyone Can Play Guitar</td>\n",
+       "      <td>Ripcord</td>\n",
+       "      <td>Vegetable</td>\n",
+       "      <td>Prove Yourself</td>\n",
+       "      <td>I Can't</td>\n",
+       "      <td>Lurgee</td>\n",
+       "      <td>Blow Out</td>\n",
+       "      <td>Feral</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>nnrc_sentiment</th>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>...</td>\n",
+       "      <td>{'anger': 0.5, 'trust': 0.375, 'sadness': 0.25...</td>\n",
+       "      <td>{'joy': 0.5714285714285714, 'trust': 0.1428571...</td>\n",
+       "      <td>{'anger': 0.5714285714285714, 'negative': 0.57...</td>\n",
+       "      <td>{'negative': 0.6666666666666666, 'anger': 1.0,...</td>\n",
+       "      <td>{'anger': 0.5, 'trust': 0.125, 'sadness': 0.25...</td>\n",
+       "      <td>{'anger': 0.0625, 'sadness': 0.0625, 'surprise...</td>\n",
+       "      <td>{'anger': 0.4, 'fear': 0.2, 'negative': 1.0, '...</td>\n",
+       "      <td>{'negative': 1.0}</td>\n",
+       "      <td>{'negative': 1.0, 'anger': 0.625, 'sadness': 0...</td>\n",
+       "      <td>{}</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>nrc_sentiment</th>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>path</th>\n",
-       "      <td>/The-beatles-all-together-on-the-wireless-mach...</td>\n",
-       "      <td>/The-beatles-a-little-rhyme-lyrics</td>\n",
-       "      <td>/The-beatles-and-i-love-her-lyrics</td>\n",
-       "      <td>/The-beatles-any-time-at-all-lyrics</td>\n",
-       "      <td>/The-beatles-a-taste-of-honey-lyrics</td>\n",
-       "      <td>/The-beatles-beatle-greetings-lyrics</td>\n",
-       "      <td>/The-beatles-can-you-take-me-back-lyrics</td>\n",
-       "      <td>/The-beatles-carry-that-weight-lyrics</td>\n",
-       "      <td>/The-beatles-down-in-eastern-australia-lyrics</td>\n",
-       "      <td>/The-beatles-everybodys-trying-to-be-my-baby-l...</td>\n",
-       "      <td>...</td>\n",
-       "      <td>/The-rolling-stones-you-cant-catch-me-lyrics</td>\n",
-       "      <td>/The-rolling-stones-you-dont-have-to-mean-it-l...</td>\n",
-       "      <td>/The-rolling-stones-you-got-me-rocking-lyrics</td>\n",
-       "      <td>/The-rolling-stones-you-got-the-silver-lyrics</td>\n",
-       "      <td>/The-rolling-stones-dont-look-back-lyrics</td>\n",
-       "      <td>/The-rolling-stones-each-and-every-day-of-the-...</td>\n",
-       "      <td>/The-rolling-stones-im-a-king-bee-lyrics</td>\n",
-       "      <td>/The-rolling-stones-little-by-little-lyrics</td>\n",
-       "      <td>/The-rolling-stones-brown-sugar-lyrics</td>\n",
-       "      <td>/The-rolling-stones-citadel-lyrics</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>primary_artist</th>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
        "      <td>...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
-       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'anger': 4, 'trust': 3, 'fear': 1, 'surprise'...</td>\n",
+       "      <td>{'joy': 4, 'trust': 1, 'positive': 7, 'surpris...</td>\n",
+       "      <td>{'anger': 4, 'negative': 4, 'joy': 5, 'trust':...</td>\n",
+       "      <td>{'negative': 2, 'anger': 3, 'positive': 1, 'sa...</td>\n",
+       "      <td>{'anger': 4, 'trust': 1, 'fear': 3, 'negative'...</td>\n",
+       "      <td>{'anger': 1, 'fear': 2, 'surprise': 1, 'negati...</td>\n",
+       "      <td>{'anger': 2, 'fear': 1, 'negative': 5, 'trust'...</td>\n",
+       "      <td>{'negative': 1}</td>\n",
+       "      <td>{'negative': 8, 'anger': 5, 'sadness': 3, 'fea...</td>\n",
+       "      <td>{}</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>pyongs_count</th>\n",
+       "      <th>original_lyrics</th>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
-       "      <td>15</td>\n",
-       "      <td>2</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
-       "      <td>1</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nAnd the wise man said I don't w...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nBeen thinking about you\\nYour r...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nDestiny, destiny protect me fro...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nSoul destroyed with clever toys...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nI never wanted anything but thi...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nI can't afford to breathe in th...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nPlease forget the words that I ...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nI feel better\\nI feel better no...</td>\n",
+       "      <td>\\n\\n[Verse 1]\\nIn my mind\\nAnd nailed into my ...</td>\n",
+       "      <td>\\n\\n[Verse]\\nYou are not mine\\nAnd I am not yo...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>popularity</th>\n",
+       "      <td>43</td>\n",
+       "      <td>43</td>\n",
+       "      <td>37</td>\n",
+       "      <td>36</td>\n",
+       "      <td>36</td>\n",
+       "      <td>35</td>\n",
+       "      <td>34</td>\n",
+       "      <td>36</td>\n",
+       "      <td>34</td>\n",
+       "      <td>33</td>\n",
+       "      <td>...</td>\n",
+       "      <td>44</td>\n",
+       "      <td>48</td>\n",
+       "      <td>45</td>\n",
+       "      <td>42</td>\n",
+       "      <td>42</td>\n",
+       "      <td>42</td>\n",
+       "      <td>41</td>\n",
+       "      <td>41</td>\n",
+       "      <td>44</td>\n",
+       "      <td>45</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>preview_url</th>\n",
+       "      <td>https://p.scdn.co/mp3-preview/0e4982f830936c3c...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/fb82884344aaffd3...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/e8aa276e76b8e753...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/686816b702063d96...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/7e51561e95c5a3aa...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/3d4ad1a19809193c...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/c62871a98cd382a0...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/d7e13aaa8cf0f949...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/19cf8afa026a7449...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/03dc62ba2d343861...</td>\n",
        "      <td>...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/397951413134fe02...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/ec90a4cef1ff0cbf...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/76e430500d399da2...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/a519caf188516bc5...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/22dd1bf01746cb6d...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/6d62fc6cd2849212...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/516d9e9499a86318...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/ae0de4e9b90a15a7...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/69a5564e6733d6d2...</td>\n",
+       "      <td>https://p.scdn.co/mp3-preview/9dc0af2fa010c41d...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>sentiment</th>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
        "      <td>NaN</td>\n",
-       "      <td>7</td>\n",
        "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.1440...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.2083...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.3734...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.3408...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.1167...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.1849...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.1502...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.2629...</td>\n",
+       "      <td>{'label': 'neg', 'probability': {'pos': 0.3796...</td>\n",
+       "      <td>{'label': 'pos', 'probability': {'pos': 0.5347...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>song_art_image_thumbnail_url</th>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
-       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
-       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/1360709432_...</td>\n",
-       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://images.genius.com/560d707ac51a528c952d...</td>\n",
-       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
-       "      <td>https://images.genius.com/4268a08d2b36372eb6e8...</td>\n",
+       "      <th>speechiness</th>\n",
+       "      <td>0.0601</td>\n",
+       "      <td>0.0327</td>\n",
+       "      <td>0.232</td>\n",
+       "      <td>0.0536</td>\n",
+       "      <td>0.0325</td>\n",
+       "      <td>0.174</td>\n",
+       "      <td>0.0674</td>\n",
+       "      <td>0.0716</td>\n",
+       "      <td>0.102</td>\n",
+       "      <td>0.0332</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://images.genius.com/9c0263f14c39b6df59e5...</td>\n",
-       "      <td>https://images.genius.com/eb7fd9257058b77179cb...</td>\n",
-       "      <td>https://images.genius.com/a8ed1f93846da84943a7...</td>\n",
-       "      <td>https://images.rapgenius.com/ac969979ccb91a0d2...</td>\n",
-       "      <td>https://images.genius.com/23bbf05f7ee8286a8905...</td>\n",
-       "      <td>https://images.genius.com/6c322c96140487d56076...</td>\n",
-       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
-       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
-       "      <td>https://images.genius.com/5b7d4f11893ff2fdeba7...</td>\n",
-       "      <td>https://images.genius.com/31323212a74c2a8d99eb...</td>\n",
+       "      <td>0.0472</td>\n",
+       "      <td>0.0331</td>\n",
+       "      <td>0.0547</td>\n",
+       "      <td>0.0548</td>\n",
+       "      <td>0.0339</td>\n",
+       "      <td>0.0611</td>\n",
+       "      <td>0.0595</td>\n",
+       "      <td>0.0268</td>\n",
+       "      <td>0.0506</td>\n",
+       "      <td>0.0974</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>stats</th>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False, 'p...</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False, 'p...</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <th>tempo</th>\n",
+       "      <td>115.62</td>\n",
+       "      <td>127.982</td>\n",
+       "      <td>139.976</td>\n",
+       "      <td>150.023</td>\n",
+       "      <td>75.007</td>\n",
+       "      <td>134.938</td>\n",
+       "      <td>132.035</td>\n",
+       "      <td>113.752</td>\n",
+       "      <td>119.968</td>\n",
+       "      <td>72.52</td>\n",
        "      <td>...</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
-       "      <td>{'unreviewed_annotations': 0, 'hot': False, 'p...</td>\n",
-       "      <td>{'unreviewed_annotations': 14, 'hot': False}</td>\n",
+       "      <td>122.37</td>\n",
+       "      <td>103.44</td>\n",
+       "      <td>150.845</td>\n",
+       "      <td>137.949</td>\n",
+       "      <td>105.852</td>\n",
+       "      <td>114.098</td>\n",
+       "      <td>106.108</td>\n",
+       "      <td>101.9</td>\n",
+       "      <td>141.539</td>\n",
+       "      <td>135.991</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>title</th>\n",
-       "      <td>All Together on the Wireless Machine</td>\n",
-       "      <td>A Little Rhyme</td>\n",
-       "      <td>And I Love Her</td>\n",
-       "      <td>Any Time at All</td>\n",
-       "      <td>A Taste of Honey</td>\n",
-       "      <td>Beatle Greetings</td>\n",
-       "      <td>Can You Take Me Back</td>\n",
-       "      <td>Carry That Weight</td>\n",
-       "      <td>Down in Eastern Australia</td>\n",
-       "      <td>Everybody's Trying to Be My Baby</td>\n",
+       "      <th>time_signature</th>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>3</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>1</td>\n",
        "      <td>...</td>\n",
-       "      <td>You Can't Catch Me</td>\n",
-       "      <td>You Don't Have To Mean It</td>\n",
-       "      <td>You Got Me Rocking</td>\n",
-       "      <td>You Got the Silver</td>\n",
-       "      <td>Don't Look Back</td>\n",
-       "      <td>Each and every day of the year</td>\n",
-       "      <td>I'm A King Bee</td>\n",
-       "      <td>Little By Little</td>\n",
-       "      <td>Brown Sugar</td>\n",
-       "      <td>Citadel</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
+       "      <td>4</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>url</th>\n",
-       "      <td>https://genius.com/The-beatles-all-together-on...</td>\n",
-       "      <td>https://genius.com/The-beatles-a-little-rhyme-...</td>\n",
-       "      <td>https://genius.com/The-beatles-and-i-love-her-...</td>\n",
-       "      <td>https://genius.com/The-beatles-any-time-at-all...</td>\n",
-       "      <td>https://genius.com/The-beatles-a-taste-of-hone...</td>\n",
-       "      <td>https://genius.com/The-beatles-beatle-greeting...</td>\n",
-       "      <td>https://genius.com/The-beatles-can-you-take-me...</td>\n",
-       "      <td>https://genius.com/The-beatles-carry-that-weig...</td>\n",
-       "      <td>https://genius.com/The-beatles-down-in-eastern...</td>\n",
-       "      <td>https://genius.com/The-beatles-everybodys-tryi...</td>\n",
+       "      <th>track_href</th>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6Unw1AAcpS1Z...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/5hfzW7LG97Hx...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/64lecUR19lBS...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1CxhtUbe1o2P...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2H7Y8wYixrSl...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3zkFTfcboFcO...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/7KKglMFf5KV0...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4raxzmnFq93j...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/1gaAIZ4vGQ6Q...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/7krim8C3DpTu...</td>\n",
        "      <td>...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-you-cant...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-you-dont...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-you-got-...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-you-got-...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-dont-loo...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-each-and...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-im-a-kin...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-little-b...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-brown-su...</td>\n",
-       "      <td>https://genius.com/The-rolling-stones-citadel-...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2zYmvi3w2T8a...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/3ovbSnT5NNhl...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4NUc1M0CS7b6...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4nklmaiY4gfQ...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/11qDTSr3Dj4T...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/4D6ZExVvYLZx...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/48IEDejXX5LH...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/2B5P22cfUadA...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/6qttbImnJ5wu...</td>\n",
+       "      <td>https://api.spotify.com/v1/tracks/0eECFDnWy0Rd...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>track_number</th>\n",
+       "      <td>1</td>\n",
+       "      <td>2</td>\n",
+       "      <td>3</td>\n",
+       "      <td>4</td>\n",
+       "      <td>5</td>\n",
+       "      <td>6</td>\n",
+       "      <td>7</td>\n",
+       "      <td>8</td>\n",
+       "      <td>9</td>\n",
+       "      <td>10</td>\n",
+       "      <td>...</td>\n",
+       "      <td>4</td>\n",
+       "      <td>5</td>\n",
+       "      <td>6</td>\n",
+       "      <td>7</td>\n",
+       "      <td>8</td>\n",
+       "      <td>9</td>\n",
+       "      <td>10</td>\n",
+       "      <td>11</td>\n",
+       "      <td>12</td>\n",
+       "      <td>4</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>type</th>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>...</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "      <td>audio_features</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>uri</th>\n",
+       "      <td>spotify:track:6Unw1AAcpS1ZgZoRlj2jxA</td>\n",
+       "      <td>spotify:track:5hfzW7LG97Hxv62HHUKgaj</td>\n",
+       "      <td>spotify:track:64lecUR19lBSu317AzVZv3</td>\n",
+       "      <td>spotify:track:1CxhtUbe1o2PeMM3l5Kch6</td>\n",
+       "      <td>spotify:track:2H7Y8wYixrSlKJoaZ1N2yl</td>\n",
+       "      <td>spotify:track:3zkFTfcboFcOdno0CHCmTc</td>\n",
+       "      <td>spotify:track:7KKglMFf5KV0PIDSAOqfnH</td>\n",
+       "      <td>spotify:track:4raxzmnFq93jfKC8c3xcIv</td>\n",
+       "      <td>spotify:track:1gaAIZ4vGQ6QvDUgN2Xyus</td>\n",
+       "      <td>spotify:track:7krim8C3DpTu1ShdoZezix</td>\n",
+       "      <td>...</td>\n",
+       "      <td>spotify:track:2zYmvi3w2T8a9Ckrv21bvW</td>\n",
+       "      <td>spotify:track:3ovbSnT5NNhl1gzMcw1NRZ</td>\n",
+       "      <td>spotify:track:4NUc1M0CS7b6zvWoyvibju</td>\n",
+       "      <td>spotify:track:4nklmaiY4gfQI3SB1sLGsd</td>\n",
+       "      <td>spotify:track:11qDTSr3Dj4TkPnBcIOqEJ</td>\n",
+       "      <td>spotify:track:4D6ZExVvYLZxhcAvifX5px</td>\n",
+       "      <td>spotify:track:48IEDejXX5LH8TAC3VIGpc</td>\n",
+       "      <td>spotify:track:2B5P22cfUadACK7jLQegU6</td>\n",
+       "      <td>spotify:track:6qttbImnJ5wuA8AtDKEy18</td>\n",
+       "      <td>spotify:track:0eECFDnWy0RdjMmJ8NOeAL</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>valence</th>\n",
+       "      <td>0.126</td>\n",
+       "      <td>0.169</td>\n",
+       "      <td>0.846</td>\n",
+       "      <td>0.185</td>\n",
+       "      <td>0.286</td>\n",
+       "      <td>0.222</td>\n",
+       "      <td>0.0901</td>\n",
+       "      <td>0.375</td>\n",
+       "      <td>0.143</td>\n",
+       "      <td>0.0678</td>\n",
+       "      <td>...</td>\n",
+       "      <td>0.298</td>\n",
+       "      <td>0.421</td>\n",
+       "      <td>0.554</td>\n",
+       "      <td>0.254</td>\n",
+       "      <td>0.42</td>\n",
+       "      <td>0.319</td>\n",
+       "      <td>0.276</td>\n",
+       "      <td>0.408</td>\n",
+       "      <td>0.289</td>\n",
+       "      <td>0.729</td>\n",
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
-       "<p>18 rows × 1071 columns</p>\n",
+       "<p>42 rows × 146 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
-       "                                                                           0     \\\n",
-       "_id                                                                     1497768   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                         /songs/1497768   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                    All Together on the Wireless Machine by The Be...   \n",
-       "header_image_thumbnail_url    https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "header_image_url              https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "id                                                                      1497768   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                         1549345   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                          /The-beatles-all-together-on-the-wireless-mach...   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                      All Together on the Wireless Machine   \n",
-       "url                           https://genius.com/The-beatles-all-together-on...   \n",
-       "\n",
-       "                                                                           1     \\\n",
-       "_id                                                                      210315   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                          /songs/210315   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                    A Little Rhyme by The Beatles (Ft. John & Rodn...   \n",
-       "header_image_thumbnail_url    https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
-       "header_image_url              https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
-       "id                                                                       210315   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          250962   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                         /The-beatles-a-little-rhyme-lyrics   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                            A Little Rhyme   \n",
-       "url                           https://genius.com/The-beatles-a-little-rhyme-...   \n",
+       "                                                                 0    \\\n",
+       "_id                                           6Unw1AAcpS1ZgZoRlj2jxA   \n",
+       "acousticness                                                 0.00822   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/6Unw...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                  little by little caribou rmx   \n",
+       "danceability                                                     0.8   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   340160   \n",
+       "energy                                                         0.586   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100013'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/6U...   \n",
+       "href               https://api.spotify.com/v1/tracks/6Unw1AAcpS1Z...   \n",
+       "id                                            6Unw1AAcpS1ZgZoRlj2jxA   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.773   \n",
+       "key                                                                2   \n",
+       "liveness                                                      0.0846   \n",
+       "loudness                                                      -9.633   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               1   \n",
+       "name                                  Little By Little (Caribou Rmx)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        43   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/0e4982f830936c3c...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0601   \n",
+       "tempo                                                         115.62   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/6Unw1AAcpS1Z...   \n",
+       "track_number                                                       1   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:6Unw1AAcpS1ZgZoRlj2jxA   \n",
+       "valence                                                        0.126   \n",
        "\n",
-       "                                                                           2     \\\n",
-       "_id                                                                      123533   \n",
-       "annotation_count                                                              5   \n",
-       "api_path                                                          /songs/123533   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                                        And I Love Her by The Beatles   \n",
-       "header_image_thumbnail_url    https://images.genius.com/68c11c7f5b6b66194d77...   \n",
-       "header_image_url              https://images.genius.com/68c11c7f5b6b66194d77...   \n",
-       "id                                                                       123533   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                           46871   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                         /The-beatles-and-i-love-her-lyrics   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                 15   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/68c11c7f5b6b66194d77...   \n",
-       "stats                         {'unreviewed_annotations': 0, 'hot': False, 'p...   \n",
-       "title                                                            And I Love Her   \n",
-       "url                           https://genius.com/The-beatles-and-i-love-her-...   \n",
+       "                                                                 1    \\\n",
+       "_id                                           5hfzW7LG97Hxv62HHUKgaj   \n",
+       "acousticness                                                  0.0589   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/5hfz...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                               lotus flower jacques greene rmx   \n",
+       "danceability                                                   0.629   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   429947   \n",
+       "energy                                                         0.592   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100014'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/5h...   \n",
+       "href               https://api.spotify.com/v1/tracks/5hfzW7LG97Hx...   \n",
+       "id                                            5hfzW7LG97Hxv62HHUKgaj   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.938   \n",
+       "key                                                                2   \n",
+       "liveness                                                      0.0951   \n",
+       "loudness                                                      -8.405   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               0   \n",
+       "name                               Lotus Flower (Jacques Greene Rmx)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        43   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/fb82884344aaffd3...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0327   \n",
+       "tempo                                                        127.982   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/5hfzW7LG97Hx...   \n",
+       "track_number                                                       2   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:5hfzW7LG97Hxv62HHUKgaj   \n",
+       "valence                                                        0.169   \n",
        "\n",
-       "                                                                           3     \\\n",
-       "_id                                                                      123537   \n",
-       "annotation_count                                                              4   \n",
-       "api_path                                                          /songs/123537   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                                       Any Time at All by The Beatles   \n",
-       "header_image_thumbnail_url    https://images.genius.com/68c11c7f5b6b66194d77...   \n",
-       "header_image_url              https://images.genius.com/68c11c7f5b6b66194d77...   \n",
-       "id                                                                       123537   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                           46871   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                        /The-beatles-any-time-at-all-lyrics   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                  2   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/68c11c7f5b6b66194d77...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                           Any Time at All   \n",
-       "url                           https://genius.com/The-beatles-any-time-at-all...   \n",
+       "                                                                 2    \\\n",
+       "_id                                           64lecUR19lBSu317AzVZv3   \n",
+       "acousticness                                                  0.0825   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/64le...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                             morning mr magpie nathan fake rmx   \n",
+       "danceability                                                   0.661   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   291987   \n",
+       "energy                                                         0.707   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100015'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/64...   \n",
+       "href               https://api.spotify.com/v1/tracks/64lecUR19lBS...   \n",
+       "id                                            64lecUR19lBSu317AzVZv3   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                              0.0772   \n",
+       "key                                                                0   \n",
+       "liveness                                                       0.117   \n",
+       "loudness                                                      -7.023   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               1   \n",
+       "name                             Morning Mr Magpie (Nathan Fake Rmx)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        37   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/e8aa276e76b8e753...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                    0.232   \n",
+       "tempo                                                        139.976   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/64lecUR19lBS...   \n",
+       "track_number                                                       3   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:64lecUR19lBSu317AzVZv3   \n",
+       "valence                                                        0.846   \n",
        "\n",
-       "                                                                           4     \\\n",
-       "_id                                                                      117722   \n",
-       "annotation_count                                                              6   \n",
-       "api_path                                                          /songs/117722   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                                      A Taste of Honey by The Beatles   \n",
-       "header_image_thumbnail_url    https://s3.amazonaws.com/rapgenius/1360709432_...   \n",
-       "header_image_url              https://s3.amazonaws.com/rapgenius/1360709432_...   \n",
-       "id                                                                       117722   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                           70799   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                       /The-beatles-a-taste-of-honey-lyrics   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://s3.amazonaws.com/rapgenius/1360709432_...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                          A Taste of Honey   \n",
-       "url                           https://genius.com/The-beatles-a-taste-of-hone...   \n",
+       "                                                                 3    \\\n",
+       "_id                                           1CxhtUbe1o2PeMM3l5Kch6   \n",
+       "acousticness                                                   0.102   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/1Cxh...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                        bloom harmonic 313 rmx   \n",
+       "danceability                                                   0.443   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   304333   \n",
+       "energy                                                         0.665   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100016'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/1C...   \n",
+       "href               https://api.spotify.com/v1/tracks/1CxhtUbe1o2P...   \n",
+       "id                                            1CxhtUbe1o2PeMM3l5Kch6   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.937   \n",
+       "key                                                                9   \n",
+       "liveness                                                       0.111   \n",
+       "loudness                                                     -13.055   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               0   \n",
+       "name                                        Bloom (Harmonic 313 Rmx)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        36   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/686816b702063d96...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0536   \n",
+       "tempo                                                        150.023   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/1CxhtUbe1o2P...   \n",
+       "track_number                                                       4   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:1CxhtUbe1o2PeMM3l5Kch6   \n",
+       "valence                                                        0.185   \n",
        "\n",
-       "                                                                           5     \\\n",
-       "_id                                                                      210284   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                          /songs/210284   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                    Beatle Greetings by The Beatles (Ft. George Ha...   \n",
-       "header_image_thumbnail_url    https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
-       "header_image_url              https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
-       "id                                                                       210284   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          250962   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                       /The-beatles-beatle-greetings-lyrics   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                          Beatle Greetings   \n",
-       "url                           https://genius.com/The-beatles-beatle-greeting...   \n",
+       "                                                                 4    \\\n",
+       "_id                                           2H7Y8wYixrSlKJoaZ1N2yl   \n",
+       "acousticness                                                0.000801   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/2H7Y...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                      bloom mark pritchard rmx   \n",
+       "danceability                                                   0.414   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   367280   \n",
+       "energy                                                         0.712   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100017'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/2H...   \n",
+       "href               https://api.spotify.com/v1/tracks/2H7Y8wYixrSl...   \n",
+       "id                                            2H7Y8wYixrSlKJoaZ1N2yl   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.936   \n",
+       "key                                                                0   \n",
+       "liveness                                                       0.119   \n",
+       "loudness                                                       -7.97   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               1   \n",
+       "name                                      Bloom (Mark Pritchard Rmx)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        36   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/7e51561e95c5a3aa...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0325   \n",
+       "tempo                                                         75.007   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/2H7Y8wYixrSl...   \n",
+       "track_number                                                       5   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:2H7Y8wYixrSlKJoaZ1N2yl   \n",
+       "valence                                                        0.286   \n",
        "\n",
-       "                                                                           6     \\\n",
-       "_id                                                                     1336394   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                         /songs/1336394   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                                  Can You Take Me Back by The Beatles   \n",
-       "header_image_thumbnail_url    https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "header_image_url              https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "id                                                                      1336394   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                         1549345   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                   /The-beatles-can-you-take-me-back-lyrics   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                      Can You Take Me Back   \n",
-       "url                           https://genius.com/The-beatles-can-you-take-me...   \n",
+       "                                                                 5    \\\n",
+       "_id                                           3zkFTfcboFcOdno0CHCmTc   \n",
+       "acousticness                                                  0.0955   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/3zkF...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                                feral lone rmx   \n",
+       "danceability                                                   0.761   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   317507   \n",
+       "energy                                                         0.877   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100018'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/3z...   \n",
+       "href               https://api.spotify.com/v1/tracks/3zkFTfcboFcO...   \n",
+       "id                                            3zkFTfcboFcOdno0CHCmTc   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                             0.00018   \n",
+       "key                                                                7   \n",
+       "liveness                                                       0.611   \n",
+       "loudness                                                      -7.806   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               1   \n",
+       "name                                                Feral (Lone RMX)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        35   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/3d4ad1a19809193c...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                    0.174   \n",
+       "tempo                                                        134.938   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/3zkFTfcboFcO...   \n",
+       "track_number                                                       6   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:3zkFTfcboFcOdno0CHCmTc   \n",
+       "valence                                                        0.222   \n",
        "\n",
-       "                                                                           7     \\\n",
-       "_id                                                                      107915   \n",
-       "annotation_count                                                              6   \n",
-       "api_path                                                          /songs/107915   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                                     Carry That Weight by The Beatles   \n",
-       "header_image_thumbnail_url    https://images.genius.com/560d707ac51a528c952d...   \n",
-       "header_image_url              https://images.genius.com/560d707ac51a528c952d...   \n",
-       "id                                                                       107915   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          116340   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                      /The-beatles-carry-that-weight-lyrics   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                  1   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/560d707ac51a528c952d...   \n",
-       "stats                         {'unreviewed_annotations': 0, 'hot': False, 'p...   \n",
-       "title                                                         Carry That Weight   \n",
-       "url                           https://genius.com/The-beatles-carry-that-weig...   \n",
+       "                                                                 6    \\\n",
+       "_id                                           7KKglMFf5KV0PIDSAOqfnH   \n",
+       "acousticness                                                  0.0147   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/7KKg...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                 morning mr magpie pearson sound scavenger rmx   \n",
+       "danceability                                                   0.481   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   278893   \n",
+       "energy                                                         0.336   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100020'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/7K...   \n",
+       "href               https://api.spotify.com/v1/tracks/7KKglMFf5KV0...   \n",
+       "id                                            7KKglMFf5KV0PIDSAOqfnH   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.834   \n",
+       "key                                                                0   \n",
+       "liveness                                                       0.232   \n",
+       "loudness                                                      -12.43   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               1   \n",
+       "name                 Morning Mr Magpie (Pearson Sound Scavenger RMX)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        34   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/c62871a98cd382a0...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0674   \n",
+       "tempo                                                        132.035   \n",
+       "time_signature                                                     3   \n",
+       "track_href         https://api.spotify.com/v1/tracks/7KKglMFf5KV0...   \n",
+       "track_number                                                       7   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:7KKglMFf5KV0PIDSAOqfnH   \n",
+       "valence                                                       0.0901   \n",
        "\n",
-       "                                                                           8     \\\n",
-       "_id                                                                     1308579   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                         /songs/1308579   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                             Down in Eastern Australia by The Beatles   \n",
-       "header_image_thumbnail_url    https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "header_image_url              https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "id                                                                      1308579   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                         1549345   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                              /The-beatles-down-in-eastern-australia-lyrics   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                 Down in Eastern Australia   \n",
-       "url                           https://genius.com/The-beatles-down-in-eastern...   \n",
+       "                                                                 7    \\\n",
+       "_id                                           4raxzmnFq93jfKC8c3xcIv   \n",
+       "acousticness                                                   0.443   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/4rax...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                        separator four tet rmx   \n",
+       "danceability                                                   0.461   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   423000   \n",
+       "energy                                                         0.455   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100019'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/4r...   \n",
+       "href               https://api.spotify.com/v1/tracks/4raxzmnFq93j...   \n",
+       "id                                            4raxzmnFq93jfKC8c3xcIv   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.641   \n",
+       "key                                                               10   \n",
+       "liveness                                                      0.0812   \n",
+       "loudness                                                     -12.403   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               0   \n",
+       "name                                        Separator (Four Tet RMX)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        36   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/d7e13aaa8cf0f949...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0716   \n",
+       "tempo                                                        113.752   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/4raxzmnFq93j...   \n",
+       "track_number                                                       8   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:4raxzmnFq93jfKC8c3xcIv   \n",
+       "valence                                                        0.375   \n",
        "\n",
-       "                                                                           9     \\\n",
-       "_id                                                                      123808   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                          /songs/123808   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                      Everybody's Trying to Be My Baby by The Beatles   \n",
-       "header_image_thumbnail_url    https://images.genius.com/4268a08d2b36372eb6e8...   \n",
-       "header_image_url              https://images.genius.com/4268a08d2b36372eb6e8...   \n",
-       "id                                                                       123808   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                           22533   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                          /The-beatles-everybodys-trying-to-be-my-baby-l...   \n",
-       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/4268a08d2b36372eb6e8...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                          Everybody's Trying to Be My Baby   \n",
-       "url                           https://genius.com/The-beatles-everybodys-tryi...   \n",
+       "                                                                 8    \\\n",
+       "_id                                           1gaAIZ4vGQ6QvDUgN2Xyus   \n",
+       "acousticness                                                   0.313   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/1gaA...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                   give up the ghost thriller houseghost remix   \n",
+       "danceability                                                   0.596   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   373760   \n",
+       "energy                                                         0.894   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100031'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/1g...   \n",
+       "href               https://api.spotify.com/v1/tracks/1gaAIZ4vGQ6Q...   \n",
+       "id                                            1gaAIZ4vGQ6QvDUgN2Xyus   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.849   \n",
+       "key                                                                4   \n",
+       "liveness                                                       0.115   \n",
+       "loudness                                                      -9.477   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               0   \n",
+       "name                   Give Up The Ghost (Thriller Houseghost Remix)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        34   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/19cf8afa026a7449...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                    0.102   \n",
+       "tempo                                                        119.968   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/1gaAIZ4vGQ6Q...   \n",
+       "track_number                                                       9   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:1gaAIZ4vGQ6QvDUgN2Xyus   \n",
+       "valence                                                        0.143   \n",
        "\n",
-       "                                                    ...                          \\\n",
-       "_id                                                 ...                           \n",
-       "annotation_count                                    ...                           \n",
-       "api_path                                            ...                           \n",
-       "ctitle                                              ...                           \n",
-       "full_title                                          ...                           \n",
-       "header_image_thumbnail_url                          ...                           \n",
-       "header_image_url                                    ...                           \n",
-       "id                                                  ...                           \n",
-       "lyrics                                              ...                           \n",
-       "lyrics_owner_id                                     ...                           \n",
-       "original_lyrics                                     ...                           \n",
-       "path                                                ...                           \n",
-       "primary_artist                                      ...                           \n",
-       "pyongs_count                                        ...                           \n",
-       "song_art_image_thumbnail_url                        ...                           \n",
-       "stats                                               ...                           \n",
-       "title                                               ...                           \n",
-       "url                                                 ...                           \n",
+       "                                                                 9    \\\n",
+       "_id                                           7krim8C3DpTu1ShdoZezix   \n",
+       "acousticness                                                   0.464   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      47xaqCsJcYFWqD1gwujl1T   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/7kri...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                            codex illum sphere   \n",
+       "danceability                                                   0.441   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   274373   \n",
+       "energy                                                         0.575   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBU4B1100032'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/7k...   \n",
+       "href               https://api.spotify.com/v1/tracks/7krim8C3DpTu...   \n",
+       "id                                            7krim8C3DpTu1ShdoZezix   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                             0.00509   \n",
+       "key                                                                2   \n",
+       "liveness                                                       0.387   \n",
+       "loudness                                                      -10.58   \n",
+       "lyrical_density                                                  NaN   \n",
+       "lyrics                                                           NaN   \n",
+       "mode                                                               0   \n",
+       "name                                            Codex (Illum Sphere)   \n",
+       "nnrc_sentiment                                                   NaN   \n",
+       "nrc_sentiment                                                    NaN   \n",
+       "original_lyrics                                                  NaN   \n",
+       "popularity                                                        33   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/03dc62ba2d343861...   \n",
+       "sentiment                                                        NaN   \n",
+       "speechiness                                                   0.0332   \n",
+       "tempo                                                          72.52   \n",
+       "time_signature                                                     1   \n",
+       "track_href         https://api.spotify.com/v1/tracks/7krim8C3DpTu...   \n",
+       "track_number                                                      10   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:7krim8C3DpTu1ShdoZezix   \n",
+       "valence                                                       0.0678   \n",
        "\n",
-       "                                                                           1061  \\\n",
-       "_id                                                                      310483   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                          /songs/310483   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                             You Can't Catch Me by The Rolling Stones   \n",
-       "header_image_thumbnail_url    https://images.genius.com/9c0263f14c39b6df59e5...   \n",
-       "header_image_url              https://images.genius.com/9c0263f14c39b6df59e5...   \n",
-       "id                                                                       310483   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          354383   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                               /The-rolling-stones-you-cant-catch-me-lyrics   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/9c0263f14c39b6df59e5...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                        You Can't Catch Me   \n",
-       "url                           https://genius.com/The-rolling-stones-you-cant...   \n",
+       "                                         ...                          \\\n",
+       "_id                                      ...                           \n",
+       "acousticness                             ...                           \n",
+       "album                                    ...                           \n",
+       "album_id                                 ...                           \n",
+       "analysis_url                             ...                           \n",
+       "artist_id                                ...                           \n",
+       "artist_name                              ...                           \n",
+       "artists                                  ...                           \n",
+       "available_markets                        ...                           \n",
+       "ctitle                                   ...                           \n",
+       "danceability                             ...                           \n",
+       "disc_number                              ...                           \n",
+       "duration_ms                              ...                           \n",
+       "energy                                   ...                           \n",
+       "explicit                                 ...                           \n",
+       "external_ids                             ...                           \n",
+       "external_urls                            ...                           \n",
+       "href                                     ...                           \n",
+       "id                                       ...                           \n",
+       "ignore                                   ...                           \n",
+       "instrumentalness                         ...                           \n",
+       "key                                      ...                           \n",
+       "liveness                                 ...                           \n",
+       "loudness                                 ...                           \n",
+       "lyrical_density                          ...                           \n",
+       "lyrics                                   ...                           \n",
+       "mode                                     ...                           \n",
+       "name                                     ...                           \n",
+       "nnrc_sentiment                           ...                           \n",
+       "nrc_sentiment                            ...                           \n",
+       "original_lyrics                          ...                           \n",
+       "popularity                               ...                           \n",
+       "preview_url                              ...                           \n",
+       "sentiment                                ...                           \n",
+       "speechiness                              ...                           \n",
+       "tempo                                    ...                           \n",
+       "time_signature                           ...                           \n",
+       "track_href                               ...                           \n",
+       "track_number                             ...                           \n",
+       "type                                     ...                           \n",
+       "uri                                      ...                           \n",
+       "valence                                  ...                           \n",
        "\n",
-       "                                                                           1062  \\\n",
-       "_id                                                                      313269   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                          /songs/313269   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                      You Don't Have To Mean It by The Rolling Stones   \n",
-       "header_image_thumbnail_url    https://images.genius.com/eb7fd9257058b77179cb...   \n",
-       "header_image_url              https://images.genius.com/eb7fd9257058b77179cb...   \n",
-       "id                                                                       313269   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          354608   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                          /The-rolling-stones-you-dont-have-to-mean-it-l...   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/eb7fd9257058b77179cb...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                 You Don't Have To Mean It   \n",
-       "url                           https://genius.com/The-rolling-stones-you-dont...   \n",
+       "                                                                 136  \\\n",
+       "_id                                           2zYmvi3w2T8a9Ckrv21bvW   \n",
+       "acousticness                                                0.000849   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/2zYm...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                               stop whispering   \n",
+       "danceability                                                   0.212   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   325627   \n",
+       "energy                                                         0.696   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9300106'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/2z...   \n",
+       "href               https://api.spotify.com/v1/tracks/2zYmvi3w2T8a...   \n",
+       "id                                            2zYmvi3w2T8a9Ckrv21bvW   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                              0.0165   \n",
+       "key                                                                2   \n",
+       "liveness                                                       0.129   \n",
+       "loudness                                                     -10.059   \n",
+       "lyrical_density                                             0.396159   \n",
+       "lyrics             and the wise man said i don't want to hear you...   \n",
+       "mode                                                               1   \n",
+       "name                                                 Stop Whispering   \n",
+       "nnrc_sentiment     {'anger': 0.5, 'trust': 0.375, 'sadness': 0.25...   \n",
+       "nrc_sentiment      {'anger': 4, 'trust': 3, 'fear': 1, 'surprise'...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nAnd the wise man said I don't w...   \n",
+       "popularity                                                        44   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/397951413134fe02...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.1440...   \n",
+       "speechiness                                                   0.0472   \n",
+       "tempo                                                         122.37   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/2zYmvi3w2T8a...   \n",
+       "track_number                                                       4   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:2zYmvi3w2T8a9Ckrv21bvW   \n",
+       "valence                                                        0.298   \n",
        "\n",
-       "                                                                           1063  \\\n",
-       "_id                                                                      313043   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                          /songs/313043   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                             You Got Me Rocking by The Rolling Stones   \n",
-       "header_image_thumbnail_url    https://images.genius.com/a8ed1f93846da84943a7...   \n",
-       "header_image_url              https://images.genius.com/a8ed1f93846da84943a7...   \n",
-       "id                                                                       313043   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          354382   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                              /The-rolling-stones-you-got-me-rocking-lyrics   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/a8ed1f93846da84943a7...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                        You Got Me Rocking   \n",
-       "url                           https://genius.com/The-rolling-stones-you-got-...   \n",
+       "                                                                 137  \\\n",
+       "_id                                           3ovbSnT5NNhl1gzMcw1NRZ   \n",
+       "acousticness                                                   0.704   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/3ovb...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                            thinking about you   \n",
+       "danceability                                                   0.364   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   161533   \n",
+       "energy                                                          0.37   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9200114'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/3o...   \n",
+       "href               https://api.spotify.com/v1/tracks/3ovbSnT5NNhl...   \n",
+       "id                                            3ovbSnT5NNhl1gzMcw1NRZ   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                            7.71e-06   \n",
+       "key                                                                7   \n",
+       "liveness                                                      0.0883   \n",
+       "loudness                                                     -14.134   \n",
+       "lyrical_density                                              1.15147   \n",
+       "lyrics             been thinking about you your records are here ...   \n",
+       "mode                                                               1   \n",
+       "name                                              Thinking About You   \n",
+       "nnrc_sentiment     {'joy': 0.5714285714285714, 'trust': 0.1428571...   \n",
+       "nrc_sentiment      {'joy': 4, 'trust': 1, 'positive': 7, 'surpris...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nBeen thinking about you\\nYour r...   \n",
+       "popularity                                                        48   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/ec90a4cef1ff0cbf...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.2083...   \n",
+       "speechiness                                                   0.0331   \n",
+       "tempo                                                         103.44   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/3ovbSnT5NNhl...   \n",
+       "track_number                                                       5   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:3ovbSnT5NNhl1gzMcw1NRZ   \n",
+       "valence                                                        0.421   \n",
        "\n",
-       "                                                                           1064  \\\n",
-       "_id                                                                     2389345   \n",
-       "annotation_count                                                              4   \n",
-       "api_path                                                         /songs/2389345   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                    You Got the Silver by The Rolling Stones (Ft. ...   \n",
-       "header_image_thumbnail_url    https://images.rapgenius.com/ac969979ccb91a0d2...   \n",
-       "header_image_url              https://images.rapgenius.com/ac969979ccb91a0d2...   \n",
-       "id                                                                      2389345   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                         1217557   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                              /The-rolling-stones-you-got-the-silver-lyrics   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.rapgenius.com/ac969979ccb91a0d2...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                        You Got the Silver   \n",
-       "url                           https://genius.com/The-rolling-stones-you-got-...   \n",
+       "                                                                 138  \\\n",
+       "_id                                           4NUc1M0CS7b6zvWoyvibju   \n",
+       "acousticness                                                0.000101   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/4NUc...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                        anyone can play guitar   \n",
+       "danceability                                                   0.294   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   217800   \n",
+       "energy                                                         0.813   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9300107'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/4N...   \n",
+       "href               https://api.spotify.com/v1/tracks/4NUc1M0CS7b6...   \n",
+       "id                                            4NUc1M0CS7b6zvWoyvibju   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                            0.000756   \n",
+       "key                                                                4   \n",
+       "liveness                                                       0.333   \n",
+       "loudness                                                     -10.772   \n",
+       "lyrical_density                                             0.688705   \n",
+       "lyrics             destiny destiny protect me from the world dest...   \n",
+       "mode                                                               0   \n",
+       "name                                          Anyone Can Play Guitar   \n",
+       "nnrc_sentiment     {'anger': 0.5714285714285714, 'negative': 0.57...   \n",
+       "nrc_sentiment      {'anger': 4, 'negative': 4, 'joy': 5, 'trust':...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nDestiny, destiny protect me fro...   \n",
+       "popularity                                                        45   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/76e430500d399da2...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.3734...   \n",
+       "speechiness                                                   0.0547   \n",
+       "tempo                                                        150.845   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/4NUc1M0CS7b6...   \n",
+       "track_number                                                       6   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:4NUc1M0CS7b6zvWoyvibju   \n",
+       "valence                                                        0.554   \n",
        "\n",
-       "                                                                           1065  \\\n",
-       "_id                                                                     1245984   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                         /songs/1245984   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                                Don't Look Back by The Rolling Stones   \n",
-       "header_image_thumbnail_url    https://images.genius.com/23bbf05f7ee8286a8905...   \n",
-       "header_image_url              https://images.genius.com/23bbf05f7ee8286a8905...   \n",
-       "id                                                                      1245984   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                         1549345   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                  /The-rolling-stones-dont-look-back-lyrics   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/23bbf05f7ee8286a8905...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                           Don't Look Back   \n",
-       "url                           https://genius.com/The-rolling-stones-dont-loo...   \n",
+       "                                                                 139  \\\n",
+       "_id                                           4nklmaiY4gfQI3SB1sLGsd   \n",
+       "acousticness                                                1.93e-05   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/4nkl...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                                       ripcord   \n",
+       "danceability                                                   0.256   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   189733   \n",
+       "energy                                                         0.906   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9300108'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/4n...   \n",
+       "href               https://api.spotify.com/v1/tracks/4nklmaiY4gfQ...   \n",
+       "id                                            4nklmaiY4gfQI3SB1sLGsd   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.366   \n",
+       "key                                                                2   \n",
+       "liveness                                                       0.322   \n",
+       "loudness                                                     -10.436   \n",
+       "lyrical_density                                             0.479621   \n",
+       "lyrics             soul destroyed with clever toys for little boy...   \n",
+       "mode                                                               1   \n",
+       "name                                                         Ripcord   \n",
+       "nnrc_sentiment     {'negative': 0.6666666666666666, 'anger': 1.0,...   \n",
+       "nrc_sentiment      {'negative': 2, 'anger': 3, 'positive': 1, 'sa...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nSoul destroyed with clever toys...   \n",
+       "popularity                                                        42   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/a519caf188516bc5...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.3408...   \n",
+       "speechiness                                                   0.0548   \n",
+       "tempo                                                        137.949   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/4nklmaiY4gfQ...   \n",
+       "track_number                                                       7   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:4nklmaiY4gfQI3SB1sLGsd   \n",
+       "valence                                                        0.254   \n",
        "\n",
-       "                                                                           1066  \\\n",
-       "_id                                                                      311907   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                          /songs/311907   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                    Each and every day of the year by The Rolling ...   \n",
-       "header_image_thumbnail_url    https://images.genius.com/6c322c96140487d56076...   \n",
-       "header_image_url              https://images.genius.com/6c322c96140487d56076...   \n",
-       "id                                                                       311907   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          354385   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                          /The-rolling-stones-each-and-every-day-of-the-...   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/6c322c96140487d56076...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                            Each and every day of the year   \n",
-       "url                           https://genius.com/The-rolling-stones-each-and...   \n",
+       "                                                                 140  \\\n",
+       "_id                                           11qDTSr3Dj4TkPnBcIOqEJ   \n",
+       "acousticness                                                 0.00281   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/11qD...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                                     vegetable   \n",
+       "danceability                                                   0.384   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   192667   \n",
+       "energy                                                         0.717   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9300109'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/11...   \n",
+       "href               https://api.spotify.com/v1/tracks/11qDTSr3Dj4T...   \n",
+       "id                                            11qDTSr3Dj4TkPnBcIOqEJ   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.569   \n",
+       "key                                                                6   \n",
+       "liveness                                                       0.187   \n",
+       "loudness                                                      -8.868   \n",
+       "lyrical_density                                             0.711071   \n",
+       "lyrics             i never wanted anything but this i worked hard...   \n",
+       "mode                                                               1   \n",
+       "name                                                       Vegetable   \n",
+       "nnrc_sentiment     {'anger': 0.5, 'trust': 0.125, 'sadness': 0.25...   \n",
+       "nrc_sentiment      {'anger': 4, 'trust': 1, 'fear': 3, 'negative'...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nI never wanted anything but thi...   \n",
+       "popularity                                                        42   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/22dd1bf01746cb6d...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.1167...   \n",
+       "speechiness                                                   0.0339   \n",
+       "tempo                                                        105.852   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/11qDTSr3Dj4T...   \n",
+       "track_number                                                       8   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:11qDTSr3Dj4TkPnBcIOqEJ   \n",
+       "valence                                                         0.42   \n",
        "\n",
-       "                                                                           1067  \\\n",
-       "_id                                                                      310293   \n",
-       "annotation_count                                                              4   \n",
-       "api_path                                                          /songs/310293   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                                 I'm A King Bee by The Rolling Stones   \n",
-       "header_image_thumbnail_url    https://images.genius.com/076d49bcc219432b68b4...   \n",
-       "header_image_url              https://images.genius.com/076d49bcc219432b68b4...   \n",
-       "id                                                                       310293   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          354383   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                   /The-rolling-stones-im-a-king-bee-lyrics   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/076d49bcc219432b68b4...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                            I'm A King Bee   \n",
-       "url                           https://genius.com/The-rolling-stones-im-a-kin...   \n",
+       "                                                                 141  \\\n",
+       "_id                                           4D6ZExVvYLZxhcAvifX5px   \n",
+       "acousticness                                                0.000849   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/4D6Z...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                                prove yourself   \n",
+       "danceability                                                    0.25   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   145373   \n",
+       "energy                                                          0.62   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9200115'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/4D...   \n",
+       "href               https://api.spotify.com/v1/tracks/4D6ZExVvYLZx...   \n",
+       "id                                            4D6ZExVvYLZxhcAvifX5px   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                              0.0848   \n",
+       "key                                                                0   \n",
+       "liveness                                                       0.175   \n",
+       "loudness                                                     -10.915   \n",
+       "lyrical_density                                             0.749795   \n",
+       "lyrics             i can't afford to breathe in this time nowhere...   \n",
+       "mode                                                               1   \n",
+       "name                                                  Prove Yourself   \n",
+       "nnrc_sentiment     {'anger': 0.0625, 'sadness': 0.0625, 'surprise...   \n",
+       "nrc_sentiment      {'anger': 1, 'fear': 2, 'surprise': 1, 'negati...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nI can't afford to breathe in th...   \n",
+       "popularity                                                        42   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/6d62fc6cd2849212...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.1849...   \n",
+       "speechiness                                                   0.0611   \n",
+       "tempo                                                        114.098   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/4D6ZExVvYLZx...   \n",
+       "track_number                                                       9   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:4D6ZExVvYLZxhcAvifX5px   \n",
+       "valence                                                        0.319   \n",
        "\n",
-       "                                                                           1068  \\\n",
-       "_id                                                                      310289   \n",
-       "annotation_count                                                              1   \n",
-       "api_path                                                          /songs/310289   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                               Little By Little by The Rolling Stones   \n",
-       "header_image_thumbnail_url    https://images.genius.com/076d49bcc219432b68b4...   \n",
-       "header_image_url              https://images.genius.com/076d49bcc219432b68b4...   \n",
-       "id                                                                       310289   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                          354383   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                /The-rolling-stones-little-by-little-lyrics   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                NaN   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/076d49bcc219432b68b4...   \n",
-       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
-       "title                                                          Little By Little   \n",
-       "url                           https://genius.com/The-rolling-stones-little-b...   \n",
+       "                                                                 142  \\\n",
+       "_id                                           48IEDejXX5LH8TAC3VIGpc   \n",
+       "acousticness                                                 0.00968   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/48IE...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                                        i cant   \n",
+       "danceability                                                   0.284   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   253093   \n",
+       "energy                                                         0.825   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9300110'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/48...   \n",
+       "href               https://api.spotify.com/v1/tracks/48IEDejXX5LH...   \n",
+       "id                                            48IEDejXX5LH8TAC3VIGpc   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                                 0.3   \n",
+       "key                                                                7   \n",
+       "liveness                                                       0.118   \n",
+       "loudness                                                     -10.256   \n",
+       "lyrical_density                                              0.56501   \n",
+       "lyrics             please forget the words that i just blurted ou...   \n",
+       "mode                                                               1   \n",
+       "name                                                         I Can't   \n",
+       "nnrc_sentiment     {'anger': 0.4, 'fear': 0.2, 'negative': 1.0, '...   \n",
+       "nrc_sentiment      {'anger': 2, 'fear': 1, 'negative': 5, 'trust'...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nPlease forget the words that I ...   \n",
+       "popularity                                                        41   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/516d9e9499a86318...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.1502...   \n",
+       "speechiness                                                   0.0595   \n",
+       "tempo                                                        106.108   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/48IEDejXX5LH...   \n",
+       "track_number                                                      10   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:48IEDejXX5LH8TAC3VIGpc   \n",
+       "valence                                                        0.276   \n",
        "\n",
-       "                                                                           1069  \\\n",
-       "_id                                                                      106069   \n",
-       "annotation_count                                                             16   \n",
-       "api_path                                                          /songs/106069   \n",
-       "ctitle                                                                      NaN   \n",
-       "full_title                                    Brown Sugar by The Rolling Stones   \n",
-       "header_image_thumbnail_url    https://images.genius.com/5b7d4f11893ff2fdeba7...   \n",
-       "header_image_url              https://images.genius.com/5b7d4f11893ff2fdeba7...   \n",
-       "id                                                                       106069   \n",
-       "lyrics                                                                      NaN   \n",
-       "lyrics_owner_id                                                              16   \n",
-       "original_lyrics                                                             NaN   \n",
-       "path                                     /The-rolling-stones-brown-sugar-lyrics   \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
-       "pyongs_count                                                                  7   \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/5b7d4f11893ff2fdeba7...   \n",
-       "stats                         {'unreviewed_annotations': 0, 'hot': False, 'p...   \n",
-       "title                                                               Brown Sugar   \n",
-       "url                           https://genius.com/The-rolling-stones-brown-su...   \n",
+       "                                                                 143  \\\n",
+       "_id                                           2B5P22cfUadACK7jLQegU6   \n",
+       "acousticness                                                0.000135   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/2B5P...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                                        lurgee   \n",
+       "danceability                                                    0.42   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   187867   \n",
+       "energy                                                         0.548   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9200116'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/2B...   \n",
+       "href               https://api.spotify.com/v1/tracks/2B5P22cfUadA...   \n",
+       "id                                            2B5P22cfUadACK7jLQegU6   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.399   \n",
+       "key                                                                0   \n",
+       "liveness                                                       0.111   \n",
+       "loudness                                                     -12.298   \n",
+       "lyrical_density                                             0.399219   \n",
+       "lyrics             i feel better i feel better now you've gone i ...   \n",
+       "mode                                                               1   \n",
+       "name                                                          Lurgee   \n",
+       "nnrc_sentiment                                     {'negative': 1.0}   \n",
+       "nrc_sentiment                                        {'negative': 1}   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nI feel better\\nI feel better no...   \n",
+       "popularity                                                        41   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/ae0de4e9b90a15a7...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.2629...   \n",
+       "speechiness                                                   0.0268   \n",
+       "tempo                                                          101.9   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/2B5P22cfUadA...   \n",
+       "track_number                                                      11   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:2B5P22cfUadACK7jLQegU6   \n",
+       "valence                                                        0.408   \n",
        "\n",
-       "                                                                           1070  \n",
-       "_id                                                                      310543  \n",
-       "annotation_count                                                             15  \n",
-       "api_path                                                          /songs/310543  \n",
-       "ctitle                                                                      NaN  \n",
-       "full_title                                        Citadel by The Rolling Stones  \n",
-       "header_image_thumbnail_url    https://images.genius.com/31323212a74c2a8d99eb...  \n",
-       "header_image_url              https://images.genius.com/31323212a74c2a8d99eb...  \n",
-       "id                                                                       310543  \n",
-       "lyrics                                                                      NaN  \n",
-       "lyrics_owner_id                                                          354608  \n",
-       "original_lyrics                                                             NaN  \n",
-       "path                                         /The-rolling-stones-citadel-lyrics  \n",
-       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...  \n",
-       "pyongs_count                                                                NaN  \n",
-       "song_art_image_thumbnail_url  https://images.genius.com/31323212a74c2a8d99eb...  \n",
-       "stats                              {'unreviewed_annotations': 14, 'hot': False}  \n",
-       "title                                                                   Citadel  \n",
-       "url                           https://genius.com/The-rolling-stones-citadel-...  \n",
+       "                                                                 144  \\\n",
+       "_id                                           6qttbImnJ5wuA8AtDKEy18   \n",
+       "acousticness                                                0.000465   \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...   \n",
+       "album_id                                      6400dnyeDyD2mIFHfkwHXN   \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/6qtt...   \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb   \n",
+       "artist_name                                                Radiohead   \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...   \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...   \n",
+       "ctitle                                                      blow out   \n",
+       "danceability                                                   0.284   \n",
+       "disc_number                                                        1   \n",
+       "duration_ms                                                   282067   \n",
+       "energy                                                         0.719   \n",
+       "explicit                                                       False   \n",
+       "external_ids                                {'isrc': 'GBAYE9300111'}   \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/6q...   \n",
+       "href               https://api.spotify.com/v1/tracks/6qttbImnJ5wu...   \n",
+       "id                                            6qttbImnJ5wuA8AtDKEy18   \n",
+       "ignore                                                           NaN   \n",
+       "instrumentalness                                               0.382   \n",
+       "key                                                               11   \n",
+       "liveness                                                        0.24   \n",
+       "loudness                                                     -10.739   \n",
+       "lyrical_density                                             0.340345   \n",
+       "lyrics             in my mind and nailed into my heels all the ti...   \n",
+       "mode                                                               0   \n",
+       "name                                                        Blow Out   \n",
+       "nnrc_sentiment     {'negative': 1.0, 'anger': 0.625, 'sadness': 0...   \n",
+       "nrc_sentiment      {'negative': 8, 'anger': 5, 'sadness': 3, 'fea...   \n",
+       "original_lyrics    \\n\\n[Verse 1]\\nIn my mind\\nAnd nailed into my ...   \n",
+       "popularity                                                        44   \n",
+       "preview_url        https://p.scdn.co/mp3-preview/69a5564e6733d6d2...   \n",
+       "sentiment          {'label': 'neg', 'probability': {'pos': 0.3796...   \n",
+       "speechiness                                                   0.0506   \n",
+       "tempo                                                        141.539   \n",
+       "time_signature                                                     4   \n",
+       "track_href         https://api.spotify.com/v1/tracks/6qttbImnJ5wu...   \n",
+       "track_number                                                      12   \n",
+       "type                                                  audio_features   \n",
+       "uri                             spotify:track:6qttbImnJ5wuA8AtDKEy18   \n",
+       "valence                                                        0.289   \n",
        "\n",
-       "[18 rows x 1071 columns]"
+       "                                                                 145  \n",
+       "_id                                           0eECFDnWy0RdjMmJ8NOeAL  \n",
+       "acousticness                                                 0.00101  \n",
+       "album              {'external_urls': {'spotify': 'https://open.sp...  \n",
+       "album_id                                      1DBkJIEoeHrTX4WCBQGcCi  \n",
+       "analysis_url       https://api.spotify.com/v1/audio-analysis/0eEC...  \n",
+       "artist_id                                     4Z8W4fKeB5YxbusRsdQVPb  \n",
+       "artist_name                                                Radiohead  \n",
+       "artists            [{'external_urls': {'spotify': 'https://open.s...  \n",
+       "available_markets  [AD, AR, AT, AU, BE, BG, BO, BR, CA, CH, CL, C...  \n",
+       "ctitle                                                         feral  \n",
+       "danceability                                                    0.49  \n",
+       "disc_number                                                        1  \n",
+       "duration_ms                                                   192743  \n",
+       "energy                                                         0.777  \n",
+       "explicit                                                       False  \n",
+       "external_ids                                {'isrc': 'GBU4B1100006'}  \n",
+       "external_urls      {'spotify': 'https://open.spotify.com/track/0e...  \n",
+       "href               https://api.spotify.com/v1/tracks/0eECFDnWy0Rd...  \n",
+       "id                                            0eECFDnWy0RdjMmJ8NOeAL  \n",
+       "ignore                                                           NaN  \n",
+       "instrumentalness                                               0.898  \n",
+       "key                                                                7  \n",
+       "liveness                                                      0.0896  \n",
+       "loudness                                                     -11.521  \n",
+       "lyrical_density                                            0.0933886  \n",
+       "lyrics             you are not mine and i am not yours and that's...  \n",
+       "mode                                                               1  \n",
+       "name                                                           Feral  \n",
+       "nnrc_sentiment                                                    {}  \n",
+       "nrc_sentiment                                                     {}  \n",
+       "original_lyrics    \\n\\n[Verse]\\nYou are not mine\\nAnd I am not yo...  \n",
+       "popularity                                                        45  \n",
+       "preview_url        https://p.scdn.co/mp3-preview/9dc0af2fa010c41d...  \n",
+       "sentiment          {'label': 'pos', 'probability': {'pos': 0.5347...  \n",
+       "speechiness                                                   0.0974  \n",
+       "tempo                                                        135.991  \n",
+       "time_signature                                                     4  \n",
+       "track_href         https://api.spotify.com/v1/tracks/0eECFDnWy0Rd...  \n",
+       "track_number                                                       4  \n",
+       "type                                                  audio_features  \n",
+       "uri                             spotify:track:0eECFDnWy0RdjMmJ8NOeAL  \n",
+       "valence                                                        0.729  \n",
+       "\n",
+       "[42 rows x 146 columns]"
       ]
      },
-     "execution_count": 46,
+     "execution_count": 20,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "gsongs = pd.DataFrame(list(genius_tracks.find()))\n",
-    "gsongs.T"
+    "radiohead_tracks = pd.DataFrame(list(tracks.find({'artist_id': radiohead_id})))\n",
+    "radiohead_tracks.T"
    ]
   },
   {
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "Now we can get the lyrics for each song. We tidy it up as we go, to strip out formatting and the like.\n",
-    "\n",
-    "Note the use of [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) to strip out the HTML from the lyrics."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 47,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "def genius_lyrics(song_url):\n",
-    "    headers = {'Accept': 'application/json',\n",
-    "               'Authorization': 'Bearer ' + config['genius']['token'],\n",
-    "               'User-Agent': 'curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)'}\n",
-    "    request = urllib.request.Request(song_url, headers=headers, method='GET')\n",
-    "    html_doc = urllib.request.urlopen(request)\n",
-    "    soup = BeautifulSoup(html_doc, 'html.parser')\n",
-    "    lyrics = soup.find('lyrics').get_text()\n",
-    "    l2 = re.sub('\\[[^\\]]*\\]', '', lyrics)\n",
-    "    l3 = re.sub('\\[|\\]', '', l2)\n",
-    "    l4 = re.sub('(\\s)+', ' ', l3)\n",
-    "    return l4.strip().lower(), lyrics"
+    "How happy are the Beatles and Stones tracks?"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 48,
+   "execution_count": 21,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "(\"oh ain't she sweet well see her walking down that street yes i ask you very confidentially ain't she sweet? oh ain't she nice well look her over once or twice yes i ask you very confidentially ain't she nice? just cast an eye in her direction oh me oh my ain't that perfection? oh i repeat well don't you think that's kind of neat? yes i ask you very confidentially ain't she sweet? oh ain't she sweet well see her walking down that street well i ask you very confidentially ain't she sweet? well i ask you very confidentially ain't she sweet?\",\n",
-       " \"\\n\\n[Chorus 1]]\\nOh ain't she sweet\\nWell see her walking down that street\\nYes I ask you very confidentially\\nAin't she sweet?\\n\\n[Chorus 2]\\nOh ain't she nice\\nWell look her over once or twice\\nYes I ask you very confidentially\\nAin't she nice?\\n\\n[Chorus 3]\\nJust cast an eye\\nIn her direction\\nOh me oh my\\nAin't that perfection?\\n\\n[Chorus 4]\\nOh I repeat\\nWell don't you think that's kind of neat?\\nYes I ask you very confidentially\\nAin't she sweet?\\n\\n[Chorus 1]\\n\\n[Chorus 2]\\n\\n[Chorus 3]\\n\\n[Chorus 4]\\n\\n[Chorus 1]\\nOh ain't she sweet\\nWell see her walking down that street\\nWell I ask you very confidentially\\nAin't she sweet?\\nWell I ask you very confidentially\\nAin't she sweet?\\n\\n\")"
+       "<matplotlib.axes._subplots.AxesSubplot at 0x7ff67835fd30>"
       ]
      },
-     "execution_count": 48,
+     "execution_count": 21,
      "metadata": {},
      "output_type": "execute_result"
+    },
+    {
+     "data": {
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXQAAAD8CAYAAABn919SAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAADo1JREFUeJzt3X2MHIV5x/HvExwK5RJM4vSEDO0RhUS1OLWEEyKK1N5B\nUlGoAKkoApHWlqxaSfoSKa5at1GlvkrwB0nbCKm1CsKtkhwUtbUFQRElvqJGgdQuhONFFEOd1q5j\nNwVbPUrTnPL0jx0Sc+DbOd/trO/x9yOdPDM7O/PM453fzc7OzkVmIkla/d4y7AIkSSvDQJekIgx0\nSSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSpiTZcrW7duXY6NjQHwyiuvcM4553S5+lOOPbAH\nYA/AHsDiPdi7d++3M/Nd/ZbRaaCPjY2xZ88eAGZmZpicnOxy9acce2APwB6APYDFexAR32yzDE+5\nSFIRBrokFWGgS1IRBrokFWGgS1IRBrokFWGgS1IRBrokFWGgS1IRnX5TVNIbzR48xqZtD3S+3v23\nXtv5OjVYHqFLUhEGuiQVYaBLUhGeQ5d02hgbwmcV0N3nFR6hS1IRBrokFWGgS1IRBrokFeGHopI6\nt/DDya3j80P5clU1HqFLUhEGuiQVYaBLUhEGuiQVYaBLUhGtAz0izoiIxyPi/mb8ooh4LCL2RcQ9\nEXHm4MqUJPWzlCP0TwLPHjd+G/DZzHwP8DKweSULkyQtTatAj4gLgGuBv2jGA7gSuK+ZZQdwwyAK\nlCS10/YI/Y+B3wC+14y/EziamfPN+AFg/QrXJklagsjMxWeI+Dngmsz8RERMAr8ObAIebU63EBEX\nAg9m5iVv8vwtwBaA0dHRy6anpwGYm5tjZGRk5bZkFbIH9gDgyEvHOPxq9+sdX39u9yttzB489rrx\n0bMZSg+60qbXi+0LU1NTezNzot8y2nz1/4PAdRFxDXAW8HbgT4C1EbGmOUq/ADj4Zk/OzO3AdoCJ\niYmcnJwEYGZmhteGT1f2wB4AfO7zO7l9tvu7cOy/ZbLzdb5m4df8t47PD6UHXWnT65XYF/qecsnM\n38rMCzJzDLgJ+Epm3gLsBm5sZtsI7FxWJZKkZVnOdei/CXwqIvbRO6d+58qUJEk6GUt6j5OZM8BM\nM/wicPnKlyRJOhl+U1SSijDQJakIA12SijDQJakIA12SijDQJakIA12SijDQJakIA12SijDQJakI\nA12SijDQJakIA12Siqh7R3lJixpb8EcmtPp5hC5JRRjoklSEgS5JRRjoklSEgS5JRRjoklSEgS5J\nRRjoklSEgS5JRRjoklSEgS5JRRjoklSEgS5JRRjoklSEgS5JRRjoklSEgS5JRRjoklSEgS5JRRjo\nklSEgS5JRRjoklSEgS5JRRjoklRE30CPiLMi4usR8Y2IeDoifq+ZflFEPBYR+yLinog4c/DlSpJO\npM0R+neAKzPzJ4CfBK6OiCuA24DPZuZ7gJeBzYMrU5LUT99Az565ZvStzU8CVwL3NdN3ADcMpEJJ\nUiutzqFHxBkR8QRwBHgIeAE4mpnzzSwHgPWDKVGS1EZkZvuZI9YCfwv8DnB3c7qFiLgQeDAzL3mT\n52wBtgCMjo5eNj09DcDc3BwjIyPL3oDVzB7YA4AjLx3j8KvDrmK4Rs+mdA/G15/bd57F9oWpqam9\nmTnRbxlrllJUZh6NiN3AB4C1EbGmOUq/ADh4gudsB7YDTExM5OTkJAAzMzO8Nny6sgf2AOBzn9/J\n7bNL2hXL2To+X7oH+2+Z7DvPSuwLba5yeVdzZE5EnA18GHgW2A3c2My2Edi5rEokScvS5lfi+cCO\niDiD3i+AezPz/oh4BpiOiD8EHgfuHGCdkqQ++gZ6Zj4JXPom018ELh9EUZKkpfObopJUhIEuSUUY\n6JJUhIEuSUUY6JJUhIEuSUUY6JJUhIEuSUUY6JJUhIEuSUUY6JJUhIEuSUUY6JJUhIEuSUUY6JJU\nhIEuSUUY6JJUhIEuSUUY6JJUhIEuSUUY6JJUhIEuSUUY6JJUxJphF6BTz9i2Bzpb19bxeTYdt779\nt17b2bqP1+U2L7R1fGirVjEeoUtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtS\nEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBXRN9Aj4sKI2B0Rz0TE0xHxyWb6OyLioYh4vvn3vMGXK0k6\nkTZH6PPA1szcAFwB/HJEbAC2AQ9n5sXAw824JGlI+gZ6Zh7KzH9uhv8beBZYD1wP7Ghm2wHcMKgi\nJUn9LekcekSMAZcCjwGjmXmoeehbwOiKViZJWpLIzHYzRowA/wD8UWb+TUQczcy1xz3+cma+4Tx6\nRGwBtgCMjo5eNj09DcDc3BwjIyMrsAmr16nag9mDxzpb1+jZcPjVH4yPrz+3s3Ufr8ttXmhhD05H\n1XvQ5nW9WB5MTU3tzcyJfstoFegR8VbgfuDLmfmZZtpzwGRmHoqI84GZzHzfYsuZmJjIPXv2ADAz\nM8Pk5GTfdVd2qvag678pevvsD/607en5N0Vf34PTUfUetHldL5YHEdEq0Ntc5RLAncCzr4V5Yxew\nsRneCOzstyxJ0uC0+ZX4QeAXgNmIeKKZ9tvArcC9EbEZ+CbwkcGUKElqo2+gZ+Y/AnGCh69a2XJO\nPYN8K751fJ5Niyx/WKcfJK1OflNUkoow0CWpCANdkoow0CWpiLoXfmpVGub14NJq5xG6JBVhoEtS\nEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6\nJBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBVh\noEtSEQa6JBVhoEtSEQa6JBVhoEtSEQa6JBXRN9Aj4q6IOBIRTx037R0R8VBEPN/8e95gy5Qk9dPm\nCP1u4OoF07YBD2fmxcDDzbgkaYj6BnpmPgK8tGDy9cCOZngHcMMK1yVJWqKTPYc+mpmHmuFvAaMr\nVI8k6SRFZvafKWIMuD8zL2nGj2bm2uMefzkz3/Q8ekRsAbYAjI6OXjY9PQ3A3NwcIyMjy61/4GYP\nHhvYskfPhsOvnvjx8fXnDmzdixnkNi/UrwenA3tQvwdt9uXFMnFqampvZk70W8aapZcGwOGIOD8z\nD0XE+cCRE82YmduB7QATExM5OTkJwMzMDK8Nn8o2bXtgYMveOj7P7bMn/i/Yf8vkwNa9mEFu80L9\nenA6sAf1e9BmX16JTDzZUy67gI3N8EZg57KqkCQtW5vLFr8IfA14X0QciIjNwK3AhyPieeBDzbgk\naYj6vsfJzJtP8NBVK1yLJGkZ/KaoJBVhoEtSEQa6JBVhoEtSEXUv/CxgrMPrwSWtfh6hS1IRBrok\nFWGgS1IRBrokFWGgS1IRBrokFWGgS1IRBrokFWGgS1IRBrokFWGgS1IRBrokFWGgS1IRBrokFWGg\nS1IRBrokFWGgS1IRBrokFWGgS1IRBrokFWGgS1IRBrokFWGgS1IRa4ZdQFtj2x4YdgmSdErzCF2S\nijDQJakIA12SijDQJakIA12SijDQJakIA12SijDQJakIA12SilhWoEfE1RHxXETsi4htK1WUJGnp\nTjrQI+IM4A7gZ4ENwM0RsWGlCpMkLc1yjtAvB/Zl5ouZ+X/ANHD9ypQlSVqq5QT6euDfjxs/0EyT\nJA3BwO+2GBFbgC3N6FxEPNcMrwO+Pej1n8p+zR7YA+wB1O9B3NZqtsV68GNtFrCcQD8IXHjc+AXN\ntNfJzO3A9oXTI2JPZk4sY/2rnj2wB2APwB7AyvRgOadc/gm4OCIuiogzgZuAXcspRpJ08k76CD0z\n5yPiV4AvA2cAd2Xm0ytWmSRpSZZ1Dj0zvwR86SSf/obTMKche2APwB6APYAV6EFk5koUIkkaMr/6\nL0lFDDzQ+90eICJ+KCLuaR5/LCLGBl1Tl1ps/6ci4pmIeDIiHo6IVpcnrSZtbxERET8fERkR5a52\naNODiPhI81p4OiK+0HWNg9ZiX/jRiNgdEY83+8M1w6hzkCLirog4EhFPneDxiIg/bXr0ZES8f0kr\nyMyB/dD7sPQF4N3AmcA3gA0L5vkE8GfN8E3APYOsqcuflts/BfxwM/zxStvftgfNfG8DHgEeBSaG\nXfcQXgcXA48D5zXjPzLsuofQg+3Ax5vhDcD+Ydc9gD78FPB+4KkTPH4N8CAQwBXAY0tZ/qCP0Nvc\nHuB6YEczfB9wVUTEgOvqSt/tz8zdmfk/zeij9K7nr6TtLSL+ALgN+N8ui+tImx78EnBHZr4MkJlH\nOq5x0Nr0IIG3N8PnAv/RYX2dyMxHgJcWmeV64C+z51FgbUSc33b5gw70NrcH+P48mTkPHAPeOeC6\nurLU2yNspvfbuZK+PWjeVl6YmQ90WViH2rwO3gu8NyK+GhGPRsTVnVXXjTY9+F3goxFxgN7Vc7/a\nTWmnlGXdUmXgX/1XOxHxUWAC+Olh19KliHgL8Blg05BLGbY19E67TNJ7l/ZIRIxn5tGhVtWtm4G7\nM/P2iPgA8FcRcUlmfm/Yha0Wgz5Cb3N7gO/PExFr6L3V+q8B19WVVrdHiIgPAZ8GrsvM73RUW1f6\n9eBtwCXATETsp3fecFexD0bbvA4OALsy87uZ+a/Av9AL+Cra9GAzcC9AZn4NOIve/U1OJ60y40QG\nHehtbg+wC9jYDN8IfCWbTwcK6Lv9EXEp8Of0wrzaeVPo04PMPJaZ6zJzLDPH6H2OcF1m7hlOuQPR\nZj/4O3pH50TEOnqnYF7sssgBa9ODfwOuAoiIH6cX6P/ZaZXDtwv4xeZqlyuAY5l5qPWzO/hU9xp6\nRxsvAJ9upv0+vZ0Wev9pfw3sA74OvHvYn0R3vP1/DxwGnmh+dg275q57sGDeGYpd5dLydRD0Tj09\nA8wCNw275iH0YAPwVXpXwDwB/Mywax5AD74IHAK+S+9d2WbgY8DHjnsd3NH0aHap+4LfFJWkIvym\nqCQVYaBLUhEGuiQVYaBLUhEGuiQVYaBLUhEGuiQVYaBLUhH/D12zKnn6W6zlAAAAAElFTkSuQmCC\n",
+      "text/plain": [
+       "<matplotlib.figure.Figure at 0x7ff68a3fcf60>"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
     }
    ],
    "source": [
-    "assl = genius_lyrics('https://genius.com/The-beatles-aint-she-sweet-lyrics')\n",
-    "assl"
+    "beatles_tracks['valence'].hist()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 49,
+   "execution_count": 22,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "{'_id': 1497768,\n",
-       " 'lyrics': 'when i was sitting on my piano one day a magical thought came my way to write a number for the bbc kenny everett mccartney all together on the wireless machine kenny everett mccartney all together on the wireless machine kenny everett mccartney all together on the wireless machine',\n",
-       " 'original_lyrics': '\\n\\nWhen I was sitting on my piano one day\\nA magical thought came my way\\nTo write a number for the BBC\\nKenny Everett McCartney\\nAll together on the wireless machine\\nKenny Everett McCartney\\nAll together on the wireless machine\\nKenny Everett McCartney\\nAll together on the wireless machine\\n\\n',\n",
-       " 'title': 'All Together on the Wireless Machine'}"
+       "<matplotlib.axes._subplots.AxesSubplot at 0x7ff6704b7c88>"
       ]
      },
-     "execution_count": 49,
+     "execution_count": 22,
      "metadata": {},
      "output_type": "execute_result"
+    },
+    {
+     "data": {
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXQAAAD8CAYAAABn919SAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAADutJREFUeJzt3X+s3fVdx/Hne1Tkx2UtA72Sgl4WmEpojOOGsBDnvWMx\nSA2QSAgL09Y0NtsiI1Ij1f0xo1lS/mATExJtxrSauQtDIo0MFRlX4mLRFnCXH26rrDAqA6ZQvYiO\nZm//OF9I6dp7vj33/Oh9n+cjafr9nvP98X73nPvq93zO9/u9kZlIkla+d4y6AElSfxjoklSEgS5J\nRRjoklSEgS5JRRjoklSEgS5JRRjoklSEgS5JRawa5s7OPPPMnJqa6mnd1157jVNPPbW/Ba0Q49r7\nuPYN9j6OvS/V9549e76TmT/UbRtDDfSpqSl2797d07rz8/PMzMz0t6AVYlx7H9e+wd7Hsfel+o6I\nZ9tswyEXSSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSpiqFeKSt1Mbb3vrekt\n6w6y8ZD5Qdq3bf1Q9iMNkkfoklSEgS5JRRjoklSEgS5JRRjoklSEgS5JRRjoklSEgS5JRRjoklSE\ngS5JRRjoklSEgS5JRbQK9Ij49Yh4MiKeiIgvRMRJEXFuRDwSEXsj4s6IOHHQxUqSjq5roEfEWuDj\nwHRmXgicAFwH3AJ8JjPPA14BNg2yUEnS0toOuawCTo6IVcApwAvAB4C7m+d3AFf3vzxJUluRmd0X\nirgR+BTwOvC3wI3ArubonIg4B7i/OYI/fN3NwGaAycnJi+bm5noqdHFxkYmJiZ7WXenGqfeF/Qfe\nmp48GV58fTj7Xbd29XB21NI4veaHG9fel+p7dnZ2T2ZOd9tG119wERGnA1cB5wKvAl8ELm9bZGZu\nB7YDTE9P58zMTNtV32Z+fp5e113pxqn3jYf9gotbF4bzO1j2XT8zlP20NU6v+eHGtfd+9N1myOWD\nwDcz8+XMfAO4B7gUWNMMwQCcDexfViWSpGVpE+jPAZdExCkREcBlwFPAQ8A1zTIbgHsHU6IkqY2u\ngZ6Zj9D58vNRYKFZZztwM3BTROwFzgDuGGCdkqQuWg1QZuYngU8e9vAzwMV9r0iS1BOvFJWkIgx0\nSSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIoZzKztJRzV1yB0m37Rl3cG33XlyEPZt\nWz/Q7Wv4PEKXpCIMdEkqwkCXpCIMdEkqwkCXpCIMdEkqwkCXpCIMdEkqwkCXpCIMdEkqwkCXpCK8\nl4vEke+nIq00HqFLUhEGuiQVYaBLUhEGuiQVYaBLUhEGuiQVYaBLUhEGuiQVYaBLUhEGuiQVYaBL\nUhEGuiQVYaBLUhEGuiQVYaBLUhEGuiQV0SrQI2JNRNwdEf8aEU9HxPsi4l0R8UBEfKP5+/RBFytJ\nOrq2R+i3AX+dmT8B/BTwNLAVeDAzzwcebOYlSSPSNdAjYjXwfuAOgMz8bma+ClwF7GgW2wFcPagi\nJUndtTlCPxd4GfjjiHgsIj4bEacCk5n5QrPMt4HJQRUpSeouMnPpBSKmgV3ApZn5SETcBvwXcENm\nrjlkuVcy8/vG0SNiM7AZYHJy8qK5ubmeCl1cXGRiYqKndVe6cep9Yf+Bt6YnT4YXXx9hMSM0jN7X\nrV092B30aJze74daqu/Z2dk9mTndbRttAv1HgF2ZOdXM/wyd8fLzgJnMfCEizgLmM/PHl9rW9PR0\n7t69u1tNRzQ/P8/MzExP665049T71Nb73presu4gty6sGmE1ozOM3vdtWz/Q7fdqnN7vh1qq74ho\nFehdh1wy89vAtyLizbC+DHgK2AlsaB7bANzbomZJ0oC0PQS4Afh8RJwIPAP8Cp3/DO6KiE3As8C1\ngylRktRGq0DPzMeBIx3uX9bfciRJvfJKUUkqwkCXpCLG8xQCLenQM01U1yhf5+P1DJuVziN0SSrC\nQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJek\nIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSpi1agLkDR+\nprbed9Tntqw7yMYlnl+OfdvWD2S7xwuP0CWpCANdkoow0CWpCANdkoow0CWpCANdkoow0CWpCANd\nkoow0CWpCANdkopoHegRcUJEPBYRf9XMnxsRj0TE3oi4MyJOHFyZkqRujuUI/Ubg6UPmbwE+k5nn\nAa8Am/pZmCTp2LQK9Ig4G1gPfLaZD+ADwN3NIjuAqwdRoCSpnbZH6L8P/CbwvWb+DODVzDzYzD8P\nrO1zbZKkYxCZufQCEb8AXJGZH4uIGeA3gI3Arma4hYg4B7g/My88wvqbgc0Ak5OTF83NzfVU6OLi\nIhMTEz2tu9INu/eF/QeGtq+lTJ4ML74+6ipGw94Hs+11a1cPZsN9sNTP+ezs7J7MnO62jTb3Q78U\nuDIirgBOAt4J3AasiYhVzVH62cD+I62cmduB7QDT09M5MzPTYpffb35+nl7XXemG3fug7kV9rLas\nO8itC+N5y357H0zv+66fGch2+6EfP+ddh1wy87cy8+zMnAKuA76cmdcDDwHXNIttAO5dViWSpGVZ\nznnoNwM3RcReOmPqd/SnJElSL47pc01mzgPzzfQzwMX9L0mS1AuvFJWkIgx0SSrCQJekIgx0SSrC\nQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJek\nIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0SSrCQJekIgx0\nSSpi1agL0NFNbb0PgC3rDrKxmZbUu6kR/Rzt27Z+KPvxCF2SijDQJakIA12SijDQJakIA12SijDQ\nJakIA12SijDQJamIroEeEedExEMR8VREPBkRNzaPvysiHoiIbzR/nz74ciVJR9PmStGDwJbMfDQi\nTgP2RMQDwEbgwczcFhFbga3AzYMrdTRGdWWZJB2rrkfomflCZj7aTP838DSwFrgK2NEstgO4elBF\nSpK6i8xsv3DEFPAwcCHwXGauaR4P4JU35w9bZzOwGWBycvKiubm5ngpdXFxkYmKip3WXY2H/gaHv\n83CTJ8OLr4+6iuEb177B3qv1vm7t6q7LLJVxs7OzezJzuts2Wgd6REwAfw98KjPviYhXDw3wiHgl\nM5ccR5+ens7du3e32t/h5ufnmZmZ6Wnd5Tgehly2rDvIrQvjdx+1ce0b7L1a721uzrVUxkVEq0Bv\ndZZLRPwA8BfA5zPznubhFyPirOb5s4CX2mxLkjQYbc5yCeAO4OnM/PQhT+0ENjTTG4B7+1+eJKmt\nNp9rLgV+CViIiMebx34b2AbcFRGbgGeBawdToiSpja6Bnpn/AMRRnr6sv+VIknrllaKSVISBLklF\nGOiSVISBLklFGOiSVISBLklFGOiSVISBLklFGOiSVISBLklFGOiSVISBLklFGOiSVISBLklFGOiS\nVISBLklFGOiSVISBLklFGOiSVISBLklFGOiSVISBLklFGOiSVISBLklFGOiSVISBLklFGOiSVISB\nLklFGOiSVISBLklFrBp1AW0t7D/Axq33jboMSTpueYQuSUUY6JJUhIEuSUUY6JJUhIEuSUUY6JJU\nhIEuSUUsK9Aj4vKI+FpE7I2Irf0qSpJ07HoO9Ig4Abgd+HngAuBDEXFBvwqTJB2b5RyhXwzszcxn\nMvO7wBxwVX/KkiQdq+UE+lrgW4fMP988JkkagYHfyyUiNgObm9nFiPhaj5s6E/hOf6paWT4+pr2P\na99g7xTrPW5ptdhSff9Ymw0sJ9D3A+ccMn9289jbZOZ2YPsy9gNAROzOzOnlbmclGtfex7VvsPdx\n7L0ffS9nyOWfgfMj4tyIOBG4Dti5nGIkSb3r+Qg9Mw9GxK8BfwOcAHwuM5/sW2WSpGOyrDH0zPwS\n8KU+1dLNsodtVrBx7X1c+wZ7H0fLH5rOzH4UIkkaMS/9l6QijrtA73Y7gYj4wYi4s3n+kYiYGn6V\n/dei75si4qmI+GpEPBgRrU5jWgna3kIiIn4xIjIiypwB0ab3iLi2ee2fjIg/H3aNg9LiPf+jEfFQ\nRDzWvO+vGEWd/RYRn4uIlyLiiaM8HxHxB82/y1cj4r2tN56Zx80fOl+u/hvwbuBE4F+ACw5b5mPA\nHzbT1wF3jrruIfU9C5zSTH+0Qt9te2+WOw14GNgFTI+67iG+7ucDjwGnN/M/POq6h9j7duCjzfQF\nwL5R192n3t8PvBd44ijPXwHcDwRwCfBI220fb0fobW4ncBWwo5m+G7gsImKINQ5C174z86HM/J9m\ndhed8/4raHsLid8DbgH+d5jFDVib3n8VuD0zXwHIzJeGXOOgtOk9gXc206uBfx9ifQOTmQ8D/7nE\nIlcBf5odu4A1EXFWm20fb4He5nYCby2TmQeBA8AZQ6lucI71Ngqb6PwPXkHX3puPnOdk5n3DLGwI\n2rzu7wHeExFfiYhdEXH50KobrDa9/w7w4Yh4ns7ZdDcMp7SR6/m2KgO/9F/9FREfBqaBnx11LcMQ\nEe8APg1sHHEpo7KKzrDLDJ1PZQ9HxLrMfHWkVQ3Hh4A/ycxbI+J9wJ9FxIWZ+b1RF3a8Ot6O0Nvc\nTuCtZSJiFZ2PYv8xlOoGp9VtFCLig8AngCsz8/+GVNugdev9NOBCYD4i9tEZU9xZ5IvRNq/788DO\nzHwjM78JfJ1OwK90bXrfBNwFkJn/CJxE534n1bXKgyM53gK9ze0EdgIbmulrgC9n803CCta174j4\naeCP6IR5lXFU6NJ7Zh7IzDMzcyozp+h8f3BlZu4eTbl91eb9/pd0js6JiDPpDME8M8wiB6RN788B\nlwFExE/SCfSXh1rlaOwEfrk52+US4EBmvtBqzVF/43uUb3i/Tucb8E80j/0unR9i6LyoXwT2Av8E\nvHvUNQ+p778DXgQeb/7sHHXNw+r9sGXnKXKWS8vXPegMOT0FLADXjbrmIfZ+AfAVOmfAPA783Khr\n7lPfXwBeAN6g8wlsE/AR4COHvOa3N/8uC8fyfvdKUUkq4ngbcpEk9chAl6QiDHRJKsJAl6QiDHRJ\nKsJAl6QiDHRJKsJAl6Qi/h9fny9m92IivAAAAABJRU5ErkJggg==\n",
+      "text/plain": [
+       "<matplotlib.figure.Figure at 0x7ff6781b81d0>"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
     }
    ],
    "source": [
-    "for gsong in genius_tracks.find():\n",
-    "    if 'lyrics' not in gsong:\n",
-    "        lyrics, original_lyrics = genius_lyrics(gsong['url'])\n",
-    "        genius_tracks.update_one({'_id': gsong['_id']}, \n",
-    "                                 {'$set': {'lyrics': lyrics, 'original_lyrics': original_lyrics}})\n",
-    "genius_tracks.find_one({}, ['title', 'lyrics', 'original_lyrics'])"
+    "stones_tracks['valence'].hist()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 50,
+   "execution_count": 23,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "'original_lyrics_text'"
+       "<matplotlib.axes._subplots.AxesSubplot at 0x7ff6707df978>"
       ]
      },
-     "execution_count": 50,
+     "execution_count": 23,
      "metadata": {},
      "output_type": "execute_result"
+    },
+    {
+     "data": {
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXQAAAD8CAYAAABn919SAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEWtJREFUeJzt3X+M5Hddx/Hnmx7I2S3XQmFyOSoLWsCzC8VbEUNidvmV\ns420BELaAOmF4iJSJHH/8AIaq0g81KMxkURP2/Q0wlIrhNoWSK23NCUU3IOj22sDtGXVnvXOQnuy\ntaKLb//Y78Fy3Ha+MzvfmW8/fT6SyX2/3/nMfl/33bnXfec73/lOZCaSpCe+p4w6gCRpMCx0SSqE\nhS5JhbDQJakQFrokFcJCl6RCWOiSVAgLXZIKYaFLUiE2DXNlZ599do6PjwPw6KOPcvrppw9z9V21\nMRO0M5eZ6mtjrjZmgnbmakOmgwcPPpSZz+46MDOHdtuxY0eecODAgWybNmbKbGcuM9XXxlxtzJTZ\nzlxtyAQsZI2O9ZCLJBXCQpekQljoklQIC12SCmGhS1IhLHRJKoSFLkmFsNAlqRAWuiQVYqgf/d+I\n8d03Nb6O2YkVdp1iPUt7Lmx83ZK0Ue6hS1IhLHRJKoSFLkmFsNAlqRAWuiQVwkKXpEJY6JJUCAtd\nkgrRtdAj4ukR8aWI+GpEHI6I362WPz8ivhgR90bExyPiac3HlSStp84e+neBV2XmS4HzgZ0R8Qrg\nQ8BVmflTwMPA5c3FlCR107XQq+8oXa5mn1rdEngVcH21fD9wcSMJJUm11DqGHhGnRcQh4BhwC3Af\n8EhmrlRDHgC2NRNRklRHZGb9wRFnAp8Efhu4tjrcQkScA3w6M887xWNmgBmATqezY25uDoDl5WXG\nxsZqr3vxyPHaY/vV2QxHH/vR5RPbtjS+7sfT67YaBjPV18ZcbcwE7czVhkzT09MHM3Oy27ierraY\nmY9ExAHgF4AzI2JTtZf+XODIOo/ZB+wDmJyczKmpKQDm5+c5MV3Hqa6COGizEyvsXfzRTbL0lqnG\n1/14et1Ww2Cm+tqYq42ZoJ252phpPXXOcnl2tWdORGwGXgvcAxwA3lQNuwz4VFMhJUnd1dlD3wrs\nj4jTWP0P4LrMvDEi7gbmIuL3ga8AVzeYU5LURddCz8w7gZedYvn9wMubCCVJ6p2fFJWkQljoklQI\nC12SCmGhS1IhLHRJKoSFLkmFsNAlqRAWuiQVwkKXpEJY6JJUCAtdkgphoUtSISx0SSqEhS5JhbDQ\nJakQFrokFcJCl6RCWOiSVAgLXZIKYaFLUiEsdEkqxKZRB3giGN9900jWu7TnwpGsV9ITk3voklSI\nroUeEedExIGIuDsiDkfEe6vlV0bEkYg4VN0uaD6uJGk9dQ65rACzmfnliDgDOBgRt1T3XZWZf9xc\nPElSXV0LPTMfBB6spr8TEfcA25oOJknqTU/H0CNiHHgZ8MVq0RURcWdEXBMRZw04mySpB5GZ9QZG\njAGfAz6YmZ+IiA7wEJDAB4Ctmfn2UzxuBpgB6HQ6O+bm5gBYXl5mbGysdtDFI8drj+1XZzMcfazx\n1dQ2sW0L0Pu2GgYz1dfGXG3MBO3M1YZM09PTBzNzstu4WoUeEU8FbgQ+m5kfPsX948CNmXne4/2c\nycnJXFhYAGB+fp6pqamu6z5hGKcOzk6ssHexPWdynjhtsddtNQxmqq+NudqYCdqZqw2ZIqJWodc5\nyyWAq4F71pZ5RGxdM+wNwF39BJUkDUad3dFXAm8DFiPiULXsfcClEXE+q4dcloB3NpJQklRLnbNc\nbgfiFHfdPPg4kqR++UlRSSqEhS5JhbDQJakQFrokFcJCl6RCWOiSVAgLXZIKYaFLUiEsdEkqhIUu\nSYWw0CWpEBa6JBXCQpekQljoklQIC12SCmGhS1IhLHRJKoSFLkmFsNAlqRAWuiQVwkKXpEJsGnUA\nrW98900AzE6ssKuaboumMi3tuXDgP1N6snAPXZIKYaFLUiG6FnpEnBMRByLi7og4HBHvrZY/MyJu\niYhvVH+e1XxcSdJ66uyhrwCzmbkdeAXw7ojYDuwGbs3Mc4Fbq3lJ0oh0LfTMfDAzv1xNfwe4B9gG\nXATsr4btBy5uKqQkqbvIzPqDI8aB24DzgH/JzDOr5QE8fGL+pMfMADMAnU5nx9zcHADLy8uMjY3V\nXvfikeO1x/arsxmOPtb4anrWxlxNZZrYtqXvx/b6nBqWNuZqYyZoZ642ZJqenj6YmZPdxtUu9IgY\nAz4HfDAzPxERj6wt8Ih4ODMf9zj65ORkLiwsADA/P8/U1FStdcMPTuFr0uzECnsX23cmZxtzNZVp\nI6ct9vqcGpY25mpjJmhnrjZkiohahV7rLJeIeCrwd8DfZOYnqsVHI2Jrdf9W4Fi/YSVJG1fnLJcA\nrgbuycwPr7nrBuCyavoy4FODjydJqqvOa+ZXAm8DFiPiULXsfcAe4LqIuBz4Z+DNzUSUJNXRtdAz\n83Yg1rn71YONI0nql58UlaRCWOiSVAgLXZIKYaFLUiEsdEkqhIUuSYWw0CWpEBa6JBXCQpekQljo\nklQIC12SCmGhS1IhLHRJKoSFLkmFsNAlqRAWuiQVwkKXpEJY6JJUCAtdkgphoUtSISx0SSqEhS5J\nhbDQJakQXQs9Iq6JiGMRcdeaZVdGxJGIOFTdLmg2piSpmzp76NcCO0+x/KrMPL+63TzYWJKkXnUt\n9My8Dfj2ELJIkjZgI8fQr4iIO6tDMmcNLJEkqS+Rmd0HRYwDN2bmedV8B3gISOADwNbMfPs6j50B\nZgA6nc6Oubk5AJaXlxkbG6sddPHI8dpj+9XZDEcfa3w1PWtjrqYyTWzb0vdje31ODUsbc7UxE7Qz\nVxsyTU9PH8zMyW7j+ir0uvedbHJyMhcWFgCYn59namqq67pPGN99U+2x/ZqdWGHv4qbG19OrNuZq\nKtPSngv7fmyvz6lhaWOuNmaCduZqQ6aIqFXofR1yiYita2bfANy13lhJ0nB03cWKiI8BU8DZEfEA\n8DvAVEScz+ohlyXgnQ1mlCTV0LXQM/PSUyy+uoEskqQN8JOiklQIC12SCmGhS1IhLHRJKoSFLkmF\nsNAlqRAWuiQVwkKXpEJY6JJUCAtdkgphoUtSISx0SSqEhS5JhbDQJakQ7foaHD3pbeSbqWYnVtjV\n5+M38k1JT1TD+Baw9TwZt/cwuIcuSYWw0CWpEBa6JBXCQpekQljoklQIC12SCmGhS1IhLHRJKkTX\nQo+IayLiWETctWbZMyPiloj4RvXnWc3GlCR1U2cP/Vpg50nLdgO3Zua5wK3VvCRphLoWembeBnz7\npMUXAfur6f3AxQPOJUnqUb/H0DuZ+WA1/e9AZ0B5JEl9iszsPihiHLgxM8+r5h/JzDPX3P9wZp7y\nOHpEzAAzAJ1OZ8fc3BwAy8vLjI2N1Q66eOR47bH96myGo481vpqetTFXaZkmtm0ZbJg1en2uD8Py\n8jLfPP69ka1/ve3d1m016kzT09MHM3Oy27h+r7Z4NCK2ZuaDEbEVOLbewMzcB+wDmJyczKmpKQDm\n5+c5MV1Hv1fR68XsxAp7F9t3Aco25iot09JbpgYbZo1en+vDMD8/z97bHx3Z+tfb3m3dVm3LtJ5+\nD7ncAFxWTV8GfGowcSRJ/apz2uLHgC8AL4qIByLicmAP8NqI+AbwmmpekjRCXV+fZual69z16gFn\nkSRtgJ8UlaRCWOiSVAgLXZIKYaFLUiEsdEkqhIUuSYWw0CWpEBa6JBXCQpekQljoklQIC12SCmGh\nS1IhLHRJKoSFLkmFsNAlqRDt+g4x6UlofAhfr3iy2YkVRvnPf72/8+zESqNfN7m058LGfnYbuIcu\nSYWw0CWpEBa6JBXCQpekQljoklQIC12SCmGhS1IhLHRJKsSGPlkQEUvAd4DvASuZOTmIUJKk3g3i\no2LTmfnQAH6OJGkDPOQiSYWIzOz/wRHfBB4GEvjzzNx3ijEzwAxAp9PZMTc3B8Dy8jJjY2O117V4\n5HjfOevqbIajjzW+mp61MZeZ6mtjrjZmguZzTWzb0vNjeu2qJkxPTx+sc0h7o4W+LTOPRMRzgFuA\n92TmbeuNn5yczIWFBQDm5+eZmpqqva5hXMBodmKFvYvtu15ZG3OZqb425mpjJmg+Vz8X5+q1q5oQ\nEbUKfUOHXDLzSPXnMeCTwMs38vMkSf3ru9Aj4vSIOOPENPA64K5BBZMk9WYjr206wCcj4sTP+Whm\nfmYgqSRJPeu70DPzfuClA8wiSdoAT1uUpEJY6JJUCAtdkgphoUtSISx0SSqEhS5JhbDQJakQ7buY\ngyQ1pJ9rQs1OrLBrANeS6uc6Mr1yD12SCmGhS1IhLHRJKoSFLkmFsNAlqRAWuiQVwkKXpEJY6JJU\nCAtdkgphoUtSISx0SSqEhS5JhbDQJakQFrokFcJCl6RCbKjQI2JnRHwtIu6NiN2DCiVJ6l3fhR4R\npwEfAX4J2A5cGhHbBxVMktSbjeyhvxy4NzPvz8z/AeaAiwYTS5LUq40U+jbgX9fMP1AtkySNQGRm\nfw+MeBOwMzPfUc2/Dfj5zLzipHEzwEw1+yLga9X02cBDfa28OW3MBO3MZab62pirjZmgnbnakOl5\nmfnsboM28iXRR4Bz1sw/t1r2QzJzH7Dv5OURsZCZkxtY/8C1MRO0M5eZ6mtjrjZmgnbmamOm9Wzk\nkMs/AedGxPMj4mnAJcANg4klSepV33vombkSEVcAnwVOA67JzMMDSyZJ6slGDrmQmTcDN/f58B85\nDNMCbcwE7cxlpvramKuNmaCdudqY6ZT6flNUktQufvRfkgrReKF3uzxARPxYRHy8uv+LETHegky/\nGBFfjoiV6vTMxtXI9BsRcXdE3BkRt0bE81qS61cjYjEiDkXE7cP4tHDdS05ExBsjIiNiKGco1NhW\nuyLiP6ptdSgi3jHqTNWYN1fPrcMR8dFRZ4qIq9Zso69HxCNNZ6qZ6yci4kBEfKX6d3jBMHL1JDMb\nu7H6Zul9wAuApwFfBbafNObXgD+rpi8BPt6CTOPAS4C/At7UZJ4eMk0DP15Nv6vp7dRDrmesmX49\n8JlRZ6rGnQHcBtwBTLZkW+0C/rTpLD1mOhf4CnBWNf+cUWc6afx7WD3hog3bah/wrmp6O7A0rN9l\n3VvTe+h1Lg9wEbC/mr4eeHVExCgzZeZSZt4J/F+DOXrNdCAz/6uavYPV8/7bkOs/18yeDjT9pkzd\nS058APgQ8N8N5+k11zDVyfQrwEcy82GAzDzWgkxrXQp8rOFMdXMl8Ixqegvwb0PI1ZOmC73O5QG+\nPyYzV4DjwLNGnGnYes10OfDpRhOtqpUrIt4dEfcBfwj8+qgzRcTPAudk5k0NZ+kpV+WN1cv16yPi\nnFPcP+xMLwReGBGfj4g7ImJnCzIBUB1WfD7wjw1nqpvrSuCtEfEAq2f3vWcIuXrim6JPMBHxVmAS\n+KNRZzkhMz+SmT8J/CbwW6PMEhFPAT4MzI4yxzr+HhjPzJcAt/CDV6ajtInVwy5TrO4N/0VEnDnS\nRD9wCXB9Zn5v1EEqlwLXZuZzgQuAv66eb63RdJg6lwf4/piI2MTqS5lvjTjTsNXKFBGvAd4PvD4z\nv9uWXGvMARc3mqh7pjOA84D5iFgCXgHcMIQ3Rrtuq8z81prf218CO0adidU90Rsy838z85vA11kt\n+FFmOuEShnO4Berluhy4DiAzvwA8ndXrvLRHw280bALuZ/Vl04k3Gn7mpDHv5offFL1u1JnWjL2W\n4bwpWmc7vYzVN23ObTpPj7nOXTP9y8DCqDOdNH6e4bwpWmdbbV0z/QbgjhZk2gnsr6bPZvWww7NG\n/fsDXgwsUX1WpiW/v08Du6rpn2b1GPpQ8tX+ewxhQ13A6v/69wHvr5b9Hqt7mbD6v9zfAvcCXwJe\n0IJMP8fqnsujrL5aONyCTP8AHAUOVbcbhvIE6Z7rT4DDVaYDj1euw8p00tihFHrNbfUH1bb6arWt\nXtyCTMHqIaq7gUXgklFnquavBPYM4/fWw7baDny++v0dAl43zHx1bn5SVJIK0aoD+pKk/lnoklQI\nC12SCmGhS1IhLHRJKoSFLkmFsNAlqRAWuiQV4v8Bxcg1f/kQdZwAAAAASUVORK5CYII=\n",
+      "text/plain": [
+       "<matplotlib.figure.Figure at 0x7ff6707db4a8>"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
     }
    ],
    "source": [
-    "genius_tracks.create_index([('original_lyrics', pymongo.TEXT)])"
+    "radiohead_tracks['valence'].hist()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 51,
-   "metadata": {
-    "scrolled": true
-   },
+   "execution_count": 24,
+   "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "[\"\\n\\nClaudine's back in jail again\\nClaudine's back in jail (again)\\nClaudine's back in jail again\\nClaudine\\n\\nClaudine's back in jail again\\nClaudine's back in jail (again)\\nShe only does it at weekends\\nClaudine\\nOh, Claudine\\n\\nNow only Spider knows for sure\\nBut he ain't talkin' about it any more\\nIs he, Claudine?\\n\\nThere's blood in the chalet\\nAnd blood in the snow\\n(She)Washed her hands of the whole damn show\\nThe best thing you could do, Claudine\\n\\nShot him once right through the head\\nShot him twice right through the chest\\nThe judge says (ruled) it was an accident\\nClaudine\\nAccidents will happen\\n(In the best homes)\\n\\nAnd Claudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\nClaudine\\n\\n(Claudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\n\\nClaudine) (additional chorus)\\nI'll tell you something\\nNow Claudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\nClaudine\\n\\nTell you one more\\n\\nClaudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\nHuh Claudine?\\n\\nOh Claudine...\\n\\nOooo ...\\nWhat about the children, baby?\\nPoor, poor children\\n\\nNow I threaten my wife with a gun\\nI always leave the safety on\\nI recommend it\\nClaudine\\n\\nNow she pistol whipped me once or twice\\nBut she never tried to take my life\\n(What do you think about that)\\nClaudine\\n\\nThe prettiest girl I ever seen\\nI saw you on the movie screen\\nHope you don't try to make a sacrifice of me\\nClaudine\\n(Don't get trigger happy with me)\\nDon't wave a gun at me\\n(Claudine)\\n\\nI said Claudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\nClaudine\\n\\nI said Claudine's back in jail again\\nClaudine's back in jail again\\nShe only does it at weekends\\nClaudine\\n\\nKeith, will you put that weapon down?\\n\\nOh Claudine\\n\\nOh Claudine\\n\\n\",\n",
-       " \"\\n\\n[Verse 1]\\nI'm not talking about the kind of clothes she wears\\nLook at that stupid girl\\nI'm not talking about the way she combs her hair\\nLook at that stupid girl\\n\\nThe way she powders her nose\\nHer vanity shows and it shows\\nShe's the worst thing in this world\\nWell, look at that stupid girl\\n\\n[Verse 2]\\nI'm not talking about the way she digs for gold\\nLook at that stupid girl\\nWell, I'm talking about the way she grabs and holds\\nLook at that stupid girl\\n\\nThe way she talks about someone else\\nThat she don't even know herself\\nShe's the sickest thing in this world\\nWell, look at that stupid girl\\n\\n[Chorus]\\nWell, I'm sick and tired and I really have my doubts\\nI've tried and tried, but it never really works out\\n\\n[Verse 3]\\nLike a lady-in-waiting to a virgin queen\\nLook at that stupid girl\\nShe bitches about things that she's never seen\\nLook at that stupid girl\\n\\nIt doesn't matter if she dyes her hair\\nOr the color of the shoes she wears\\nShe's the worst thing in this world\\nWell, look at that stupid girl\\n\\n[Guitar Break]\\n\\n[Verse 4]\\nLike a lady-in-waiting to a virgin queen\\nLook at that stupid girl\\nShe bitches about things that she's never seen\\nLook at that stupid girl\\n\\nAnd she purrs like a pussycat\\nThen she turns around and hisses back\\nShe's the sickest thing in this world\\nLook at that stupid girl\\n\\n\",\n",
-       " \"\\n\\n[Verse 1]\\nWent out walking through the wood the other day\\nAnd the world was a carpet laid before me\\nThe buds were bursting and the air smelled sweet and strange\\nAnd it seemed about a hundred years ago\\nMary and I, we would sit upon a gate\\nJust gazing at some dragon in the sky\\nWhat tender days, we had no secrets hid away\\nWell, it seemed about a hundred years ago\\nNow all my friends are wearing worried smiles\\nLiving out a dream of what they was\\nDon't you think it's sometimes wise not to grow up?\\nWend out walking through the wood the other day\\nCan't you see the furrows in my forehead?\\nWhat tender days, we had no secrets hid away\\nNow it seems about a hundred years ago\\nNow if you see me drinking bad red wine\\nDon't worry 'bout this man that you love\\nDon't you think it's sometimes wise not to grow up?\\n\\n[Chorus]\\nYou're going to kiss and say good-bye, yeah, I warn you[x2]\\nYou're going to kiss and say good-bye, oh Lord, I warn you\\n\\n[Verse 2]\\nAnd please excuse me while I hide away\\nCall me lazy bones\\nIsn’t got no time to waste away\\nLazy bones has not got no time to waste away\\nDon't you think it's just about time to hide away? Yeah, yeah!\\n\\n\",\n",
-       " \"\\n\\n[Instrument break]\\n\\n[Verse 1]\\nI don't like you\\nBut I love you\\nSeems that I'm always\\nThinking of you\\nOh, oh, oh\\nYou treat me badly\\nI love you madly\\nYou've really got a hold on me\\nYou've really got a hold on me, baby\\n\\n[Verse 2]\\nI don't want you\\nBut I need you\\nDon't want to kiss you\\nBut I need to\\nOh, oh, oh\\nYou do me wrong now\\nMy love is strong now\\nYou've really got a hold on me\\nYou've really got a hold on me, baby\\n\\n[Chorus]\\nI love you and all I want you to do\\nIs just hold me, hold me, hold me, hold me\\nTighter\\nTighter\\n\\n[Verse 3]\\nI want to leave you\\nDon't want to stay here\\nDon't want to spend\\nAnother day here\\nOh, oh, oh, I want to split now\\nI just can quit now\\nYou've really got a hold on me\\nYou've really got a hold on me, baby\\n\\nI love you and all I want you to do\\nIs just hold me, hold me, hold me, hold me\\n\\n[Outro]\\nYou've really got a hold on me\\nYou've really got a hold on me\\n\\n\",\n",
-       " \"\\n\\n[Verse 1]\\nThe best things in life are free\\nBut you can keep them for the birds and bees\\nNow give me money\\nThat's what I want\\nThat's what I want, yeah\\nThat's what I want\\n\\nYour loving gives me a thrill\\nBut your loving don't pay my bills\\nNow give me money\\nThat's what I want\\nThat's what I want, yeah\\nThat's what I want\\n\\n[Chorus] [x2]\\nMoney don't get everything it's true\\nWhat it don't get, I can't use\\nNow give me money\\nThat's what I want\\nThat's what I want, yeah\\nThat's what I want, wah\\n\\n[Verse 2]\\nWell now give me money\\nA lot of money\\nWow, yeah, I want to be free\\nOh I want money\\nThat's what I want\\nThat's what I want, well\\nNow give me money\\nA lot of money\\nWow, yeah, you need money\\nNow, give me money\\nThat's what I want, yeah\\nThat's what I want\\n\\n\",\n",
-       " '\\n\\n[Intro]\\nI say hey, Mona\\nOh, Mona\\nI say yeah, yeah, yeah, yeah, Mona\\nOh, Mona\\n\\n[Chorus][x2]\\nI tell you Mona what I want to do\\nI will build a house next door to you\\nCan I see you sometimes?\\nWe can blow kisses through the blinds\\nYeah can I out come out on the front\\nAnd listen to my heart go bumped bump\\nI need you baby that is no lie\\nWithout your love I would surely die\\nI say hey, Mona\\nOh, Mona\\nI say yeah, yeah, yeah, yeah, Mona\\nOh, Mona\\nI say hey, hey Mona\\nOh, Mona\\nI say yeah, yeah, yeah, yeah, Mona\\nOh, Mona\\n\\n',\n",
-       " \"\\n\\n[Verse 1]\\nNow, if you want to hear some boogie like I am going to play\\nIt is just an old piano and a knockout bass\\nThe drummer's man's a cat, they call Charlie McCoy\\nYou know, remember that rubber legged boy?\\nMama, cooking chicken fried and bacon grease\\nCome on along boys, it is just down the road apiece\\n\\n[Chorus][x2]\\nWell there is a place you really get your kicks\\nIt is open every night about twelve to six\\nNow if you want to hear some boogie you can get your fill\\nAnd shove and sting like an old steam drill\\nCome on along you can lose your lead\\nDown the road, down the road, down the road apiece\\n\\n\",\n",
-       " \"\\n\\n[Verse 1]\\nSun turnin' 'round with graceful motion\\nWe're setting off with soft explosion\\nBound for a star with fiery oceans\\nIt's so very lonely, you're a hundred light years from home\\nFreezing red deserts turn to dark\\nEnergy here in every part\\nIt's so very lonely, you're six hundred light years from home\\n\\n[Chorus]\\nIt's so very lonely, you're a thousand light years from home\\nIt's so very lonely, you're a thousand light years from home\\n\\n[Verse 2]\\nBell flight fourteen you now can land\\nSee you on Aldebaran, safe on the green desert sand\\nIt's so very lonely, you're two thousand light years from home\\nIt's so very lonely, you're two thousand light years from home\\n\\n\",\n",
-       " '\\n\\n[Intro]\\nWell if you ever plan to motor west\\nJust take my way that is the highway that is the best\\n\\n[Verse]\\nGet your kicks on Route 66\\nWell it winds from Chicago to L.A\\nMore than 2000 miles all the way\\nGet your kicks on Route 66\\n\\n[Chorus][x2]\\nWell goes from St. Louie down to Missouri\\nOklahoma city looks oh so pretty\\nYou will see Amarillo and Gallup, New Mexico\\nFlagstaff, Arizona do not forget Winona\\nKingman, Barstow, San Bernardino\\nWould you get hip to this kindly tip\\nAnd go take that California trip\\nGet your kicks on Route 66\\n\\n',\n",
-       " \"\\n\\nWell, they tell me of a pie up in the sky\\nWaiting for me when I die\\nBut between the day you're born and when you die\\nYou know, they never seem to hear even your cry\\n\\nChorus:\\nSo as sure as the sun will shine\\nI'm gonna get my share now what is mine\\nAnd then the harder they come\\nThe harder they fall\\nOne and all\\nThe harder they come\\nThe harder they fall\\nOne and all\\n\\nAnd the oppressors are trying to track me down\\nThey're trying to drive me underground\\nAnd they think that they have got the battle won\\nI say, forgive them Lord, they know not what they've done\\n\\nAnd I keep on fighting for the things I want\\nThough I know that when you're dead you can't\\nBut I'd rather be a free man in my grave\\nThan living as a puppet or a slave\\n\\n\"]"
+       "<matplotlib.axes._subplots.AxesSubplot at 0x7ff6707b7828>"
+      ]
+     },
+     "execution_count": 24,
+     "metadata": {},
+     "output_type": "execute_result"
+    },
+    {
+     "data": {
+      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXQAAAD8CAYAAABn919SAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEEZJREFUeJzt3X2MZXddx/H3l10rdGb7AKXjpu2yJTxIU5dIJwiZZJ2h\nxNSq2yY2pATYYlZ3gBSrlUiVPzAaE0gUxEDiTii6msq0VGIXBBVLJ6sbd7XbB0pbgbXA0Lq0Rfo0\nC1oKX/+4x2Z3urv33Dv3njPzu+9Xspl77j0P3+/cmc/+5jzdyEwkSWvf89ouQJI0GAa6JBXCQJek\nQhjoklQIA12SCmGgS1IhDHRJKoSBLkmFMNAlqRDrm9zYWWedlZs3b+5r2SNHjjA2NjbYgtaAUe0b\nRrf3Ue0bRrf3bn0fPHjwO5n54m7raTTQN2/ezO23397XsgsLC0xPTw+2oDVgVPuG0e19VPuG0e29\nW98R8c0663GXiyQVwkCXpEIY6JJUCANdkgphoEtSIQx0SSqEgS5JhTDQJakQBrokFaLRK0Wlk5qd\nPXZ6auq5zw3Lrl3NbEcaIkfoklQIA12SCmGgS1IhDHRJKoSBLkmFMNAlqRAGuiQVwkCXpEIY6JJU\nCANdkgphoEtSIQx0SSpErUCPiN+MiHsj4ssR8cmIeH5EnB8RByLiUETcGBGnDLtYSdKJdQ30iDgH\n+HVgMjMvBNYBVwIfBD6cmS8DHgN2DLNQSdLJ1d3lsh54QUSsB04FDgNvAG6uXt8NXD748iRJdUVm\ndp8p4hrgD4HvA/8IXAPsr0bnRMR5wOerEfzyZXcCOwEmJiYump+f76vQpaUlxsfH+1p2LRupvhcX\nj5lcGhtj/MiRZra9aVMz26lhpN7zZUa19259z8zMHMzMyW7r6foBFxFxJnAZcD7wOPAp4JK6hWbm\nHDAHMDk5mdPT03UXPcbCwgL9LruWjVTfyz7MYmFqiul9+5rZ9vbtzWynhpF6z5cZ1d4H1XedXS5v\nBL6emY9m5g+ATwNTwBnVLhiAc4GHVlyNJKlvdQJ9EXhdRJwaEQFcDNwH3AZcUc1zFXDLcEqUJNXR\nNdAz8wCdg593APdUy8wB7wWujYhDwIuA64dYpySpi1ofEp2Z7wfev+zpB4DXDrwiSVJfvFJUkgph\noEtSIQx0SSqEgS5JhTDQJakQBrokFcJAl6RCGOiSVAgDXZIKUetKUUlDsuwOkwBMTR3/+UHatWu4\n61crHKFLUiEMdEkqhIEuSYUw0CWpEAa6JBXCQJekQhjoklQIA12SCmGgS1IhDHRJKoSBLkmF8F4u\nEgz/3ilSAxyhS1IhDHRJKoSBLkmFMNAlqRAGuiQVwkCXpEIY6JJUCANdkgphoEtSIQx0SSqEgS5J\nhTDQJakQBrokFcJAl6RCGOiSVAgDXZIKUSvQI+KMiLg5Iv4jIu6PiNdHxAsj4gsR8bXq65nDLlaS\ndGJ1R+gfAf4+M38SeDVwP3AdcGtmvhy4tZqWJLWka6BHxOnAVuB6gMx8OjMfBy4Ddlez7QYuH1aR\nkqTu6ozQzwceBf48Iu6MiI9HxBgwkZmHq3m+DUwMq0hJUneRmSefIWIS2A9MZeaBiPgI8CTw7sw8\n46j5HsvM5+xHj4idwE6AiYmJi+bn5/sqdGlpifHx8b6WXctGqu/FxWMml8bGGD9ypKVi2tNI35s2\nDXf9fRqpn/ejdOt7ZmbmYGZOdlvP+hrbehB4MDMPVNM309lf/nBEbMzMwxGxEXjkeAtn5hwwBzA5\nOZnT09M1NvlcCwsL9LvsWjZSfc/OHjO5MDXF9L59LRXTnkb63r59uOvv00j9vB9lUH133eWSmd8G\nvhURr6yeuhi4D9gDXFU9dxVwy4qrkST1rc4IHeDdwA0RcQrwAPArdP4zuCkidgDfBN40nBIlSXXU\nCvTMvAs43v6biwdbjiSpX14pKkmFMNAlqRB196FrlCw720QFavM93rWrvW0XzhG6JBXCQJekQhjo\nklQIA12SCmGgS1IhDHRJKoSBLkmFMNAlqRAGuiQVwkCXpEIY6JJUCANdkgphoEtSIQx0SSqEgS5J\nhTDQJakQBrokFcJAl6RCGOiSVAgDXZIKYaBLUiEMdEkqhIEuSYUw0CWpEAa6JBVifdsFSBoxs7Mn\nfm1q6uSvr8SuXcNZ7yriCF2SCmGgS1IhDHRJKoSBLkmF8KCotMosPQV79za/3a1bm9+mBssRuiQV\nwhG6pJEyrLMiT6apMyYdoUtSIQx0SSqEu1wktWb5wd+lLcM7IHxDC7tamlZ7hB4R6yLizoj4bDV9\nfkQciIhDEXFjRJwyvDIlSd30ssvlGuD+o6Y/CHw4M18GPAbsGGRhkqTe1Ar0iDgX+AXg49V0AG8A\nbq5m2Q1cPowCJUn11B2h/wnw28CPqukXAY9n5jPV9IPAOQOuTZLUg8jMk88Q8YvApZn5roiYBt4D\nvB3YX+1uISLOAz6fmRceZ/mdwE6AiYmJi+bn5/sqdGlpifHx8b6WXcta6XtxsdntncDS2BjjR460\nXUbjnnjBGOseab7v8Q2Nb5Klp46d/uHZw+v9uxs2DWW9dWzqsuluv+czMzMHM3Oy23bqnOUyBWyL\niEuB5wOnAR8BzoiI9dUo/VzgoeMtnJlzwBzA5ORkTk9P19jkcy0sLNDvsmtZK323ceXFcSxMTTG9\nb1/bZTTus1umOO2jzffdxqX/y89oefLq4fX+ma3bh7LeOrZ32fSgfs+77nLJzN/JzHMzczNwJfDF\nzHwLcBtwRTXbVcAtK65GktS3lVxY9F7g2og4RGef+vWDKUmS1I+eLizKzAVgoXr8APDawZckSeqH\nl/5LUiEMdEkqhIEuSYUw0CWpEN5tURLQzsfeabAcoUtSIQx0SSqEgS5JhTDQJakQBrokFcJAl6RC\nGOiSVAgDXZIKYaBLUiGKu1J09jPNfNrOrl/a1ch2JKkuR+iSVAgDXZIKYaBLUiEMdEkqhIEuSYUw\n0CWpEAa6JBXCQJekQhjoklQIA12SCmGgS1IhDHRJKoSBLkmFKO5ui01p4q6O3tFRUi8coUtSIRyh\nr2azszA11fkqaUXesred36Mbtjb3l7YjdEkqhIEuSYVwl4v6snfv8LextOXY7WzdOvxtLtdEn8+x\npYVtqgiO0CWpEAa6JBXCQJekQhjoklQIA12SCtE10CPivIi4LSLui4h7I+Ka6vkXRsQXIuJr1dcz\nh1+uJOlE6py2+AzwW5l5R0RsAA5GxBeAtwO3ZuYHIuI64DrgvcMrtSX/3MZ5ax2zp8PUui3Mnt5e\nDSdyeLK3+d9zewvnHEojpusIPTMPZ+Yd1eOngPuBc4DLgN3VbLuBy4dVpCSpu8jM+jNHbAb2AhcC\ni5l5RvV8AI/9//SyZXYCOwEmJiYump+f76vQpaUlxsfHu863+MRiX+s/8YafGuz6ejT2grM58v1H\nWq3heJ5+urf5f+J7G3rexg/PHmPdI0eenR7vfRUr1sbbv7zvUVJi79/dsIlNm04+T7d8m5mZOZiZ\nXf8urn2laESMA38D/EZmPtnJ8I7MzIg47v8MmTkHzAFMTk7m9PR03U0eY2FhgTrLDvy2tne3u7tj\n6tVXs+/uj7Zaw/EcPtzb/P3scnny6ilO++i+Z6dH5UrR5X2PkhJ7/8zW7WzffvJ56uZbN7XOcomI\nH6MT5jdk5qerpx+OiI3V6xuB1TeMlKQR0nWEXu1OuR64PzM/dNRLe4CrgA9UX28ZSoVrSK+j1jqe\nftXJ17tx4+C3KWltqrPLZQp4G3BPRNxVPfe7dIL8pojYAXwTeNNwSpQk1dE10DPzX4A4wcsXD7Yc\n6cRaufOhtIZ4pagkFcJAl6RCGOiSVAgDXZIKYaBLUiEMdEkqhIEuSYUw0CWpEAa6JBXCQJekQhjo\nklQIA12SCmGgS1Ihan9ikbQSfzTZ+60St526hbkelivpg6j7+X71o6TvmRyhS1IxDHRJKoSBLkmF\nMNAlqRAGuiQVwkCXpEIY6JJUCANdkgphoEtSIbxSdI07fLjtCiStFo7QJakQjtClHg37PivbTt0y\n1PUfrYl7xni/mOY4QpekQhjoklQIA12SCmGgS1Ih1s5B0cVFmJ3tPt/pzXwwgFafpj4UQlqtHKFL\nUiEMdEkqhIEuSYUw0CWpEGvnoGiPvMeJtDr0crB626lbmOvj4LZXo3Y4QpekQhjoklSIFQV6RFwS\nEV+JiEMRcd2gipIk9a7vQI+IdcDHgJ8HLgDeHBEXDKowSVJvVjJCfy1wKDMfyMyngXngssGUJUnq\n1UoC/RzgW0dNP1g9J0lqQWRmfwtGXAFckpm/Wk2/DfiZzLx62Xw7gZ3V5CuBr/RZ61nAd/pcdi0b\n1b5hdHsf1b5hdHvv1vdLMvPF3VaykvPQHwLOO2r63Oq5Y2TmHDC3gu0AEBG3Z+bkStez1oxq3zC6\nvY9q3zC6vQ+q75Xscvl34OURcX5EnAJcCexZaUGSpP70PULPzGci4mrgH4B1wCcy896BVSZJ6smK\nLv3PzM8BnxtQLd2seLfNGjWqfcPo9j6qfcPo9j6Qvvs+KCpJWl289F+SCrHqAr3b7QQi4scj4sbq\n9QMRsbn5KgevRt/XRsR9EfGliLg1Il7SRp3DUPcWEhHxyxGREVHEWRB1+o6IN1Xv+70R8ddN1zgs\nNX7eN0XEbRFxZ/Uzf2kbdQ5SRHwiIh6JiC+f4PWIiD+tvidfiojX9LyRzFw1/+gcXP1P4KXAKcDd\nwAXL5nkX8GfV4yuBG9uuu6G+Z4BTq8fvLKHvur1X820A9gL7gcm2627oPX85cCdwZjV9dtt1N9j7\nHPDO6vEFwDfarnsAfW8FXgN8+QSvXwp8HgjgdcCBXrex2kbodW4ncBmwu3p8M3BxRESDNQ5D174z\n87bM/F41uZ/Oef8lqHsLiT8APgj8T5PFDVGdvn8N+FhmPgaQmY80XOOw1Ok9gdOqx6cD/9VgfUOR\nmXuB755klsuAv8yO/cAZEbGxl22stkCvczuBZ+fJzGeAJ4AXNVLd8PR6G4UddP4nL0HX3qs/Pc/L\nzL9rsrAhq/OevwJ4RUTsi4j9EXFJY9UNV53efw94a0Q8SOdMunc3U1qrVnw7lWI/sahUEfFWYBL4\n2bZraUJEPA/4EPD2lktpw3o6u12m6fxFtjcifiozH2+1qma8GfiLzPzjiHg98FcRcWFm/qjtwlaz\n1TZCr3M7gWfniYj1dP4c++9GqhueWrdRiIg3Au8DtmXm/zZU27B1630DcCGwEBHfoLNvcU8BB0br\nvOcPAnsy8weZ+XXgq3QCfq2r0/sO4CaAzPxX4Pl07ndSslo5cDKrLdDr3E5gD3BV9fgK4ItZHVFY\nw7r2HRE/DeyiE+al7EuFLr1n5hOZeVZmbs7MzXSOH2zLzNvbKXdg6vys/y2d0TkRcRadXTAPNFnk\nkNTpfRG4GCAiXkUn0B9ttMrm7QG2V2e7vA54IjN7+3Tkto/8nuBI71fpHAV/X/Xc79P5JYbOG/sp\n4BDwb8BL2665ob7/CXgYuKv6t6ftmpvqfdm8CxRwlkvN9zzo7G66D7gHuLLtmhvs/QJgH50zYO4C\nfq7tmgfQ8yeBw8AP6Pz1tQN4B/COo97vj1Xfk3v6+Tn3SlFJKsRq2+UiSeqTgS5JhTDQJakQBrok\nFcJAl6RCGOiSVAgDXZIKYaBLUiH+D+B9dHQ5ISmDAAAAAElFTkSuQmCC\n",
+      "text/plain": [
+       "<matplotlib.figure.Figure at 0x7ff6880c7ac8>"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "beatles_tracks['valence'].hist(alpha=0.6, color='blue')\n",
+    "stones_tracks['valence'].hist(alpha=0.6, color='red')\n",
+    "radiohead_tracks['valence'].hist(alpha=0.6, color='green')"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 31,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "275"
       ]
      },
-     "execution_count": 51,
+     "execution_count": 31,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "[t['original_lyrics'] for t in genius_tracks.find({'$text': {'$search': 'chorus'}}, limit=10)]"
+    "tracks.find({'artist_id': stones_id, 'valence': {'$exists': True}}).count()"
    ]
   },
   {
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Matching datasets<a name=\"matchingdatasets\"></a>\n",
-    "Now it's time to match up the datasets. First, we simplify the titles of the tracks, to sidestep differences in punctuation, capitalisation, and the like.\n",
+    "## Lyrics search<a name=\"lyricssearch\"></a>\n",
+    "Now to find the lyrics for each track. \n",
+    "\n",
+    "We start by searching for the Genius ID for the artists.\n",
+    "\n",
+    "Note that Genius doesn't like Python-generated requests to its API, so we set the header to pretend to be a command-line `curl` request.\n",
     "\n",
     "* [Top](#top)"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 8,
+   "execution_count": 25,
    "metadata": {},
    "outputs": [],
    "source": [
-    "def canonical_name(text):\n",
-    "    t1 = re.sub(' - .*', '', text) # Strip the \" - Remastered 2015\" suffix\n",
-    "    t2 = re.sub('[^\\w\\s]', '', t1) # strip all characters except letters, numbers, and whitespace\n",
-    "    t3 = re.sub('\\s+', ' ', t2) # collapse whitespace\n",
-    "    return t3.lower() # convert to lowercase and return"
+    "def genius_artist_search(artist_name, per_page=20):\n",
+    "    query = urllib.parse.urlencode({'q': artist_name,\n",
+    "                                    'per_page': str(per_page)\n",
+    "                                   })\n",
+    "    headers = {'Accept': 'application/json',\n",
+    "               'Authorization': 'Bearer ' + config['genius']['token'],\n",
+    "               'User-Agent': 'curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)'}\n",
+    "    request = urllib.request.Request('https://api.genius.com/search?{}'.format(query), \n",
+    "                                     headers=headers,\n",
+    "                                     method='GET')\n",
+    "    with urllib.request.urlopen(request) as f:\n",
+    "            response = json.loads(f.read().decode('utf-8'))\n",
+    "            return response"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 9,
+   "execution_count": 26,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "'a hard days night'"
+       "586"
       ]
      },
-     "execution_count": 9,
+     "execution_count": 26,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "canonical_name(\"A Hard Day's Night - Live / Remastered\")"
+    "response = genius_artist_search('the beatles')\n",
+    "beatles_genius_id = [hit['result']['primary_artist']['id'] for hit in response['response']['hits']][0]\n",
+    "beatles_genius_id"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 27,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "774"
+      ]
+     },
+     "execution_count": 27,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "response = genius_artist_search('rolling stones')\n",
+    "stones_genius_id = [hit['result']['primary_artist']['id'] for hit in response['response']['hits']][0]\n",
+    "stones_genius_id"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 28,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "604"
+      ]
+     },
+     "execution_count": 28,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "response = genius_artist_search('radiohead')\n",
+    "radiohead_genius_id = [hit['result']['primary_artist']['id'] for hit in response['response']['hits']][0]\n",
+    "radiohead_genius_id"
    ]
   },
   {
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "Add the simplified title to each track in the Spotify and Genius collections."
+    "We can now get the song information for each track for each artist. Note that Genius keeps lots of things to do with artists, including sleeve notes and the like. We're just after the lyrics."
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 12,
+   "execution_count": 42,
    "metadata": {},
    "outputs": [],
    "source": [
-    "for t in tracks.find():\n",
-    "    tracks.update_one({'_id': t['_id']}, {'$set': {'ctitle': canonical_name(t['name'])}})\n",
-    "for t in genius_tracks.find():\n",
-    "    genius_tracks.update_one({'_id': t['_id']}, {'$set': {'ctitle': canonical_name(t['title'])}})"
+    "def genius_song_search(artist_id):\n",
+    "    songs = pd.DataFrame()\n",
+    "    page = 1\n",
+    "    while page:\n",
+    "        query = urllib.parse.urlencode({'page': page, 'per_page': 20})\n",
+    "        headers = {'Accept': 'application/json',\n",
+    "               'Authorization': 'Bearer ' + config['genius']['token'],\n",
+    "               'User-Agent': 'curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)'}\n",
+    "        request = urllib.request.Request('https://api.genius.com/artists/{id}/songs?{query}'.format(id=artist_id,\n",
+    "                                                                                               query=query), \n",
+    "                                     headers=headers,\n",
+    "                                     method='GET')\n",
+    "        with urllib.request.urlopen(request) as f:\n",
+    "            response = json.loads(f.read().decode('utf-8'))\n",
+    "            page = response['response']['next_page']\n",
+    "            for song in response['response']['songs']:\n",
+    "                if song['path'].endswith('lyrics'):\n",
+    "                    song['_id'] = song['id']\n",
+    "                    genius_tracks.replace_one({'_id': song['id']}, song, upsert=True)"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 81,
+   "execution_count": 43,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "[('fight', ['Fight', 'Fight - Remastered 2009']),\n",
-       " ('eight days a week',\n",
-       "  ['Eight Days A Week - Remastered 2015',\n",
-       "   'Eight Days A Week - Remastered 2009']),\n",
-       " ('yesterday', ['Yesterday - Remastered 2015', 'Yesterday - Remastered 2009']),\n",
-       " ('had it with you', ['Had It With You', 'Had It With You - Remastered 2009']),\n",
-       " ('little red rooster',\n",
-       "  ['Little Red Rooster - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Little Red Rooster - Live In Ireland / 1965']),\n",
-       " ('sympathy for the devil',\n",
-       "  ['Sympathy For The Devil - Live At Beacon Theatre, New York / 2006',\n",
-       "   'Sympathy For The Devil - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Sympathy For The Devil - Live']),\n",
-       " ('you got the silver',\n",
-       "  ['You Got The Silver - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'You Got The Silver - Live']),\n",
-       " ('worried about you',\n",
-       "  ['Worried About You - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Worried About You - 2009 Re-Mastered Digital Version']),\n",
-       " ('you cant do that',\n",
-       "  [\"You Can't Do That - Live / Bonus Track\",\n",
-       "   \"You Can't Do That - Remastered 2009\"]),\n",
-       " ('when the whip comes down',\n",
-       "  ['When The Whip Comes Down - Remastered',\n",
-       "   'When The Whip Comes Down - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'When The Whip Comes Down - Remastered']),\n",
-       " ('babys in black',\n",
-       "  [\"Baby's In Black - Live / Bonus Track\",\n",
-       "   \"Baby's In Black - Remastered 2009\"]),\n",
-       " ('slipping away',\n",
-       "  ['Slipping Away - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Slipping Away - 2009 Re-Mastered Digital Version']),\n",
-       " ('i want to hold your hand',\n",
-       "  ['I Want To Hold Your Hand - Live / Bonus Track',\n",
-       "   'I Want To Hold Your Hand - Remastered 2015']),\n",
-       " ('yellow submarine',\n",
-       "  ['Yellow Submarine - Remastered 2015',\n",
-       "   'Yellow Submarine - Remastered 2009',\n",
-       "   'Yellow Submarine - Remastered 2009']),\n",
-       " ('one hit to the body',\n",
-       "  ['One Hit (To The Body)', 'One Hit (To The Body) - Remastered 2009']),\n",
-       " ('shine a light',\n",
-       "  ['Shine A Light - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'Shine A Light - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Shine a Light - Live']),\n",
-       " ('its only rock n roll but i like it',\n",
-       "  [\"It's Only Rock 'n' Roll (But I Like It) - Live Licks Tour - 2009 Re-Mastered Digital Version\",\n",
-       "   \"It's Only Rock 'N Roll (But I Like It) - Live\"]),\n",
-       " ('out of control',\n",
-       "  ['Out Of Control - 2009 Digital Remaster', 'Out Of Control - Live']),\n",
-       " ('respectable', ['Respectable - Remastered', 'Respectable - Remastered']),\n",
-       " ('winning ugly', ['Winning Ugly', 'Winning Ugly - Remastered 2009']),\n",
-       " ('harlem shuffle', ['Harlem Shuffle', 'Harlem Shuffle - Remastered 2009']),\n",
-       " ('like a rolling stone',\n",
-       "  ['Like a Rolling Stone - Live',\n",
-       "   'Like A Rolling Stone - Live - 2009 Re-Mastered Digital Version']),\n",
-       " ('too rude', ['Too Rude', 'Too Rude - Remastered 2009']),\n",
-       " ('hello goodbye',\n",
-       "  ['Hello, Goodbye - Remastered 2015', 'Hello, Goodbye - Remastered 2009']),\n",
-       " ('tumbling dice',\n",
-       "  ['Tumbling Dice - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'Tumbling Dice - Live']),\n",
-       " ('everybody needs somebody to love',\n",
-       "  ['Everybody Needs Somebody To Love - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Everybody Needs Somebody To Love - Live In Ireland / 1965']),\n",
-       " ('let it be', ['Let It Be - Remastered 2015', 'Let It Be - Remastered 2009']),\n",
-       " ('i will', ['I Will - Remastered 2009', 'I Will']),\n",
-       " ('paint it black',\n",
-       "  ['Paint It Black - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'Paint It Black - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Paint It Black - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Paint It Black - Live']),\n",
-       " ('start me up',\n",
-       "  ['Start Me Up - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'Start Me Up - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Start Me Up - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Start Me Up - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Start Me Up - 2009 Re-Mastered Digital Version',\n",
-       "   'Start Me Up - Live']),\n",
-       " ('dead flowers',\n",
-       "  ['Dead Flowers - Live',\n",
-       "   'Dead Flowers - Live - 2009 Re-Mastered Digital Version']),\n",
-       " ('love me do',\n",
-       "  ['Love Me Do - Mono / Remastered 2015', 'Love Me Do - Remastered 2009']),\n",
-       " ('key to the highway',\n",
-       "  ['Key To The Highway - Piano Instrumental',\n",
-       "   'Key To The Highway - Piano Instrumental/Remastered 2009']),\n",
-       " ('you dont have to mean it',\n",
-       "  [\"You Don't Have To Mean It - Live Licks Tour - 2009 Re-Mastered Digital Version\",\n",
-       "   \"You Don't Have To Mean It - 2009 Digital Remaster\"]),\n",
-       " ('shattered',\n",
-       "  ['Shattered - Remastered',\n",
-       "   'Shattered - Remastered',\n",
-       "   'Shattered - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'Shattered - Live - 2009 Re-Mastered Digital Version']),\n",
-       " ('ticket to ride',\n",
-       "  ['Ticket To Ride - Live / Remastered',\n",
-       "   'Ticket To Ride - Remastered 2015',\n",
-       "   'Ticket To Ride - Remastered 2009']),\n",
-       " ('hold back', ['Hold Back', 'Hold Back - Remastered 2009']),\n",
-       " ('all my loving',\n",
-       "  ['All My Loving - Live / Remastered', 'All My Loving - Remastered 2009']),\n",
-       " ('angie',\n",
-       "  ['Angie - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Angie - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Angie - Live']),\n",
-       " ('faraway eyes',\n",
-       "  ['Faraway Eyes - Live',\n",
-       "   'Faraway Eyes - Live At The Beacon Theatre, New York / 2006']),\n",
-       " ('roll over beethoven',\n",
-       "  ['Roll Over Beethoven - Live / Remastered',\n",
-       "   'Roll Over Beethoven - Remastered 2009']),\n",
-       " ('something', ['Something - Remastered 2015', 'Something - Remastered 2009']),\n",
-       " ('miss you',\n",
-       "  ['Miss You - Remastered',\n",
-       "   'Miss You - Live',\n",
-       "   'Miss You - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Miss You - Remastered',\n",
-       "   'Miss You - Live']),\n",
-       " ('get back', ['Get Back - Remastered 2015', 'Get Back - Remastered 2009']),\n",
-       " ('midnight rambler', ['Midnight Rambler - Live', 'Midnight Rambler - Live']),\n",
-       " ('time is on my side',\n",
-       "  ['Time Is On My Side - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Time Is On My Side - Live In Ireland / 1965']),\n",
-       " ('you cant always get what you want',\n",
-       "  [\"You Can't Always Get What You Want - Live Licks Tour - 2009 Re-Mastered Digital Version\",\n",
-       "   \"You Can't Always Get What You Want - Live - 2009 Re-Mastered Digital Version\",\n",
-       "   'You Can’t Always Get What You Want - Live']),\n",
-       " ('just my imagination running away with me',\n",
-       "  ['Just My Imagination (Running Away With Me) - Remastered',\n",
-       "   'Just My Imagination (Running Away With Me) - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Just My Imagination (Running Away With Me) - Remastered']),\n",
-       " ('all down the line',\n",
-       "  ['All Down The Line - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'All Down The Line - Live']),\n",
-       " ('sgt peppers lonely hearts club band',\n",
-       "  [\"Sgt. Pepper's Lonely Hearts Club Band - Remastered 2009\",\n",
-       "   \"Sgt. Pepper's Lonely Hearts Club Band - Reprise / Remastered 2009\"]),\n",
-       " ('street fighting man',\n",
-       "  ['Street Fighting Man - Live',\n",
-       "   'Street Fighting Man - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Street Fighting Man - Live - 2009 Re-Mastered Digital Version']),\n",
-       " ('little ta',\n",
-       "  ['Little T&A - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'Little T&A - 2009 Re-Mastered Digital Version']),\n",
-       " ('help',\n",
-       "  ['Help! - Live / Remastered',\n",
-       "   'Help! - Remastered 2015',\n",
-       "   'Help! - Remastered 2009']),\n",
-       " ('boys', ['Boys - Live / Remastered', 'Boys - Remastered 2009']),\n",
-       " ('beast of burden',\n",
-       "  ['Beast Of Burden - Remastered',\n",
-       "   'Beast Of Burden - Remastered',\n",
-       "   'Beast Of Burden - Live Licks Tour - 2009 Re-Mastered Digital Version']),\n",
-       " ('brown sugar',\n",
-       "  ['Brown Sugar - Live',\n",
-       "   'Brown Sugar - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'Brown Sugar - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Brown Sugar - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Brown Sugar - Live']),\n",
-       " ('rock and a hard place',\n",
-       "  ['Rock And A Hard Place - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Rock And A Hard Place - 2009 Re-Mastered Digital Version']),\n",
-       " ('gimme shelter',\n",
-       "  ['Gimme Shelter - Live',\n",
-       "   'Gimme Shelter - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Gimme Shelter - Live']),\n",
-       " ('before they make me run',\n",
-       "  ['Before They Make Me Run - Remastered',\n",
-       "   'Before They Make Me Run - Remastered',\n",
-       "   'Before They Make Me Run - Live']),\n",
-       " ('twist and shout',\n",
-       "  ['Twist And Shout - Live / Remastered',\n",
-       "   'Twist And Shout - Remastered 2009']),\n",
-       " ('im free',\n",
-       "  [\"I'm Free - Live At The Beacon Theatre, New York / 2006\",\n",
-       "   \"I'm Free - Live - 2009 Re-Mastered Digital Version\"]),\n",
-       " ('things we said today',\n",
-       "  ['Things We Said Today - Live / Remastered',\n",
-       "   'Things We Said Today - Remastered 2009']),\n",
-       " ('honky tonk women',\n",
-       "  ['Honky Tonk Women - Live',\n",
-       "   'Honky Tonk Women - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Honky Tonk Women - Live']),\n",
-       " ('neighbours',\n",
-       "  ['Neighbours - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "   'Neighbours - 2009 Re-Mastered Digital Version']),\n",
-       " ('eleanor rigby',\n",
-       "  ['Eleanor Rigby - Remastered 2015', 'Eleanor Rigby - Remastered 2009']),\n",
-       " ('some girls',\n",
-       "  ['Some Girls - Remastered',\n",
-       "   'Some Girls - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'Some Girls - Remastered']),\n",
-       " ('sad sad sad',\n",
-       "  ['Sad Sad Sad - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Sad Sad Sad - 2009 Re-Mastered Digital Version']),\n",
-       " ('everybodys trying to be my baby',\n",
-       "  ['Everybody’s Trying To Be My Baby - Live / Bonus Track',\n",
-       "   \"Everybody's Trying To Be My Baby - Remastered 2009\"]),\n",
-       " ('sleep tonight', ['Sleep Tonight', 'Sleep Tonight - Remastered 2009']),\n",
-       " ('cant buy me love',\n",
-       "  [\"Can't Buy Me Love - Live / Remastered\",\n",
-       "   \"Can't Buy Me Love - Remastered 2015\",\n",
-       "   \"Can't Buy Me Love - Remastered 2009\"]),\n",
-       " ('dirty work', ['Dirty Work', 'Dirty Work - Remastered 2009']),\n",
-       " ('the long and winding road',\n",
-       "  ['The Long And Winding Road - Remastered 2015',\n",
-       "   'The Long And Winding Road - Remastered 2009']),\n",
-       " ('far away eyes',\n",
-       "  ['Far Away Eyes - Remastered', 'Far Away Eyes - Remastered']),\n",
-       " ('i go wild',\n",
-       "  ['I Go Wild - Live', 'I Go Wild - 2009 Re-Mastered Digital Version']),\n",
-       " ('continental drift',\n",
-       "  ['Continental Drift - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Continental Drift - 2009 Re-Mastered Digital Version']),\n",
-       " ('come together',\n",
-       "  ['Come Together - Remastered 2015', 'Come Together - Remastered 2009']),\n",
-       " ('penny lane',\n",
-       "  ['Penny Lane - Remastered 2015', 'Penny Lane - Remastered 2009']),\n",
-       " ('cant be seen',\n",
-       "  [\"Can't Be Seen - Live - 2009 Re-Mastered Digital Version\",\n",
-       "   \"Can't Be Seen - 2009 Re-Mastered Digital Version\"]),\n",
-       " ('jumpin jack flash',\n",
-       "  [\"Jumpin' Jack Flash - Live\",\n",
-       "   \"Jumpin' Jack Flash - Live - 2009 Re-Mastered Digital Version\",\n",
-       "   \"Jumpin' Jack Flash - Live\"]),\n",
-       " ('i cant get no satisfaction',\n",
-       "  [\"(I Can't Get No) Satisfaction - Live At The Beacon Theatre, New York / 2006\",\n",
-       "   \"(I Can't Get No) Satisfaction - Live Licks Tour - 2009 Re-Mastered Digital Version\",\n",
-       "   \"(I Can't Get No) Satisfaction - Live - 2009 Re-Mastered Digital Version\",\n",
-       "   \"(I Can't Get No) Satisfaction - Live - 2009 Re-Mastered Digital Version\",\n",
-       "   \"(I Can't Get No) Satisfaction - Live\"]),\n",
-       " ('a hard days night',\n",
-       "  [\"A Hard Day's Night - Live / Remastered\",\n",
-       "   \"A Hard Day's Night - Remastered 2015\",\n",
-       "   \"A Hard Day's Night - Remastered 2009\"]),\n",
-       " ('let me go',\n",
-       "  ['Let Me Go - Live - 2009 Re-Mastered Digital Version',\n",
-       "   'Let Me Go - 2009 Re-Mastered Digital Version']),\n",
-       " ('not fade away',\n",
-       "  ['Not Fade Away - Live',\n",
-       "   'Not Fade Away - Live - 2009 Re-Mastered Digital Version']),\n",
-       " ('dizzy miss lizzy',\n",
-       "  ['Dizzy Miss Lizzy - Live / Remastered',\n",
-       "   'Dizzy Miss Lizzy - Remastered 2009']),\n",
-       " ('she loves you',\n",
-       "  ['She Loves You - Live / Remastered',\n",
-       "   'She Loves You - Mono / Remastered 2015']),\n",
-       " ('back to zero', ['Back To Zero', 'Back To Zero - Remastered 2009']),\n",
-       " ('lies', ['Lies - Remastered', 'Lies - Remastered']),\n",
-       " ('she was hot',\n",
-       "  ['She Was Hot - Live At The Beacon Theatre, New York / 2006',\n",
-       "   'She Was Hot - 2009 Re-Mastered Digital Version']),\n",
-       " ('all you need is love',\n",
-       "  ['All You Need Is Love - Remastered 2015',\n",
-       "   'All You Need Is Love - Remastered 2009',\n",
-       "   'All You Need Is Love - Remastered 2009'])]"
+       "1071"
       ]
      },
-     "execution_count": 81,
+     "execution_count": 43,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "ctitles = set([t['ctitle'] for t in tracks.find()])\n",
-    "\n",
-    "[(ct, [t['name'] for t in tracks.find({'ctitle': ct})]) \n",
-    " for ct in ctitles\n",
-    " if tracks.find({'ctitle': ct}).count() > 1\n",
-    "]"
+    "genius_song_search(beatles_genius_id)\n",
+    "genius_tracks.find().count()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 84,
-   "metadata": {
-    "scrolled": true
-   },
+   "execution_count": 44,
+   "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "[('eight days a week',\n",
-       "  [('Eight Days A Week - Remastered 2015', 0.215),\n",
-       "   ('Eight Days A Week - Remastered 2009', 0.119)]),\n",
-       " ('yesterday',\n",
-       "  [('Yesterday - Remastered 2015', 0.0968),\n",
-       "   ('Yesterday - Remastered 2009', 0.0886)]),\n",
-       " ('had it with you',\n",
-       "  [('Had It With You', 0.0655),\n",
-       "   ('Had It With You - Remastered 2009', 0.0744)]),\n",
-       " ('worried about you',\n",
-       "  [('Worried About You - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
-       "    0.47),\n",
-       "   ('Worried About You - 2009 Re-Mastered Digital Version', 0.0865)]),\n",
-       " ('when the whip comes down',\n",
-       "  [('When The Whip Comes Down - Remastered', 0.242),\n",
-       "   ('When The Whip Comes Down - Remastered', 0.205)]),\n",
-       " ('slipping away',\n",
-       "  [('Slipping Away - Live - 2009 Re-Mastered Digital Version', 0.106),\n",
-       "   ('Slipping Away - 2009 Re-Mastered Digital Version', 0.421)]),\n",
-       " ('yellow submarine',\n",
-       "  [('Yellow Submarine - Remastered 2015', 0.543),\n",
-       "   ('Yellow Submarine - Remastered 2009', 0.528),\n",
-       "   ('Yellow Submarine - Remastered 2009', 0.438)]),\n",
-       " ('one hit to the body',\n",
-       "  [('One Hit (To The Body)', 0.62),\n",
-       "   ('One Hit (To The Body) - Remastered 2009', 0.688)]),\n",
-       " ('respectable',\n",
-       "  [('Respectable - Remastered', 0.0677),\n",
-       "   ('Respectable - Remastered', 0.0677)]),\n",
-       " ('winning ugly',\n",
-       "  [('Winning Ugly', 0.693), ('Winning Ugly - Remastered 2009', 0.689)]),\n",
-       " ('harlem shuffle',\n",
-       "  [('Harlem Shuffle', 0.224), ('Harlem Shuffle - Remastered 2009', 0.319)]),\n",
-       " ('too rude', [('Too Rude', 0.0245), ('Too Rude - Remastered 2009', 0.0231)]),\n",
-       " ('hello goodbye',\n",
-       "  [('Hello, Goodbye - Remastered 2015', 0.525),\n",
-       "   ('Hello, Goodbye - Remastered 2009', 0.414)]),\n",
-       " ('let it be',\n",
-       "  [('Let It Be - Remastered 2015', 0.112),\n",
-       "   ('Let It Be - Remastered 2009', 0.111)]),\n",
-       " ('i will', [('I Will - Remastered 2009', 0.0822), ('I Will', 0.113)]),\n",
-       " ('love me do',\n",
-       "  [('Love Me Do - Mono / Remastered 2015', 0.154),\n",
-       "   ('Love Me Do - Remastered 2009', 0.227)]),\n",
-       " ('key to the highway',\n",
-       "  [('Key To The Highway - Piano Instrumental', 0.132),\n",
-       "   ('Key To The Highway - Piano Instrumental/Remastered 2009', 0.138)]),\n",
-       " ('shattered',\n",
-       "  [('Shattered - Remastered', 0.124), ('Shattered - Remastered', 0.122)]),\n",
-       " ('ticket to ride',\n",
-       "  [('Ticket To Ride - Live / Remastered', 0.366),\n",
-       "   ('Ticket To Ride - Remastered 2015', 0.259),\n",
-       "   ('Ticket To Ride - Remastered 2009', 0.233)]),\n",
-       " ('hold back', [('Hold Back', 0.343), ('Hold Back - Remastered 2009', 0.368)]),\n",
-       " ('roll over beethoven',\n",
-       "  [('Roll Over Beethoven - Live / Remastered', 0.634),\n",
-       "   ('Roll Over Beethoven - Remastered 2009', 0.0952)]),\n",
-       " ('something',\n",
-       "  [('Something - Remastered 2015', 0.144),\n",
-       "   ('Something - Remastered 2009', 0.138)]),\n",
-       " ('miss you',\n",
-       "  [('Miss You - Remastered', 0.364),\n",
-       "   ('Miss You - Remastered', 0.236),\n",
-       "   ('Miss You - Live', 0.646)]),\n",
-       " ('get back',\n",
-       "  [('Get Back - Remastered 2015', 0.0959),\n",
-       "   ('Get Back - Remastered 2009', 0.61)]),\n",
-       " ('just my imagination running away with me',\n",
-       "  [('Just My Imagination (Running Away With Me) - Remastered', 0.411),\n",
-       "   ('Just My Imagination (Running Away With Me) - Remastered', 0.322)]),\n",
-       " ('help',\n",
-       "  [('Help! - Remastered 2015', 0.0776), ('Help! - Remastered 2009', 0.0994)]),\n",
-       " ('beast of burden',\n",
-       "  [('Beast Of Burden - Remastered', 0.0389),\n",
-       "   ('Beast Of Burden - Remastered', 0.0382)]),\n",
-       " ('before they make me run',\n",
-       "  [('Before They Make Me Run - Remastered', 0.0499),\n",
-       "   ('Before They Make Me Run - Remastered', 0.0532)]),\n",
-       " ('twist and shout',\n",
-       "  [('Twist And Shout - Live / Remastered', 0.508),\n",
-       "   ('Twist And Shout - Remastered 2009', 0.0414)]),\n",
-       " ('eleanor rigby',\n",
-       "  [('Eleanor Rigby - Remastered 2015', 0.359),\n",
-       "   ('Eleanor Rigby - Remastered 2009', 0.305)]),\n",
-       " ('some girls',\n",
-       "  [('Some Girls - Remastered', 0.409), ('Some Girls - Remastered', 0.51)]),\n",
-       " ('everybodys trying to be my baby',\n",
-       "  [('Everybody’s Trying To Be My Baby - Live / Bonus Track', 0.448),\n",
-       "   (\"Everybody's Trying To Be My Baby - Remastered 2009\", 0.134)]),\n",
-       " ('sleep tonight',\n",
-       "  [('Sleep Tonight', 0.273), ('Sleep Tonight - Remastered 2009', 0.297)]),\n",
-       " ('cant buy me love',\n",
-       "  [(\"Can't Buy Me Love - Remastered 2015\", 0.325),\n",
-       "   (\"Can't Buy Me Love - Remastered 2009\", 0.321)]),\n",
-       " ('dirty work',\n",
-       "  [('Dirty Work', 0.0878), ('Dirty Work - Remastered 2009', 0.0808)]),\n",
-       " ('the long and winding road',\n",
-       "  [('The Long And Winding Road - Remastered 2015', 0.0718),\n",
-       "   ('The Long And Winding Road - Remastered 2009', 0.0559)]),\n",
-       " ('far away eyes',\n",
-       "  [('Far Away Eyes - Remastered', 0.258),\n",
-       "   ('Far Away Eyes - Remastered', 0.232)]),\n",
-       " ('come together',\n",
-       "  [('Come Together - Remastered 2015', 0.1),\n",
-       "   ('Come Together - Remastered 2009', 0.0926)]),\n",
-       " ('penny lane',\n",
-       "  [('Penny Lane - Remastered 2015', 0.16),\n",
-       "   ('Penny Lane - Remastered 2009', 0.136)]),\n",
-       " ('i cant get no satisfaction',\n",
-       "  [(\"(I Can't Get No) Satisfaction - Live - 2009 Re-Mastered Digital Version\",\n",
-       "    0.511),\n",
-       "   (\"(I Can't Get No) Satisfaction - Live\", 0.357)]),\n",
-       " ('a hard days night',\n",
-       "  [(\"A Hard Day's Night - Remastered 2015\", 0.0983),\n",
-       "   (\"A Hard Day's Night - Remastered 2009\", 0.0996)]),\n",
-       " ('dizzy miss lizzy',\n",
-       "  [('Dizzy Miss Lizzy - Live / Remastered', 0.496),\n",
-       "   ('Dizzy Miss Lizzy - Remastered 2009', 0.0962)]),\n",
-       " ('back to zero',\n",
-       "  [('Back To Zero', 0.064), ('Back To Zero - Remastered 2009', 0.0767)]),\n",
-       " ('lies', [('Lies - Remastered', 0.524), ('Lies - Remastered', 0.472)]),\n",
-       " ('all you need is love',\n",
-       "  [('All You Need Is Love - Remastered 2015', 0.263),\n",
-       "   ('All You Need Is Love - Remastered 2009', 0.286),\n",
-       "   ('All You Need Is Love - Remastered 2009', 0.155)])]"
+       "1071"
       ]
      },
-     "execution_count": 84,
+     "execution_count": 44,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "ctitles = set([t['ctitle'] for t in tracks.find()])\n",
-    "\n",
-    "[(ct, [(t['name'], t['liveness']) for t in tracks.find({'ctitle': ct, 'liveness': {'$lt': 0.7}})]) \n",
-    " for ct in ctitles\n",
-    " if tracks.find({'ctitle': ct, 'liveness': {'$lt': 0.7}}).count() > 1\n",
-    "]"
+    "genius_song_search(stones_genius_id)\n",
+    "genius_tracks.find().count()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 74,
+   "execution_count": 44,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "[('twist and shout', 'Twist And Shout - Live / Remastered', 'Twist and Shout'),\n",
-       " ('twist and shout',\n",
-       "  'Twist And Shout - Live / Remastered',\n",
-       "  'Twist and shout - reloved version'),\n",
-       " ('twist and shout',\n",
-       "  'Twist And Shout - Live / Remastered',\n",
-       "  'Twist And Shout - Remastered 2009'),\n",
-       " ('roll over beethoven',\n",
-       "  'Roll Over Beethoven - Live / Remastered',\n",
-       "  'Roll Over Beethoven'),\n",
-       " ('roll over beethoven',\n",
-       "  'Roll Over Beethoven - Live / Remastered',\n",
-       "  'Roll Over Beethoven'),\n",
-       " ('she loves you', 'She Loves You - Live / Remastered', 'She Loves You'),\n",
-       " ('she loves you',\n",
-       "  'She Loves You - Live / Remastered',\n",
-       "  'She loves you - reloved version'),\n",
-       " ('i want to hold your hand',\n",
-       "  'I Want To Hold Your Hand - Live / Bonus Track',\n",
-       "  'I Want to Hold Your Hand'),\n",
-       " ('i want to hold your hand',\n",
-       "  'I Want To Hold Your Hand - Live / Bonus Track',\n",
-       "  'I Want to Hold Your Hand'),\n",
-       " ('love me do', 'Love Me Do - Mono / Remastered 2015', 'Love Me Do'),\n",
-       " ('love me do',\n",
-       "  'Love Me Do - Mono / Remastered 2015',\n",
-       "  'Love Me Do - Spankox Liverpool Remix'),\n",
-       " ('she loves you', 'She Loves You - Mono / Remastered 2015', 'She Loves You'),\n",
-       " ('she loves you',\n",
-       "  'She Loves You - Mono / Remastered 2015',\n",
-       "  'She loves you - reloved version'),\n",
-       " ('i want to hold your hand',\n",
-       "  'I Want To Hold Your Hand - Remastered 2015',\n",
-       "  'I Want to Hold Your Hand'),\n",
-       " ('i want to hold your hand',\n",
-       "  'I Want To Hold Your Hand - Remastered 2015',\n",
-       "  'I Want to Hold Your Hand'),\n",
-       " ('yesterday', 'Yesterday - Remastered 2015', 'Yesterday'),\n",
-       " ('yesterday', 'Yesterday - Remastered 2015', 'Yesterday'),\n",
-       " ('i will', 'I Will - Remastered 2009', 'I Will'),\n",
-       " ('i will', 'I Will - Remastered 2009', 'I Will'),\n",
-       " ('youve got to hide your love away',\n",
-       "  \"You've Got To Hide Your Love Away - Remastered 2009\",\n",
-       "  \"You've Got to Hide Your Love Away\"),\n",
-       " ('youve got to hide your love away',\n",
-       "  \"You've Got To Hide Your Love Away - Remastered 2009\",\n",
-       "  \"You've Got To Hide Your Love Away - Take 5, Mono\"),\n",
-       " ('yesterday', 'Yesterday - Remastered 2009', 'Yesterday'),\n",
-       " ('yesterday', 'Yesterday - Remastered 2009', 'Yesterday'),\n",
-       " ('little by little', 'Little By Little', 'Little by Little'),\n",
-       " ('little by little', 'Little By Little', 'Little By Little'),\n",
-       " ('roll over beethoven',\n",
-       "  'Roll Over Beethoven - Remastered 2009',\n",
-       "  'Roll Over Beethoven'),\n",
-       " ('roll over beethoven',\n",
-       "  'Roll Over Beethoven - Remastered 2009',\n",
-       "  'Roll Over Beethoven'),\n",
-       " ('i wanna be your man',\n",
-       "  'I Wanna Be Your Man - Remastered 2009',\n",
-       "  'I Wanna Be Your Man'),\n",
-       " ('i wanna be your man',\n",
-       "  'I Wanna Be Your Man - Remastered 2009',\n",
-       "  'I Wanna Be Your Man'),\n",
-       " ('money thats what i want',\n",
-       "  \"Money (That's What I Want) - Remastered 2009\",\n",
-       "  \"Money (That's What I Want)\"),\n",
-       " ('money thats what i want',\n",
-       "  \"Money (That's What I Want) - Remastered 2009\",\n",
-       "  \"Money (That's What I Want) - Remastered 2009\"),\n",
-       " ('please please me',\n",
-       "  'Please Please Me - Remastered 2009',\n",
-       "  'Please Please Me'),\n",
-       " ('please please me',\n",
-       "  'Please Please Me - Remastered 2009',\n",
-       "  'Please, Please Me'),\n",
-       " ('love me do', 'Love Me Do - Remastered 2009', 'Love Me Do'),\n",
-       " ('love me do',\n",
-       "  'Love Me Do - Remastered 2009',\n",
-       "  'Love Me Do - Spankox Liverpool Remix'),\n",
-       " ('ps i love you', 'P.S. I Love You - Remastered 2009', 'P.S. I Love You'),\n",
-       " ('ps i love you',\n",
-       "  'P.S. I Love You - Remastered 2009',\n",
-       "  'P.s. i love you - reloved version'),\n",
-       " ('twist and shout', 'Twist And Shout - Remastered 2009', 'Twist and Shout'),\n",
-       " ('twist and shout',\n",
-       "  'Twist And Shout - Remastered 2009',\n",
-       "  'Twist and shout - reloved version'),\n",
-       " ('twist and shout',\n",
-       "  'Twist And Shout - Remastered 2009',\n",
-       "  'Twist And Shout - Remastered 2009'),\n",
-       " ('i will', 'I Will', 'I Will'),\n",
-       " ('i will', 'I Will', 'I Will'),\n",
-       " ('paranoid android', 'Paranoid Android', 'Paranoid Android'),\n",
-       " ('paranoid android', 'Paranoid Android', 'Paranoid Android'),\n",
-       " ('high and dry', 'High And Dry', 'High and Dry'),\n",
-       " ('high and dry', 'High And Dry', 'High And Dry'),\n",
-       " ('wild horses',\n",
-       "  'Wild Horses - Live - 2009 Re-Mastered Digital Version',\n",
-       "  'Wild Horses'),\n",
-       " ('wild horses',\n",
-       "  'Wild Horses - Live - 2009 Re-Mastered Digital Version',\n",
-       "  'Wild Horses'),\n",
-       " ('pain in my heart',\n",
-       "  'Pain In My Heart - Live In Ireland / 1965',\n",
-       "  'Pain In My Heart'),\n",
-       " ('pain in my heart',\n",
-       "  'Pain In My Heart - Live In Ireland / 1965',\n",
-       "  'Pain In My Heart - Live In Ireland / 1965')]"
+       "1071"
       ]
      },
-     "execution_count": 74,
+     "execution_count": 44,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "[(t['ctitle'], t['name'], g['title']) \n",
-    " for t in tracks.find()\n",
-    " for g in genius_tracks.find({'ctitle': t['ctitle']})\n",
-    " if genius_tracks.find({'ctitle': t['ctitle']}).count() > 1]"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "Now to see what the differences are. Find the tracks that are in both collections, and tracks that are in only one."
+    "genius_song_search(radiohead_genius_id)\n",
+    "genius_tracks.find().count()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 35,
+   "execution_count": 45,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "(499, 563, 57)"
+       "{'_id': 1497768,\n",
+       " 'annotation_count': 1,\n",
+       " 'api_path': '/songs/1497768',\n",
+       " 'full_title': 'All Together on the Wireless Machine by\\xa0The\\xa0Beatles',\n",
+       " 'header_image_thumbnail_url': 'https://images.genius.com/ad1f59e8a03be4eb521e88015d15d6e8.200x200x1.jpg',\n",
+       " 'header_image_url': 'https://images.genius.com/ad1f59e8a03be4eb521e88015d15d6e8.200x200x1.jpg',\n",
+       " 'id': 1497768,\n",
+       " 'lyrics_owner_id': 1549345,\n",
+       " 'path': '/The-beatles-all-together-on-the-wireless-machine-lyrics',\n",
+       " 'primary_artist': {'api_path': '/artists/586',\n",
+       "  'header_image_url': 'https://images.genius.com/b82dbb78926a812abfa10886ac84c1a8.1000x523x1.jpg',\n",
+       "  'id': 586,\n",
+       "  'image_url': 'https://images.genius.com/ad1f59e8a03be4eb521e88015d15d6e8.200x200x1.jpg',\n",
+       "  'is_meme_verified': False,\n",
+       "  'is_verified': False,\n",
+       "  'name': 'The Beatles',\n",
+       "  'url': 'https://genius.com/artists/The-beatles'},\n",
+       " 'pyongs_count': None,\n",
+       " 'song_art_image_thumbnail_url': 'https://images.genius.com/ad1f59e8a03be4eb521e88015d15d6e8.200x200x1.jpg',\n",
+       " 'stats': {'hot': False, 'unreviewed_annotations': 0},\n",
+       " 'title': 'All Together on the Wireless Machine',\n",
+       " 'url': 'https://genius.com/The-beatles-all-together-on-the-wireless-machine-lyrics'}"
       ]
      },
-     "execution_count": 35,
+     "execution_count": 45,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "in_both = set((g['ctitle'], g['primary_artist']['name'])\n",
-    "              for g in genius_tracks.find({}, ['ctitle', 'primary_artist.name']) \n",
-    "              if tracks.find({'ctitle': g['ctitle']}).count())\n",
-    "\n",
-    "genius_only = set((g['ctitle'], g['primary_artist']['name']) \n",
-    "                  for g in genius_tracks.find({}, ['ctitle', 'primary_artist.name']) \n",
-    "                  if not tracks.find({'ctitle': g['ctitle']}).count())\n",
-    "\n",
-    "spotify_only = set((s['ctitle'], s['artist_name'])\n",
-    "                   for s in tracks.find({}, ['ctitle', 'artist_name']) \n",
-    "                   if not genius_tracks.find({'ctitle': s['ctitle']}).count())\n",
-    "\n",
-    "len(in_both), len(genius_only), len(spotify_only)"
+    "genius_tracks.find_one()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 36,
+   "execution_count": 46,
    "metadata": {
-    "scrolled": true
+    "scrolled": false
    },
    "outputs": [
     {
      "data": {
-      "text/plain": [
-       "[('bloom jamie xx rework', 'Radiohead'),\n",
-       " ('sea of monsters', 'George Martin'),\n",
-       " ('just my imagination', 'The Rolling Stones'),\n",
-       " ('jumping jack flash', 'The Rolling Stones'),\n",
-       " ('pepperland laid waste', 'George Martin'),\n",
-       " ('little ta', 'The Rolling Stones'),\n",
-       " ('kansas city heyheyheyhey', 'The Beatles'),\n",
-       " ('bullet proof i wish i was', 'Radiohead'),\n",
-       " ('sea of holes', 'George Martin'),\n",
-       " ('packt like sardines in a crushed tin box', 'Radiohead'),\n",
-       " ('codex illum sphere', 'Radiohead'),\n",
-       " ('outro', 'Jimi Hendrix'),\n",
-       " ('pepperland', 'George Martin'),\n",
-       " ('key to the highway', 'The Rolling Stones'),\n",
-       " ('march of the meanies', 'George Martin'),\n",
-       " ('dollars cents', 'Radiohead'),\n",
-       " ('little by little shed', 'Radiohead'),\n",
-       " ('sea of time', 'George Martin'),\n",
-       " ('faraway eyes', 'The Rolling Stones'),\n",
-       " ('i will los angeles version', 'Radiohead'),\n",
-       " ('everybody needs somebody to love finale', 'The Rolling Stones'),\n",
-       " ('a punch up at a wedding', 'Radiohead'),\n",
-       " ('revolution 1', 'The Beatles'),\n",
-       " ('untitled', 'Radiohead'),\n",
-       " ('when im sixty four', 'The Beatles')]"
-      ]
-     },
-     "execution_count": 36,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "[s for s in spotify_only \n",
-    " if 'rmx' not in s[0]\n",
-    " if 'remix' not in s[0]\n",
-    " if 'live' not in s[0]\n",
-    " if 'intro' not in s[0]\n",
-    "]"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 37,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "[('ladies and gentlemen the rolling stones', 'The Rolling Stones'),\n",
-       " ('the butcher', 'Radiohead'),\n",
-       " ('eds scary song', 'Radiohead'),\n",
-       " ('long long while', 'The Rolling Stones'),\n",
-       " ('till the next goodbye', 'The Rolling Stones'),\n",
-       " ('wicked child', 'Radiohead'),\n",
-       " ('bishops robes', 'Radiohead'),\n",
-       " ('hey crawdaddy', 'The Rolling Stones'),\n",
-       " ('baby please dont go', 'The Rolling Stones'),\n",
-       " ('ready teddy', 'The Beatles'),\n",
-       " ('somewhere', 'Ali brustofski'),\n",
-       " ('fool to cry', 'The Rolling Stones'),\n",
-       " ('john lennon vs bill oreilly', 'Nice Peter'),\n",
-       " ('stray cat blues', 'The Rolling Stones'),\n",
-       " ('because i know you love me so', 'The Beatles'),\n",
-       " ('2120 south michigan avenue', 'The Rolling Stones'),\n",
-       " ('jump on top of me', 'The Rolling Stones'),\n",
-       " ('cinnamon girl', 'Radiohead'),\n",
-       " ('john wesley harding', 'The Rolling Stones'),\n",
-       " ('the honeymoon song', 'The Beatles'),\n",
-       " ('dont ever change', 'The Beatles'),\n",
-       " ('mantua', 'Radiohead'),\n",
-       " ('fanny mae', 'The Rolling Stones'),\n",
-       " ('paint it blacker', 'Plan B'),\n",
-       " ('i froze up', 'Radiohead'),\n",
-       " ('permanent daylight', 'Radiohead'),\n",
-       " ('johnny b goode', 'The Beatles'),\n",
-       " ('silver train', 'The Rolling Stones'),\n",
-       " ('junk', 'The Beatles'),\n",
-       " ('please go home', 'The Rolling Stones'),\n",
-       " ('sie liebt dich', 'The Beatles'),\n",
-       " ('come togetherdear prudence', 'The Beatles'),\n",
-       " ('some other guy', 'The Beatles'),\n",
-       " ('i call your name', 'The Beatles'),\n",
-       " ('mona', 'The Rolling Stones'),\n",
-       " ('complicated', 'The Rolling Stones'),\n",
-       " ('little queenie', 'The Rolling Stones'),\n",
-       " ('memphis', 'The Beatles'),\n",
-       " ('glad all over', 'The Beatles'),\n",
-       " ('all sold out', 'The Rolling Stones'),\n",
-       " ('sympathy for the devil the neptunes remix', 'The Rolling Stones'),\n",
-       " ('blue turns to grey', 'The Rolling Stones'),\n",
-       " ('we are wasting time', 'The Rolling Stones'),\n",
-       " ('its for you', 'The Beatles'),\n",
-       " ('good times bad times', 'The Rolling Stones'),\n",
-       " ('ooh my soul', 'The Beatles'),\n",
-       " ('cry to me', 'The Rolling Stones'),\n",
-       " ('egyptian song', 'Radiohead'),\n",
-       " ('stoned', 'The Rolling Stones'),\n",
-       " ('i dont know why aka dont know why i love you', 'The Rolling Stones'),\n",
-       " ('get off of my cloud', 'The Rolling Stones'),\n",
-       " ('star star', 'The Rolling Stones'),\n",
-       " ('just a rumour', 'The Beatles'),\n",
-       " ('id much rather be with the boys', 'The Rolling Stones'),\n",
-       " ('petrol gang', 'The Rolling Stones'),\n",
-       " ('in another land', 'The Rolling Stones'),\n",
-       " ('you know what to do', 'The Beatles'),\n",
-       " ('can you hear the music', 'The Rolling Stones'),\n",
-       " ('you cant catch me', 'The Rolling Stones'),\n",
-       " ('my bonnie', 'The Beatles'),\n",
-       " ('money', 'The Rolling Stones'),\n",
-       " ('honest i do', 'The Rolling Stones'),\n",
-       " ('everything is turning to gold', 'The Rolling Stones'),\n",
-       " ('cut a hole', 'Radiohead'),\n",
-       " ('susie q', 'The Rolling Stones'),\n",
-       " ('ooh my arms', 'The Beatles'),\n",
-       " ('on the beach', 'Radiohead'),\n",
-       " ('sha la la la la', 'The Beatles'),\n",
-       " ('yesterdays papers', 'The Rolling Stones'),\n",
-       " ('my girl', 'The Rolling Stones'),\n",
-       " ('dear doctor', 'The Rolling Stones'),\n",
-       " ('i want to know', 'On A Friday'),\n",
-       " ('a moon shaped pool tracklist album cover', 'Radiohead'),\n",
-       " ('four guys', 'James Richards'),\n",
-       " ('i get a kick out of you', 'The Rolling Stones'),\n",
-       " ('shout', 'The Beatles'),\n",
-       " ('let it rock', 'The Rolling Stones'),\n",
-       " ('travellin man', 'The Rolling Stones'),\n",
-       " ('stealing my heart', 'The Rolling Stones'),\n",
-       " ('when im sixtyfour', 'The Beatles'),\n",
-       " ('criss cross man', 'The Rolling Stones'),\n",
-       " ('come on', 'The Rolling Stones'),\n",
-       " ('union city blue', 'Radiohead'),\n",
-       " ('doom and gloom', 'The Rolling Stones'),\n",
-       " ('baby whats wrong', 'The Rolling Stones'),\n",
-       " ('nobodys child', 'The Beatles'),\n",
-       " ('sweet little sixteen', 'The Beatles'),\n",
-       " ('within you without youtomorrow never knows', 'The Beatles'),\n",
-       " ('so divine aladdin story', 'The Rolling Stones'),\n",
-       " ('upside down', 'Radiohead'),\n",
-       " ('all things must pass', 'The Beatles'),\n",
-       " ('besame mucho', 'The Beatles'),\n",
-       " ('anyway you look at it', 'The Rolling Stones'),\n",
-       " ('carol', 'The Rolling Stones'),\n",
-       " ('winter', 'The Rolling Stones'),\n",
-       " ('gangsters maul', 'The Rolling Stones'),\n",
-       " ('what goes on girl', 'The Beatles'),\n",
-       " ('lonesome tears in my eyes', 'The Beatles'),\n",
-       " ('meet me in the bottom', 'The Rolling Stones'),\n",
-       " ('missing links bootleg', 'Plan B'),\n",
-       " ('through the lonely nights', 'The Rolling Stones'),\n",
-       " ('no expectations', 'The Rolling Stones'),\n",
-       " ('shake your hips', 'The Rolling Stones'),\n",
-       " ('ill get you', 'The Beatles'),\n",
-       " ('the beatles seventh christmas record', 'The Beatles'),\n",
-       " ('words of love ep', 'The Beatles'),\n",
-       " ('falling in love again', 'The Beatles'),\n",
-       " ('dont let me down', 'The Beatles'),\n",
-       " ('somebody else', 'Radiohead'),\n",
-       " ('reminiscing', 'The Beatles'),\n",
-       " ('the hippy hippy shake', 'The Beatles'),\n",
-       " ('ya ya', 'The Beatles'),\n",
-       " ('im down', 'The Beatles'),\n",
-       " ('cry for a shadow', 'The Beatles'),\n",
-       " ('doo doo doo doo doo heartbreaker', 'The Rolling Stones'),\n",
-       " ('pop is dead', 'Radiohead'),\n",
-       " ('love of the loved', 'The Beatles'),\n",
-       " ('dancing with mr d', 'The Rolling Stones'),\n",
-       " ('the thief', 'Radiohead'),\n",
-       " ('jazz piano song', 'The Beatles'),\n",
-       " ('da doo ron ron', 'The Rolling Stones'),\n",
-       " ('lets dance', 'The Beatles'),\n",
-       " ('one more try', 'The Rolling Stones'),\n",
-       " ('andrews blues', 'The Rolling Stones'),\n",
-       " ('memphis tennessee', 'The Beatles'),\n",
-       " ('sister morphine', 'The Rolling Stones'),\n",
-       " ('give it up', 'On A Friday'),\n",
-       " ('blackbirdyesterday', 'The Beatles'),\n",
-       " ('title 5', 'The Rolling Stones'),\n",
-       " ('sad day', 'The Rolling Stones'),\n",
-       " ('i am waiting', 'The Rolling Stones'),\n",
-       " ('a picture of you', 'The Beatles'),\n",
-       " ('dance', 'The Rolling Stones'),\n",
-       " ('revolution', 'The Beatles'),\n",
-       " ('youll be mine', 'The Beatles'),\n",
-       " ('lewis mistreated', 'Radiohead'),\n",
-       " ('keep your hands off my baby', 'The Beatles'),\n",
-       " ('lady jane', 'The Rolling Stones'),\n",
-       " ('following the river', 'The Rolling Stones'),\n",
-       " ('the lantern', 'The Rolling Stones'),\n",
-       " ('i got a woman', 'The Beatles'),\n",
-       " ('walking through the sleepy city', 'The Rolling Stones'),\n",
-       " ('aint that loving you baby', 'The Rolling Stones'),\n",
-       " ('sing this all together', 'The Rolling Stones'),\n",
-       " ('im gonna sit right down and cry over you', 'The Beatles'),\n",
-       " ('in spite of all the danger', 'The Beatles'),\n",
-       " ('crying waiting hoping', 'The Beatles'),\n",
-       " ('we want the stones', 'The Rolling Stones'),\n",
-       " ('the beatles 1968 christmas record', 'The Beatles'),\n",
-       " ('miss amanda jones', 'The Rolling Stones'),\n",
-       " ('wish i never met you', 'The Rolling Stones'),\n",
-       " ('sweet georgia brown', 'The Beatles'),\n",
-       " ('inside my head', 'Radiohead'),\n",
-       " ('old brown shoe', 'The Beatles'),\n",
-       " ('yes i am', 'Radiohead'),\n",
-       " ('beatle greetings', 'The Beatles'),\n",
-       " ('just a rumour speech', 'The Beatles'),\n",
-       " ('nothin shakin', 'The Beatles'),\n",
-       " ('hound dog', 'The Rolling Stones'),\n",
-       " ('stuck out all alone', 'The Rolling Stones'),\n",
-       " ('nothin shakin but the leaves on the trees', 'The Beatles'),\n",
-       " ('2000 light years from home', 'The Rolling Stones'),\n",
-       " ('ladytron', 'Radiohead'),\n",
-       " ('shes a rainbow', 'The Rolling Stones'),\n",
-       " ('no reply demo', 'The Beatles'),\n",
-       " ('im not signifying', 'The Rolling Stones'),\n",
-       " ('i want to be loved', 'The Rolling Stones'),\n",
-       " ('bebopalula', 'The Beatles'),\n",
-       " ('walking the dog', 'The Rolling Stones'),\n",
-       " ('stop breaking down', 'The Rolling Stones'),\n",
-       " ('whos been sleeping here', 'The Rolling Stones'),\n",
-       " ('downtown suzie', 'The Rolling Stones'),\n",
-       " ('real love', 'The Beatles'),\n",
-       " ('keep strong', 'On A Friday'),\n",
-       " ('yove got to hide your love away', 'The Beatles'),\n",
-       " ('this boy', 'The Beatles'),\n",
-       " ('the beatles third christmas record', 'The Beatles'),\n",
+      "text/html": [
+       "<div>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>0</th>\n",
+       "      <th>1</th>\n",
+       "      <th>2</th>\n",
+       "      <th>3</th>\n",
+       "      <th>4</th>\n",
+       "      <th>5</th>\n",
+       "      <th>6</th>\n",
+       "      <th>7</th>\n",
+       "      <th>8</th>\n",
+       "      <th>9</th>\n",
+       "      <th>...</th>\n",
+       "      <th>1061</th>\n",
+       "      <th>1062</th>\n",
+       "      <th>1063</th>\n",
+       "      <th>1064</th>\n",
+       "      <th>1065</th>\n",
+       "      <th>1066</th>\n",
+       "      <th>1067</th>\n",
+       "      <th>1068</th>\n",
+       "      <th>1069</th>\n",
+       "      <th>1070</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>_id</th>\n",
+       "      <td>1497768</td>\n",
+       "      <td>210315</td>\n",
+       "      <td>123533</td>\n",
+       "      <td>123537</td>\n",
+       "      <td>117722</td>\n",
+       "      <td>210284</td>\n",
+       "      <td>1336394</td>\n",
+       "      <td>107915</td>\n",
+       "      <td>1308579</td>\n",
+       "      <td>123808</td>\n",
+       "      <td>...</td>\n",
+       "      <td>310483</td>\n",
+       "      <td>313269</td>\n",
+       "      <td>313043</td>\n",
+       "      <td>2389345</td>\n",
+       "      <td>1245984</td>\n",
+       "      <td>311907</td>\n",
+       "      <td>310293</td>\n",
+       "      <td>310289</td>\n",
+       "      <td>106069</td>\n",
+       "      <td>310543</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>annotation_count</th>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>5</td>\n",
+       "      <td>4</td>\n",
+       "      <td>6</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>6</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>...</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>4</td>\n",
+       "      <td>1</td>\n",
+       "      <td>1</td>\n",
+       "      <td>4</td>\n",
+       "      <td>1</td>\n",
+       "      <td>16</td>\n",
+       "      <td>15</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>api_path</th>\n",
+       "      <td>/songs/1497768</td>\n",
+       "      <td>/songs/210315</td>\n",
+       "      <td>/songs/123533</td>\n",
+       "      <td>/songs/123537</td>\n",
+       "      <td>/songs/117722</td>\n",
+       "      <td>/songs/210284</td>\n",
+       "      <td>/songs/1336394</td>\n",
+       "      <td>/songs/107915</td>\n",
+       "      <td>/songs/1308579</td>\n",
+       "      <td>/songs/123808</td>\n",
+       "      <td>...</td>\n",
+       "      <td>/songs/310483</td>\n",
+       "      <td>/songs/313269</td>\n",
+       "      <td>/songs/313043</td>\n",
+       "      <td>/songs/2389345</td>\n",
+       "      <td>/songs/1245984</td>\n",
+       "      <td>/songs/311907</td>\n",
+       "      <td>/songs/310293</td>\n",
+       "      <td>/songs/310289</td>\n",
+       "      <td>/songs/106069</td>\n",
+       "      <td>/songs/310543</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>ctitle</th>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>full_title</th>\n",
+       "      <td>All Together on the Wireless Machine by The Be...</td>\n",
+       "      <td>A Little Rhyme by The Beatles (Ft. John &amp; Rodn...</td>\n",
+       "      <td>And I Love Her by The Beatles</td>\n",
+       "      <td>Any Time at All by The Beatles</td>\n",
+       "      <td>A Taste of Honey by The Beatles</td>\n",
+       "      <td>Beatle Greetings by The Beatles (Ft. George Ha...</td>\n",
+       "      <td>Can You Take Me Back by The Beatles</td>\n",
+       "      <td>Carry That Weight by The Beatles</td>\n",
+       "      <td>Down in Eastern Australia by The Beatles</td>\n",
+       "      <td>Everybody's Trying to Be My Baby by The Beatles</td>\n",
+       "      <td>...</td>\n",
+       "      <td>You Can't Catch Me by The Rolling Stones</td>\n",
+       "      <td>You Don't Have To Mean It by The Rolling Stones</td>\n",
+       "      <td>You Got Me Rocking by The Rolling Stones</td>\n",
+       "      <td>You Got the Silver by The Rolling Stones (Ft. ...</td>\n",
+       "      <td>Don't Look Back by The Rolling Stones</td>\n",
+       "      <td>Each and every day of the year by The Rolling ...</td>\n",
+       "      <td>I'm A King Bee by The Rolling Stones</td>\n",
+       "      <td>Little By Little by The Rolling Stones</td>\n",
+       "      <td>Brown Sugar by The Rolling Stones</td>\n",
+       "      <td>Citadel by The Rolling Stones</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>header_image_thumbnail_url</th>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
+       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
+       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/1360709432_...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://images.genius.com/560d707ac51a528c952d...</td>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://images.genius.com/4268a08d2b36372eb6e8...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>https://images.genius.com/9c0263f14c39b6df59e5...</td>\n",
+       "      <td>https://images.genius.com/eb7fd9257058b77179cb...</td>\n",
+       "      <td>https://images.genius.com/a8ed1f93846da84943a7...</td>\n",
+       "      <td>https://images.rapgenius.com/ac969979ccb91a0d2...</td>\n",
+       "      <td>https://images.genius.com/23bbf05f7ee8286a8905...</td>\n",
+       "      <td>https://images.genius.com/6c322c96140487d56076...</td>\n",
+       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
+       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
+       "      <td>https://images.genius.com/5b7d4f11893ff2fdeba7...</td>\n",
+       "      <td>https://images.genius.com/31323212a74c2a8d99eb...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>header_image_url</th>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
+       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
+       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/1360709432_...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://images.genius.com/560d707ac51a528c952d...</td>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://images.genius.com/4268a08d2b36372eb6e8...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>https://images.genius.com/9c0263f14c39b6df59e5...</td>\n",
+       "      <td>https://images.genius.com/eb7fd9257058b77179cb...</td>\n",
+       "      <td>https://images.genius.com/a8ed1f93846da84943a7...</td>\n",
+       "      <td>https://images.rapgenius.com/ac969979ccb91a0d2...</td>\n",
+       "      <td>https://images.genius.com/23bbf05f7ee8286a8905...</td>\n",
+       "      <td>https://images.genius.com/6c322c96140487d56076...</td>\n",
+       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
+       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
+       "      <td>https://images.genius.com/5b7d4f11893ff2fdeba7...</td>\n",
+       "      <td>https://images.genius.com/31323212a74c2a8d99eb...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>id</th>\n",
+       "      <td>1497768</td>\n",
+       "      <td>210315</td>\n",
+       "      <td>123533</td>\n",
+       "      <td>123537</td>\n",
+       "      <td>117722</td>\n",
+       "      <td>210284</td>\n",
+       "      <td>1336394</td>\n",
+       "      <td>107915</td>\n",
+       "      <td>1308579</td>\n",
+       "      <td>123808</td>\n",
+       "      <td>...</td>\n",
+       "      <td>310483</td>\n",
+       "      <td>313269</td>\n",
+       "      <td>313043</td>\n",
+       "      <td>2389345</td>\n",
+       "      <td>1245984</td>\n",
+       "      <td>311907</td>\n",
+       "      <td>310293</td>\n",
+       "      <td>310289</td>\n",
+       "      <td>106069</td>\n",
+       "      <td>310543</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>lyrics</th>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>lyrics_owner_id</th>\n",
+       "      <td>1549345</td>\n",
+       "      <td>250962</td>\n",
+       "      <td>46871</td>\n",
+       "      <td>46871</td>\n",
+       "      <td>70799</td>\n",
+       "      <td>250962</td>\n",
+       "      <td>1549345</td>\n",
+       "      <td>116340</td>\n",
+       "      <td>1549345</td>\n",
+       "      <td>22533</td>\n",
+       "      <td>...</td>\n",
+       "      <td>354383</td>\n",
+       "      <td>354608</td>\n",
+       "      <td>354382</td>\n",
+       "      <td>1217557</td>\n",
+       "      <td>1549345</td>\n",
+       "      <td>354385</td>\n",
+       "      <td>354383</td>\n",
+       "      <td>354383</td>\n",
+       "      <td>16</td>\n",
+       "      <td>354608</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>original_lyrics</th>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>path</th>\n",
+       "      <td>/The-beatles-all-together-on-the-wireless-mach...</td>\n",
+       "      <td>/The-beatles-a-little-rhyme-lyrics</td>\n",
+       "      <td>/The-beatles-and-i-love-her-lyrics</td>\n",
+       "      <td>/The-beatles-any-time-at-all-lyrics</td>\n",
+       "      <td>/The-beatles-a-taste-of-honey-lyrics</td>\n",
+       "      <td>/The-beatles-beatle-greetings-lyrics</td>\n",
+       "      <td>/The-beatles-can-you-take-me-back-lyrics</td>\n",
+       "      <td>/The-beatles-carry-that-weight-lyrics</td>\n",
+       "      <td>/The-beatles-down-in-eastern-australia-lyrics</td>\n",
+       "      <td>/The-beatles-everybodys-trying-to-be-my-baby-l...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>/The-rolling-stones-you-cant-catch-me-lyrics</td>\n",
+       "      <td>/The-rolling-stones-you-dont-have-to-mean-it-l...</td>\n",
+       "      <td>/The-rolling-stones-you-got-me-rocking-lyrics</td>\n",
+       "      <td>/The-rolling-stones-you-got-the-silver-lyrics</td>\n",
+       "      <td>/The-rolling-stones-dont-look-back-lyrics</td>\n",
+       "      <td>/The-rolling-stones-each-and-every-day-of-the-...</td>\n",
+       "      <td>/The-rolling-stones-im-a-king-bee-lyrics</td>\n",
+       "      <td>/The-rolling-stones-little-by-little-lyrics</td>\n",
+       "      <td>/The-rolling-stones-brown-sugar-lyrics</td>\n",
+       "      <td>/The-rolling-stones-citadel-lyrics</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>primary_artist</th>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 586, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "      <td>{'id': 774, 'image_url': 'https://images.geniu...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>pyongs_count</th>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>15</td>\n",
+       "      <td>2</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>1</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>...</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>NaN</td>\n",
+       "      <td>7</td>\n",
+       "      <td>NaN</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>song_art_image_thumbnail_url</th>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
+       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
+       "      <td>https://images.genius.com/68c11c7f5b6b66194d77...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/1360709432_...</td>\n",
+       "      <td>https://s3.amazonaws.com/rapgenius/110537_cda_...</td>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://images.genius.com/560d707ac51a528c952d...</td>\n",
+       "      <td>https://images.genius.com/ad1f59e8a03be4eb521e...</td>\n",
+       "      <td>https://images.genius.com/4268a08d2b36372eb6e8...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>https://images.genius.com/9c0263f14c39b6df59e5...</td>\n",
+       "      <td>https://images.genius.com/eb7fd9257058b77179cb...</td>\n",
+       "      <td>https://images.genius.com/a8ed1f93846da84943a7...</td>\n",
+       "      <td>https://images.rapgenius.com/ac969979ccb91a0d2...</td>\n",
+       "      <td>https://images.genius.com/23bbf05f7ee8286a8905...</td>\n",
+       "      <td>https://images.genius.com/6c322c96140487d56076...</td>\n",
+       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
+       "      <td>https://images.genius.com/076d49bcc219432b68b4...</td>\n",
+       "      <td>https://images.genius.com/5b7d4f11893ff2fdeba7...</td>\n",
+       "      <td>https://images.genius.com/31323212a74c2a8d99eb...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>stats</th>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False, 'p...</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False, 'p...</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>...</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False}</td>\n",
+       "      <td>{'unreviewed_annotations': 0, 'hot': False, 'p...</td>\n",
+       "      <td>{'unreviewed_annotations': 14, 'hot': False}</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>title</th>\n",
+       "      <td>All Together on the Wireless Machine</td>\n",
+       "      <td>A Little Rhyme</td>\n",
+       "      <td>And I Love Her</td>\n",
+       "      <td>Any Time at All</td>\n",
+       "      <td>A Taste of Honey</td>\n",
+       "      <td>Beatle Greetings</td>\n",
+       "      <td>Can You Take Me Back</td>\n",
+       "      <td>Carry That Weight</td>\n",
+       "      <td>Down in Eastern Australia</td>\n",
+       "      <td>Everybody's Trying to Be My Baby</td>\n",
+       "      <td>...</td>\n",
+       "      <td>You Can't Catch Me</td>\n",
+       "      <td>You Don't Have To Mean It</td>\n",
+       "      <td>You Got Me Rocking</td>\n",
+       "      <td>You Got the Silver</td>\n",
+       "      <td>Don't Look Back</td>\n",
+       "      <td>Each and every day of the year</td>\n",
+       "      <td>I'm A King Bee</td>\n",
+       "      <td>Little By Little</td>\n",
+       "      <td>Brown Sugar</td>\n",
+       "      <td>Citadel</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>url</th>\n",
+       "      <td>https://genius.com/The-beatles-all-together-on...</td>\n",
+       "      <td>https://genius.com/The-beatles-a-little-rhyme-...</td>\n",
+       "      <td>https://genius.com/The-beatles-and-i-love-her-...</td>\n",
+       "      <td>https://genius.com/The-beatles-any-time-at-all...</td>\n",
+       "      <td>https://genius.com/The-beatles-a-taste-of-hone...</td>\n",
+       "      <td>https://genius.com/The-beatles-beatle-greeting...</td>\n",
+       "      <td>https://genius.com/The-beatles-can-you-take-me...</td>\n",
+       "      <td>https://genius.com/The-beatles-carry-that-weig...</td>\n",
+       "      <td>https://genius.com/The-beatles-down-in-eastern...</td>\n",
+       "      <td>https://genius.com/The-beatles-everybodys-tryi...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-you-cant...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-you-dont...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-you-got-...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-you-got-...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-dont-loo...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-each-and...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-im-a-kin...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-little-b...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-brown-su...</td>\n",
+       "      <td>https://genius.com/The-rolling-stones-citadel-...</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "<p>18 rows × 1071 columns</p>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                                                                           0     \\\n",
+       "_id                                                                     1497768   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                         /songs/1497768   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                    All Together on the Wireless Machine by The Be...   \n",
+       "header_image_thumbnail_url    https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "header_image_url              https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "id                                                                      1497768   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                         1549345   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                          /The-beatles-all-together-on-the-wireless-mach...   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                      All Together on the Wireless Machine   \n",
+       "url                           https://genius.com/The-beatles-all-together-on...   \n",
+       "\n",
+       "                                                                           1     \\\n",
+       "_id                                                                      210315   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                          /songs/210315   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                    A Little Rhyme by The Beatles (Ft. John & Rodn...   \n",
+       "header_image_thumbnail_url    https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
+       "header_image_url              https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
+       "id                                                                       210315   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          250962   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                         /The-beatles-a-little-rhyme-lyrics   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                            A Little Rhyme   \n",
+       "url                           https://genius.com/The-beatles-a-little-rhyme-...   \n",
+       "\n",
+       "                                                                           2     \\\n",
+       "_id                                                                      123533   \n",
+       "annotation_count                                                              5   \n",
+       "api_path                                                          /songs/123533   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                                        And I Love Her by The Beatles   \n",
+       "header_image_thumbnail_url    https://images.genius.com/68c11c7f5b6b66194d77...   \n",
+       "header_image_url              https://images.genius.com/68c11c7f5b6b66194d77...   \n",
+       "id                                                                       123533   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                           46871   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                         /The-beatles-and-i-love-her-lyrics   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                 15   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/68c11c7f5b6b66194d77...   \n",
+       "stats                         {'unreviewed_annotations': 0, 'hot': False, 'p...   \n",
+       "title                                                            And I Love Her   \n",
+       "url                           https://genius.com/The-beatles-and-i-love-her-...   \n",
+       "\n",
+       "                                                                           3     \\\n",
+       "_id                                                                      123537   \n",
+       "annotation_count                                                              4   \n",
+       "api_path                                                          /songs/123537   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                                       Any Time at All by The Beatles   \n",
+       "header_image_thumbnail_url    https://images.genius.com/68c11c7f5b6b66194d77...   \n",
+       "header_image_url              https://images.genius.com/68c11c7f5b6b66194d77...   \n",
+       "id                                                                       123537   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                           46871   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                        /The-beatles-any-time-at-all-lyrics   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                  2   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/68c11c7f5b6b66194d77...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                           Any Time at All   \n",
+       "url                           https://genius.com/The-beatles-any-time-at-all...   \n",
+       "\n",
+       "                                                                           4     \\\n",
+       "_id                                                                      117722   \n",
+       "annotation_count                                                              6   \n",
+       "api_path                                                          /songs/117722   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                                      A Taste of Honey by The Beatles   \n",
+       "header_image_thumbnail_url    https://s3.amazonaws.com/rapgenius/1360709432_...   \n",
+       "header_image_url              https://s3.amazonaws.com/rapgenius/1360709432_...   \n",
+       "id                                                                       117722   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                           70799   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                       /The-beatles-a-taste-of-honey-lyrics   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://s3.amazonaws.com/rapgenius/1360709432_...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                          A Taste of Honey   \n",
+       "url                           https://genius.com/The-beatles-a-taste-of-hone...   \n",
+       "\n",
+       "                                                                           5     \\\n",
+       "_id                                                                      210284   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                          /songs/210284   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                    Beatle Greetings by The Beatles (Ft. George Ha...   \n",
+       "header_image_thumbnail_url    https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
+       "header_image_url              https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
+       "id                                                                       210284   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          250962   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                       /The-beatles-beatle-greetings-lyrics   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://s3.amazonaws.com/rapgenius/110537_cda_...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                          Beatle Greetings   \n",
+       "url                           https://genius.com/The-beatles-beatle-greeting...   \n",
+       "\n",
+       "                                                                           6     \\\n",
+       "_id                                                                     1336394   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                         /songs/1336394   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                                  Can You Take Me Back by The Beatles   \n",
+       "header_image_thumbnail_url    https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "header_image_url              https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "id                                                                      1336394   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                         1549345   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                   /The-beatles-can-you-take-me-back-lyrics   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                      Can You Take Me Back   \n",
+       "url                           https://genius.com/The-beatles-can-you-take-me...   \n",
+       "\n",
+       "                                                                           7     \\\n",
+       "_id                                                                      107915   \n",
+       "annotation_count                                                              6   \n",
+       "api_path                                                          /songs/107915   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                                     Carry That Weight by The Beatles   \n",
+       "header_image_thumbnail_url    https://images.genius.com/560d707ac51a528c952d...   \n",
+       "header_image_url              https://images.genius.com/560d707ac51a528c952d...   \n",
+       "id                                                                       107915   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          116340   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                      /The-beatles-carry-that-weight-lyrics   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                  1   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/560d707ac51a528c952d...   \n",
+       "stats                         {'unreviewed_annotations': 0, 'hot': False, 'p...   \n",
+       "title                                                         Carry That Weight   \n",
+       "url                           https://genius.com/The-beatles-carry-that-weig...   \n",
+       "\n",
+       "                                                                           8     \\\n",
+       "_id                                                                     1308579   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                         /songs/1308579   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                             Down in Eastern Australia by The Beatles   \n",
+       "header_image_thumbnail_url    https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "header_image_url              https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "id                                                                      1308579   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                         1549345   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                              /The-beatles-down-in-eastern-australia-lyrics   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/ad1f59e8a03be4eb521e...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                 Down in Eastern Australia   \n",
+       "url                           https://genius.com/The-beatles-down-in-eastern...   \n",
+       "\n",
+       "                                                                           9     \\\n",
+       "_id                                                                      123808   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                          /songs/123808   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                      Everybody's Trying to Be My Baby by The Beatles   \n",
+       "header_image_thumbnail_url    https://images.genius.com/4268a08d2b36372eb6e8...   \n",
+       "header_image_url              https://images.genius.com/4268a08d2b36372eb6e8...   \n",
+       "id                                                                       123808   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                           22533   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                          /The-beatles-everybodys-trying-to-be-my-baby-l...   \n",
+       "primary_artist                {'id': 586, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/4268a08d2b36372eb6e8...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                          Everybody's Trying to Be My Baby   \n",
+       "url                           https://genius.com/The-beatles-everybodys-tryi...   \n",
+       "\n",
+       "                                                    ...                          \\\n",
+       "_id                                                 ...                           \n",
+       "annotation_count                                    ...                           \n",
+       "api_path                                            ...                           \n",
+       "ctitle                                              ...                           \n",
+       "full_title                                          ...                           \n",
+       "header_image_thumbnail_url                          ...                           \n",
+       "header_image_url                                    ...                           \n",
+       "id                                                  ...                           \n",
+       "lyrics                                              ...                           \n",
+       "lyrics_owner_id                                     ...                           \n",
+       "original_lyrics                                     ...                           \n",
+       "path                                                ...                           \n",
+       "primary_artist                                      ...                           \n",
+       "pyongs_count                                        ...                           \n",
+       "song_art_image_thumbnail_url                        ...                           \n",
+       "stats                                               ...                           \n",
+       "title                                               ...                           \n",
+       "url                                                 ...                           \n",
+       "\n",
+       "                                                                           1061  \\\n",
+       "_id                                                                      310483   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                          /songs/310483   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                             You Can't Catch Me by The Rolling Stones   \n",
+       "header_image_thumbnail_url    https://images.genius.com/9c0263f14c39b6df59e5...   \n",
+       "header_image_url              https://images.genius.com/9c0263f14c39b6df59e5...   \n",
+       "id                                                                       310483   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          354383   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                               /The-rolling-stones-you-cant-catch-me-lyrics   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/9c0263f14c39b6df59e5...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                        You Can't Catch Me   \n",
+       "url                           https://genius.com/The-rolling-stones-you-cant...   \n",
+       "\n",
+       "                                                                           1062  \\\n",
+       "_id                                                                      313269   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                          /songs/313269   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                      You Don't Have To Mean It by The Rolling Stones   \n",
+       "header_image_thumbnail_url    https://images.genius.com/eb7fd9257058b77179cb...   \n",
+       "header_image_url              https://images.genius.com/eb7fd9257058b77179cb...   \n",
+       "id                                                                       313269   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          354608   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                          /The-rolling-stones-you-dont-have-to-mean-it-l...   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/eb7fd9257058b77179cb...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                 You Don't Have To Mean It   \n",
+       "url                           https://genius.com/The-rolling-stones-you-dont...   \n",
+       "\n",
+       "                                                                           1063  \\\n",
+       "_id                                                                      313043   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                          /songs/313043   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                             You Got Me Rocking by The Rolling Stones   \n",
+       "header_image_thumbnail_url    https://images.genius.com/a8ed1f93846da84943a7...   \n",
+       "header_image_url              https://images.genius.com/a8ed1f93846da84943a7...   \n",
+       "id                                                                       313043   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          354382   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                              /The-rolling-stones-you-got-me-rocking-lyrics   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/a8ed1f93846da84943a7...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                        You Got Me Rocking   \n",
+       "url                           https://genius.com/The-rolling-stones-you-got-...   \n",
+       "\n",
+       "                                                                           1064  \\\n",
+       "_id                                                                     2389345   \n",
+       "annotation_count                                                              4   \n",
+       "api_path                                                         /songs/2389345   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                    You Got the Silver by The Rolling Stones (Ft. ...   \n",
+       "header_image_thumbnail_url    https://images.rapgenius.com/ac969979ccb91a0d2...   \n",
+       "header_image_url              https://images.rapgenius.com/ac969979ccb91a0d2...   \n",
+       "id                                                                      2389345   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                         1217557   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                              /The-rolling-stones-you-got-the-silver-lyrics   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.rapgenius.com/ac969979ccb91a0d2...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                        You Got the Silver   \n",
+       "url                           https://genius.com/The-rolling-stones-you-got-...   \n",
+       "\n",
+       "                                                                           1065  \\\n",
+       "_id                                                                     1245984   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                         /songs/1245984   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                                Don't Look Back by The Rolling Stones   \n",
+       "header_image_thumbnail_url    https://images.genius.com/23bbf05f7ee8286a8905...   \n",
+       "header_image_url              https://images.genius.com/23bbf05f7ee8286a8905...   \n",
+       "id                                                                      1245984   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                         1549345   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                  /The-rolling-stones-dont-look-back-lyrics   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/23bbf05f7ee8286a8905...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                           Don't Look Back   \n",
+       "url                           https://genius.com/The-rolling-stones-dont-loo...   \n",
+       "\n",
+       "                                                                           1066  \\\n",
+       "_id                                                                      311907   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                          /songs/311907   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                    Each and every day of the year by The Rolling ...   \n",
+       "header_image_thumbnail_url    https://images.genius.com/6c322c96140487d56076...   \n",
+       "header_image_url              https://images.genius.com/6c322c96140487d56076...   \n",
+       "id                                                                       311907   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          354385   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                          /The-rolling-stones-each-and-every-day-of-the-...   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/6c322c96140487d56076...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                            Each and every day of the year   \n",
+       "url                           https://genius.com/The-rolling-stones-each-and...   \n",
+       "\n",
+       "                                                                           1067  \\\n",
+       "_id                                                                      310293   \n",
+       "annotation_count                                                              4   \n",
+       "api_path                                                          /songs/310293   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                                 I'm A King Bee by The Rolling Stones   \n",
+       "header_image_thumbnail_url    https://images.genius.com/076d49bcc219432b68b4...   \n",
+       "header_image_url              https://images.genius.com/076d49bcc219432b68b4...   \n",
+       "id                                                                       310293   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          354383   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                   /The-rolling-stones-im-a-king-bee-lyrics   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/076d49bcc219432b68b4...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                            I'm A King Bee   \n",
+       "url                           https://genius.com/The-rolling-stones-im-a-kin...   \n",
+       "\n",
+       "                                                                           1068  \\\n",
+       "_id                                                                      310289   \n",
+       "annotation_count                                                              1   \n",
+       "api_path                                                          /songs/310289   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                               Little By Little by The Rolling Stones   \n",
+       "header_image_thumbnail_url    https://images.genius.com/076d49bcc219432b68b4...   \n",
+       "header_image_url              https://images.genius.com/076d49bcc219432b68b4...   \n",
+       "id                                                                       310289   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                          354383   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                /The-rolling-stones-little-by-little-lyrics   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                NaN   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/076d49bcc219432b68b4...   \n",
+       "stats                               {'unreviewed_annotations': 0, 'hot': False}   \n",
+       "title                                                          Little By Little   \n",
+       "url                           https://genius.com/The-rolling-stones-little-b...   \n",
+       "\n",
+       "                                                                           1069  \\\n",
+       "_id                                                                      106069   \n",
+       "annotation_count                                                             16   \n",
+       "api_path                                                          /songs/106069   \n",
+       "ctitle                                                                      NaN   \n",
+       "full_title                                    Brown Sugar by The Rolling Stones   \n",
+       "header_image_thumbnail_url    https://images.genius.com/5b7d4f11893ff2fdeba7...   \n",
+       "header_image_url              https://images.genius.com/5b7d4f11893ff2fdeba7...   \n",
+       "id                                                                       106069   \n",
+       "lyrics                                                                      NaN   \n",
+       "lyrics_owner_id                                                              16   \n",
+       "original_lyrics                                                             NaN   \n",
+       "path                                     /The-rolling-stones-brown-sugar-lyrics   \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...   \n",
+       "pyongs_count                                                                  7   \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/5b7d4f11893ff2fdeba7...   \n",
+       "stats                         {'unreviewed_annotations': 0, 'hot': False, 'p...   \n",
+       "title                                                               Brown Sugar   \n",
+       "url                           https://genius.com/The-rolling-stones-brown-su...   \n",
+       "\n",
+       "                                                                           1070  \n",
+       "_id                                                                      310543  \n",
+       "annotation_count                                                             15  \n",
+       "api_path                                                          /songs/310543  \n",
+       "ctitle                                                                      NaN  \n",
+       "full_title                                        Citadel by The Rolling Stones  \n",
+       "header_image_thumbnail_url    https://images.genius.com/31323212a74c2a8d99eb...  \n",
+       "header_image_url              https://images.genius.com/31323212a74c2a8d99eb...  \n",
+       "id                                                                       310543  \n",
+       "lyrics                                                                      NaN  \n",
+       "lyrics_owner_id                                                          354608  \n",
+       "original_lyrics                                                             NaN  \n",
+       "path                                         /The-rolling-stones-citadel-lyrics  \n",
+       "primary_artist                {'id': 774, 'image_url': 'https://images.geniu...  \n",
+       "pyongs_count                                                                NaN  \n",
+       "song_art_image_thumbnail_url  https://images.genius.com/31323212a74c2a8d99eb...  \n",
+       "stats                              {'unreviewed_annotations': 14, 'hot': False}  \n",
+       "title                                                                   Citadel  \n",
+       "url                           https://genius.com/The-rolling-stones-citadel-...  \n",
+       "\n",
+       "[18 rows x 1071 columns]"
+      ]
+     },
+     "execution_count": 46,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "gsongs = pd.DataFrame(list(genius_tracks.find()))\n",
+    "gsongs.T"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Now we can get the lyrics for each song. We tidy it up as we go, to strip out formatting and the like.\n",
+    "\n",
+    "Note the use of [Beautiful Soup](https://www.crummy.com/software/BeautifulSoup/bs4/doc/) to strip out the HTML from the lyrics."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 30,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "def genius_lyrics(song_url):\n",
+    "    headers = {'Accept': 'application/json',\n",
+    "               'Authorization': 'Bearer ' + config['genius']['token'],\n",
+    "               'User-Agent': 'curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)'}\n",
+    "    request = urllib.request.Request(song_url, headers=headers, method='GET')\n",
+    "    html_doc = urllib.request.urlopen(request)\n",
+    "    soup = BeautifulSoup(html_doc, 'html.parser')\n",
+    "#     lyrics = soup.find('lyrics').get_text()\n",
+    "    if soup.find('div', class_='lyrics'):\n",
+    "        lyrics = soup.find('div', class_='lyrics').get_text()\n",
+    "    else:\n",
+    "        lyrics = ''\n",
+    "    return sanitise_lyrics(lyrics)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 31,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "def sanitise_lyrics(lyrics):\n",
+    "    l2 = re.sub('\\[[^\\]]*\\]', '', lyrics)\n",
+    "    l3 = re.sub('\\[|\\]', '', l2)\n",
+    "    l4 = re.sub('(\\s)+', ' ', l3)\n",
+    "    l5 = re.sub('[,.!?;:]', '', l4)\n",
+    "    return l5.strip().lower(), lyrics"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 32,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "(\"oh ain't she sweet well see her walking down that street yes i ask you very confidentially ain't she sweet oh ain't she nice well look her over once or twice yes i ask you very confidentially ain't she nice just cast an eye in her direction oh me oh my ain't that perfection oh i repeat well don't you think that's kind of neat yes i ask you very confidentially ain't she sweet oh ain't she sweet well see her walking down that street yes i ask you very confidentially ain't she sweet oh ain't she nice well look her over once or twice yes i ask you very confidentially ain't she nice just cast an eye in her direction oh me oh my ain't that perfection oh i repeat well don't you think that's kind of neat yes i ask you very confidentially ain't she sweet oh ain't she sweet well see her walking down that street well i ask you very confidentially ain't she sweet well i ask you very confidentially ain't she sweet\",\n",
+       " \"\\n\\n[Chorus 1]\\nOh ain't she sweet\\nWell see her walking down that street\\nYes I ask you very confidentially\\nAin't she sweet?\\n\\n[Chorus 2]\\nOh ain't she nice\\nWell look her over once or twice\\nYes I ask you very confidentially\\nAin't she nice?\\n\\n[Chorus 3]\\nJust cast an eye\\nIn her direction\\nOh me oh my\\nAin't that perfection?\\n\\n[Chorus 4]\\nOh I repeat\\nWell don't you think that's kind of neat?\\nYes I ask you very confidentially\\nAin't she sweet?\\n\\n[Chorus 1]\\nOh ain't she sweet\\nWell see her walking down that street\\nYes I ask you very confidentially\\nAin't she sweet?\\n\\n[Chorus 2]\\nOh ain't she nice\\nWell look her over once or twice\\nYes I ask you very confidentially\\nAin't she nice?\\n\\n[Chorus 3]\\nJust cast an eye\\nIn her direction\\nOh me oh my\\nAin't that perfection?\\n\\n[Chorus 4]\\nOh I repeat\\nWell don't you think that's kind of neat?\\nYes I ask you very confidentially\\nAin't she sweet?\\n\\n[Chorus 1]\\nOh ain't she sweet\\nWell see her walking down that street\\nWell I ask you very confidentially\\nAin't she sweet?\\nWell I ask you very confidentially\\nAin't she sweet?\\n\\n\")"
+      ]
+     },
+     "execution_count": 32,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "assl = genius_lyrics('https://genius.com/The-beatles-aint-she-sweet-lyrics')\n",
+    "assl"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 54,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "{'_id': 1497768,\n",
+       " 'lyrics': 'when i was sitting on my piano one day a magical thought came my way to write a number for the bbc kenny everett mccartney all together on the wireless machine kenny everett mccartney all together on the wireless machine kenny everett mccartney all together on the wireless machine',\n",
+       " 'original_lyrics': '\\n\\nWhen I was sitting on my piano one day\\nA magical thought came my way\\nTo write a number for the BBC\\nKenny Everett McCartney\\nAll together on the wireless machine\\nKenny Everett McCartney\\nAll together on the wireless machine\\nKenny Everett McCartney\\nAll together on the wireless machine\\n\\n',\n",
+       " 'title': 'All Together on the Wireless Machine'}"
+      ]
+     },
+     "execution_count": 54,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "for gsong in genius_tracks.find():\n",
+    "    if 'lyrics' not in gsong:\n",
+    "        lyrics, original_lyrics = genius_lyrics(gsong['url'])\n",
+    "        genius_tracks.update_one({'_id': gsong['_id']}, \n",
+    "                                 {'$set': {'lyrics': lyrics, 'original_lyrics': original_lyrics}})\n",
+    "genius_tracks.find_one({}, ['title', 'lyrics', 'original_lyrics'])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 55,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "'original_lyrics_text'"
+      ]
+     },
+     "execution_count": 55,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "genius_tracks.create_index([('original_lyrics', pymongo.TEXT)])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 56,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[\"\\n\\nClaudine's back in jail again\\nClaudine's back in jail (again)\\nClaudine's back in jail again\\nClaudine\\n\\nClaudine's back in jail again\\nClaudine's back in jail (again)\\nShe only does it at weekends\\nClaudine\\nOh, Claudine\\n\\nNow only Spider knows for sure\\nBut he ain't talkin' about it any more\\nIs he, Claudine?\\n\\nThere's blood in the chalet\\nAnd blood in the snow\\n(She)Washed her hands of the whole damn show\\nThe best thing you could do, Claudine\\n\\nShot him once right through the head\\nShot him twice right through the chest\\nThe judge says (ruled) it was an accident\\nClaudine\\nAccidents will happen\\n(In the best homes)\\n\\nAnd Claudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\nClaudine\\n\\n(Claudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\n\\nClaudine) (additional chorus)\\nI'll tell you something\\nNow Claudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\nClaudine\\n\\nTell you one more\\n\\nClaudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\nHuh Claudine?\\n\\nOh Claudine...\\n\\nOooo ...\\nWhat about the children, baby?\\nPoor, poor children\\n\\nNow I threaten my wife with a gun\\nI always leave the safety on\\nI recommend it\\nClaudine\\n\\nNow she pistol whipped me once or twice\\nBut she never tried to take my life\\n(What do you think about that)\\nClaudine\\n\\nThe prettiest girl I ever seen\\nI saw you on the movie screen\\nHope you don't try to make a sacrifice of me\\nClaudine\\n(Don't get trigger happy with me)\\nDon't wave a gun at me\\n(Claudine)\\n\\nI said Claudine's back in jail again\\nClaudine's back in jail again\\nClaudine's back in jail again\\nClaudine\\n\\nI said Claudine's back in jail again\\nClaudine's back in jail again\\nShe only does it at weekends\\nClaudine\\n\\nKeith, will you put that weapon down?\\n\\nOh Claudine\\n\\nOh Claudine\\n\\n\",\n",
+       " \"\\n\\n[Verse 1]\\nI'm not talking about the kind of clothes she wears\\nLook at that stupid girl\\nI'm not talking about the way she combs her hair\\nLook at that stupid girl\\n\\nThe way she powders her nose\\nHer vanity shows and it shows\\nShe's the worst thing in this world\\nWell, look at that stupid girl\\n\\n[Verse 2]\\nI'm not talking about the way she digs for gold\\nLook at that stupid girl\\nWell, I'm talking about the way she grabs and holds\\nLook at that stupid girl\\n\\nThe way she talks about someone else\\nThat she don't even know herself\\nShe's the sickest thing in this world\\nWell, look at that stupid girl\\n\\n[Chorus]\\nWell, I'm sick and tired and I really have my doubts\\nI've tried and tried, but it never really works out\\n\\n[Verse 3]\\nLike a lady-in-waiting to a virgin queen\\nLook at that stupid girl\\nShe bitches about things that she's never seen\\nLook at that stupid girl\\n\\nIt doesn't matter if she dyes her hair\\nOr the color of the shoes she wears\\nShe's the worst thing in this world\\nWell, look at that stupid girl\\n\\n[Guitar Break]\\n\\n[Verse 4]\\nLike a lady-in-waiting to a virgin queen\\nLook at that stupid girl\\nShe bitches about things that she's never seen\\nLook at that stupid girl\\n\\nAnd she purrs like a pussycat\\nThen she turns around and hisses back\\nShe's the sickest thing in this world\\nLook at that stupid girl\\n\\n\",\n",
+       " \"\\n\\n[Verse 1]\\nWent out walking through the wood the other day\\nAnd the world was a carpet laid before me\\nThe buds were bursting and the air smelled sweet and strange\\nAnd it seemed about a hundred years ago\\nMary and I, we would sit upon a gate\\nJust gazing at some dragon in the sky\\nWhat tender days, we had no secrets hid away\\nWell, it seemed about a hundred years ago\\nNow all my friends are wearing worried smiles\\nLiving out a dream of what they was\\nDon't you think it's sometimes wise not to grow up?\\nWend out walking through the wood the other day\\nCan't you see the furrows in my forehead?\\nWhat tender days, we had no secrets hid away\\nNow it seems about a hundred years ago\\nNow if you see me drinking bad red wine\\nDon't worry 'bout this man that you love\\nDon't you think it's sometimes wise not to grow up?\\n\\n[Chorus]\\nYou're going to kiss and say good-bye, yeah, I warn you[x2]\\nYou're going to kiss and say good-bye, oh Lord, I warn you\\n\\n[Verse 2]\\nAnd please excuse me while I hide away\\nCall me lazy bones\\nIsn’t got no time to waste away\\nLazy bones has not got no time to waste away\\nDon't you think it's just about time to hide away? Yeah, yeah!\\n\\n\",\n",
+       " \"\\n\\n[Instrument break]\\n\\n[Verse 1]\\nI don't like you\\nBut I love you\\nSeems that I'm always\\nThinking of you\\nOh, oh, oh\\nYou treat me badly\\nI love you madly\\nYou've really got a hold on me\\nYou've really got a hold on me, baby\\n\\n[Verse 2]\\nI don't want you\\nBut I need you\\nDon't want to kiss you\\nBut I need to\\nOh, oh, oh\\nYou do me wrong now\\nMy love is strong now\\nYou've really got a hold on me\\nYou've really got a hold on me, baby\\n\\n[Chorus]\\nI love you and all I want you to do\\nIs just hold me, hold me, hold me, hold me\\nTighter\\nTighter\\n\\n[Verse 3]\\nI want to leave you\\nDon't want to stay here\\nDon't want to spend\\nAnother day here\\nOh, oh, oh, I want to split now\\nI just can quit now\\nYou've really got a hold on me\\nYou've really got a hold on me, baby\\n\\nI love you and all I want you to do\\nIs just hold me, hold me, hold me, hold me\\n\\n[Outro]\\nYou've really got a hold on me\\nYou've really got a hold on me\\n\\n\",\n",
+       " \"\\n\\n[Verse 1]\\nThe best things in life are free\\nBut you can keep them for the birds and bees\\nNow give me money\\nThat's what I want\\nThat's what I want, yeah\\nThat's what I want\\n\\nYour loving gives me a thrill\\nBut your loving don't pay my bills\\nNow give me money\\nThat's what I want\\nThat's what I want, yeah\\nThat's what I want\\n\\n[Chorus] [x2]\\nMoney don't get everything it's true\\nWhat it don't get, I can't use\\nNow give me money\\nThat's what I want\\nThat's what I want, yeah\\nThat's what I want, wah\\n\\n[Verse 2]\\nWell now give me money\\nA lot of money\\nWow, yeah, I want to be free\\nOh I want money\\nThat's what I want\\nThat's what I want, well\\nNow give me money\\nA lot of money\\nWow, yeah, you need money\\nNow, give me money\\nThat's what I want, yeah\\nThat's what I want\\n\\n\",\n",
+       " '\\n\\n[Intro]\\nI say hey, Mona\\nOh, Mona\\nI say yeah, yeah, yeah, yeah, Mona\\nOh, Mona\\n\\n[Chorus][x2]\\nI tell you Mona what I want to do\\nI will build a house next door to you\\nCan I see you sometimes?\\nWe can blow kisses through the blinds\\nYeah can I out come out on the front\\nAnd listen to my heart go bumped bump\\nI need you baby that is no lie\\nWithout your love I would surely die\\nI say hey, Mona\\nOh, Mona\\nI say yeah, yeah, yeah, yeah, Mona\\nOh, Mona\\nI say hey, hey Mona\\nOh, Mona\\nI say yeah, yeah, yeah, yeah, Mona\\nOh, Mona\\n\\n',\n",
+       " \"\\n\\n[Verse 1]\\nNow, if you want to hear some boogie like I am going to play\\nIt is just an old piano and a knockout bass\\nThe drummer's man's a cat, they call Charlie McCoy\\nYou know, remember that rubber legged boy?\\nMama, cooking chicken fried and bacon grease\\nCome on along boys, it is just down the road apiece\\n\\n[Chorus][x2]\\nWell there is a place you really get your kicks\\nIt is open every night about twelve to six\\nNow if you want to hear some boogie you can get your fill\\nAnd shove and sting like an old steam drill\\nCome on along you can lose your lead\\nDown the road, down the road, down the road apiece\\n\\n\",\n",
+       " \"\\n\\n[Verse 1]\\nSun turnin' 'round with graceful motion\\nWe're setting off with soft explosion\\nBound for a star with fiery oceans\\nIt's so very lonely, you're a hundred light years from home\\nFreezing red deserts turn to dark\\nEnergy here in every part\\nIt's so very lonely, you're six hundred light years from home\\n\\n[Chorus]\\nIt's so very lonely, you're a thousand light years from home\\nIt's so very lonely, you're a thousand light years from home\\n\\n[Verse 2]\\nBell flight fourteen you now can land\\nSee you on Aldebaran, safe on the green desert sand\\nIt's so very lonely, you're two thousand light years from home\\nIt's so very lonely, you're two thousand light years from home\\n\\n\",\n",
+       " '\\n\\n[Intro]\\nWell if you ever plan to motor west\\nJust take my way that is the highway that is the best\\n\\n[Verse]\\nGet your kicks on Route 66\\nWell it winds from Chicago to L.A\\nMore than 2000 miles all the way\\nGet your kicks on Route 66\\n\\n[Chorus][x2]\\nWell goes from St. Louie down to Missouri\\nOklahoma city looks oh so pretty\\nYou will see Amarillo and Gallup, New Mexico\\nFlagstaff, Arizona do not forget Winona\\nKingman, Barstow, San Bernardino\\nWould you get hip to this kindly tip\\nAnd go take that California trip\\nGet your kicks on Route 66\\n\\n',\n",
+       " \"\\n\\nWell, they tell me of a pie up in the sky\\nWaiting for me when I die\\nBut between the day you're born and when you die\\nYou know, they never seem to hear even your cry\\n\\nChorus:\\nSo as sure as the sun will shine\\nI'm gonna get my share now what is mine\\nAnd then the harder they come\\nThe harder they fall\\nOne and all\\nThe harder they come\\nThe harder they fall\\nOne and all\\n\\nAnd the oppressors are trying to track me down\\nThey're trying to drive me underground\\nAnd they think that they have got the battle won\\nI say, forgive them Lord, they know not what they've done\\n\\nAnd I keep on fighting for the things I want\\nThough I know that when you're dead you can't\\nBut I'd rather be a free man in my grave\\nThan living as a puppet or a slave\\n\\n\"]"
+      ]
+     },
+     "execution_count": 56,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "[t['original_lyrics'] for t in genius_tracks.find({'$text': {'$search': 'chorus'}}, limit=10)]"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Matching datasets<a name=\"matchingdatasets\"></a>\n",
+    "Now it's time to match up the datasets. First, we simplify the titles of the tracks, to sidestep differences in punctuation, capitalisation, and the like.\n",
+    "\n",
+    "* [Top](#top)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 57,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "def canonical_name(text):\n",
+    "    t1 = re.sub(' - .*', '', text) # Strip the \" - Remastered 2015\" suffix\n",
+    "    t2 = re.sub('[^\\w\\s]', '', t1) # strip all characters except letters, numbers, and whitespace\n",
+    "    t3 = re.sub('\\s+', ' ', t2) # collapse whitespace\n",
+    "    return t3.lower() # convert to lowercase and return"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 58,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "'a hard days night'"
+      ]
+     },
+     "execution_count": 58,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "canonical_name(\"A Hard Day's Night - Live / Remastered\")"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Add the simplified title to each track in the Spotify and Genius collections."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 59,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "for t in tracks.find():\n",
+    "    tracks.update_one({'_id': t['_id']}, {'$set': {'ctitle': canonical_name(t['name'])}})\n",
+    "for t in genius_tracks.find():\n",
+    "    genius_tracks.update_one({'_id': t['_id']}, {'$set': {'ctitle': canonical_name(t['title'])}})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 60,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[('you cant always get what you want',\n",
+       "  ['You Can’t Always Get What You Want - Live',\n",
+       "   \"You Can't Always Get What You Want - Live Licks Tour - 2009 Re-Mastered Digital Version\",\n",
+       "   \"You Can't Always Get What You Want - Live / Remastered 2009\",\n",
+       "   'You Can’t Always Get What You Want - Live']),\n",
+       " ('next time you see me',\n",
+       "  ['Next Time You See Me - Live', 'Next Time You See Me - Live']),\n",
+       " ('fixing a hole',\n",
+       "  ['Fixing A Hole - Remastered',\n",
+       "   'Fixing A Hole - Remix',\n",
+       "   'Fixing A Hole - Speech And Take 3']),\n",
+       " ('harlem shuffle', ['Harlem Shuffle', 'Harlem Shuffle - Remastered']),\n",
+       " ('back to zero', ['Back To Zero', 'Back To Zero - Remastered']),\n",
+       " ('sgt peppers lonely hearts club band',\n",
+       "  [\"Sgt. Pepper's Lonely Hearts Club Band - Remastered\",\n",
+       "   \"Sgt. Pepper's Lonely Hearts Club Band - Reprise / Remastered\",\n",
+       "   \"Sgt. Pepper's Lonely Hearts Club Band - Remix\",\n",
+       "   \"Sgt. Pepper's Lonely Hearts Club Band - Take 9 And Speech\"]),\n",
+       " ('im free',\n",
+       "  [\"I'm Free - Live At The Beacon Theatre, New York / 2006\",\n",
+       "   \"I'm Free - Live / Remastered 2009\"]),\n",
+       " ('lies', ['Lies - Remastered', 'Lies - Remastered']),\n",
+       " ('happy',\n",
+       "  ['Happy - Live',\n",
+       "   'Happy - Live',\n",
+       "   'Happy - Live Licks Tour - 2009 Re-Mastered Digital Version']),\n",
+       " ('get back', ['Get Back - Remastered 2015', 'Get Back - Remastered']),\n",
+       " ('gimme shelter',\n",
+       "  ['Gimme Shelter - Live',\n",
+       "   'Gimme Shelter - Live',\n",
+       "   'Gimme Shelter - Live',\n",
+       "   'Gimme Shelter - Live',\n",
+       "   'Gimme Shelter - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Gimme Shelter - Live']),\n",
+       " ('i want to hold your hand',\n",
+       "  ['I Want To Hold Your Hand - Live / Bonus Track',\n",
+       "   'I Want To Hold Your Hand - Remastered 2015']),\n",
+       " ('roll over beethoven',\n",
+       "  ['Roll Over Beethoven - Saturday Club / 1963',\n",
+       "   'Roll Over Beethoven - Live / Remastered',\n",
+       "   'Roll Over Beethoven - Remastered']),\n",
+       " ('cant be seen',\n",
+       "  [\"Can't Be Seen - Live / Remastered 2009\", \"Can't Be Seen - Remastered\"]),\n",
+       " ('midnight rambler',\n",
+       "  ['Midnight Rambler - Live',\n",
+       "   'Midnight Rambler - Live',\n",
+       "   'Midnight Rambler - Live',\n",
+       "   'Midnight Rambler - Live',\n",
+       "   'Midnight Rambler - Live',\n",
+       "   'Midnight Rambler - Live']),\n",
+       " ('dirty work', ['Dirty Work', 'Dirty Work - Remastered']),\n",
+       " ('all you need is love',\n",
+       "  ['All You Need Is Love - Remastered 2015',\n",
+       "   'All You Need Is Love - Remastered',\n",
+       "   'All You Need Is Love - Remastered 2009']),\n",
+       " ('not fade away',\n",
+       "  ['Not Fade Away - Live',\n",
+       "   'Not Fade Away - Live',\n",
+       "   'Not Fade Away - Live',\n",
+       "   'Not Fade Away - Live / Remastered 2009']),\n",
+       " ('slipping away',\n",
+       "  ['Slipping Away - Live',\n",
+       "   'Slipping Away - Live',\n",
+       "   'Slipping Away - Live',\n",
+       "   'Slipping Away - Live / Remastered 2009',\n",
+       "   'Slipping Away - Remastered']),\n",
+       " ('faraway eyes',\n",
+       "  ['Faraway Eyes - Live',\n",
+       "   'Faraway Eyes - Live',\n",
+       "   'Faraway Eyes - Live',\n",
+       "   'Faraway Eyes - Live At The Beacon Theatre, New York / 2006']),\n",
+       " ('angie',\n",
+       "  ['Angie - Live',\n",
+       "   'Angie - Live',\n",
+       "   'Angie - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Angie - Live / Remastered 2009',\n",
+       "   'Angie - Live']),\n",
+       " ('come together',\n",
+       "  ['Come Together - Remastered 2015', 'Come Together - Remastered']),\n",
+       " ('cant buy me love',\n",
+       "  [\"Can't Buy Me Love - Live / Remastered\",\n",
+       "   \"Can't Buy Me Love - Remastered 2015\",\n",
+       "   \"Can't Buy Me Love - Remastered\"]),\n",
+       " ('brown sugar',\n",
+       "  ['Brown Sugar - Live',\n",
+       "   'Brown Sugar - Live',\n",
+       "   'Brown Sugar - Live',\n",
+       "   'Brown Sugar - Live',\n",
+       "   'Brown Sugar - Live',\n",
+       "   'Brown Sugar - Live',\n",
+       "   'Brown Sugar - Live',\n",
+       "   'Brown Sugar - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'Brown Sugar - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Brown Sugar - Live / Remastered 2009',\n",
+       "   'Brown Sugar - Live']),\n",
+       " ('baby please dont go',\n",
+       "  [\"Baby Please Don't Go - Live / Instrumental\",\n",
+       "   \"Baby Please Don't Go - Live\",\n",
+       "   \"Baby Please Don't Go - Live\"]),\n",
+       " ('sgt peppers lonely hearts club band reprise',\n",
+       "  [\"Sgt. Pepper's Lonely Hearts Club Band (Reprise) - Speech And Take 8\",\n",
+       "   \"Sgt. Pepper's Lonely Hearts Club Band (Reprise) - Remix\"]),\n",
+       " ('the long and winding road',\n",
+       "  ['The Long And Winding Road - Remastered 2015',\n",
+       "   'The Long And Winding Road - Remastered']),\n",
+       " ('when im sixtyfour',\n",
+       "  [\"When I'm Sixty-Four - Take 2\", \"When I'm Sixty-Four - Remix\"]),\n",
+       " ('some girls',\n",
+       "  ['Some Girls - Remastered',\n",
+       "   'Some Girls - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'Some Girls - Remastered']),\n",
+       " ('connection',\n",
+       "  ['Connection - Live',\n",
+       "   'Connection - Live',\n",
+       "   'Connection - Live',\n",
+       "   'Connection - Live At The Beacon Theatre, New York / 2006']),\n",
+       " ('shattered',\n",
+       "  ['Shattered - Live',\n",
+       "   'Shattered - Live',\n",
+       "   'Shattered - Remastered',\n",
+       "   'Shattered - Remastered',\n",
+       "   'Shattered - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'Shattered - Live / Remastered 2009']),\n",
+       " ('the worst', ['The Worst - Live', 'The Worst - Remastered']),\n",
+       " ('little red rooster',\n",
+       "  ['Little Red Rooster - Live / Remastered 2009',\n",
+       "   'Little Red Rooster - Live In Ireland / 1965']),\n",
+       " ('sad sad sad',\n",
+       "  ['Sad Sad Sad - Live / Remastered 2009', 'Sad Sad Sad - Remastered']),\n",
+       " ('the spider and the fly',\n",
+       "  ['The Spider And The Fly - Yeah Yeah / 1965',\n",
+       "   'The Spider And The Fly - Live',\n",
+       "   'The Spider And The Fly - Live / Remastered 2009']),\n",
+       " ('a day in the life',\n",
+       "  ['A Day In The Life - Take 1 With Hums',\n",
+       "   'A Day In The Life - Remastered',\n",
+       "   'A Day In The Life - Remix']),\n",
+       " ('you got me rockin',\n",
+       "  ['You Got Me Rockin’ - Live', 'You Got Me Rockin’ - Live']),\n",
+       " ('things we said today',\n",
+       "  ['Things We Said Today - Live / Remastered',\n",
+       "   'Things We Said Today - Remastered']),\n",
+       " ('being for the benefit of mr kite',\n",
+       "  ['Being For The Benefit Of Mr. Kite! - Remastered',\n",
+       "   'Being For The Benefit Of Mr. Kite! - Remix',\n",
+       "   'Being For The Benefit Of Mr. Kite! - Take 4']),\n",
+       " ('had it with you', ['Had It With You', 'Had It With You - Remastered']),\n",
+       " ('time is on my side',\n",
+       "  ['Time Is On My Side - Live / Remastered 2009',\n",
+       "   'Time Is On My Side - Live In Ireland / 1965']),\n",
+       " ('tumbling dice',\n",
+       "  ['Tumbling Dice - Live',\n",
+       "   'Tumbling Dice - Live',\n",
+       "   'Tumbling Dice - Live',\n",
+       "   'Tumbling Dice - Live',\n",
+       "   'Tumbling Dice - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'Tumbling Dice - Live']),\n",
+       " ('yellow submarine',\n",
+       "  ['Yellow Submarine - Remastered 2015',\n",
+       "   'Yellow Submarine - Remastered',\n",
+       "   'Yellow Submarine - Remastered']),\n",
+       " ('beast of burden',\n",
+       "  ['Beast Of Burden - Live',\n",
+       "   'Beast Of Burden - Live',\n",
+       "   'Beast Of Burden - Live',\n",
+       "   'Beast Of Burden - Remastered',\n",
+       "   'Beast Of Burden - Remastered',\n",
+       "   'Beast Of Burden - Live Licks Tour - 2009 Re-Mastered Digital Version']),\n",
+       " ('lovely rita',\n",
+       "  ['Lovely Rita - Speech And Take 9',\n",
+       "   'Lovely Rita - Remastered',\n",
+       "   'Lovely Rita - Remix']),\n",
+       " ('neighbours',\n",
+       "  ['Neighbours - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Neighbours - Remastered']),\n",
+       " ('dead flowers',\n",
+       "  ['Dead Flowers - Live',\n",
+       "   'Dead Flowers - Live',\n",
+       "   'Dead Flowers - Live',\n",
+       "   'Dead Flowers - Live',\n",
+       "   'Dead Flowers - Live',\n",
+       "   'Dead Flowers - Live',\n",
+       "   'Dead Flowers - Live / Remastered 2009']),\n",
+       " ('paint it black',\n",
+       "  ['Paint It Black - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'Paint It Black - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Paint It Black - Live / Remastered 2009',\n",
+       "   'Paint It Black - Live']),\n",
+       " ('respectable',\n",
+       "  ['Respectable - Live',\n",
+       "   'Respectable - Live',\n",
+       "   'Respectable - Remastered',\n",
+       "   'Respectable - Remastered']),\n",
+       " ('just my imagination',\n",
+       "  ['Just My Imagination - Live',\n",
+       "   'Just My Imagination - Live At The Beacon Theatre, New York / 2006']),\n",
+       " ('tell me why', ['Tell Me Why', 'Tell Me Why - Remastered']),\n",
+       " ('little by little',\n",
+       "  ['Little By Little - The Joe Loss Pop Show / 1964', 'Little By Little']),\n",
+       " ('got my mojo workin',\n",
+       "  [\"Got My Mojo Workin' - Live\", \"Got My Mojo Workin' - Live\"]),\n",
+       " ('little ta',\n",
+       "  ['Little T&A - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'Little T&A - Remastered']),\n",
+       " ('far away eyes',\n",
+       "  ['Far Away Eyes - Live',\n",
+       "   'Far Away Eyes - Remastered',\n",
+       "   'Far Away Eyes - Remastered']),\n",
+       " ('rock and a hard place',\n",
+       "  ['Rock And A Hard Place - Live / Remastered 2009',\n",
+       "   'Rock And A Hard Place - Remastered']),\n",
+       " ('long distance call',\n",
+       "  ['Long Distance Call - Live', 'Long Distance Call - Live']),\n",
+       " ('start me up',\n",
+       "  ['Start Me Up - Live',\n",
+       "   'Start Me Up - Live',\n",
+       "   'Start Me Up - Live',\n",
+       "   'Start Me Up - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'Start Me Up - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Start Me Up - Live / Remastered 2009',\n",
+       "   'Start Me Up - Live / Remastered 2009',\n",
+       "   'Start Me Up - Remastered',\n",
+       "   'Start Me Up - Live']),\n",
+       " ('let it bleed',\n",
+       "  ['Let It Bleed - Live',\n",
+       "   'Let It Bleed - Live',\n",
+       "   'Let It Bleed - Live / Remastered 2009']),\n",
+       " ('fight', ['Fight', 'Fight - Remastered']),\n",
+       " ('route 66',\n",
+       "  ['Route 66 - Blues In Rhythm / 1964', 'Route 66 - Live In Ireland / 1965']),\n",
+       " ('one hit to the body',\n",
+       "  ['One Hit (To The Body)', 'One Hit (To The Body) - Remastered']),\n",
+       " ('let me go',\n",
+       "  ['Let Me Go - Live / Remastered 2009', 'Let Me Go - Remastered']),\n",
+       " ('just my imagination running away with me',\n",
+       "  ['Just My Imagination (Running Away With Me) - Remastered',\n",
+       "   'Just My Imagination (Running Away With Me) - Live / Remastered 2009',\n",
+       "   'Just My Imagination (Running Away With Me) - Remastered']),\n",
+       " ('down in the bottom',\n",
+       "  ['Down In The Bottom - Live', 'Down In The Bottom - Live']),\n",
+       " ('you got the silver',\n",
+       "  ['You Got The Silver - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'You Got The Silver - Live']),\n",
+       " ('i cant get no satisfaction',\n",
+       "  [\"(I Can't Get No) Satisfaction - Saturday Club / 1965\",\n",
+       "   \"(I Can't Get No) Satisfaction - Live At The Beacon Theatre, New York / 2006\",\n",
+       "   \"(I Can't Get No) Satisfaction - Live Licks Tour / Remastered 2009\",\n",
+       "   \"(I Can't Get No) Satisfaction - Live / Remastered 2009\",\n",
+       "   \"(I Can't Get No) Satisfaction - Live / Remastered 2009\",\n",
+       "   \"(I Can't Get No) Satisfaction - Live\"]),\n",
+       " ('sleep tonight', ['Sleep Tonight', 'Sleep Tonight - Remastered']),\n",
+       " ('she loves you',\n",
+       "  ['She Loves You - Live / Remastered', 'She Loves You - Mono / Remastered']),\n",
+       " ('clouds in my heart',\n",
+       "  ['Clouds In My Heart - Live', 'Clouds In My Heart - Live']),\n",
+       " ('love me do',\n",
+       "  ['Love Me Do - Mono / Remastered', 'Love Me Do - Remastered 2009']),\n",
+       " ('its all over now',\n",
+       "  [\"It's All Over Now - The Joe Loss Pop Show / 1964\",\n",
+       "   \"It's All Over Now - Live\"]),\n",
+       " ('miss you',\n",
+       "  ['Miss You - Live',\n",
+       "   'Miss You - Live',\n",
+       "   'Miss You - Live',\n",
+       "   'Miss You - Live',\n",
+       "   'Miss You - Remastered',\n",
+       "   'Miss You - Live',\n",
+       "   'Miss You - Live / Remastered 2009',\n",
+       "   'Miss You - Remastered',\n",
+       "   'Miss You - Live']),\n",
+       " ('mannish boy', ['Mannish Boy - Live', 'Mannish Boy - Live']),\n",
+       " ('its only rock n roll but i like it',\n",
+       "  [\"It's Only Rock N Roll (But I Like It) - Live\",\n",
+       "   \"It's Only Rock 'n' Roll (But I Like It) - Live Licks Tour - 2009 Re-Mastered Digital Version\",\n",
+       "   \"It's Only Rock 'N Roll (But I Like It) - Live\"]),\n",
+       " ('when the whip comes down',\n",
+       "  ['When The Whip Comes Down - Live',\n",
+       "   'When The Whip Comes Down - Live',\n",
+       "   'When The Whip Comes Down - Remastered',\n",
+       "   'When The Whip Comes Down - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'When The Whip Comes Down - Remastered']),\n",
+       " ('monkey man',\n",
+       "  ['Monkey Man - Live',\n",
+       "   'Monkey Man - Live Licks Tour - 2009 Re-Mastered Digital Version']),\n",
+       " ('eight days a week',\n",
+       "  ['Eight Days A Week - Remastered 2015', 'Eight Days A Week - Remastered']),\n",
+       " ('wild horses',\n",
+       "  ['Wild Horses - Live',\n",
+       "   'Wild Horses - Live',\n",
+       "   'Wild Horses - Live',\n",
+       "   'Wild Horses - Live / Remastered 2009']),\n",
+       " ('shes leaving home',\n",
+       "  [\"She's Leaving Home - Remastered\",\n",
+       "   \"She's Leaving Home - Remix\",\n",
+       "   \"She's Leaving Home - Take 1 / Instrumental\"]),\n",
+       " ('everybody needs somebody to love',\n",
+       "  ['Everybody Needs Somebody To Love - Top Gear / 1965',\n",
+       "   'Everybody Needs Somebody To Love - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Everybody Needs Somebody To Love - Live In Ireland / 1965']),\n",
+       " ('one eyed woman', ['One Eyed Woman - Live', 'One Eyed Woman - Live']),\n",
+       " ('rip this joint',\n",
+       "  ['Rip This Joint - Live',\n",
+       "   'Rip This Joint - Live',\n",
+       "   'Rip This Joint - Live',\n",
+       "   'Rip This Joint - Live',\n",
+       "   'Rip This Joint - Live',\n",
+       "   'Rip This Joint - Live']),\n",
+       " ('winning ugly', ['Winning Ugly', 'Winning Ugly - Remastered']),\n",
+       " ('yesterday', ['Yesterday - Remastered 2015', 'Yesterday - Remastered']),\n",
+       " ('street fighting man',\n",
+       "  ['Street Fighting Man - Live',\n",
+       "   'Street Fighting Man - Live',\n",
+       "   'Street Fighting Man - Live',\n",
+       "   'Street Fighting Man - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Street Fighting Man - Live / Remastered 2009',\n",
+       "   'Street Fighting Man - Live']),\n",
+       " ('a hard days night',\n",
+       "  [\"A Hard Day's Night - Live / Remastered\",\n",
+       "   \"A Hard Day's Night - Remastered 2015\",\n",
+       "   \"A Hard Day's Night - Remastered\"]),\n",
+       " ('within you without you',\n",
+       "  ['Within You Without You - Take 1 / Indian Instruments',\n",
+       "   'Within You Without You - Remastered',\n",
+       "   'Within You Without You - Remix']),\n",
+       " ('all down the line',\n",
+       "  ['All Down The Line - Live',\n",
+       "   'All Down The Line - Live',\n",
+       "   'All Down The Line - Live',\n",
+       "   'All Down The Line - Live',\n",
+       "   'All Down The Line - Live',\n",
+       "   'All Down The Line - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'All Down The Line - Live']),\n",
+       " ('good morning good morning',\n",
+       "  ['Good Morning Good Morning - Take 8',\n",
+       "   'Good Morning Good Morning - Remastered',\n",
+       "   'Good Morning Good Morning - Remix']),\n",
+       " ('you dont have to mean it',\n",
+       "  [\"You Don't Have To Mean It - Live Licks Tour - 2009 Re-Mastered Digital Version\",\n",
+       "   \"You Don't Have To Mean It - Remastered\"]),\n",
+       " ('love in vain',\n",
+       "  ['Love In Vain - Live',\n",
+       "   'Love In Vain - Live',\n",
+       "   'Love In Vain - Live',\n",
+       "   'Love In Vain - Live / Remastered 2009']),\n",
+       " ('you dont have to go',\n",
+       "  [\"You Don't Have To Go - Live\", \"You Don't Have To Go - Live\"]),\n",
+       " ('boys', ['Boys - Live / Remastered', 'Boys - Remastered 2009']),\n",
+       " ('bitch', ['Bitch - Live', 'Bitch - Live']),\n",
+       " ('the last time',\n",
+       "  ['The Last Time - Top Gear / 1965',\n",
+       "   'The Last Time - Live In Ireland / 1965']),\n",
+       " ('honky tonk women',\n",
+       "  ['Honky Tonk Women - Live',\n",
+       "   'Honky Tonk Women - Live',\n",
+       "   'Honky Tonk Women - Live',\n",
+       "   'Honky Tonk Women - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Honky Tonk Women - Live',\n",
+       "   'Honky Tonk Women - Live']),\n",
+       " ('twist and shout',\n",
+       "  ['Twist And Shout - Live / Remastered',\n",
+       "   'Twist And Shout - Remastered 2009']),\n",
+       " ('hoochie coochie man',\n",
+       "  ['Hoochie Coochie Man - Live', 'Hoochie Coochie Man - Live']),\n",
+       " ('introduction', ['Introduction - Live', 'Introduction - Live']),\n",
+       " ('champagne and reefer',\n",
+       "  ['Champagne And Reefer - Live', 'Champagne And Reefer - Live']),\n",
+       " ('i go wild',\n",
+       "  ['I Go Wild - Live',\n",
+       "   'I Go Wild - Live',\n",
+       "   'I Go Wild - Live',\n",
+       "   'I Go Wild - Remastered',\n",
+       "   'I Go Wild - Live']),\n",
+       " ('help',\n",
+       "  ['Help! - Live / Remastered',\n",
+       "   'Help! - Remastered 2015',\n",
+       "   'Help! - Remastered']),\n",
+       " ('she was hot',\n",
+       "  ['She Was Hot - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'She Was Hot - Remastered']),\n",
+       " ('sympathy for the devil',\n",
+       "  ['Sympathy For The Devil - Live At Beacon Theatre, New York / 2006',\n",
+       "   'Sympathy For The Devil - Live / Remastered 2009',\n",
+       "   'Sympathy For The Devil - Live']),\n",
+       " ('ticket to ride',\n",
+       "  ['Ticket To Ride - Live / Remastered',\n",
+       "   'Ticket To Ride - Remastered 2015',\n",
+       "   'Ticket To Ride - Remastered']),\n",
+       " ('im moving on',\n",
+       "  [\"I'm Moving On - The Joe Loss Pop Show / 1964\",\n",
+       "   \"I'm Moving On - Live In Ireland / 1965\"]),\n",
+       " ('black limousine',\n",
+       "  ['Black Limousine - Live', 'Black Limousine - Remastered']),\n",
+       " ('out of control', ['Out Of Control - Remastered', 'Out Of Control - Live']),\n",
+       " ('dizzy miss lizzy',\n",
+       "  ['Dizzy Miss Lizzy - Live / Remastered', 'Dizzy Miss Lizzy - Remastered']),\n",
+       " ('you cant do that',\n",
+       "  [\"You Can't Do That - Live / Bonus Track\",\n",
+       "   \"You Can't Do That - Remastered\"]),\n",
+       " ('with a little help from my friends',\n",
+       "  ['With A Little Help From My Friends - Remastered',\n",
+       "   'With A Little Help From My Friends - Remix',\n",
+       "   'With A Little Help From My Friends - Take 1 / False Start And Take 2 / Instrumental']),\n",
+       " ('babys in black',\n",
+       "  [\"Baby's In Black - Live / Bonus Track\", \"Baby's In Black - Remastered\"]),\n",
+       " ('i will', ['I Will - Remastered', 'I Will']),\n",
+       " ('strawberry fields forever',\n",
+       "  ['Strawberry Fields Forever - Take 7',\n",
+       "   'Strawberry Fields Forever - Take 26',\n",
+       "   'Strawberry Fields Forever - Stereo Mix 2015',\n",
+       "   'Strawberry Fields Forever - Remastered 2009']),\n",
+       " ('eleanor rigby',\n",
+       "  ['Eleanor Rigby - Remastered 2015', 'Eleanor Rigby - Remastered']),\n",
+       " ('jumpin jack flash',\n",
+       "  [\"Jumpin' Jack Flash - Live\",\n",
+       "   \"Jumpin' Jack Flash - Live\",\n",
+       "   'Jumpin’ Jack Flash - Live',\n",
+       "   \"Jumpin' Jack Flash - Live\",\n",
+       "   'Jumpin’ Jack Flash - Live',\n",
+       "   'Jumpin’ Jack Flash - Live',\n",
+       "   'Jumpin’ Jack Flash - Live',\n",
+       "   \"Jumpin' Jack Flash - Live / Remastered 2009\",\n",
+       "   \"Jumpin' Jack Flash - Live\"]),\n",
+       " ('before they make me run',\n",
+       "  ['Before They Make Me Run - Remastered',\n",
+       "   'Before They Make Me Run - Remastered',\n",
+       "   'Before They Make Me Run - Live']),\n",
+       " ('hello goodbye',\n",
+       "  ['Hello, Goodbye - Remastered 2015', 'Hello, Goodbye - Remastered 2009']),\n",
+       " ('hold back', ['Hold Back', 'Hold Back - Remastered']),\n",
+       " ('let it be', ['Let It Be - Remastered 2015', 'Let It Be - Remastered']),\n",
+       " ('continental drift',\n",
+       "  ['Continental Drift - Live / Remastered 2009',\n",
+       "   'Continental Drift - Remastered']),\n",
+       " ('sweet virginia',\n",
+       "  ['Sweet Virginia - Live',\n",
+       "   'Sweet Virginia - Live',\n",
+       "   'Sweet Virginia - Live',\n",
+       "   'Sweet Virginia - Live / Remastered 2009']),\n",
+       " ('rock me baby',\n",
+       "  ['Rock Me Baby - Live',\n",
+       "   'Rock Me, Baby - Live Licks Tour - 2009 Re-Mastered Digital Version']),\n",
+       " ('getting better',\n",
+       "  ['Getting Better - Remastered',\n",
+       "   'Getting Better - Remix',\n",
+       "   'Getting Better - Take 1 / Instrumental And Speech At The End']),\n",
+       " ('penny lane',\n",
+       "  ['Penny Lane - Take 6 / Instrumental',\n",
+       "   'Penny Lane - Stereo Mix 2017',\n",
+       "   'Penny Lane - Remastered 2015',\n",
+       "   'Penny Lane - Remastered 2009']),\n",
+       " ('shine a light',\n",
+       "  ['Shine A Light - Live',\n",
+       "   'Shine A Light - Live',\n",
+       "   'Shine A Light - Live',\n",
+       "   'Shine A Light - Live',\n",
+       "   'Shine A Light - Live At The Beacon Theatre, New York / 2006',\n",
+       "   'Shine A Light - Live / Remastered 2009',\n",
+       "   'Shine a Light - Live']),\n",
+       " ('like a rolling stone',\n",
+       "  ['Like A Rolling Stone - Live',\n",
+       "   'Like A Rolling Stone - Live',\n",
+       "   'Like A Rolling Stone - Live',\n",
+       "   'Like A Rolling Stone - Live',\n",
+       "   'Like a Rolling Stone - Live',\n",
+       "   'Like A Rolling Stone - Live / Remastered 2009']),\n",
+       " ('lucy in the sky with diamonds',\n",
+       "  ['Lucy In The Sky With Diamonds - Remastered',\n",
+       "   'Lucy In The Sky With Diamonds - Remix',\n",
+       "   'Lucy In The Sky With Diamonds - Take 1']),\n",
+       " ('worried about you',\n",
+       "  ['Worried About You - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "   'Worried About You - Remastered']),\n",
+       " ('cant you hear me knocking',\n",
+       "  [\"Can't You Hear Me Knocking - Live\",\n",
+       "   \"Can't You Hear Me Knocking - Live Licks Tour - 2009 Re-Mastered Digital Version\"]),\n",
+       " ('live with me',\n",
+       "  ['Live With Me - Live',\n",
+       "   'Live With Me - Live',\n",
+       "   'Live With Me - Live At The Beacon Theatre, New York / 2006']),\n",
+       " ('too rude', ['Too Rude', 'Too Rude - Remastered']),\n",
+       " ('i wanna be your man',\n",
+       "  ['I Wanna Be Your Man - Saturday Club / 1964',\n",
+       "   'I Wanna Be Your Man - Remastered']),\n",
+       " ('key to the highway',\n",
+       "  ['Key To The Highway - Piano Instrumental',\n",
+       "   'Key To The Highway - Piano Instrumental/Remastered 2009']),\n",
+       " ('down the road apiece',\n",
+       "  ['Down The Road Apiece - Top Gear / 1965',\n",
+       "   'Down The Road Apiece - Live In Ireland / 1965']),\n",
+       " ('everybodys trying to be my baby',\n",
+       "  ['Everybody’s Trying To Be My Baby - Live / Bonus Track',\n",
+       "   \"Everybody's Trying To Be My Baby - Remastered\"]),\n",
+       " ('something', ['Something - Remastered 2015', 'Something - Remastered']),\n",
+       " ('all my loving',\n",
+       "  ['All My Loving - Live / Remastered', 'All My Loving - Remastered'])]"
+      ]
+     },
+     "execution_count": 60,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ctitles = set([t['ctitle'] for t in tracks.find()])\n",
+    "\n",
+    "[(ct, [t['name'] for t in tracks.find({'ctitle': ct})]) \n",
+    " for ct in ctitles\n",
+    " if tracks.find({'ctitle': ct}).count() > 1\n",
+    "]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 61,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[('you cant always get what you want',\n",
+       "  [('You Can’t Always Get What You Want - Live', 0.409),\n",
+       "   (\"You Can't Always Get What You Want - Live / Remastered 2009\", 0.419)]),\n",
+       " ('fixing a hole',\n",
+       "  [('Fixing A Hole - Remastered', 0.0783),\n",
+       "   ('Fixing A Hole - Remix', 0.0678),\n",
+       "   ('Fixing A Hole - Speech And Take 3', 0.0437)]),\n",
+       " ('harlem shuffle',\n",
+       "  [('Harlem Shuffle', 0.224), ('Harlem Shuffle - Remastered', 0.319)]),\n",
+       " ('back to zero',\n",
+       "  [('Back To Zero', 0.064), ('Back To Zero - Remastered', 0.0767)]),\n",
+       " ('lies', [('Lies - Remastered', 0.524), ('Lies - Remastered', 0.472)]),\n",
+       " ('get back',\n",
+       "  [('Get Back - Remastered 2015', 0.0959), ('Get Back - Remastered', 0.61)]),\n",
+       " ('roll over beethoven',\n",
+       "  [('Roll Over Beethoven - Saturday Club / 1963', 0.316),\n",
+       "   ('Roll Over Beethoven - Live / Remastered', 0.634),\n",
+       "   ('Roll Over Beethoven - Remastered', 0.0952)]),\n",
+       " ('dirty work', [('Dirty Work', 0.0878), ('Dirty Work - Remastered', 0.0808)]),\n",
+       " ('all you need is love',\n",
+       "  [('All You Need Is Love - Remastered 2015', 0.263),\n",
+       "   ('All You Need Is Love - Remastered', 0.286),\n",
+       "   ('All You Need Is Love - Remastered 2009', 0.155)]),\n",
+       " ('slipping away',\n",
+       "  [('Slipping Away - Live / Remastered 2009', 0.106),\n",
+       "   ('Slipping Away - Remastered', 0.421)]),\n",
+       " ('come together',\n",
+       "  [('Come Together - Remastered 2015', 0.1),\n",
+       "   ('Come Together - Remastered', 0.0926)]),\n",
+       " ('cant buy me love',\n",
+       "  [(\"Can't Buy Me Love - Remastered 2015\", 0.325),\n",
+       "   (\"Can't Buy Me Love - Remastered\", 0.321)]),\n",
+       " ('sgt peppers lonely hearts club band reprise',\n",
+       "  [(\"Sgt. Pepper's Lonely Hearts Club Band (Reprise) - Speech And Take 8\",\n",
+       "    0.148),\n",
+       "   (\"Sgt. Pepper's Lonely Hearts Club Band (Reprise) - Remix\", 0.463)]),\n",
+       " ('the long and winding road',\n",
+       "  [('The Long And Winding Road - Remastered 2015', 0.0718),\n",
+       "   ('The Long And Winding Road - Remastered', 0.0559)]),\n",
+       " ('when im sixtyfour',\n",
+       "  [(\"When I'm Sixty-Four - Take 2\", 0.0747),\n",
+       "   (\"When I'm Sixty-Four - Remix\", 0.142)]),\n",
+       " ('some girls',\n",
+       "  [('Some Girls - Remastered', 0.409), ('Some Girls - Remastered', 0.51)]),\n",
+       " ('shattered',\n",
+       "  [('Shattered - Remastered', 0.124), ('Shattered - Remastered', 0.122)]),\n",
+       " ('the spider and the fly',\n",
+       "  [('The Spider And The Fly - Yeah Yeah / 1965', 0.0691),\n",
+       "   ('The Spider And The Fly - Live / Remastered 2009', 0.352)]),\n",
+       " ('being for the benefit of mr kite',\n",
+       "  [('Being For The Benefit Of Mr. Kite! - Remastered', 0.0992),\n",
+       "   ('Being For The Benefit Of Mr. Kite! - Remix', 0.105),\n",
+       "   ('Being For The Benefit Of Mr. Kite! - Take 4', 0.432)]),\n",
+       " ('had it with you',\n",
+       "  [('Had It With You', 0.0655), ('Had It With You - Remastered', 0.0744)]),\n",
+       " ('yellow submarine',\n",
+       "  [('Yellow Submarine - Remastered 2015', 0.543),\n",
+       "   ('Yellow Submarine - Remastered', 0.528),\n",
+       "   ('Yellow Submarine - Remastered', 0.438)]),\n",
+       " ('beast of burden',\n",
+       "  [('Beast Of Burden - Remastered', 0.0389),\n",
+       "   ('Beast Of Burden - Remastered', 0.0382)]),\n",
+       " ('lovely rita',\n",
+       "  [('Lovely Rita - Speech And Take 9', 0.384),\n",
+       "   ('Lovely Rita - Remastered', 0.118),\n",
+       "   ('Lovely Rita - Remix', 0.0946)]),\n",
+       " ('respectable',\n",
+       "  [('Respectable - Remastered', 0.0677),\n",
+       "   ('Respectable - Remastered', 0.0677)]),\n",
+       " ('tell me why',\n",
+       "  [('Tell Me Why', 0.0512), ('Tell Me Why - Remastered', 0.307)]),\n",
+       " ('little by little',\n",
+       "  [('Little By Little - The Joe Loss Pop Show / 1964', 0.531),\n",
+       "   ('Little By Little', 0.212)]),\n",
+       " ('got my mojo workin',\n",
+       "  [(\"Got My Mojo Workin' - Live\", 0.686),\n",
+       "   (\"Got My Mojo Workin' - Live\", 0.659)]),\n",
+       " ('far away eyes',\n",
+       "  [('Far Away Eyes - Remastered', 0.258),\n",
+       "   ('Far Away Eyes - Remastered', 0.232)]),\n",
+       " ('one hit to the body',\n",
+       "  [('One Hit (To The Body)', 0.62),\n",
+       "   ('One Hit (To The Body) - Remastered', 0.688)]),\n",
+       " ('just my imagination running away with me',\n",
+       "  [('Just My Imagination (Running Away With Me) - Remastered', 0.411),\n",
+       "   ('Just My Imagination (Running Away With Me) - Remastered', 0.322)]),\n",
+       " ('i cant get no satisfaction',\n",
+       "  [(\"(I Can't Get No) Satisfaction - Saturday Club / 1965\", 0.106),\n",
+       "   (\"(I Can't Get No) Satisfaction - Live / Remastered 2009\", 0.511),\n",
+       "   (\"(I Can't Get No) Satisfaction - Live\", 0.357)]),\n",
+       " ('sleep tonight',\n",
+       "  [('Sleep Tonight', 0.273), ('Sleep Tonight - Remastered', 0.297)]),\n",
+       " ('love me do',\n",
+       "  [('Love Me Do - Mono / Remastered', 0.154),\n",
+       "   ('Love Me Do - Remastered 2009', 0.227)]),\n",
+       " ('miss you',\n",
+       "  [('Miss You - Remastered', 0.364),\n",
+       "   ('Miss You - Remastered', 0.236),\n",
+       "   ('Miss You - Live', 0.646)]),\n",
+       " ('when the whip comes down',\n",
+       "  [('When The Whip Comes Down - Remastered', 0.242),\n",
+       "   ('When The Whip Comes Down - Remastered', 0.205)]),\n",
+       " ('eight days a week',\n",
+       "  [('Eight Days A Week - Remastered 2015', 0.215),\n",
+       "   ('Eight Days A Week - Remastered', 0.119)]),\n",
+       " ('shes leaving home',\n",
+       "  [(\"She's Leaving Home - Remastered\", 0.106),\n",
+       "   (\"She's Leaving Home - Remix\", 0.117),\n",
+       "   (\"She's Leaving Home - Take 1 / Instrumental\", 0.125)]),\n",
+       " ('everybody needs somebody to love',\n",
+       "  [('Everybody Needs Somebody To Love - Top Gear / 1965', 0.496),\n",
+       "   ('Everybody Needs Somebody To Love - Live In Ireland / 1965', 0.296)]),\n",
+       " ('winning ugly',\n",
+       "  [('Winning Ugly', 0.693), ('Winning Ugly - Remastered', 0.689)]),\n",
+       " ('yesterday',\n",
+       "  [('Yesterday - Remastered 2015', 0.0968),\n",
+       "   ('Yesterday - Remastered', 0.0886)]),\n",
+       " ('a hard days night',\n",
+       "  [(\"A Hard Day's Night - Remastered 2015\", 0.0983),\n",
+       "   (\"A Hard Day's Night - Remastered\", 0.0996)]),\n",
+       " ('within you without you',\n",
+       "  [('Within You Without You - Take 1 / Indian Instruments', 0.134),\n",
+       "   ('Within You Without You - Remastered', 0.486),\n",
+       "   ('Within You Without You - Remix', 0.289)]),\n",
+       " ('all down the line',\n",
+       "  [('All Down The Line - Live', 0.39),\n",
+       "   ('All Down The Line - Live At The Beacon Theatre, New York / 2006',\n",
+       "    0.466)]),\n",
+       " ('good morning good morning',\n",
+       "  [('Good Morning Good Morning - Take 8', 0.158),\n",
+       "   ('Good Morning Good Morning - Remix', 0.5)]),\n",
+       " ('love in vain',\n",
+       "  [('Love In Vain - Live', 0.62),\n",
+       "   ('Love In Vain - Live / Remastered 2009', 0.158)]),\n",
+       " ('twist and shout',\n",
+       "  [('Twist And Shout - Live / Remastered', 0.508),\n",
+       "   ('Twist And Shout - Remastered 2009', 0.0414)]),\n",
+       " ('introduction',\n",
+       "  [('Introduction - Live', 0.389), ('Introduction - Live', 0.45)]),\n",
+       " ('help',\n",
+       "  [('Help! - Remastered 2015', 0.0776), ('Help! - Remastered', 0.0994)]),\n",
+       " ('ticket to ride',\n",
+       "  [('Ticket To Ride - Live / Remastered', 0.366),\n",
+       "   ('Ticket To Ride - Remastered 2015', 0.259),\n",
+       "   ('Ticket To Ride - Remastered', 0.233)]),\n",
+       " ('im moving on',\n",
+       "  [(\"I'm Moving On - The Joe Loss Pop Show / 1964\", 0.361),\n",
+       "   (\"I'm Moving On - Live In Ireland / 1965\", 0.616)]),\n",
+       " ('dizzy miss lizzy',\n",
+       "  [('Dizzy Miss Lizzy - Live / Remastered', 0.496),\n",
+       "   ('Dizzy Miss Lizzy - Remastered', 0.0962)]),\n",
+       " ('with a little help from my friends',\n",
+       "  [('With A Little Help From My Friends - Remastered', 0.389),\n",
+       "   ('With A Little Help From My Friends - Remix', 0.22),\n",
+       "   ('With A Little Help From My Friends - Take 1 / False Start And Take 2 / Instrumental',\n",
+       "    0.154)]),\n",
+       " ('i will', [('I Will - Remastered', 0.0822), ('I Will', 0.113)]),\n",
+       " ('strawberry fields forever',\n",
+       "  [('Strawberry Fields Forever - Take 7', 0.111),\n",
+       "   ('Strawberry Fields Forever - Take 26', 0.335),\n",
+       "   ('Strawberry Fields Forever - Stereo Mix 2015', 0.0884),\n",
+       "   ('Strawberry Fields Forever - Remastered 2009', 0.0713)]),\n",
+       " ('eleanor rigby',\n",
+       "  [('Eleanor Rigby - Remastered 2015', 0.359),\n",
+       "   ('Eleanor Rigby - Remastered', 0.305)]),\n",
+       " ('before they make me run',\n",
+       "  [('Before They Make Me Run - Remastered', 0.0499),\n",
+       "   ('Before They Make Me Run - Remastered', 0.0532)]),\n",
+       " ('hello goodbye',\n",
+       "  [('Hello, Goodbye - Remastered 2015', 0.525),\n",
+       "   ('Hello, Goodbye - Remastered 2009', 0.414)]),\n",
+       " ('hold back', [('Hold Back', 0.343), ('Hold Back - Remastered', 0.368)]),\n",
+       " ('let it be',\n",
+       "  [('Let It Be - Remastered 2015', 0.112), ('Let It Be - Remastered', 0.111)]),\n",
+       " ('getting better',\n",
+       "  [('Getting Better - Remastered', 0.0712),\n",
+       "   ('Getting Better - Remix', 0.0953),\n",
+       "   ('Getting Better - Take 1 / Instrumental And Speech At The End', 0.183)]),\n",
+       " ('penny lane',\n",
+       "  [('Penny Lane - Take 6 / Instrumental', 0.118),\n",
+       "   ('Penny Lane - Stereo Mix 2017', 0.113),\n",
+       "   ('Penny Lane - Remastered 2015', 0.16),\n",
+       "   ('Penny Lane - Remastered 2009', 0.136)]),\n",
+       " ('lucy in the sky with diamonds',\n",
+       "  [('Lucy In The Sky With Diamonds - Remastered', 0.139),\n",
+       "   ('Lucy In The Sky With Diamonds - Remix', 0.156),\n",
+       "   ('Lucy In The Sky With Diamonds - Take 1', 0.106)]),\n",
+       " ('worried about you',\n",
+       "  [('Worried About You - Live Licks Tour - 2009 Re-Mastered Digital Version',\n",
+       "    0.47),\n",
+       "   ('Worried About You - Remastered', 0.0865)]),\n",
+       " ('too rude', [('Too Rude', 0.0245), ('Too Rude - Remastered', 0.0231)]),\n",
+       " ('i wanna be your man',\n",
+       "  [('I Wanna Be Your Man - Saturday Club / 1964', 0.0925),\n",
+       "   ('I Wanna Be Your Man - Remastered', 0.292)]),\n",
+       " ('key to the highway',\n",
+       "  [('Key To The Highway - Piano Instrumental', 0.132),\n",
+       "   ('Key To The Highway - Piano Instrumental/Remastered 2009', 0.138)]),\n",
+       " ('everybodys trying to be my baby',\n",
+       "  [('Everybody’s Trying To Be My Baby - Live / Bonus Track', 0.448),\n",
+       "   (\"Everybody's Trying To Be My Baby - Remastered\", 0.134)]),\n",
+       " ('something',\n",
+       "  [('Something - Remastered 2015', 0.144), ('Something - Remastered', 0.138)])]"
+      ]
+     },
+     "execution_count": 61,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ctitles = set([t['ctitle'] for t in tracks.find()])\n",
+    "\n",
+    "[(ct, [(t['name'], t['liveness']) for t in tracks.find({'ctitle': ct, 'liveness': {'$lt': 0.7}})]) \n",
+    " for ct in ctitles\n",
+    " if tracks.find({'ctitle': ct, 'liveness': {'$lt': 0.7}}).count() > 1\n",
+    "]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 62,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[('sweet little sixteen',\n",
+       "  'Sweet Little Sixteen - Live',\n",
+       "  'Sweet Little Sixteen'),\n",
+       " ('sweet little sixteen',\n",
+       "  'Sweet Little Sixteen - Live',\n",
+       "  'Sweet Little Sixteen'),\n",
+       " ('roll over beethoven',\n",
+       "  'Roll Over Beethoven - Saturday Club / 1963',\n",
+       "  'Roll Over Beethoven'),\n",
+       " ('roll over beethoven',\n",
+       "  'Roll Over Beethoven - Saturday Club / 1963',\n",
+       "  'Roll Over Beethoven'),\n",
+       " ('memphis tennessee',\n",
+       "  'Memphis, Tennessee - Saturday Club / 1963',\n",
+       "  'Memphis, Tennessee'),\n",
+       " ('memphis tennessee',\n",
+       "  'Memphis, Tennessee - Saturday Club / 1963',\n",
+       "  'Memphis Tennessee'),\n",
+       " ('i wanna be your man',\n",
+       "  'I Wanna Be Your Man - Saturday Club / 1964',\n",
+       "  'I Wanna Be Your Man'),\n",
+       " ('i wanna be your man',\n",
+       "  'I Wanna Be Your Man - Saturday Club / 1964',\n",
+       "  'I Wanna Be Your Man'),\n",
+       " ('carol', 'Carol - Saturday Club / 1964', 'Carol'),\n",
+       " ('carol', 'Carol - Saturday Club / 1964', 'Carol'),\n",
+       " ('little by little',\n",
+       "  'Little By Little - The Joe Loss Pop Show / 1964',\n",
+       "  'Little by Little'),\n",
+       " ('little by little',\n",
+       "  'Little By Little - The Joe Loss Pop Show / 1964',\n",
+       "  'Little By Little'),\n",
+       " ('wild horses', 'Wild Horses - Live', 'Wild Horses'),\n",
+       " ('wild horses', 'Wild Horses - Live', 'Wild Horses'),\n",
+       " ('wild horses', 'Wild Horses - Live', 'Wild Horses'),\n",
+       " ('wild horses', 'Wild Horses - Live', 'Wild Horses'),\n",
+       " ('wild horses', 'Wild Horses - Live', 'Wild Horses'),\n",
+       " ('wild horses', 'Wild Horses - Live', 'Wild Horses'),\n",
+       " ('twist and shout', 'Twist And Shout - Live / Remastered', 'Twist and Shout'),\n",
+       " ('twist and shout',\n",
+       "  'Twist And Shout - Live / Remastered',\n",
+       "  'Twist and shout - reloved version'),\n",
+       " ('twist and shout',\n",
+       "  'Twist And Shout - Live / Remastered',\n",
+       "  'Twist And Shout - Remastered 2009'),\n",
+       " ('roll over beethoven',\n",
+       "  'Roll Over Beethoven - Live / Remastered',\n",
+       "  'Roll Over Beethoven'),\n",
+       " ('roll over beethoven',\n",
+       "  'Roll Over Beethoven - Live / Remastered',\n",
+       "  'Roll Over Beethoven'),\n",
+       " ('she loves you', 'She Loves You - Live / Remastered', 'She Loves You'),\n",
+       " ('she loves you',\n",
+       "  'She Loves You - Live / Remastered',\n",
+       "  'She loves you - reloved version'),\n",
+       " ('i want to hold your hand',\n",
+       "  'I Want To Hold Your Hand - Live / Bonus Track',\n",
+       "  'I Want to Hold Your Hand'),\n",
+       " ('i want to hold your hand',\n",
+       "  'I Want To Hold Your Hand - Live / Bonus Track',\n",
+       "  'I Want to Hold Your Hand'),\n",
+       " ('love me do', 'Love Me Do - Mono / Remastered', 'Love Me Do'),\n",
+       " ('love me do',\n",
+       "  'Love Me Do - Mono / Remastered',\n",
+       "  'Love Me Do - Spankox Liverpool Remix'),\n",
+       " ('she loves you', 'She Loves You - Mono / Remastered', 'She Loves You'),\n",
+       " ('she loves you',\n",
+       "  'She Loves You - Mono / Remastered',\n",
+       "  'She loves you - reloved version'),\n",
+       " ('i want to hold your hand',\n",
+       "  'I Want To Hold Your Hand - Remastered 2015',\n",
+       "  'I Want to Hold Your Hand'),\n",
+       " ('i want to hold your hand',\n",
+       "  'I Want To Hold Your Hand - Remastered 2015',\n",
+       "  'I Want to Hold Your Hand'),\n",
+       " ('yesterday', 'Yesterday - Remastered 2015', 'Yesterday'),\n",
+       " ('yesterday', 'Yesterday - Remastered 2015', 'Yesterday'),\n",
+       " ('i will', 'I Will - Remastered', 'I Will'),\n",
+       " ('i will', 'I Will - Remastered', 'I Will'),\n",
+       " ('youve got to hide your love away',\n",
+       "  \"You've Got To Hide Your Love Away - Remastered\",\n",
+       "  \"You've Got to Hide Your Love Away\"),\n",
+       " ('youve got to hide your love away',\n",
+       "  \"You've Got To Hide Your Love Away - Remastered\",\n",
+       "  \"You've Got To Hide Your Love Away - Take 5, Mono\"),\n",
+       " ('yesterday', 'Yesterday - Remastered', 'Yesterday'),\n",
+       " ('yesterday', 'Yesterday - Remastered', 'Yesterday'),\n",
+       " ('little by little', 'Little By Little', 'Little by Little'),\n",
+       " ('little by little', 'Little By Little', 'Little By Little'),\n",
+       " ('roll over beethoven',\n",
+       "  'Roll Over Beethoven - Remastered',\n",
+       "  'Roll Over Beethoven'),\n",
+       " ('roll over beethoven',\n",
+       "  'Roll Over Beethoven - Remastered',\n",
+       "  'Roll Over Beethoven'),\n",
+       " ('i wanna be your man',\n",
+       "  'I Wanna Be Your Man - Remastered',\n",
+       "  'I Wanna Be Your Man'),\n",
+       " ('i wanna be your man',\n",
+       "  'I Wanna Be Your Man - Remastered',\n",
+       "  'I Wanna Be Your Man'),\n",
+       " ('money thats what i want',\n",
+       "  \"Money (That's What I Want) - Remastered\",\n",
+       "  \"Money (That's What I Want)\"),\n",
+       " ('money thats what i want',\n",
+       "  \"Money (That's What I Want) - Remastered\",\n",
+       "  \"Money (That's What I Want) - Remastered 2009\"),\n",
+       " ('please please me',\n",
+       "  'Please Please Me - Remastered 2009',\n",
+       "  'Please Please Me'),\n",
+       " ('please please me',\n",
+       "  'Please Please Me - Remastered 2009',\n",
+       "  'Please, Please Me'),\n",
+       " ('love me do', 'Love Me Do - Remastered 2009', 'Love Me Do'),\n",
+       " ('love me do',\n",
+       "  'Love Me Do - Remastered 2009',\n",
+       "  'Love Me Do - Spankox Liverpool Remix'),\n",
+       " ('ps i love you', 'P.S. I Love You - Remastered 2009', 'P.S. I Love You'),\n",
+       " ('ps i love you',\n",
+       "  'P.S. I Love You - Remastered 2009',\n",
+       "  'P.s. i love you - reloved version'),\n",
+       " ('twist and shout', 'Twist And Shout - Remastered 2009', 'Twist and Shout'),\n",
+       " ('twist and shout',\n",
+       "  'Twist And Shout - Remastered 2009',\n",
+       "  'Twist and shout - reloved version'),\n",
+       " ('twist and shout',\n",
+       "  'Twist And Shout - Remastered 2009',\n",
+       "  'Twist And Shout - Remastered 2009'),\n",
+       " ('i will', 'I Will', 'I Will'),\n",
+       " ('i will', 'I Will', 'I Will'),\n",
+       " ('paranoid android', 'Paranoid Android', 'Paranoid Android'),\n",
+       " ('paranoid android', 'Paranoid Android', 'Paranoid Android'),\n",
+       " ('high and dry', 'High And Dry', 'High and Dry'),\n",
+       " ('high and dry', 'High And Dry', 'High And Dry'),\n",
+       " ('wild horses', 'Wild Horses - Live / Remastered 2009', 'Wild Horses'),\n",
+       " ('wild horses', 'Wild Horses - Live / Remastered 2009', 'Wild Horses'),\n",
+       " ('pain in my heart',\n",
+       "  'Pain In My Heart - Live In Ireland / 1965',\n",
+       "  'Pain In My Heart'),\n",
+       " ('pain in my heart',\n",
+       "  'Pain In My Heart - Live In Ireland / 1965',\n",
+       "  'Pain In My Heart - Live In Ireland / 1965')]"
+      ]
+     },
+     "execution_count": 62,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "[(t['ctitle'], t['name'], g['title']) \n",
+    " for t in tracks.find()\n",
+    " for g in genius_tracks.find({'ctitle': t['ctitle']})\n",
+    " if genius_tracks.find({'ctitle': t['ctitle']}).count() > 1]"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Now to see what the differences are. Find the tracks that are in both collections, and tracks that are in only one."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 63,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "(541, 521, 107)"
+      ]
+     },
+     "execution_count": 63,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "in_both = set((g['ctitle'], g['primary_artist']['name'])\n",
+    "              for g in genius_tracks.find({}, ['ctitle', 'primary_artist.name']) \n",
+    "              if tracks.find({'ctitle': g['ctitle']}).count())\n",
+    "\n",
+    "genius_only = set((g['ctitle'], g['primary_artist']['name']) \n",
+    "                  for g in genius_tracks.find({}, ['ctitle', 'primary_artist.name']) \n",
+    "                  if not tracks.find({'ctitle': g['ctitle']}).count())\n",
+    "\n",
+    "spotify_only = set((s['ctitle'], s['artist_name'])\n",
+    "                   for s in tracks.find({}, ['ctitle', 'artist_name']) \n",
+    "                   if not genius_tracks.find({'ctitle': s['ctitle']}).count())\n",
+    "\n",
+    "len(in_both), len(genius_only), len(spotify_only)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 64,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[('if u cant dance', 'Spice Girls'),\n",
+       " ('champagne and reefer', 'The Rolling Stones'),\n",
+       " ('key to the highway', 'The Rolling Stones'),\n",
+       " ('stop', 'Spice Girls'),\n",
+       " ('right back at ya', 'Spice Girls'),\n",
+       " ('you dont have to go', 'Muddy Waters'),\n",
+       " ('let love lead the way', 'Spice Girls'),\n",
+       " ('county jail', 'Muddy Waters'),\n",
+       " ('trouble no more', 'Muddy Waters'),\n",
+       " ('time goes by', 'Spice Girls'),\n",
+       " ('little ta', 'The Rolling Stones'),\n",
+       " ('pepperland', 'George Martin'),\n",
+       " ('you got me rockin', 'The Rolling Stones'),\n",
+       " ('sea of holes', 'George Martin'),\n",
+       " ('next time you see me', 'The Rolling Stones'),\n",
+       " ('something kinda funny', 'Spice Girls'),\n",
+       " ('untitled', 'Radiohead'),\n",
+       " ('if you wanna have some fun', 'Spice Girls'),\n",
+       " ('wasting my time', 'Spice Girls'),\n",
+       " ('packt like sardines in a crushed tin box', 'Radiohead'),\n",
+       " ('do it', 'Spice Girls'),\n",
+       " ('march of the meanies', 'George Martin'),\n",
+       " ('codex illum sphere', 'Radiohead'),\n",
+       " ('spice up your life', 'Spice Girls'),\n",
+       " ('oxygen', 'Spice Girls'),\n",
+       " ('the lady is a vamp', 'Spice Girls'),\n",
+       " ('last time lover', 'Spice Girls'),\n",
+       " ('sweet little angel', 'Muddy Waters'),\n",
+       " ('instrumental 1', 'The Rolling Stones'),\n",
+       " ('long distance call', 'The Rolling Stones'),\n",
+       " ('who do you think you are', 'Spice Girls'),\n",
+       " ('wannabe', 'Spice Girls'),\n",
+       " ('one eyed woman', 'The Rolling Stones'),\n",
+       " ('love thing', 'Spice Girls'),\n",
+       " ('youre gonna miss me when im gone', 'Muddy Waters'),\n",
+       " ('pepperland laid waste', 'George Martin'),\n",
+       " ('outro', 'Jimi Hendrix'),\n",
+       " ('everybody needs somebody to love finale', 'The Rolling Stones'),\n",
+       " ('sea of monsters', 'George Martin'),\n",
+       " ('2 become 1', 'Spice Girls'),\n",
+       " ('just my imagination', 'The Rolling Stones'),\n",
+       " ('say youll be there', 'Spice Girls'),\n",
+       " ('viva forever', 'Spice Girls'),\n",
+       " ('bullet proof i wish i was', 'Radiohead'),\n",
+       " ('holler', 'Spice Girls'),\n",
+       " ('flip flop and fly', 'Muddy Waters'),\n",
+       " ('naked', 'Spice Girls'),\n",
+       " ('denying', 'Spice Girls'),\n",
+       " ('clouds in my heart', 'The Rolling Stones'),\n",
+       " ('when im sixty four', 'The Beatles'),\n",
+       " ('fannie mae', 'The Rolling Stones'),\n",
+       " ('i will los angeles version', 'Radiohead'),\n",
+       " ('little by little shed', 'Radiohead'),\n",
+       " ('hi heel sneakers', 'The Rolling Stones'),\n",
+       " ('i cant turn you loose', 'Bob Clearmountain'),\n",
+       " ('mama', 'Spice Girls'),\n",
+       " ('bloom jamie xx rework', 'Radiohead'),\n",
+       " ('faraway eyes', 'The Rolling Stones'),\n",
+       " ('saturday night divas', 'Spice Girls'),\n",
+       " ('jumping jack flash', 'The Rolling Stones'),\n",
+       " ('got my mojo workin', 'The Rolling Stones'),\n",
+       " ('never give up on the good times', 'Spice Girls'),\n",
+       " ('get down with me', 'Spice Girls'),\n",
+       " ('revolution 1', 'The Beatles'),\n",
+       " ('instrumental 2', 'The Rolling Stones'),\n",
+       " ('weekend love', 'Spice Girls'),\n",
+       " ('country boy', 'Muddy Waters'),\n",
+       " ('move over', 'Spice Girls'),\n",
+       " ('kansas city heyheyheyhey', 'The Beatles'),\n",
+       " ('dollars cents', 'Radiohead'),\n",
+       " ('a punch up at a wedding', 'Radiohead'),\n",
+       " ('too much', 'Spice Girls'),\n",
+       " ('honky tonk woman', 'The Rolling Stones'),\n",
+       " ('sea of time', 'George Martin')]"
+      ]
+     },
+     "execution_count": 64,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "[s for s in spotify_only \n",
+    " if 'rmx' not in s[0]\n",
+    " if 'remix' not in s[0]\n",
+    " if 'live' not in s[0]\n",
+    " if 'intro' not in s[0]\n",
+    "]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 65,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[('sha la la la la', 'The Beatles'),\n",
+       " ('susie q', 'The Rolling Stones'),\n",
+       " ('nobodys child', 'The Beatles'),\n",
+       " ('prodigal son', 'The Rolling Stones'),\n",
+       " ('come and get it', 'The Beatles'),\n",
+       " ('surprise surprise', 'The Rolling Stones'),\n",
+       " ('i promise', 'Radiohead'),\n",
+       " ('keep your hands off my baby', 'The Beatles'),\n",
+       " ('four guys', 'James Richards'),\n",
+       " ('so divine aladdin story', 'The Rolling Stones'),\n",
+       " ('punchdrunk lovesick singalong', 'Radiohead'),\n",
+       " ('im talking about you', 'The Beatles'),\n",
+       " ('bebopalula', 'The Beatles'),\n",
+       " ('gangsters maul', 'The Rolling Stones'),\n",
+       " ('the daily mail', 'Radiohead'),\n",
+       " ('plundered my soul', 'The Rolling Stones'),\n",
+       " ('i need you baby mona', 'The Rolling Stones'),\n",
+       " ('clarabella', 'The Beatles'),\n",
+       " ('everyone needs someone to hate', 'On A Friday'),\n",
+       " ('what is that you say', 'Radiohead'),\n",
+       " ('i call your name', 'The Beatles'),\n",
+       " ('congratulations', 'The Rolling Stones'),\n",
+       " ('tell me', 'The Rolling Stones'),\n",
+       " ('gotta get away', 'The Rolling Stones'),\n",
+       " ('empty heart', 'The Rolling Stones'),\n",
+       " ('wake up in the morning', 'The Rolling Stones'),\n",
+       " ('crying waiting hoping', 'The Beatles'),\n",
+       " ('if you cant rock me', 'The Rolling Stones'),\n",
+       " ('money', 'The Rolling Stones'),\n",
        " ('the harder they come', 'The Rolling Stones'),\n",
-       " ('try a little harder', 'The Rolling Stones'),\n",
-       " ('kid a tracklist album cover', 'Radiohead'),\n",
-       " ('big boots', 'Radiohead'),\n",
-       " ('aint too proud to beg', 'The Rolling Stones'),\n",
-       " ('flight 505', 'The Rolling Stones'),\n",
-       " ('ill be on my way', 'The Beatles'),\n",
+       " ('sympathy for the devil fatboy slim remix', 'The Rolling Stones'),\n",
+       " ('i just dont understand', 'The Beatles'),\n",
+       " ('still a fool', 'The Rolling Stones'),\n",
+       " ('dandelion', 'The Rolling Stones'),\n",
+       " ('good times', 'The Rolling Stones'),\n",
+       " ('lull', 'Radiohead'),\n",
+       " ('searchin', 'The Beatles'),\n",
+       " ('down home girl', 'The Rolling Stones'),\n",
+       " ('lozenge of love', 'Radiohead'),\n",
+       " ('harlem shuffle ny mix', 'The Rolling Stones'),\n",
+       " ('stop breaking down', 'The Rolling Stones'),\n",
+       " ('i froze up', 'Radiohead'),\n",
+       " ('to know her is to love her', 'The Beatles'),\n",
+       " ('drift away', 'The Rolling Stones'),\n",
+       " ('somewhere', 'Ali brustofski'),\n",
+       " ('if i was a dancer dance part 2', 'The Rolling Stones'),\n",
+       " ('youve got a hold on me', 'The Beatles'),\n",
+       " ('the beatles seventh christmas record', 'The Beatles'),\n",
+       " ('how do you do it', 'The Beatles'),\n",
+       " ('mailman bring me no more blues', 'The Beatles'),\n",
+       " ('corinna', 'The Rolling Stones'),\n",
+       " ('the storm', 'The Rolling Stones'),\n",
+       " ('sweet black angel', 'The Rolling Stones'),\n",
+       " ('mothers little helper', 'The Rolling Stones'),\n",
+       " ('dont lie to me', 'The Rolling Stones'),\n",
+       " ('free as a bird', 'The Beatles'),\n",
+       " ('the lantern', 'The Rolling Stones'),\n",
+       " ('molasses', 'Radiohead'),\n",
+       " ('hello little girl', 'The Beatles'),\n",
+       " ('yove got to hide your love away', 'The Beatles'),\n",
+       " ('she said yeah', 'The Rolling Stones'),\n",
+       " ('the fool on the hill demo', 'The Beatles'),\n",
+       " ('million dollar question', 'Radiohead'),\n",
+       " ('19th nervous breakdown', 'The Rolling Stones'),\n",
+       " ('i forgot to remember to forget', 'The Beatles'),\n",
+       " ('stoned', 'The Rolling Stones'),\n",
+       " ('have you seen your mother baby standing in the shadow',\n",
+       "  'The Rolling Stones'),\n",
+       " ('staircase', 'Radiohead'),\n",
        " ('cant get next to you', 'The Rolling Stones'),\n",
-       " ('im coming up', 'On A Friday'),\n",
-       " ('backstreet girl', 'The Rolling Stones'),\n",
-       " ('final show', 'Beatles Candlestick Park Setlist'),\n",
-       " ('wonderwall', 'Radiohead'),\n",
-       " ('down in the bottom', 'The Rolling Stones'),\n",
-       " ('you better move on', 'The Rolling Stones'),\n",
-       " ('each and every day of the year', 'The Rolling Stones'),\n",
+       " ('a picture of you', 'The Beatles'),\n",
+       " ('let it loose', 'The Rolling Stones'),\n",
+       " ('memphis', 'The Beatles'),\n",
+       " ('rain fall down william remix', 'The Rolling Stones'),\n",
+       " ('riding on a bus', 'The Beatles'),\n",
+       " ('in spite of all the danger', 'The Beatles'),\n",
+       " ('bad to me', 'The Beatles'),\n",
+       " ('eleanor rigbyjulia transition', 'The Beatles'),\n",
+       " ('goin home', 'The Rolling Stones'),\n",
+       " ('anyway you look at it', 'The Rolling Stones'),\n",
+       " ('try a little harder', 'The Rolling Stones'),\n",
+       " ('suzy parker', 'The Beatles'),\n",
+       " ('we want the stones', 'The Rolling Stones'),\n",
+       " ('cry for a shadow', 'The Beatles'),\n",
+       " ('untogether', 'Radiohead'),\n",
+       " ('sweet georgia brown', 'The Beatles'),\n",
+       " ('cocksucker blues', 'The Rolling Stones'),\n",
+       " ('no expectations', 'The Rolling Stones'),\n",
        " ('give peace a chance', 'The Beatles'),\n",
-       " ('a punchup at a wedding', 'Radiohead'),\n",
-       " ('why', 'The Beatles'),\n",
-       " ('goodbye', 'The Beatles'),\n",
-       " ('im gonna drive', 'The Rolling Stones'),\n",
+       " ('tell me why ep', 'The Beatles'),\n",
+       " ('hand of fate', 'The Rolling Stones'),\n",
+       " ('swanee river', 'The Beatles'),\n",
+       " ('cuttooth', 'Radiohead'),\n",
+       " ('jazz piano song', 'The Beatles'),\n",
+       " ('wonderwall', 'Radiohead'),\n",
+       " ('that girl belongs to yesterday', 'The Rolling Stones'),\n",
+       " ('this boy', 'The Beatles'),\n",
+       " ('country honk', 'The Rolling Stones'),\n",
+       " ('within you without youtomorrow never knows', 'The Beatles'),\n",
+       " ('we love you', 'The Rolling Stones'),\n",
+       " ('diddley daddy', 'The Rolling Stones'),\n",
+       " ('get off of my cloud', 'The Rolling Stones'),\n",
+       " ('sing this all together', 'The Rolling Stones'),\n",
+       " ('stupid car', 'Radiohead'),\n",
+       " ('sure to fall', 'The Beatles'),\n",
+       " ('wish you were here', 'Radiohead'),\n",
+       " ('meet me in the bottom', 'The Rolling Stones'),\n",
+       " ('harry patch in memory of', 'Radiohead'),\n",
+       " ('lets dance', 'The Beatles'),\n",
+       " ('what is it that you say', 'On A Friday'),\n",
+       " ('set fire to that lot', 'The Beatles'),\n",
+       " ('step inside love', 'The Beatles'),\n",
+       " ('what goes on girl', 'The Beatles'),\n",
+       " ('too much monkey business', 'The Beatles'),\n",
+       " ('john lennon vs bill oreilly', 'Nice Peter'),\n",
+       " ('sing this all together see what happens', 'The Rolling Stones'),\n",
+       " ('somebody else', 'Radiohead'),\n",
+       " ('it should be you', 'The Rolling Stones'),\n",
+       " ('downtown suzie', 'The Rolling Stones'),\n",
+       " ('i want none of this', 'Radiohead'),\n",
+       " ('revolution i', 'The Beatles'),\n",
+       " ('100 years ago', 'The Rolling Stones'),\n",
+       " ('bishops robes', 'Radiohead'),\n",
+       " ('whatd i say', 'The Beatles'),\n",
+       " ('on with the show', 'The Rolling Stones'),\n",
+       " ('talkin about you', 'The Rolling Stones'),\n",
+       " ('nothin shakin', 'The Beatles'),\n",
+       " ('road runner', 'The Rolling Stones'),\n",
+       " ('crinsk dee night', 'The Beatles'),\n",
+       " ('dear doctor', 'The Rolling Stones'),\n",
+       " ('ventilator blues', 'The Rolling Stones'),\n",
+       " ('sure to fall in love with you', 'The Beatles'),\n",
        " ('short and curlies', 'The Rolling Stones'),\n",
-       " ('3', 'The Rolling Stones'),\n",
-       " ('19th nervous breakdown', 'The Rolling Stones'),\n",
-       " ('pay your dues', 'The Rolling Stones'),\n",
-       " ('melody', 'The Rolling Stones'),\n",
-       " ('rhinestone cowboy', 'Radiohead'),\n",
+       " ('tell me baby how many times', 'The Rolling Stones'),\n",
+       " ('james bond theme', 'The Beatles'),\n",
+       " ('someone else', 'On A Friday'),\n",
        " ('spectre', 'Radiohead'),\n",
-       " ('supercollider', 'Radiohead'),\n",
-       " ('if you cant rock me', 'The Rolling Stones'),\n",
-       " ('reelin and rockin', 'The Rolling Stones'),\n",
-       " ('its not easy', 'The Rolling Stones'),\n",
-       " ('think', 'The Rolling Stones'),\n",
-       " ('eleanor rigbyjulia transition', 'The Beatles'),\n",
-       " ('mannish boy', 'The Rolling Stones'),\n",
-       " ('phillipa chicken', 'Radiohead'),\n",
-       " ('cherry oh baby', 'The Rolling Stones'),\n",
-       " ('its all over now', 'The Rolling Stones'),\n",
-       " ('talkin about you', 'The Rolling Stones'),\n",
+       " ('doncha bother me', 'The Rolling Stones'),\n",
+       " ('three cool cats', 'The Beatles'),\n",
+       " ('bright lights big city', 'The Rolling Stones'),\n",
+       " ('blood red wine', 'The Rolling Stones'),\n",
+       " ('if youve got trouble', 'The Beatles'),\n",
+       " ('how can you be sure', 'Radiohead'),\n",
+       " ('little t a', 'The Rolling Stones'),\n",
        " ('matchbox', 'The Beatles'),\n",
-       " ('revolution i', 'The Beatles'),\n",
-       " ('ooh my arms speech', 'The Beatles'),\n",
-       " ('whatd i say', 'The Beatles'),\n",
-       " ('saints when the saints go marching in', 'The Beatles'),\n",
-       " ('bad boy', 'The Beatles'),\n",
-       " ('bitches talkin', 'Frank Ocean'),\n",
-       " ('congratulations', 'The Rolling Stones'),\n",
-       " ('good times', 'The Rolling Stones'),\n",
-       " ('thatll be the day', 'The Beatles'),\n",
+       " ('ill wind', 'Radiohead'),\n",
+       " ('what to do', 'The Rolling Stones'),\n",
+       " ('kansas city', 'The Beatles'),\n",
+       " ('dance little sister', 'The Rolling Stones'),\n",
+       " ('being for the benefit of mr kitei want you shes so heavyhelter skelter',\n",
+       "  'The Beatles'),\n",
+       " ('da doo ron ron', 'The Rolling Stones'),\n",
+       " ('lewis mistreated', 'Radiohead'),\n",
+       " ('besame mucho', 'The Beatles'),\n",
+       " ('from fluff to you', 'The Beatles'),\n",
+       " ('big ideas', 'Radiohead'),\n",
+       " ('worrywort', 'Radiohead'),\n",
+       " ('criss cross man', 'The Rolling Stones'),\n",
+       " ('heart of stone', 'The Rolling Stones'),\n",
+       " ('who am i', 'The Rolling Stones'),\n",
+       " ('ruby baby', 'The Beatles'),\n",
+       " ('dream baby', 'The Beatles'),\n",
+       " ('little queenie', 'The Rolling Stones'),\n",
+       " ('why', 'The Beatles'),\n",
+       " ('winter', 'The Rolling Stones'),\n",
+       " ('im coming up', 'On A Friday'),\n",
+       " ('i just want to see his face', 'The Rolling Stones'),\n",
+       " ('linda lu', 'The Rolling Stones'),\n",
+       " ('killer cars', 'Radiohead'),\n",
+       " ('ceremony', 'Radiohead'),\n",
+       " ('the beatles third christmas record', 'The Beatles'),\n",
+       " ('all sold out', 'The Rolling Stones'),\n",
+       " ('a moon shaped pool tracklist album cover', 'Radiohead'),\n",
+       " ('casino boogie', 'The Rolling Stones'),\n",
+       " ('yesterdays papers', 'The Rolling Stones'),\n",
+       " ('im gonna sit right down and cry over you', 'The Beatles'),\n",
+       " ('ill get you', 'The Beatles'),\n",
+       " ('ill wear it proudly', 'Radiohead'),\n",
+       " ('im not signifying', 'The Rolling Stones'),\n",
+       " ('flight 505', 'The Rolling Stones'),\n",
+       " ('one more try', 'The Rolling Stones'),\n",
+       " ('shake your hips', 'The Rolling Stones'),\n",
+       " ('turd on the run', 'The Rolling Stones'),\n",
+       " ('luxury', 'The Rolling Stones'),\n",
+       " ('pay your dues', 'The Rolling Stones'),\n",
+       " ('ya ya', 'The Beatles'),\n",
+       " ('banana co', 'Radiohead'),\n",
+       " ('lucille', 'The Beatles'),\n",
+       " ('the sheik of araby', 'The Beatles'),\n",
+       " ('dear wack', 'The Beatles'),\n",
+       " ('andrews blues', 'The Rolling Stones'),\n",
        " ('gnik nus', 'The Beatles'),\n",
-       " ('around and around', 'The Rolling Stones'),\n",
+       " ('beautiful dreamer', 'The Beatles'),\n",
+       " ('ooh my arms speech', 'The Beatles'),\n",
+       " ('these are my twisted words', 'Radiohead'),\n",
+       " ('nothing touches me', 'Radiohead'),\n",
+       " ('sleepy city', 'The Rolling Stones'),\n",
        " ('ive been loving you too long', 'The Rolling Stones'),\n",
-       " ('i want none of this', 'Radiohead'),\n",
-       " ('saints', 'The Beatles'),\n",
-       " ('something happened to me yesterday', 'The Rolling Stones'),\n",
-       " ('what is that you say', 'Radiohead'),\n",
-       " ('glass onion love remix', 'The Beatles'),\n",
-       " ('gotta get away', 'The Rolling Stones'),\n",
-       " ('what a shame', 'The Rolling Stones'),\n",
-       " ('i promise', 'Radiohead'),\n",
-       " ('climbing up a bloody great hill', 'Radiohead'),\n",
-       " ('down in eastern australia', 'The Beatles'),\n",
-       " ('meeting in the aisle', 'Radiohead'),\n",
-       " ('one and one is two', 'The Beatles'),\n",
-       " ('love these goon shows', 'The Beatles'),\n",
-       " ('nothing from nothing', 'The Rolling Stones'),\n",
-       " ('bullet proofi wish i was', 'Radiohead'),\n",
-       " ('play with fire', 'The Rolling Stones'),\n",
-       " ('dear wack', 'The Beatles'),\n",
-       " ('crushed pearl', 'The Rolling Stones'),\n",
-       " ('the sheik of araby', 'The Beatles'),\n",
-       " ('aint she sweet', 'The Beatles'),\n",
+       " ('good times bad times', 'The Rolling Stones'),\n",
+       " ('john wesley harding', 'The Rolling Stones'),\n",
+       " ('miss you dr dre remix 2002', 'The Rolling Stones'),\n",
+       " ('everything is turning to gold', 'The Rolling Stones'),\n",
+       " ('pass the wine sophia loren', 'The Rolling Stones'),\n",
+       " ('reelin and rockin', 'The Rolling Stones'),\n",
+       " ('just a rumour', 'The Beatles'),\n",
        " ('highway child', 'The Rolling Stones'),\n",
-       " ('how can you be sure', 'Radiohead'),\n",
+       " ('long long while', 'The Rolling Stones'),\n",
+       " ('miss amanda jones', 'The Rolling Stones'),\n",
+       " ('everybody lies through their teeth', 'On A Friday'),\n",
        " ('burning bush', 'Radiohead'),\n",
-       " ('salt of the earth', 'The Rolling Stones'),\n",
-       " ('not guilty', 'The Beatles'),\n",
-       " ('soldier of love', 'The Beatles'),\n",
+       " ('im down', 'The Beatles'),\n",
+       " ('teddy boy', 'The Beatles'),\n",
        " ('i aint superstitious', 'The Rolling Stones'),\n",
-       " ('three cool cats', 'The Beatles'),\n",
-       " ('confessin the blues', 'The Rolling Stones'),\n",
-       " ('under the board walk', 'The Rolling Stones'),\n",
-       " ('hoochie coochie man', 'The Rolling Stones'),\n",
-       " ('thank you girl', 'The Beatles'),\n",
-       " ('follow me around', 'Radiohead'),\n",
-       " ('talk show host', 'Radiohead'),\n",
-       " ('you know my name look up the number', 'The Beatles'),\n",
-       " ('how i made my millions', 'Radiohead'),\n",
-       " ('watching rainbows', 'The Beatles'),\n",
-       " ('grown up wrong', 'The Rolling Stones'),\n",
-       " ('crinsk dee night', 'The Beatles'),\n",
-       " ('hello little girl', 'The Beatles'),\n",
-       " ('september in the rain', 'The Beatles'),\n",
-       " ('cool calm and collected', 'The Rolling Stones'),\n",
-       " ('komm gib mir deine hand', 'The Beatles'),\n",
-       " ('open pick', 'Radiohead'),\n",
-       " ('moonlight mile', 'The Rolling Stones'),\n",
-       " ('step inside love', 'The Beatles'),\n",
-       " ('dream baby', 'The Beatles'),\n",
-       " ('casino boogie', 'The Rolling Stones'),\n",
-       " ('child of nature', 'The Beatles'),\n",
-       " ('hitch hike', 'The Rolling Stones'),\n",
-       " ('mr b', 'Radiohead'),\n",
-       " ('im a king bee', 'The Rolling Stones'),\n",
-       " ('parachute woman', 'The Rolling Stones'),\n",
-       " ('goin home', 'The Rolling Stones'),\n",
-       " ('ruby baby', 'The Beatles'),\n",
-       " ('sinking ship', 'On A Friday'),\n",
-       " ('the fool on the hill demo', 'The Beatles'),\n",
-       " ('have a banana', 'The Beatles'),\n",
-       " ('yes it is', 'The Beatles'),\n",
-       " ('jingle bells', 'The Beatles'),\n",
-       " ('prodigal son', 'The Rolling Stones'),\n",
-       " ('untogether', 'Radiohead'),\n",
-       " ('let it loose', 'The Rolling Stones'),\n",
-       " ('everybody lies through their teeth', 'On A Friday'),\n",
-       " ('blood red wine', 'The Rolling Stones'),\n",
-       " ('the trickster', 'Radiohead'),\n",
-       " ('palo alto', 'Radiohead'),\n",
-       " ('worrywort', 'Radiohead'),\n",
-       " ('i just dont understand', 'The Beatles'),\n",
-       " ('what is it that you say', 'On A Friday'),\n",
        " ('step inside love los paranoias', 'The Beatles'),\n",
-       " ('i think im going mad', 'The Rolling Stones'),\n",
-       " ('youve got a hold on me', 'The Beatles'),\n",
-       " ('some things just stick in your mind', 'The Rolling Stones'),\n",
-       " ('empty heart', 'The Rolling Stones'),\n",
-       " ('the beatles christmas record', 'The Beatles'),\n",
-       " ('packt like sardines in a crushd tin box', 'Radiohead'),\n",
-       " ('beautiful dreamer', 'The Beatles'),\n",
-       " ('i need you baby mona', 'The Rolling Stones'),\n",
-       " ('blue suede shoes', 'The Beatles'),\n",
-       " ('sour milk sea', 'The Beatles'),\n",
-       " ('sleepy city', 'The Rolling Stones'),\n",
-       " ('family', 'The Rolling Stones'),\n",
-       " ('lend me your comb', 'The Beatles'),\n",
-       " ('ventilator blues', 'The Rolling Stones'),\n",
-       " ('still a fool', 'The Rolling Stones'),\n",
-       " ('con le mie lacrime', 'The Rolling Stones'),\n",
-       " ('all together on the wireless machine', 'The Beatles'),\n",
-       " ('whats the new mary jane', 'The Beatles'),\n",
-       " ('dont look back', 'The Rolling Stones'),\n",
-       " ('stupid girl', 'The Rolling Stones'),\n",
-       " ('child of the moon', 'The Rolling Stones'),\n",
-       " ('you can make it if you try', 'The Rolling Stones'),\n",
-       " ('how do you do it', 'The Beatles'),\n",
-       " ('kansas city', 'The Beatles'),\n",
-       " ('hiheel sneakers', 'The Rolling Stones'),\n",
-       " ('summertime blues', 'The Rolling Stones'),\n",
-       " ('im going down', 'The Rolling Stones'),\n",
+       " ('fog', 'Radiohead'),\n",
+       " ('the singer not the song', 'The Rolling Stones'),\n",
+       " ('soldier of love', 'The Beatles'),\n",
+       " ('backstreet girl', 'The Rolling Stones'),\n",
+       " ('nothing from nothing', 'The Rolling Stones'),\n",
+       " ('shout', 'The Beatles'),\n",
+       " ('melody', 'The Rolling Stones'),\n",
+       " ('just a rumour speech', 'The Beatles'),\n",
+       " ('under the board walk', 'The Rolling Stones'),\n",
+       " ('doom and gloom', 'The Rolling Stones'),\n",
+       " ('whos been sleeping here', 'The Rolling Stones'),\n",
+       " ('cherry oh baby', 'The Rolling Stones'),\n",
+       " ('some other guy', 'The Beatles'),\n",
+       " ('ride on baby', 'The Rolling Stones'),\n",
+       " ('crazy mama', 'The Rolling Stones'),\n",
+       " ('my bonnie', 'Tony Sheridan'),\n",
+       " ('polyethylene parts 1 2', 'Radiohead'),\n",
+       " ('please go home', 'The Rolling Stones'),\n",
+       " ('coke babies', 'Radiohead'),\n",
+       " ('hey negrita', 'The Rolling Stones'),\n",
+       " ('2000 man', 'The Rolling Stones'),\n",
+       " ('shes a rainbow', 'The Rolling Stones'),\n",
+       " ('sittin on a fence', 'The Rolling Stones'),\n",
+       " ('i am waiting', 'The Rolling Stones'),\n",
+       " ('memo from turner', 'The Rolling Stones'),\n",
+       " ('drive my carthe wordwhat youre doing', 'The Beatles'),\n",
+       " ('the under assistant west coast promotion man', 'The Rolling Stones'),\n",
+       " ('ill be on my way', 'The Beatles'),\n",
+       " ('fingerprint file', 'The Rolling Stones'),\n",
+       " ('happy song', 'On A Friday'),\n",
+       " ('dancing with mr d', 'The Rolling Stones'),\n",
+       " ('union city blue', 'Radiohead'),\n",
+       " ('i want to be loved', 'The Rolling Stones'),\n",
+       " ('how i made my millions', 'Radiohead'),\n",
+       " ('words of love ep', 'The Beatles'),\n",
        " ('pearly', 'Radiohead'),\n",
-       " ('so how come no one loves me', 'The Beatles'),\n",
-       " ('we love you', 'The Rolling Stones'),\n",
-       " ('she smiled sweetly', 'The Rolling Stones'),\n",
-       " ('little t a', 'The Rolling Stones'),\n",
-       " ('banana co', 'Radiohead'),\n",
-       " ('clarabella', 'The Beatles'),\n",
-       " ('wish you were here', 'Radiohead'),\n",
-       " ('sing a song for you', 'Radiohead'),\n",
-       " ('hallelujah i love her so', 'The Beatles'),\n",
-       " ('luxury', 'The Rolling Stones'),\n",
-       " ('the storm', 'The Rolling Stones'),\n",
-       " ('the daily mail', 'Radiohead'),\n",
-       " ('something with blue jay way transition', 'The Beatles'),\n",
-       " ('big ideas', 'Radiohead'),\n",
-       " ('heart of stone', 'The Rolling Stones'),\n",
-       " ('i just want to make love to you', 'The Rolling Stones'),\n",
-       " ('what to do', 'The Rolling Stones'),\n",
-       " ('road runner', 'The Rolling Stones'),\n",
-       " ('if i was a dancer dance part 2', 'The Rolling Stones'),\n",
-       " ('fancyman blues', 'The Rolling Stones'),\n",
-       " ('transatlantic drawl', 'Radiohead'),\n",
+       " ('jump on top of me', 'The Rolling Stones'),\n",
+       " ('2000 light years from home', 'The Rolling Stones'),\n",
        " ('the rocky road to dublin', 'The Chieftains'),\n",
-       " ('teddy boy', 'The Beatles'),\n",
-       " ('fingerprint file', 'The Rolling Stones'),\n",
-       " ('memphis tennessee', 'The Rolling Stones'),\n",
-       " ('cocksucker blues', 'The Rolling Stones'),\n",
-       " ('if you let me', 'The Rolling Stones'),\n",
-       " ('mercy mercy', 'The Rolling Stones'),\n",
-       " ('i got to find my baby', 'The Beatles'),\n",
-       " ('the singer not the song', 'The Rolling Stones'),\n",
-       " ('killer cars', 'Radiohead'),\n",
-       " ('slow down', 'The Beatles'),\n",
-       " ('my bonnie', 'Tony Sheridan'),\n",
-       " ('heavys pizza', 'Dallas Smart'),\n",
-       " ('drift away', 'The Rolling Stones'),\n",
-       " ('lift', 'Radiohead'),\n",
-       " ('sure to fall in love with you', 'The Beatles'),\n",
-       " ('molasses', 'Radiohead'),\n",
-       " ('tell me why ep', 'The Beatles'),\n",
-       " ('ill wear it proudly', 'Radiohead'),\n",
+       " ('kid a tracklist album cover', 'Radiohead'),\n",
+       " ('if you really want to be my friend', 'The Rolling Stones'),\n",
+       " ('climbing up a bloody great hill', 'Radiohead'),\n",
+       " ('glass onion love remix', 'The Beatles'),\n",
+       " ('open pick', 'Radiohead'),\n",
+       " ('it hurts me too', 'The Rolling Stones'),\n",
+       " ('dancing in the light', 'The Rolling Stones'),\n",
+       " ('from us to you', 'The Beatles'),\n",
+       " ('some things just stick in your mind', 'The Rolling Stones'),\n",
+       " ('i dont know why', 'The Rolling Stones'),\n",
+       " ('real love', 'The Beatles'),\n",
+       " ('my girl', 'The Rolling Stones'),\n",
+       " ('packt like sardines in a crushd tin box', 'Radiohead'),\n",
+       " ('stranger in my arms', 'The Beatles'),\n",
+       " ('the hippy hippy shake', 'The Beatles'),\n",
+       " ('september in the rain', 'The Beatles'),\n",
+       " ('look what youve done', 'The Rolling Stones'),\n",
+       " ('sing a song for you', 'Radiohead'),\n",
        " ('melatonin', 'Radiohead'),\n",
-       " ('rain', 'The Beatles'),\n",
-       " ('india', 'The Beatles'),\n",
-       " ('being for the benefit of mr kitei want you shes so heavyhelter skelter',\n",
-       "  'The Beatles'),\n",
-       " ('one more shot', 'The Rolling Stones'),\n",
-       " ('stupid car', 'Radiohead'),\n",
-       " ('jiving sister fanny', 'The Rolling Stones'),\n",
-       " ('another beatles christmas record', 'The Beatles'),\n",
-       " ('were wastin time', 'The Rolling Stones'),\n",
-       " ('punchdrunk lovesick singalong', 'Radiohead'),\n",
-       " ('can i get a witness', 'The Rolling Stones'),\n",
-       " ('happy song', 'On A Friday'),\n",
-       " ('100 years ago', 'The Rolling Stones'),\n",
-       " ('riding on a bus', 'The Beatles'),\n",
+       " ('not guilty', 'The Beatles'),\n",
+       " ('fanny mae', 'The Rolling Stones'),\n",
+       " ('its not easy', 'The Rolling Stones'),\n",
+       " ('im gonna drive', 'The Rolling Stones'),\n",
+       " ('inside my head', 'Radiohead'),\n",
+       " ('supercollider', 'Radiohead'),\n",
+       " ('hallelujah i love her so', 'The Beatles'),\n",
+       " ('following the river', 'The Rolling Stones'),\n",
+       " ('out of time', 'The Rolling Stones'),\n",
+       " ('bad boy', 'The Beatles'),\n",
+       " ('saints when the saints go marching in', 'The Beatles'),\n",
+       " ('blue suede shoes', 'The Beatles'),\n",
+       " ('come togetherdear prudence', 'The Beatles'),\n",
+       " ('permanent daylight', 'Radiohead'),\n",
+       " ('one and one is two', 'The Beatles'),\n",
+       " ('love', 'The Beatles'),\n",
+       " ('you know my name look up the number', 'The Beatles'),\n",
+       " ('youll be mine', 'The Beatles'),\n",
+       " ('lonesome tears in my eyes', 'The Beatles'),\n",
+       " ('moonlight bay', 'The Beatles'),\n",
+       " ('its for you', 'The Beatles'),\n",
+       " ('parachute woman', 'The Rolling Stones'),\n",
+       " ('wish i never met you', 'The Rolling Stones'),\n",
+       " ('title 5', 'The Rolling Stones'),\n",
+       " ('paint it blacker', 'Plan B'),\n",
+       " ('aint too proud to beg', 'The Rolling Stones'),\n",
        " ('india rubber', 'Radiohead'),\n",
-       " ('on with the show', 'The Rolling Stones'),\n",
-       " ('hey negrita', 'The Rolling Stones'),\n",
-       " ('moonlight', 'The Beatles'),\n",
-       " ('polyethylene parts 1 2', 'Radiohead'),\n",
-       " ('sympathy for the devil fatboy slim remix', 'The Rolling Stones'),\n",
-       " ('sweet black angel', 'The Rolling Stones'),\n",
-       " ('if you love me baby', 'The Beatles'),\n",
-       " ('sweet little sixteen', 'The Rolling Stones'),\n",
-       " ('1822', 'The Beatles'),\n",
-       " ('everyone needs someone to hate', 'On A Friday'),\n",
-       " ('leave my kitten alone', 'The Beatles'),\n",
-       " ('citadel', 'The Rolling Stones'),\n",
-       " ('country honk', 'The Rolling Stones'),\n",
-       " ('hot stuff', 'The Rolling Stones'),\n",
-       " ('someone else', 'On A Friday'),\n",
+       " ('she smiled sweetly', 'The Rolling Stones'),\n",
+       " ('rain', 'The Beatles'),\n",
+       " ('faithless the wonderboy', 'Radiohead'),\n",
+       " ('love these goon shows', 'The Beatles'),\n",
+       " ('dollars and cents', 'Radiohead'),\n",
+       " ('so how come no one loves me', 'The Beatles'),\n",
        " ('hide your love', 'The Rolling Stones'),\n",
-       " ('look what youve done', 'The Rolling Stones'),\n",
-       " ('dance little sister', 'The Rolling Stones'),\n",
-       " ('tell me youre coming back', 'The Rolling Stones'),\n",
-       " ('dancing in the light', 'The Rolling Stones'),\n",
-       " ('i dont know why', 'The Rolling Stones'),\n",
-       " ('mothers little helper', 'The Rolling Stones'),\n",
-       " ('jigsaw puzzle', 'The Rolling Stones'),\n",
-       " ('2000 man', 'The Rolling Stones'),\n",
-       " ('from us to you', 'The Beatles'),\n",
-       " ('here comes the sunthe inner light transition', 'The Beatles'),\n",
-       " ('down home girl', 'The Rolling Stones'),\n",
-       " ('you never wash up after yourself', 'Radiohead'),\n",
-       " ('commonwealth', 'The Beatles'),\n",
-       " ('bye bye johnny', 'The Rolling Stones'),\n",
-       " ('diddley daddy', 'The Rolling Stones'),\n",
-       " ('crackin up', 'The Rolling Stones'),\n",
-       " ('i just want to see his face', 'The Rolling Stones'),\n",
-       " ('set fire to that lot speech', 'The Beatles'),\n",
-       " ('the new generation', 'Radiohead'),\n",
-       " ('to be a brilliant light', 'On A Friday'),\n",
+       " ('talk show host', 'Radiohead'),\n",
        " ('a little rhyme', 'The Beatles'),\n",
-       " ('these are my twisted words', 'Radiohead'),\n",
-       " ('rain fall down william remix', 'The Rolling Stones'),\n",
-       " ('across the universe wildlife version', 'The Beatles'),\n",
-       " ('i cant help it', 'The Rolling Stones'),\n",
-       " ('the happy rishikesh song', 'The Beatles'),\n",
-       " ('blue moon of kentucky', 'The Beatles'),\n",
-       " ('dollars and cents', 'Radiohead'),\n",
-       " ('it should be you', 'The Rolling Stones'),\n",
+       " ('rhinestone cowboy', 'Radiohead'),\n",
+       " ('like dreamers do', 'The Beatles'),\n",
+       " ('i dont know why aka dont know why i love you', 'The Rolling Stones'),\n",
+       " ('the honeymoon song', 'The Beatles'),\n",
+       " ('upside down', 'Radiohead'),\n",
+       " ('summertime blues', 'The Rolling Stones'),\n",
+       " ('lift', 'Radiohead'),\n",
+       " ('jiving sister fanny', 'The Rolling Stones'),\n",
+       " ('the amazing sounds of orgy', 'Radiohead'),\n",
+       " ('moonlight', 'The Beatles'),\n",
+       " ('i get a kick out of you', 'The Rolling Stones'),\n",
+       " ('stray cat blues', 'The Rolling Stones'),\n",
+       " ('sinking ship', 'On A Friday'),\n",
+       " ('give it up', 'On A Friday'),\n",
+       " ('my bonnie', 'The Beatles'),\n",
+       " ('con le mie lacrime', 'The Rolling Stones'),\n",
+       " ('slow down', 'The Beatles'),\n",
+       " ('baby whats wrong', 'The Rolling Stones'),\n",
+       " ('dont ever change', 'The Beatles'),\n",
+       " ('cinnamon girl', 'Radiohead'),\n",
+       " ('can you hear the music', 'The Rolling Stones'),\n",
+       " ('were wastin time', 'The Rolling Stones'),\n",
+       " ('if you let me', 'The Rolling Stones'),\n",
+       " ('play with fire', 'The Rolling Stones'),\n",
+       " ('something happened to me yesterday', 'The Rolling Stones'),\n",
        " ('goodbye girl', 'The Rolling Stones'),\n",
-       " ('corinna', 'The Rolling Stones'),\n",
-       " ('million dollar question', 'Radiohead'),\n",
-       " ('bitch', 'The Rolling Stones'),\n",
-       " ('she said yeah', 'The Rolling Stones'),\n",
-       " ('maquiladora', 'Radiohead'),\n",
-       " ('sway', 'The Rolling Stones'),\n",
-       " ('oh baby we got a good thing goin', 'The Rolling Stones'),\n",
-       " ('wake up in the morning', 'The Rolling Stones'),\n",
-       " ('who am i', 'The Rolling Stones'),\n",
        " ('memory motel', 'The Rolling Stones'),\n",
+       " ('thats alright mama', 'The Beatles'),\n",
+       " ('palo alto', 'Radiohead'),\n",
+       " ('grown up wrong', 'The Rolling Stones'),\n",
+       " ('hiheel sneakers', 'The Rolling Stones'),\n",
+       " ('ladies and gentlemen the rolling stones', 'The Rolling Stones'),\n",
+       " ('manowar', 'Radiohead'),\n",
+       " ('fortune teller', 'The Rolling Stones'),\n",
+       " ('nobody does it better', 'Radiohead'),\n",
+       " ('bullet proofi wish i was', 'Radiohead'),\n",
+       " ('you know my name', 'The Beatles'),\n",
+       " ('blackbirdyesterday', 'The Beatles'),\n",
+       " ('junk', 'The Beatles'),\n",
        " ('my obsession', 'The Rolling Stones'),\n",
-       " ('sure to fall', 'The Beatles'),\n",
-       " ('im talking about you', 'The Beatles'),\n",
-       " ('faithless the wonderboy', 'Radiohead'),\n",
-       " ('i got the blues', 'The Rolling Stones'),\n",
-       " ('carol', 'The Beatles'),\n",
-       " ('sgt peppers lonely hearts club band band documentary multimedia',\n",
-       "  'The Beatles'),\n",
-       " ('the under assistant west coast promotion man', 'The Rolling Stones'),\n",
-       " ('have you seen your mother baby standing in the shadow',\n",
-       "  'The Rolling Stones'),\n",
-       " ('suzy parker', 'The Beatles'),\n",
-       " ('jerusalem', 'On A Friday'),\n",
-       " ('plundered my soul', 'The Rolling Stones'),\n",
-       " ('mailman bring me no more blues', 'The Beatles'),\n",
-       " ('memo from turner', 'The Rolling Stones'),\n",
-       " ('it hurts me too', 'The Rolling Stones'),\n",
-       " ('stranger in my arms', 'The Beatles'),\n",
-       " ('young blood', 'The Beatles'),\n",
+       " ('yes i am', 'Radiohead'),\n",
+       " ('because i know you love me so', 'The Beatles'),\n",
+       " ('another beatles christmas record', 'The Beatles'),\n",
+       " ('through the lonely nights', 'The Rolling Stones'),\n",
+       " ('i cant help it', 'The Rolling Stones'),\n",
+       " ('pop is dead', 'Radiohead'),\n",
+       " ('losing my touch', 'The Rolling Stones'),\n",
+       " ('saints', 'The Beatles'),\n",
+       " ('hitch hike', 'The Rolling Stones'),\n",
+       " ('the happy rishikesh song', 'The Beatles'),\n",
+       " ('all together on the wireless machine', 'The Beatles'),\n",
+       " ('dont look back', 'The Rolling Stones'),\n",
+       " ('fancyman blues', 'The Rolling Stones'),\n",
+       " ('cool calm and collected', 'The Rolling Stones'),\n",
+       " ('i think im going mad', 'The Rolling Stones'),\n",
+       " ('have a banana speech', 'The Beatles'),\n",
+       " ('fasttrack', 'Radiohead'),\n",
+       " ('till the next goodbye', 'The Rolling Stones'),\n",
+       " ('the beatles 1968 christmas record', 'The Beatles'),\n",
+       " ('get back aka no pakistanis', 'The Beatles'),\n",
+       " ('ladytron', 'Radiohead'),\n",
+       " ('jingle bells', 'The Beatles'),\n",
+       " ('hey crawdaddy', 'The Rolling Stones'),\n",
+       " ('complicated', 'The Rolling Stones'),\n",
+       " ('wicked child', 'Radiohead'),\n",
+       " ('in another land', 'The Rolling Stones'),\n",
+       " ('coming down again', 'The Rolling Stones'),\n",
+       " ('on the beach', 'Radiohead'),\n",
+       " ('travellin man', 'The Rolling Stones'),\n",
+       " ('reminiscing', 'The Beatles'),\n",
+       " ('id much rather be with the boys', 'The Rolling Stones'),\n",
+       " ('citadel', 'The Rolling Stones'),\n",
+       " ('hound dog', 'The Rolling Stones'),\n",
+       " ('a reminder', 'Radiohead'),\n",
+       " ('the butcher', 'Radiohead'),\n",
+       " ('you can make it if you try', 'The Rolling Stones'),\n",
+       " ('watching rainbows', 'The Beatles'),\n",
+       " ('child of the moon', 'The Rolling Stones'),\n",
+       " ('think', 'The Rolling Stones'),\n",
+       " ('thank you girl', 'The Beatles'),\n",
+       " ('follow me around', 'Radiohead'),\n",
+       " ('sympathy for the devil the neptunes remix', 'The Rolling Stones'),\n",
+       " ('sad day', 'The Rolling Stones'),\n",
+       " ('the trickster', 'Radiohead'),\n",
+       " ('mr b', 'Radiohead'),\n",
+       " ('johnny b goode', 'The Beatles'),\n",
+       " ('you know what to do', 'The Beatles'),\n",
+       " ('honest i do', 'The Rolling Stones'),\n",
+       " ('the thief', 'Radiohead'),\n",
+       " ('blue turns to grey', 'The Rolling Stones'),\n",
+       " ('love of the loved', 'The Beatles'),\n",
+       " ('revolution', 'The Beatles'),\n",
+       " ('shake rattle and roll', 'The Beatles'),\n",
+       " ('ooh my soul', 'The Beatles'),\n",
+       " ('glad all over', 'The Beatles'),\n",
+       " ('what a shame', 'The Rolling Stones'),\n",
+       " ('salt of the earth', 'The Rolling Stones'),\n",
+       " ('keep strong', 'On A Friday'),\n",
+       " ('sour milk sea', 'The Beatles'),\n",
+       " ('doo doo doo doo doo heartbreaker', 'The Rolling Stones'),\n",
+       " ('cut a hole', 'Radiohead'),\n",
+       " ('stupid girl', 'The Rolling Stones'),\n",
+       " ('hot stuff', 'The Rolling Stones'),\n",
+       " ('i got to find my baby', 'The Beatles'),\n",
+       " ('when the saints go marchin in', 'The Beatles'),\n",
+       " ('poison ivy', 'The Rolling Stones'),\n",
        " ('soul survivor', 'The Rolling Stones'),\n",
+       " ('each and every day of the year', 'The Rolling Stones'),\n",
        " ('torn and frayed', 'The Rolling Stones'),\n",
-       " ('sittin on a fence', 'The Rolling Stones'),\n",
-       " ('doncha bother me', 'The Rolling Stones'),\n",
-       " ('fasttrack', 'Radiohead'),\n",
-       " ('ride on baby', 'The Rolling Stones'),\n",
-       " ('that girl belongs to yesterday', 'The Rolling Stones'),\n",
-       " ('james bond theme', 'The Beatles'),\n",
-       " ('love', 'The Beatles'),\n",
-       " ('hear me lord harrison', 'The Beatles'),\n",
-       " ('i forgot to remember to forget', 'The Beatles'),\n",
-       " ('a reminder', 'Radiohead'),\n",
-       " ('set fire to that lot', 'The Beatles'),\n",
-       " ('ceremony', 'Radiohead'),\n",
-       " ('harlem shuffle ny mix', 'The Rolling Stones'),\n",
-       " ('if you need me', 'The Rolling Stones'),\n",
-       " ('lozenge of love', 'Radiohead'),\n",
-       " ('shake rattle and roll', 'The Beatles'),\n",
-       " ('to know her is to love her', 'The Beatles'),\n",
-       " ('pedro the fisherman', 'The Beatles'),\n",
-       " ('harry patch in memory of', 'Radiohead'),\n",
-       " ('nothing touches me', 'Radiohead'),\n",
-       " ('dont lie to me', 'The Rolling Stones'),\n",
-       " ('christmas time is here again', 'The Beatles'),\n",
+       " ('i got a woman', 'The Beatles'),\n",
+       " ('pantomime everywhere its christmas', 'The Beatles'),\n",
+       " ('if you love me baby', 'The Beatles'),\n",
+       " ('falling in love again', 'The Beatles'),\n",
+       " ('blue moon of kentucky', 'The Beatles'),\n",
        " ('cook cook blues', 'The Rolling Stones'),\n",
-       " ('losing my touch', 'The Rolling Stones'),\n",
-       " ('fortune teller', 'The Rolling Stones'),\n",
-       " ('have a banana speech', 'The Beatles'),\n",
-       " ('coming down again', 'The Rolling Stones'),\n",
-       " ('ill wind', 'Radiohead'),\n",
-       " ('lull', 'Radiohead'),\n",
-       " ('you gotta move', 'The Rolling Stones'),\n",
-       " ('the inner light', 'The Beatles'),\n",
-       " ('hand of fate', 'The Rolling Stones'),\n",
-       " ('staircase', 'Radiohead'),\n",
+       " ('big boots', 'Radiohead'),\n",
+       " ('missing links bootleg', 'Plan B'),\n",
+       " ('ooh my arms', 'The Beatles'),\n",
+       " ('eds scary song', 'Radiohead'),\n",
+       " ('crushed pearl', 'The Rolling Stones'),\n",
+       " ('you never wash up after yourself', 'Radiohead'),\n",
+       " ('transatlantic drawl', 'Radiohead'),\n",
+       " ('thatll be the day', 'The Beatles'),\n",
+       " ('fool to cry', 'The Rolling Stones'),\n",
+       " ('stand by me', 'The Beatles'),\n",
+       " ('family', 'The Rolling Stones'),\n",
+       " ('lady jane', 'The Rolling Stones'),\n",
+       " ('commonwealth', 'The Beatles'),\n",
        " ('dont stop', 'The Rolling Stones'),\n",
-       " ('get back aka no pakistanis', 'The Beatles'),\n",
-       " ('lucille', 'The Beatles'),\n",
+       " ('hear me lord harrison', 'The Beatles'),\n",
+       " ('im going down', 'The Rolling Stones'),\n",
+       " ('walking through the sleepy city', 'The Rolling Stones'),\n",
+       " ('set fire to that lot speech', 'The Beatles'),\n",
+       " ('sgt peppers lonely hearts club band band documentary multimedia',\n",
+       "  'The Beatles'),\n",
+       " ('looking tired', 'The Rolling Stones'),\n",
+       " ('nothin shakin but the leaves on the trees', 'The Beatles'),\n",
+       " ('dont let me down', 'The Beatles'),\n",
        " ('that means a lot', 'The Beatles'),\n",
-       " ('gomper', 'The Rolling Stones'),\n",
-       " ('tell me', 'The Rolling Stones'),\n",
-       " ('moonlight bay', 'The Beatles'),\n",
-       " ('stand by me', 'The Beatles'),\n",
-       " ('manowar', 'Radiohead'),\n",
-       " ('bad to me', 'The Beatles'),\n",
-       " ('miss you dr dre remix 2002', 'The Rolling Stones'),\n",
-       " ('too much monkey business', 'The Beatles'),\n",
-       " ('poison ivy', 'The Rolling Stones'),\n",
-       " ('free as a bird', 'The Beatles'),\n",
-       " ('cuttooth', 'Radiohead'),\n",
-       " ('come and get it', 'The Beatles'),\n",
-       " ('turd on the run', 'The Rolling Stones'),\n",
-       " ('i cant be satisfied', 'The Rolling Stones'),\n",
+       " ('beatle greetings', 'The Beatles'),\n",
        " ('time waits for no one', 'The Rolling Stones'),\n",
-       " ('if you really want to be my friend', 'The Rolling Stones'),\n",
-       " ('dandelion', 'The Rolling Stones'),\n",
-       " ('swanee river', 'The Beatles'),\n",
-       " ('tell me baby how many times', 'The Rolling Stones'),\n",
-       " ('you know my name', 'The Beatles'),\n",
-       " ('bright lights big city', 'The Rolling Stones'),\n",
-       " ('beautiful delilah', 'The Rolling Stones'),\n",
-       " ('when the saints go marchin in', 'The Beatles'),\n",
-       " ('nobody does it better', 'Radiohead'),\n",
-       " ('like dreamers do', 'The Beatles'),\n",
-       " ('searchin', 'The Beatles'),\n",
-       " ('thats alright mama', 'The Beatles'),\n",
-       " ('crazy mama', 'The Rolling Stones'),\n",
-       " ('good time women', 'The Rolling Stones'),\n",
-       " ('keys to your love', 'The Rolling Stones'),\n",
-       " ('whos driving your plane', 'The Rolling Stones'),\n",
-       " ('drive my carthe wordwhat youre doing', 'The Beatles'),\n",
-       " ('out of time', 'The Rolling Stones'),\n",
-       " ('cops and robbers', 'The Rolling Stones'),\n",
-       " ('pass the wine sophia loren', 'The Rolling Stones'),\n",
-       " ('linda lu', 'The Rolling Stones'),\n",
-       " ('from fluff to you', 'The Beatles'),\n",
-       " ('surprise surprise', 'The Rolling Stones'),\n",
-       " ('pantomime everywhere its christmas', 'The Beatles'),\n",
-       " ('coke babies', 'Radiohead'),\n",
-       " ('fog', 'Radiohead'),\n",
-       " ('sgt peppers lonely hearts club band reprise', 'The Beatles'),\n",
-       " ('if youve got trouble', 'The Beatles'),\n",
+       " ('bitches talkin', 'Frank Ocean'),\n",
        " ('a shot of rhythm and blues', 'The Beatles'),\n",
-       " ('looking tired', 'The Rolling Stones'),\n",
-       " ('the amazing sounds of orgy', 'Radiohead'),\n",
-       " ('sing this all together see what happens', 'The Rolling Stones')]"
+       " ('komm gib mir deine hand', 'The Beatles'),\n",
+       " ('here comes the sunthe inner light transition', 'The Beatles'),\n",
+       " ('across the universe wildlife version', 'The Beatles'),\n",
+       " ('one more shot', 'The Rolling Stones'),\n",
+       " ('final show', 'Beatles Candlestick Park Setlist'),\n",
+       " ('mantua', 'Radiohead'),\n",
+       " ('something with blue jay way transition', 'The Beatles'),\n",
+       " ('petrol gang', 'The Rolling Stones'),\n",
+       " ('dance', 'The Rolling Stones'),\n",
+       " ('keys to your love', 'The Rolling Stones'),\n",
+       " ('india', 'The Beatles'),\n",
+       " ('have a banana', 'The Beatles'),\n",
+       " ('we are wasting time', 'The Rolling Stones'),\n",
+       " ('3', 'The Rolling Stones'),\n",
+       " ('down in eastern australia', 'The Beatles'),\n",
+       " ('yes it is', 'The Beatles'),\n",
+       " ('tell me youre coming back', 'The Rolling Stones'),\n",
+       " ('the inner light', 'The Beatles'),\n",
+       " ('whats the new mary jane', 'The Beatles'),\n",
+       " ('can i get a witness', 'The Rolling Stones'),\n",
+       " ('no reply demo', 'The Beatles'),\n",
+       " ('gomper', 'The Rolling Stones'),\n",
+       " ('pedro the fisherman', 'The Beatles'),\n",
+       " ('lend me your comb', 'The Beatles'),\n",
+       " ('old brown shoe', 'The Beatles'),\n",
+       " ('stealing my heart', 'The Rolling Stones'),\n",
+       " ('young blood', 'The Beatles'),\n",
+       " ('all things must pass', 'The Beatles'),\n",
+       " ('you cant catch me', 'The Rolling Stones'),\n",
+       " ('1822', 'The Beatles'),\n",
+       " ('child of nature', 'The Beatles'),\n",
+       " ('egyptian song', 'Radiohead'),\n",
+       " ('aint she sweet', 'The Beatles'),\n",
+       " ('ready teddy', 'The Beatles'),\n",
+       " ('the beatles christmas record', 'The Beatles'),\n",
+       " ('to be a brilliant light', 'On A Friday'),\n",
+       " ('good time women', 'The Rolling Stones'),\n",
+       " ('jigsaw puzzle', 'The Rolling Stones'),\n",
+       " ('a punchup at a wedding', 'Radiohead'),\n",
+       " ('the new generation', 'Radiohead'),\n",
+       " ('i want to know', 'On A Friday'),\n",
+       " ('meeting in the aisle', 'Radiohead'),\n",
+       " ('jerusalem', 'On A Friday'),\n",
+       " ('phillipa chicken', 'Radiohead'),\n",
+       " ('maquiladora', 'Radiohead'),\n",
+       " ('silver train', 'The Rolling Stones'),\n",
+       " ('christmas time is here again', 'The Beatles'),\n",
+       " ('stuck out all alone', 'The Rolling Stones'),\n",
+       " ('sie liebt dich', 'The Beatles'),\n",
+       " ('leave my kitten alone', 'The Beatles'),\n",
+       " ('heavys pizza', 'Dallas Smart'),\n",
+       " ('whos driving your plane', 'The Rolling Stones')]"
+      ]
+     },
+     "execution_count": 65,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "[g for g in genius_only\n",
+    " if 'take' not in g[0]\n",
+    " if 'medley' not in g[0]\n",
+    " if 'intro' not in g[0]\n",
+    " if 'live' not in g[0]\n",
+    "]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 66,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[('revolution i', 'The Beatles'), ('revolution', 'The Beatles')]"
+      ]
+     },
+     "execution_count": 66,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "[t for t in genius_only if 'revolution' in t[0]]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 67,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[('revolution 1', 'The Beatles')]"
+      ]
+     },
+     "execution_count": 67,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "[t for t in spotify_only if 'revolution' in t[0]]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 68,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "([], [('jumping jack flash', 'The Rolling Stones')])"
+      ]
+     },
+     "execution_count": 68,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "([t for t in in_both if 'jack flash' in t], [t for t in spotify_only if 'jack flash' in t[0]])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 69,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "you cant always get what you want [('you cant always get what you want', 'The Rolling Stones'), ('you cant always get what you want', 'The Rolling Stones'), ('you cant always get what you want', 'The Rolling Stones'), ('you cant always get what you want', 'The Rolling Stones')] [('you cant always get what you want', 'The Rolling Stones')]\n",
+      "next time you see me [('next time you see me', 'The Rolling Stones'), ('next time you see me', 'The Rolling Stones')] []\n",
+      "fixing a hole [('fixing a hole', 'The Beatles'), ('fixing a hole', 'The Beatles'), ('fixing a hole', 'The Beatles')] [('fixing a hole', 'The Beatles')]\n",
+      "who do you think you are [('who do you think you are', 'Spice Girls')] []\n",
+      "harlem shuffle [('harlem shuffle', 'The Rolling Stones'), ('harlem shuffle', 'The Rolling Stones')] [('harlem shuffle', 'The Rolling Stones')]\n",
+      "back to zero [('back to zero', 'The Rolling Stones'), ('back to zero', 'The Rolling Stones')] [('back to zero', 'The Rolling Stones')]\n",
+      "sgt peppers lonely hearts club band [('sgt peppers lonely hearts club band', 'The Beatles'), ('sgt peppers lonely hearts club band', 'The Beatles'), ('sgt peppers lonely hearts club band', 'The Beatles'), ('sgt peppers lonely hearts club band', 'The Beatles')] [('sgt peppers lonely hearts club band', 'The Beatles')]\n",
+      "im free [('im free', 'The Rolling Stones'), ('im free', 'The Rolling Stones')] [('im free', 'The Rolling Stones')]\n",
+      "i will los angeles version [('i will los angeles version', 'Radiohead')] []\n",
+      "oxygen [('oxygen', 'Spice Girls')] []\n",
+      "lies [('lies', 'The Rolling Stones'), ('lies', 'The Rolling Stones')] [('lies', 'The Rolling Stones')]\n",
+      "happy [('happy', 'The Rolling Stones'), ('happy', 'The Rolling Stones'), ('happy', 'The Rolling Stones')] [('happy', 'The Rolling Stones')]\n",
+      "memphis tennessee [('memphis tennessee', 'The Rolling Stones')] [('memphis tennessee', 'The Beatles'), ('memphis tennessee', 'The Rolling Stones')]\n",
+      "get back [('get back', 'Billy Preston'), ('get back', 'The Beatles')] [('get back', 'The Beatles')]\n",
+      "little by little shed [('little by little shed', 'Radiohead')] []\n",
+      "gimme shelter [('gimme shelter', 'The Rolling Stones'), ('gimme shelter', 'The Rolling Stones'), ('gimme shelter', 'The Rolling Stones'), ('gimme shelter', 'The Rolling Stones'), ('gimme shelter', 'The Rolling Stones'), ('gimme shelter', 'The Rolling Stones')] [('gimme shelter', 'The Rolling Stones')]\n",
+      "flip flop and fly [('flip flop and fly', 'Muddy Waters')] []\n",
+      "money thats what i want [('money thats what i want', 'The Beatles')] [('money thats what i want', 'The Beatles'), ('money thats what i want', 'The Beatles')]\n",
+      "i want to hold your hand [('i want to hold your hand', 'The Beatles'), ('i want to hold your hand', 'The Beatles')] [('i want to hold your hand', 'The Beatles'), ('i want to hold your hand', 'Ali brustofski')]\n",
+      "roll over beethoven [('roll over beethoven', 'The Rolling Stones'), ('roll over beethoven', 'The Beatles'), ('roll over beethoven', 'The Beatles')] [('roll over beethoven', 'The Beatles'), ('roll over beethoven', 'The Rolling Stones')]\n",
+      "2 2 5 live at earls court [('2 2 5 live at earls court', 'Radiohead')] []\n",
+      "good evening mrs magpie modeselektor rmx [('good evening mrs magpie modeselektor rmx', 'Radiohead')] []\n",
+      "the national anthem live in france [('the national anthem live in france', 'Radiohead')] []\n",
+      "cant be seen [('cant be seen', 'The Rolling Stones'), ('cant be seen', 'The Rolling Stones')] [('cant be seen', 'The Rolling Stones')]\n",
+      "idioteque live in oxford [('idioteque live in oxford', 'Radiohead')] []\n",
+      "pepperland laid waste [('pepperland laid waste', 'George Martin')] []\n",
+      "midnight rambler [('midnight rambler', 'The Rolling Stones'), ('midnight rambler', 'The Rolling Stones'), ('midnight rambler', 'The Rolling Stones'), ('midnight rambler', 'The Rolling Stones'), ('midnight rambler', 'The Rolling Stones'), ('midnight rambler', 'The Rolling Stones')] [('midnight rambler', 'The Rolling Stones')]\n",
+      "like spinning plates live [('like spinning plates live', 'Radiohead')] []\n",
+      "separator four tet rmx [('separator four tet rmx', 'Radiohead')] []\n",
+      "dirty work [('dirty work', 'The Rolling Stones'), ('dirty work', 'The Rolling Stones')] [('dirty work', 'The Rolling Stones')]\n",
+      "all you need is love [('all you need is love', 'The Beatles'), ('all you need is love', 'The Beatles'), ('all you need is love', 'The Beatles')] [('all you need is love', 'The Beatles')]\n",
+      "get down with me [('get down with me', 'Spice Girls')] []\n",
+      "revolution 1 [('revolution 1', 'The Beatles')] []\n",
+      "not fade away [('not fade away', 'The Rolling Stones'), ('not fade away', 'The Rolling Stones'), ('not fade away', 'The Rolling Stones'), ('not fade away', 'The Rolling Stones')] [('not fade away', 'The Rolling Stones')]\n",
+      "martin scorsese intro [('martin scorsese intro', 'The Rolling Stones')] []\n",
+      "slipping away [('slipping away', 'The Rolling Stones'), ('slipping away', 'The Rolling Stones'), ('slipping away', 'The Rolling Stones'), ('slipping away', 'The Rolling Stones'), ('slipping away', 'The Rolling Stones')] [('slipping away', 'The Rolling Stones')]\n",
+      "faraway eyes [('faraway eyes', 'The Rolling Stones'), ('faraway eyes', 'The Rolling Stones'), ('faraway eyes', 'The Rolling Stones'), ('faraway eyes', 'The Rolling Stones')] []\n",
+      "march of the meanies [('march of the meanies', 'George Martin')] []\n",
+      "angie [('angie', 'The Rolling Stones'), ('angie', 'The Rolling Stones'), ('angie', 'The Rolling Stones'), ('angie', 'The Rolling Stones'), ('angie', 'The Rolling Stones')] [('angie', 'The Rolling Stones')]\n",
+      "stop [('stop', 'Spice Girls')] []\n",
+      "too much [('too much', 'Spice Girls')] []\n",
+      "dollars cents [('dollars cents', 'Radiohead')] []\n",
+      "come together [('come together', 'The Beatles'), ('come together', 'The Beatles')] [('come together', 'The Beatles')]\n",
+      "cant buy me love [('cant buy me love', 'The Beatles'), ('cant buy me love', 'The Beatles'), ('cant buy me love', 'The Beatles')] [('cant buy me love', 'The Beatles')]\n",
+      "naked [('naked', 'Spice Girls')] []\n",
+      "brown sugar [('brown sugar', 'The Rolling Stones'), ('brown sugar', 'Bob Clearmountain'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones')] [('brown sugar', 'The Rolling Stones')]\n",
+      "baby please dont go [('baby please dont go', 'The Rolling Stones'), ('baby please dont go', 'The Rolling Stones'), ('baby please dont go', 'The Rolling Stones')] [('baby please dont go', 'The Rolling Stones')]\n",
+      "sgt peppers lonely hearts club band reprise [('sgt peppers lonely hearts club band reprise', 'The Beatles'), ('sgt peppers lonely hearts club band reprise', 'The Beatles')] [('sgt peppers lonely hearts club band reprise', 'The Beatles')]\n",
+      "the long and winding road [('the long and winding road', 'The Beatles'), ('the long and winding road', 'The Beatles')] [('the long and winding road', 'The Beatles')]\n",
+      "when im sixtyfour [('when im sixtyfour', 'The Beatles'), ('when im sixtyfour', 'The Beatles')] [('when im sixtyfour', 'The Beatles')]\n",
+      "charlies intro to little red rooster [('charlies intro to little red rooster', 'The Rolling Stones')] []\n",
+      "high and dry [('high and dry', 'Radiohead')] [('high and dry', 'Radiohead'), ('high and dry', 'The Rolling Stones')]\n",
+      "bloom mark pritchard rmx [('bloom mark pritchard rmx', 'Radiohead')] []\n",
+      "some girls [('some girls', 'The Rolling Stones'), ('some girls', 'The Rolling Stones'), ('some girls', 'The Rolling Stones')] [('some girls', 'The Rolling Stones')]\n",
+      "lotus flower jacques greene rmx [('lotus flower jacques greene rmx', 'Radiohead')] []\n",
+      "connection [('connection', 'The Rolling Stones'), ('connection', 'The Rolling Stones'), ('connection', 'The Rolling Stones'), ('connection', 'The Rolling Stones')] [('connection', 'The Rolling Stones')]\n",
+      "shattered [('shattered', 'The Rolling Stones'), ('shattered', 'The Rolling Stones'), ('shattered', 'The Rolling Stones'), ('shattered', 'The Rolling Stones'), ('shattered', 'The Rolling Stones'), ('shattered', 'The Rolling Stones')] [('shattered', 'The Rolling Stones')]\n",
+      "let love lead the way [('let love lead the way', 'Spice Girls')] []\n",
+      "jumping jack flash [('jumping jack flash', 'The Rolling Stones')] []\n",
+      "the worst [('the worst', 'The Rolling Stones'), ('the worst', 'The Rolling Stones')] [('the worst', 'The Rolling Stones')]\n",
+      "little red rooster [('little red rooster', 'The Rolling Stones'), ('little red rooster', 'The Rolling Stones')] [('little red rooster', 'The Rolling Stones')]\n",
+      "sad sad sad [('sad sad sad', 'The Rolling Stones'), ('sad sad sad', 'The Rolling Stones')] [('sad sad sad', 'The Rolling Stones')]\n",
+      "holler [('holler', 'Spice Girls')] []\n",
+      "the spider and the fly [('the spider and the fly', 'The Rolling Stones'), ('the spider and the fly', 'The Rolling Stones'), ('the spider and the fly', 'The Rolling Stones')] [('the spider and the fly', 'The Rolling Stones')]\n",
+      "a day in the life [('a day in the life', 'The Beatles'), ('a day in the life', 'The Beatles'), ('a day in the life', 'The Beatles')] [('a day in the life', 'The Beatles')]\n",
+      "mama [('mama', 'Spice Girls')] []\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "you got me rockin [('you got me rockin', 'The Rolling Stones'), ('you got me rockin', 'The Rolling Stones')] []\n",
+      "sea of monsters [('sea of monsters', 'George Martin')] []\n",
+      "things we said today [('things we said today', 'The Beatles'), ('things we said today', 'The Beatles')] [('things we said today', 'The Beatles')]\n",
+      "pepperland [('pepperland', 'George Martin')] []\n",
+      "being for the benefit of mr kite [('being for the benefit of mr kite', 'The Beatles'), ('being for the benefit of mr kite', 'The Beatles'), ('being for the benefit of mr kite', 'The Beatles')] [('being for the benefit of mr kite', 'The Beatles')]\n",
+      "had it with you [('had it with you', 'The Rolling Stones'), ('had it with you', 'The Rolling Stones')] [('had it with you', 'The Rolling Stones')]\n",
+      "true love waits live in oslo [('true love waits live in oslo', 'Radiohead')] []\n",
+      "bloom jamie xx rework [('bloom jamie xx rework', 'Radiohead')] []\n",
+      "sweet little angel [('sweet little angel', 'Muddy Waters')] []\n",
+      "separator anstam rmx [('separator anstam rmx', 'Radiohead')] []\n",
+      "time is on my side [('time is on my side', 'The Rolling Stones'), ('time is on my side', 'The Rolling Stones')] [('time is on my side', 'The Rolling Stones')]\n",
+      "tumbling dice [('tumbling dice', 'The Rolling Stones'), ('tumbling dice', 'The Rolling Stones'), ('tumbling dice', 'The Rolling Stones'), ('tumbling dice', 'The Rolling Stones'), ('tumbling dice', 'The Rolling Stones'), ('tumbling dice', 'The Rolling Stones')] [('tumbling dice', 'The Rolling Stones')]\n",
+      "yellow submarine [('yellow submarine', 'The Beatles'), ('yellow submarine', 'The Beatles'), ('yellow submarine', 'The Beatles')] [('yellow submarine', 'The Beatles')]\n",
+      "beast of burden [('beast of burden', 'The Rolling Stones'), ('beast of burden', 'The Rolling Stones'), ('beast of burden', 'The Rolling Stones'), ('beast of burden', 'The Rolling Stones'), ('beast of burden', 'The Rolling Stones'), ('beast of burden', 'The Rolling Stones')] [('beast of burden', 'The Rolling Stones')]\n",
+      "honky tonk woman [('honky tonk woman', 'The Rolling Stones')] []\n",
+      "lovely rita [('lovely rita', 'The Beatles'), ('lovely rita', 'The Beatles'), ('lovely rita', 'The Beatles')] [('lovely rita', 'The Beatles')]\n",
+      "neighbours [('neighbours', 'The Rolling Stones'), ('neighbours', 'Bob Clearmountain')] [('neighbours', 'The Rolling Stones')]\n",
+      "dead flowers [('dead flowers', 'Bob Clearmountain'), ('dead flowers', 'The Rolling Stones'), ('dead flowers', 'The Rolling Stones'), ('dead flowers', 'The Rolling Stones'), ('dead flowers', 'The Rolling Stones'), ('dead flowers', 'The Rolling Stones'), ('dead flowers', 'The Rolling Stones')] [('dead flowers', 'The Rolling Stones')]\n",
+      "paint it black [('paint it black', 'The Rolling Stones'), ('paint it black', 'The Rolling Stones'), ('paint it black', 'The Rolling Stones'), ('paint it black', 'The Rolling Stones')] [('paint it black', 'The Rolling Stones')]\n",
+      "bloom harmonic 313 rmx [('bloom harmonic 313 rmx', 'Radiohead')] []\n",
+      "respectable [('respectable', 'The Rolling Stones'), ('respectable', 'The Rolling Stones'), ('respectable', 'The Rolling Stones'), ('respectable', 'The Rolling Stones')] [('respectable', 'The Rolling Stones')]\n",
+      "just my imagination [('just my imagination', 'The Rolling Stones'), ('just my imagination', 'The Rolling Stones')] []\n",
+      "tell me why [('tell me why', 'Spice Girls'), ('tell me why', 'The Beatles')] [('tell me why', 'The Beatles')]\n",
+      "2 become 1 [('2 become 1', 'Spice Girls')] []\n",
+      "little by little [('little by little', 'The Rolling Stones'), ('little by little', 'Radiohead')] [('little by little', 'Radiohead'), ('little by little', 'The Rolling Stones')]\n",
+      "got my mojo workin [('got my mojo workin', 'The Rolling Stones'), ('got my mojo workin', 'The Rolling Stones')] []\n",
+      "little ta [('little ta', 'The Rolling Stones'), ('little ta', 'The Rolling Stones')] []\n",
+      "bloom blawan rmx [('bloom blawan rmx', 'Radiohead')] []\n",
+      "far away eyes [('far away eyes', 'The Rolling Stones'), ('far away eyes', 'The Rolling Stones'), ('far away eyes', 'The Rolling Stones')] [('far away eyes', 'The Rolling Stones')]\n",
+      "ps i love you [('ps i love you', 'The Beatles')] [('ps i love you', 'The Beatles'), ('ps i love you', 'The Beatles')]\n",
+      "rock and a hard place [('rock and a hard place', 'The Rolling Stones'), ('rock and a hard place', 'The Rolling Stones')] [('rock and a hard place', 'The Rolling Stones')]\n",
+      "long distance call [('long distance call', 'The Rolling Stones'), ('long distance call', 'The Rolling Stones')] []\n",
+      "start me up [('start me up', 'Bob Clearmountain'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones')] [('start me up', 'The Rolling Stones')]\n",
+      "let it bleed [('let it bleed', 'The Rolling Stones'), ('let it bleed', 'The Rolling Stones'), ('let it bleed', 'The Rolling Stones')] [('let it bleed', 'The Rolling Stones')]\n",
+      "county jail [('county jail', 'Muddy Waters')] []\n",
+      "fight [('fight', 'The Rolling Stones'), ('fight', 'The Rolling Stones')] [('fight', 'The Rolling Stones')]\n",
+      "sea of time [('sea of time', 'George Martin')] []\n",
+      "route 66 [('route 66', 'The Rolling Stones'), ('route 66', 'The Rolling Stones')] [('route 66', 'The Rolling Stones')]\n",
+      "morning bell live in oxford [('morning bell live in oxford', 'Radiohead')] []\n",
+      "one hit to the body [('one hit to the body', 'The Rolling Stones'), ('one hit to the body', 'The Rolling Stones')] [('one hit to the body', 'The Rolling Stones')]\n",
+      "let me go [('let me go', 'The Rolling Stones'), ('let me go', 'The Rolling Stones')] [('let me go', 'The Rolling Stones')]\n",
+      "pain in my heart [('pain in my heart', 'The Rolling Stones')] [('pain in my heart', 'The Rolling Stones'), ('pain in my heart', 'The Rolling Stones')]\n",
+      "please please me [('please please me', 'The Beatles')] [('please please me', 'The Beatles'), ('please please me', 'The Rolling Stones')]\n",
+      "move over [('move over', 'Spice Girls')] []\n",
+      "skttrbrain four tet remix [('skttrbrain four tet remix', 'Radiohead')] []\n",
+      "just my imagination running away with me [('just my imagination running away with me', 'The Rolling Stones'), ('just my imagination running away with me', 'The Rolling Stones'), ('just my imagination running away with me', 'The Rolling Stones')] [('just my imagination running away with me', 'The Rolling Stones')]\n",
+      "down in the bottom [('down in the bottom', 'The Rolling Stones'), ('down in the bottom', 'The Rolling Stones')] [('down in the bottom', 'The Rolling Stones')]\n",
+      "you got the silver [('you got the silver', 'The Rolling Stones'), ('you got the silver', 'The Rolling Stones')] [('you got the silver', 'The Rolling Stones')]\n",
+      "i cant get no satisfaction [('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones')] [('i cant get no satisfaction', 'The Rolling Stones')]\n",
+      "sleep tonight [('sleep tonight', 'The Rolling Stones'), ('sleep tonight', 'The Rolling Stones')] [('sleep tonight', 'The Rolling Stones')]\n",
+      "outro [('outro', 'Jimi Hendrix')] []\n",
+      "she loves you [('she loves you', 'The Beatles'), ('she loves you', 'The Beatles')] [('she loves you', 'The Beatles'), ('she loves you', 'The Beatles')]\n",
+      "clouds in my heart [('clouds in my heart', 'The Rolling Stones'), ('clouds in my heart', 'The Rolling Stones')] []\n",
+      "feral lone rmx [('feral lone rmx', 'Radiohead')] []\n",
+      "love me do [('love me do', 'The Beatles'), ('love me do', 'The Beatles')] [('love me do', 'The Beatles'), ('love me do', 'The Beatles')]\n",
+      "its all over now [('its all over now', 'The Rolling Stones'), ('its all over now', 'The Rolling Stones')] [('its all over now', 'The Rolling Stones')]\n",
+      "miss you [('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones')] [('miss you', 'The Rolling Stones')]\n",
+      "mannish boy [('mannish boy', 'The Rolling Stones'), ('mannish boy', 'The Rolling Stones')] [('mannish boy', 'The Rolling Stones')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "its only rock n roll but i like it [('its only rock n roll but i like it', 'The Rolling Stones'), ('its only rock n roll but i like it', 'The Rolling Stones'), ('its only rock n roll but i like it', 'The Rolling Stones')] [('its only rock n roll but i like it', 'The Rolling Stones')]\n",
+      "bloom objekt rmx [('bloom objekt rmx', 'Radiohead')] []\n",
+      "untitled [('untitled', 'Radiohead')] []\n",
+      "sea of holes [('sea of holes', 'George Martin')] []\n",
+      "when the whip comes down [('when the whip comes down', 'Bob Clearmountain'), ('when the whip comes down', 'The Rolling Stones'), ('when the whip comes down', 'The Rolling Stones'), ('when the whip comes down', 'The Rolling Stones'), ('when the whip comes down', 'The Rolling Stones')] [('when the whip comes down', 'The Rolling Stones')]\n",
+      "codex illum sphere [('codex illum sphere', 'Radiohead')] []\n",
+      "monkey man [('monkey man', 'The Rolling Stones'), ('monkey man', 'The Rolling Stones')] [('monkey man', 'The Rolling Stones')]\n",
+      "give up the ghost thriller houseghost remix [('give up the ghost thriller houseghost remix', 'Radiohead')] []\n",
+      "eight days a week [('eight days a week', 'The Beatles'), ('eight days a week', 'The Beatles')] [('eight days a week', 'The Beatles')]\n",
+      "kansas city heyheyheyhey [('kansas city heyheyheyhey', 'The Beatles')] []\n",
+      "something kinda funny [('something kinda funny', 'Spice Girls')] []\n",
+      "sweet little sixteen [('sweet little sixteen', 'The Rolling Stones')] [('sweet little sixteen', 'The Beatles'), ('sweet little sixteen', 'The Rolling Stones')]\n",
+      "wild horses [('wild horses', 'Bob Clearmountain'), ('wild horses', 'The Rolling Stones'), ('wild horses', 'The Rolling Stones'), ('wild horses', 'The Rolling Stones')] [('wild horses', 'Plan B'), ('wild horses', 'The Rolling Stones')]\n",
+      "everybody needs somebody to love finale [('everybody needs somebody to love finale', 'The Rolling Stones')] []\n",
+      "shes leaving home [('shes leaving home', 'The Beatles'), ('shes leaving home', 'The Beatles'), ('shes leaving home', 'The Beatles')] [('shes leaving home', 'The Beatles')]\n",
+      "everybody needs somebody to love [('everybody needs somebody to love', 'The Rolling Stones'), ('everybody needs somebody to love', 'Solomon Burke'), ('everybody needs somebody to love', 'The Rolling Stones')] [('everybody needs somebody to love', 'The Rolling Stones')]\n",
+      "i might be wrong live [('i might be wrong live', 'Radiohead')] []\n",
+      "lotus flower sbtrkt rmx [('lotus flower sbtrkt rmx', 'Radiohead')] []\n",
+      "one eyed woman [('one eyed woman', 'The Rolling Stones'), ('one eyed woman', 'The Rolling Stones')] []\n",
+      "rip this joint [('rip this joint', 'The Rolling Stones'), ('rip this joint', 'The Rolling Stones'), ('rip this joint', 'The Rolling Stones'), ('rip this joint', 'The Rolling Stones'), ('rip this joint', 'The Rolling Stones'), ('rip this joint', 'The Rolling Stones')] [('rip this joint', 'The Rolling Stones')]\n",
+      "a punch up at a wedding [('a punch up at a wedding', 'Radiohead')] []\n",
+      "intro take the a train [('intro take the a train', 'Duke Ellington')] []\n",
+      "winning ugly [('winning ugly', 'The Rolling Stones'), ('winning ugly', 'The Rolling Stones')] [('winning ugly', 'The Rolling Stones')]\n",
+      "yesterday [('yesterday', 'The Beatles'), ('yesterday', 'The Beatles')] [('yesterday', 'Yusdrew'), ('yesterday', 'The Beatles')]\n",
+      "fannie mae [('fannie mae', 'The Rolling Stones')] []\n",
+      "street fighting man [('street fighting man', 'The Rolling Stones'), ('street fighting man', 'The Rolling Stones'), ('street fighting man', 'The Rolling Stones'), ('street fighting man', 'The Rolling Stones'), ('street fighting man', 'The Rolling Stones'), ('street fighting man', 'The Rolling Stones')] [('street fighting man', 'The Rolling Stones')]\n",
+      "a hard days night [('a hard days night', 'The Beatles'), ('a hard days night', 'The Beatles'), ('a hard days night', 'The Beatles')] [('a hard days night', 'The Beatles')]\n",
+      "paranoid android [('paranoid android', 'Radiohead')] [('paranoid android', 'Sia'), ('paranoid android', 'Radiohead')]\n",
+      "within you without you [('within you without you', 'The Beatles'), ('within you without you', 'The Beatles'), ('within you without you', 'The Beatles')] [('within you without you', 'The Beatles')]\n",
+      "all down the line [('all down the line', 'Bob Clearmountain'), ('all down the line', 'The Rolling Stones'), ('all down the line', 'The Rolling Stones'), ('all down the line', 'The Rolling Stones'), ('all down the line', 'The Rolling Stones'), ('all down the line', 'The Rolling Stones'), ('all down the line', 'The Rolling Stones')] [('all down the line', 'The Rolling Stones')]\n",
+      "remyxomatosis cristian vogel rmx [('remyxomatosis cristian vogel rmx', 'Radiohead')] []\n",
+      "the lady is a vamp [('the lady is a vamp', 'Spice Girls')] []\n",
+      "good morning good morning [('good morning good morning', 'The Beatles'), ('good morning good morning', 'The Beatles'), ('good morning good morning', 'The Beatles')] [('good morning good morning', 'The Beatles')]\n",
+      "you dont have to mean it [('you dont have to mean it', 'The Rolling Stones'), ('you dont have to mean it', 'The Rolling Stones')] [('you dont have to mean it', 'The Rolling Stones')]\n",
+      "hi heel sneakers [('hi heel sneakers', 'The Rolling Stones')] []\n",
+      "viva forever [('viva forever', 'Spice Girls')] []\n",
+      "time goes by [('time goes by', 'Spice Girls')] []\n",
+      "i cant turn you loose [('i cant turn you loose', 'Bob Clearmountain')] []\n",
+      "love in vain [('love in vain', 'The Rolling Stones'), ('love in vain', 'The Rolling Stones'), ('love in vain', 'The Rolling Stones'), ('love in vain', 'The Rolling Stones')] [('love in vain', 'The Rolling Stones')]\n",
+      "you dont have to go [('you dont have to go', 'Muddy Waters'), ('you dont have to go', 'Muddy Waters')] []\n",
+      "boys [('boys', 'The Beatles'), ('boys', 'The Beatles')] [('boys', 'The Beatles')]\n",
+      "bitch [('bitch', 'Bob Clearmountain'), ('bitch', 'The Rolling Stones')] [('bitch', 'The Rolling Stones')]\n",
+      "the last time [('the last time', 'The Rolling Stones'), ('the last time', 'The Rolling Stones')] [('the last time', 'The Rolling Stones')]\n",
+      "when im sixty four [('when im sixty four', 'The Beatles')] []\n",
+      "honky tonk women [('honky tonk women', 'The Rolling Stones'), ('honky tonk women', 'The Rolling Stones'), ('honky tonk women', 'The Rolling Stones'), ('honky tonk women', 'Sheryl Crow'), ('honky tonk women', 'The Rolling Stones'), ('honky tonk women', 'The Rolling Stones')] [('honky tonk women', 'The Rolling Stones')]\n",
+      "twist and shout [('twist and shout', 'The Beatles'), ('twist and shout', 'The Beatles')] [('twist and shout', 'The Beatles'), ('twist and shout', 'The Beatles'), ('twist and shout', 'The Beatles')]\n",
+      "bullet proof i wish i was [('bullet proof i wish i was', 'Radiohead')] []\n",
+      "hoochie coochie man [('hoochie coochie man', 'The Rolling Stones'), ('hoochie coochie man', 'The Rolling Stones')] [('hoochie coochie man', 'The Rolling Stones')]\n",
+      "introduction [('introduction', 'Muddy Waters'), ('introduction', 'Muddy Waters')] []\n",
+      "champagne and reefer [('champagne and reefer', 'The Rolling Stones'), ('champagne and reefer', 'The Rolling Stones')] []\n",
+      "i go wild [('i go wild', 'The Rolling Stones'), ('i go wild', 'The Rolling Stones'), ('i go wild', 'The Rolling Stones'), ('i go wild', 'The Rolling Stones'), ('i go wild', 'The Rolling Stones')] [('i go wild', 'The Rolling Stones')]\n",
+      "help [('help', 'The Beatles'), ('help', 'The Beatles'), ('help', 'The Beatles')] [('help', 'The Beatles')]\n",
+      "she was hot [('she was hot', 'The Rolling Stones'), ('she was hot', 'The Rolling Stones')] [('she was hot', 'The Rolling Stones')]\n",
+      "sympathy for the devil [('sympathy for the devil', 'The Rolling Stones'), ('sympathy for the devil', 'The Rolling Stones'), ('sympathy for the devil', 'The Rolling Stones')] [('sympathy for the devil', 'The Rolling Stones')]\n",
+      "ticket to ride [('ticket to ride', 'The Beatles'), ('ticket to ride', 'The Beatles'), ('ticket to ride', 'The Beatles')] [('ticket to ride', 'The Beatles')]\n",
+      "never give up on the good times [('never give up on the good times', 'Spice Girls')] []\n",
+      "wasting my time [('wasting my time', 'Spice Girls')] []\n",
+      "tkol altrice rmx [('tkol altrice rmx', 'Radiohead')] []\n",
+      "band introductions [('band introductions', 'The Rolling Stones')] []\n",
+      "if you wanna have some fun [('if you wanna have some fun', 'Spice Girls')] []\n",
+      "im moving on [('im moving on', 'The Rolling Stones'), ('im moving on', 'The Rolling Stones')] [('im moving on', 'The Rolling Stones')]\n"
+     ]
+    },
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "black limousine [('black limousine', 'The Rolling Stones'), ('black limousine', 'The Rolling Stones')] [('black limousine', 'The Rolling Stones')]\n",
+      "out of control [('out of control', 'The Rolling Stones'), ('out of control', 'The Rolling Stones')] [('out of control', 'The Rolling Stones')]\n",
+      "dizzy miss lizzy [('dizzy miss lizzy', 'The Beatles'), ('dizzy miss lizzy', 'The Beatles')] [('dizzy miss lizzy', 'The Beatles')]\n",
+      "little by little caribou rmx [('little by little caribou rmx', 'Radiohead')] []\n",
+      "dollars cents live [('dollars cents live', 'Radiohead')] []\n",
+      "you cant do that [('you cant do that', 'The Beatles'), ('you cant do that', 'The Beatles')] [('you cant do that', 'The Beatles')]\n",
+      "trouble no more [('trouble no more', 'Muddy Waters')] []\n",
+      "with a little help from my friends [('with a little help from my friends', 'The Beatles'), ('with a little help from my friends', 'The Beatles'), ('with a little help from my friends', 'The Beatles')] [('with a little help from my friends', 'The Beatles')]\n",
+      "last time lover [('last time lover', 'Spice Girls')] []\n",
+      "babys in black [('babys in black', 'The Beatles'), ('babys in black', 'The Beatles')] [('babys in black', 'The Beatles')]\n",
+      "packt like sardines in a crushed tin box [('packt like sardines in a crushed tin box', 'Radiohead')] []\n",
+      "i will [('i will', 'The Beatles'), ('i will', 'Radiohead')] [('i will', 'Radiohead'), ('i will', 'The Beatles')]\n",
+      "saturday night divas [('saturday night divas', 'Spice Girls')] []\n",
+      "strawberry fields forever [('strawberry fields forever', 'The Beatles'), ('strawberry fields forever', 'The Beatles'), ('strawberry fields forever', 'The Beatles'), ('strawberry fields forever', 'The Beatles')] [('strawberry fields forever', 'The Beatles')]\n",
+      "eleanor rigby [('eleanor rigby', 'The Beatles'), ('eleanor rigby', 'The Beatles')] [('eleanor rigby', 'The Beatles')]\n",
+      "love thing [('love thing', 'Spice Girls')] []\n",
+      "jumpin jack flash [('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'Bob Clearmountain'), ('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'The Rolling Stones')] [('jumpin jack flash', 'The Rolling Stones')]\n",
+      "say youll be there [('say youll be there', 'Spice Girls')] []\n",
+      "do it [('do it', 'Spice Girls')] []\n",
+      "before they make me run [('before they make me run', 'The Rolling Stones'), ('before they make me run', 'The Rolling Stones'), ('before they make me run', 'The Rolling Stones')] [('before they make me run', 'The Rolling Stones')]\n",
+      "hello goodbye [('hello goodbye', 'The Beatles'), ('hello goodbye', 'The Beatles')] [('hello goodbye', 'The Beatles')]\n",
+      "youre gonna miss me when im gone [('youre gonna miss me when im gone', 'Muddy Waters')] []\n",
+      "carol [('carol', 'The Rolling Stones')] [('carol', 'The Beatles'), ('carol', 'The Rolling Stones')]\n",
+      "hold back [('hold back', 'The Rolling Stones'), ('hold back', 'The Rolling Stones')] [('hold back', 'The Rolling Stones')]\n",
+      "youve got to hide your love away [('youve got to hide your love away', 'The Beatles')] [('youve got to hide your love away', 'The Beatles'), ('youve got to hide your love away', 'The Beatles')]\n",
+      "give up the ghost brokenchord rmx [('give up the ghost brokenchord rmx', 'Radiohead')] []\n",
+      "everything in its right place live in france [('everything in its right place live in france', 'Radiohead')] []\n",
+      "let it be [('let it be', 'The Beatles'), ('let it be', 'The Beatles')] [('let it be', 'The Beatles')]\n",
+      "fog again live [('fog again live', 'Radiohead')] []\n",
+      "right back at ya [('right back at ya', 'Spice Girls')] []\n",
+      "morning mr magpie nathan fake rmx [('morning mr magpie nathan fake rmx', 'Radiohead')] []\n",
+      "continental drift [('continental drift', 'The Rolling Stones'), ('continental drift', 'The Rolling Stones')] [('continental drift', 'The Rolling Stones')]\n",
+      "spice up your life [('spice up your life', 'Spice Girls')] []\n",
+      "instrumental 2 [('instrumental 2', 'The Rolling Stones')] []\n",
+      "instrumental 1 [('instrumental 1', 'The Rolling Stones')] []\n",
+      "sweet virginia [('sweet virginia', 'The Rolling Stones'), ('sweet virginia', 'The Rolling Stones'), ('sweet virginia', 'The Rolling Stones'), ('sweet virginia', 'The Rolling Stones')] [('sweet virginia', 'The Rolling Stones')]\n",
+      "rock me baby [('rock me baby', 'Bob Clearmountain'), ('rock me baby', 'The Rolling Stones')] [('rock me baby', 'The Rolling Stones')]\n",
+      "if u cant dance [('if u cant dance', 'Spice Girls')] []\n",
+      "getting better [('getting better', 'The Beatles'), ('getting better', 'The Beatles'), ('getting better', 'The Beatles')] [('getting better', 'The Beatles')]\n",
+      "penny lane [('penny lane', 'The Beatles'), ('penny lane', 'The Beatles'), ('penny lane', 'The Beatles'), ('penny lane', 'The Beatles')] [('penny lane', 'The Beatles')]\n",
+      "country boy [('country boy', 'Muddy Waters')] []\n",
+      "shine a light [('shine a light', 'The Rolling Stones'), ('shine a light', 'The Rolling Stones'), ('shine a light', 'The Rolling Stones'), ('shine a light', 'The Rolling Stones'), ('shine a light', 'The Rolling Stones'), ('shine a light', 'The Rolling Stones'), ('shine a light', 'The Rolling Stones')] [('shine a light', 'The Rolling Stones')]\n",
+      "like a rolling stone [('like a rolling stone', 'The Rolling Stones'), ('like a rolling stone', 'The Rolling Stones'), ('like a rolling stone', 'The Rolling Stones'), ('like a rolling stone', 'The Rolling Stones'), ('like a rolling stone', 'The Rolling Stones'), ('like a rolling stone', 'The Rolling Stones')] [('like a rolling stone', 'The Rolling Stones')]\n",
+      "lucy in the sky with diamonds [('lucy in the sky with diamonds', 'The Beatles'), ('lucy in the sky with diamonds', 'The Beatles'), ('lucy in the sky with diamonds', 'The Beatles')] [('lucy in the sky with diamonds', 'The Beatles')]\n",
+      "wannabe [('wannabe', 'Spice Girls')] []\n",
+      "worried about you [('worried about you', 'The Rolling Stones'), ('worried about you', 'Bob Clearmountain')] [('worried about you', 'The Rolling Stones')]\n",
+      "cant you hear me knocking [('cant you hear me knocking', 'Bob Clearmountain'), ('cant you hear me knocking', 'The Rolling Stones')] [('cant you hear me knocking', 'The Rolling Stones')]\n",
+      "morning mr magpie pearson sound scavenger rmx [('morning mr magpie pearson sound scavenger rmx', 'Radiohead')] []\n",
+      "live with me [('live with me', 'The Rolling Stones'), ('live with me', 'The Rolling Stones'), ('live with me', 'Christina Aguilera')] [('live with me', 'The Rolling Stones')]\n",
+      "too rude [('too rude', 'The Rolling Stones'), ('too rude', 'The Rolling Stones')] [('too rude', 'The Rolling Stones')]\n",
+      "denying [('denying', 'Spice Girls')] []\n",
+      "i wanna be your man [('i wanna be your man', 'The Rolling Stones'), ('i wanna be your man', 'The Beatles')] [('i wanna be your man', 'The Beatles'), ('i wanna be your man', 'The Rolling Stones')]\n",
+      "key to the highway [('key to the highway', 'The Rolling Stones'), ('key to the highway', 'The Rolling Stones')] []\n",
+      "down the road apiece [('down the road apiece', 'The Rolling Stones'), ('down the road apiece', 'The Rolling Stones')] [('down the road apiece', 'The Rolling Stones')]\n",
+      "everybodys trying to be my baby [('everybodys trying to be my baby', 'The Beatles'), ('everybodys trying to be my baby', 'The Beatles')] [('everybodys trying to be my baby', 'The Beatles')]\n",
+      "weekend love [('weekend love', 'Spice Girls')] []\n",
+      "something [('something', 'The Beatles'), ('something', 'The Beatles')] [('something', 'The Beatles')]\n",
+      "all my loving [('all my loving', 'The Beatles'), ('all my loving', 'The Beatles')] [('all my loving', 'The Beatles')]\n"
+     ]
+    }
+   ],
+   "source": [
+    "for ct in ctitles:\n",
+    "    sts = [(t['ctitle'], t['artist_name']) for t in tracks.find({'ctitle': ct}, ['ctitle', 'artist_name'])]\n",
+    "    gts = [(t['ctitle'], t['primary_artist']['name']) for t in genius_tracks.find({'ctitle': ct}, ['ctitle', 'primary_artist.name'])]\n",
+    "    if len(sts) != 1 or len(gts) != 1:\n",
+    "        print(ct, sts, gts)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 70,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "def levenshtein(s1, s2):\n",
+    "    if len(s1) < len(s2):\n",
+    "        return levenshtein(s2, s1)\n",
+    "\n",
+    "    # len(s1) >= len(s2)\n",
+    "    if len(s2) == 0:\n",
+    "        return len(s1)\n",
+    "\n",
+    "    previous_row = range(len(s2) + 1)\n",
+    "    for i, c1 in enumerate(s1):\n",
+    "        current_row = [i + 1]\n",
+    "        for j, c2 in enumerate(s2):\n",
+    "            insertions = previous_row[j + 1] + 1 # j+1 instead of j since previous_row and current_row are one character longer\n",
+    "            deletions = current_row[j] + 1       # than s2\n",
+    "            substitutions = previous_row[j] + (c1 != c2)\n",
+    "            current_row.append(min(insertions, deletions, substitutions))\n",
+    "        previous_row = current_row\n",
+    "    \n",
+    "    return previous_row[-1]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 71,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "('if u cant dance', 'Spice Girls') Missing 99999 False\n",
+      "('champagne and reefer', 'The Rolling Stones') ('champagne reefer', 'The Rolling Stones') 4 True\n",
+      "('key to the highway', 'The Rolling Stones') ('thief in the night', 'The Rolling Stones') 10 True\n",
+      "('stop', 'Spice Girls') Missing 99999 False\n",
+      "('right back at ya', 'Spice Girls') Missing 99999 False\n",
+      "('you dont have to go', 'Muddy Waters') Missing 99999 False\n",
+      "('let love lead the way', 'Spice Girls') Missing 99999 False\n",
+      "('county jail', 'Muddy Waters') Missing 99999 False\n",
+      "('trouble no more', 'Muddy Waters') Missing 99999 False\n",
+      "('time goes by', 'Spice Girls') Missing 99999 False\n",
+      "('little ta', 'The Rolling Stones') ('little t a', 'The Rolling Stones') 1 False\n",
+      "('pepperland', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 20 True\n",
+      "('you got me rockin', 'The Rolling Stones') ('you got me rocking', 'The Rolling Stones') 1 True\n",
+      "('sea of holes', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 25 True\n",
+      "('next time you see me', 'The Rolling Stones') ('if you let me', 'The Rolling Stones') 10 False\n",
+      "('something kinda funny', 'Spice Girls') Missing 99999 False\n",
+      "('untitled', 'Radiohead') ('untogether', 'Radiohead') 5 False\n",
+      "('if you wanna have some fun', 'Spice Girls') Missing 99999 False\n",
+      "('wasting my time', 'Spice Girls') Missing 99999 False\n",
+      "('packt like sardines in a crushed tin box', 'Radiohead') ('packt like sardines in a crushd tin box', 'Radiohead') 1 False\n",
+      "('do it', 'Spice Girls') Missing 99999 False\n",
+      "('march of the meanies', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 24 True\n",
+      "('codex illum sphere', 'Radiohead') ('there there', 'Radiohead') 12 True\n",
+      "('spice up your life', 'Spice Girls') Missing 99999 False\n",
+      "('oxygen', 'Spice Girls') Missing 99999 False\n",
+      "('the lady is a vamp', 'Spice Girls') Missing 99999 False\n",
+      "('last time lover', 'Spice Girls') Missing 99999 False\n",
+      "('sweet little angel', 'Muddy Waters') Missing 99999 False\n",
+      "('instrumental 1', 'The Rolling Stones') ('little t a', 'The Rolling Stones') 10 False\n",
+      "('long distance call', 'The Rolling Stones') ('gangsters maul', 'The Rolling Stones') 11 False\n",
+      "('who do you think you are', 'Spice Girls') Missing 99999 False\n",
+      "('wannabe', 'Spice Girls') Missing 99999 False\n",
+      "('one eyed woman', 'The Rolling Stones') ('monkey man', 'The Rolling Stones') 7 True\n",
+      "('love thing', 'Spice Girls') Missing 99999 False\n",
+      "('youre gonna miss me when im gone', 'Muddy Waters') Missing 99999 False\n",
+      "('pepperland laid waste', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 25 True\n",
+      "('outro', 'Jimi Hendrix') Missing 99999 False\n",
+      "('everybody needs somebody to love finale', 'The Rolling Stones') ('everybody needs somebody to love', 'The Rolling Stones') 7 True\n",
+      "('sea of monsters', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 23 True\n",
+      "('2 become 1', 'Spice Girls') Missing 99999 False\n",
+      "('just my imagination', 'The Rolling Stones') ('im moving on', 'The Rolling Stones') 12 True\n",
+      "('say youll be there', 'Spice Girls') Missing 99999 False\n",
+      "('viva forever', 'Spice Girls') Missing 99999 False\n",
+      "('bullet proof i wish i was', 'Radiohead') ('bullet proofi wish i was', 'Radiohead') 1 False\n",
+      "('holler', 'Spice Girls') Missing 99999 False\n",
+      "('flip flop and fly', 'Muddy Waters') Missing 99999 False\n",
+      "('naked', 'Spice Girls') Missing 99999 False\n",
+      "('denying', 'Spice Girls') Missing 99999 False\n",
+      "('clouds in my heart', 'The Rolling Stones') ('pain in my heart', 'The Rolling Stones') 6 True\n",
+      "('when im sixty four', 'The Beatles') ('when im sixtyfour', 'The Beatles') 1 True\n",
+      "('fannie mae', 'The Rolling Stones') ('fanny mae', 'The Rolling Stones') 2 False\n",
+      "('i will los angeles version', 'Radiohead') ('million dollar question', 'Radiohead') 16 False\n",
+      "('little by little shed', 'Radiohead') ('little by little', 'Radiohead') 5 True\n",
+      "('hi heel sneakers', 'The Rolling Stones') ('hiheel sneakers', 'The Rolling Stones') 1 False\n",
+      "('i cant turn you loose', 'Bob Clearmountain') Missing 99999 False\n",
+      "('mama', 'Spice Girls') Missing 99999 False\n",
+      "('faraway eyes', 'The Rolling Stones') ('far away eyes', 'The Rolling Stones') 1 True\n",
+      "('saturday night divas', 'Spice Girls') Missing 99999 False\n",
+      "('jumping jack flash', 'The Rolling Stones') ('jumpin jack flash', 'The Rolling Stones') 1 True\n",
+      "('got my mojo workin', 'The Rolling Stones') ('honky tonk women', 'The Rolling Stones') 10 True\n",
+      "('never give up on the good times', 'Spice Girls') Missing 99999 False\n",
+      "('get down with me', 'Spice Girls') Missing 99999 False\n",
+      "('revolution 1', 'The Beatles') ('revolution i', 'The Beatles') 1 False\n",
+      "('instrumental 2', 'The Rolling Stones') ('little t a', 'The Rolling Stones') 10 False\n",
+      "('weekend love', 'Spice Girls') Missing 99999 False\n",
+      "('country boy', 'Muddy Waters') Missing 99999 False\n",
+      "('move over', 'Spice Girls') Missing 99999 False\n",
+      "('kansas city heyheyheyhey', 'The Beatles') ('medley kansas cityhey hey hey hey', 'The Beatles') 11 False\n",
+      "('dollars cents', 'Radiohead') ('dollars and cents', 'Radiohead') 4 False\n",
+      "('a punch up at a wedding', 'Radiohead') ('a punchup at a wedding', 'Radiohead') 1 False\n",
+      "('too much', 'Spice Girls') Missing 99999 False\n",
+      "('honky tonk woman', 'The Rolling Stones') ('honky tonk women', 'The Rolling Stones') 1 True\n",
+      "('sea of time', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 25 True\n"
+     ]
+    }
+   ],
+   "source": [
+    "banned_substrings = ['rmx', 'remix', 'rework', 'live', 'intro', 'medley']\n",
+    "genius_and_both = genius_only | in_both\n",
+    "for s in spotify_only:\n",
+    "    if not any(banned in s[0] for banned in banned_substrings):\n",
+    "        candidates = [g for g in genius_and_both if g[1] == s[1]]\n",
+    "        if candidates:\n",
+    "            gt = min(candidates, key=lambda g: levenshtein(s[0], g[0]))\n",
+    "            d = levenshtein(s[0], gt[0])\n",
+    "        else:\n",
+    "            gt = 'Missing'\n",
+    "            d = 99999\n",
+    "        print(s, gt, d, gt in in_both)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 73,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "('champagne and reefer', 'The Rolling Stones') [(('champagne reefer', 'The Rolling Stones'), 4)]\n",
+      "('key to the highway', 'The Rolling Stones') []\n",
+      "('little ta', 'The Rolling Stones') [(('little baby', 'The Rolling Stones'), 3), (('little t a', 'The Rolling Stones'), 1), (('little rain', 'The Rolling Stones'), 3), (('title 5', 'The Rolling Stones'), 4)]\n",
+      "('pepperland', 'George Martin') []\n",
+      "('you got me rockin', 'The Rolling Stones') [(('you got me rocking', 'The Rolling Stones'), 1)]\n",
+      "('sea of holes', 'George Martin') []\n",
+      "('next time you see me', 'The Rolling Stones') []\n",
+      "('untitled', 'Radiohead') []\n",
+      "('packt like sardines in a crushed tin box', 'Radiohead') [(('packt like sardines in a crushd tin box', 'Radiohead'), 1)]\n",
+      "('march of the meanies', 'George Martin') []\n",
+      "('codex illum sphere', 'Radiohead') []\n",
+      "('charlies intro to little red rooster', 'The Rolling Stones') []\n",
+      "('instrumental 1', 'The Rolling Stones') []\n",
+      "('long distance call', 'The Rolling Stones') []\n",
+      "('one eyed woman', 'The Rolling Stones') []\n",
+      "('martin scorsese intro', 'The Rolling Stones') []\n",
+      "('band introductions', 'The Rolling Stones') []\n",
+      "('pepperland laid waste', 'George Martin') []\n",
+      "('everybody needs somebody to love finale', 'The Rolling Stones') []\n",
+      "('sea of monsters', 'George Martin') []\n",
+      "('just my imagination', 'The Rolling Stones') []\n",
+      "('bullet proof i wish i was', 'Radiohead') [(('bullet proofi wish i was', 'Radiohead'), 1)]\n",
+      "('clouds in my heart', 'The Rolling Stones') []\n",
+      "('when im sixty four', 'The Beatles') [(('when im sixtyfour', 'The Beatles'), 1)]\n",
+      "('fannie mae', 'The Rolling Stones') [(('fanny mae', 'The Rolling Stones'), 2)]\n",
+      "('i will los angeles version', 'Radiohead') []\n",
+      "('little by little shed', 'Radiohead') []\n",
+      "('hi heel sneakers', 'The Rolling Stones') [(('hiheel sneakers', 'The Rolling Stones'), 1)]\n",
+      "('bloom jamie xx rework', 'Radiohead') []\n",
+      "('faraway eyes', 'The Rolling Stones') [(('far away eyes', 'The Rolling Stones'), 1)]\n",
+      "('jumping jack flash', 'The Rolling Stones') [(('jumpin jack flash', 'The Rolling Stones'), 1)]\n",
+      "('got my mojo workin', 'The Rolling Stones') []\n",
+      "('revolution 1', 'The Beatles') [(('revolution i', 'The Beatles'), 1), (('revolution 9', 'The Beatles'), 1), (('revolution', 'The Beatles'), 2)]\n",
+      "('instrumental 2', 'The Rolling Stones') []\n",
+      "('kansas city heyheyheyhey', 'The Beatles') []\n",
+      "('dollars cents', 'Radiohead') [(('dollars and cents', 'Radiohead'), 4)]\n",
+      "('a punch up at a wedding', 'Radiohead') [(('a punchup at a wedding', 'Radiohead'), 1)]\n",
+      "('honky tonk woman', 'The Rolling Stones') [(('honky tonk women', 'The Rolling Stones'), 1)]\n",
+      "('sea of time', 'George Martin') []\n"
+     ]
+    }
+   ],
+   "source": [
+    "genius_and_both = genius_only | in_both\n",
+    "for s in spotify_only:\n",
+    "    if 'rmx' not in s[0] and 'remix' not in s[0] and 'live' not in s[0]:\n",
+    "#         album = \n",
+    "        candidates = [g for g in genius_and_both if g[1] == s[1]]\n",
+    "        if candidates:\n",
+    "            gts = [(g, levenshtein(s[0], g[0])) for g in candidates if levenshtein(s[0], g[0]) < 5]\n",
+    "            print(s, gts)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 74,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>_id</th>\n",
+       "      <th>artist_name</th>\n",
+       "      <th>name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Live At The Hollywood Bowl</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>5ju5Ouzan3QwXqQt1Tihbh</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>1 (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>2pCqZLeavM2BMovJXsJEIV</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Let It Be (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>2Pqkn9Dq2DFtdfkKAeqgMd</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Abbey Road (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>47bcKzmKgmMPHXNVOWpLiu</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Yellow Submarine (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>03Qh833fEdVT30Pfs93ea6</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>The Beatles (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>6P9yO0ukhOx3dvmhGKeYoC</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>1PULmKbHeOqlkIwcDMNwD4</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>0PYyrqs9NXtxPhf0CZkq2L</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Revolver (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>3OdI6e43crvyAHhaqpxSyz</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Rubber Soul (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>19K3IHYeVkUTjcBHGfbCOi</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>7BgGBZndAvDlKOcwe5rscZ</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Beatles For Sale (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>71Mwd9tntFQYUk4k2DwA0D</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>1DBkJIEoeHrTX4WCBQGcCi</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>The King Of Limbs</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>3nkEsxmIX0zRNXGAexaHAn</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>With The Beatles (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Please Please Me (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>6vuykQgDLUCiZ7YggIpLM9</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>A Moon Shaped Pool</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>17</th>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>TKOL RMX 1234567</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>18</th>\n",
+       "      <td>7eyQXxuf2nGj9d2367Gi5f</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>In Rainbows</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>19</th>\n",
+       "      <td>36lJLPoPPOKNFddTAcirnc</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>In Rainbows Disk 2</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>20</th>\n",
+       "      <td>6Eo5EkmdLvZrONzi046iC2</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Com Lag: 2+2=5</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>21</th>\n",
+       "      <td>1oW3v5Har9mvXnGk0x4fHm</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Hail To the Thief</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>22</th>\n",
+       "      <td>6svTt5o2lUgIrgYDKVmdnD</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>I Might Be Wrong</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>23</th>\n",
+       "      <td>6V9YnBmFjWmXCBaUVRCVXP</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Amnesiac</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>24</th>\n",
+       "      <td>19RUXBFyM4PpmrLRdtqWbp</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Kid A</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>25</th>\n",
+       "      <td>7dxKtc08dYeRVHt3p9CZJn</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>OK Computer</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>26</th>\n",
+       "      <td>500FEaUzn8lN9zWFyZG5C2</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>The Bends</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>27</th>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Pablo Honey</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>28</th>\n",
+       "      <td>4g9Jfls8z2nbQxj5PiXkiy</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Blue &amp; Lonesome</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>29</th>\n",
+       "      <td>4fhWcu56Bbh5wALuTouFVW</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Havana Moon (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>...</th>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>32</th>\n",
+       "      <td>3CHu7qW160uqPZHW3TMZ1l</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Shine A Light</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>33</th>\n",
+       "      <td>4FTHynKEtuP7eppERNfjyG</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>A Bigger Bang (2009 Re-Mastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>34</th>\n",
+       "      <td>50UGtgNA5bq1c0BDjPfmbD</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Live Licks</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>35</th>\n",
+       "      <td>0ZGddnvcVzHVHfE3WW1tV5</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Bridges To Babylon (Remastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>36</th>\n",
+       "      <td>4M8Q1L9PZq0xK5tLUpO3jd</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Stripped</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>37</th>\n",
+       "      <td>62ZT16LY1phGM0O8x5qW1z</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Voodoo Lounge (Remastered 2009)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>38</th>\n",
+       "      <td>1W1UJulgICjFDyYIMUwRs7</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Flashpoint</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>39</th>\n",
+       "      <td>25mfHGJNQkluvIqedXHSx3</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Steel Wheels (2009 Re-Mastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>40</th>\n",
+       "      <td>1TpcI1LEFVhBvDPSTMPGFG</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Dirty Work</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>41</th>\n",
+       "      <td>1WSfNoPDPzgyKFN6OSYWUx</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Dirty Work (Remastered 2009)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>42</th>\n",
+       "      <td>064eFGemsrDcMvgRZ0gqtw</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Undercover (2009 Re-Mastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>43</th>\n",
+       "      <td>0hxrNynMDh5QeyALlf1CdS</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Still Life</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>44</th>\n",
+       "      <td>1YvnuYGlblQ5vLnOhaZzpn</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Tattoo You (2009 Re-Mastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>45</th>\n",
+       "      <td>2wZgoXS06wSdu9C0ZJOvlc</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Emotional Rescue (2009 Re-Mastered)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>46</th>\n",
+       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Some Girls</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>47</th>\n",
+       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>48</th>\n",
+       "      <td>4jbWZmf7kRxCBD6tgVepYh</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Forever</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>49</th>\n",
+       "      <td>3sr6lAuO3nmB1u8ZuQgpiX</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Spiceworld</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>50</th>\n",
+       "      <td>3x2jF7blR6bFHtk4MccsyJ</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Spice</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>51</th>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>52</th>\n",
+       "      <td>7Hk1X2BCADxuR9saTIKfOW</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>On Air (Deluxe)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>53</th>\n",
+       "      <td>6iCIB08bkoitQOL5y2uEsM</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Sticky Fingers Live At The Fonda Theatre</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>54</th>\n",
+       "      <td>34d9ClCaKRoQ8pMeJ9Gfvt</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>55</th>\n",
+       "      <td>0aWIIpfY32rT1i3yO9LROl</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>56</th>\n",
+       "      <td>5D7RtaChuvF0Av1xXT3acu</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>57</th>\n",
+       "      <td>2b3y5k1DchDACjH5KMlgQv</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>58</th>\n",
+       "      <td>3wkyUMDuH56iNaSxKvukax</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>59</th>\n",
+       "      <td>6hB5kO3oV3tlnblCNSSA9Z</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>60</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>61</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "<p>62 rows × 3 columns</p>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                       _id         artist_name  \\\n",
+       "0   5XfJmldgWzrc1AIdbBaVZn         The Beatles   \n",
+       "1   5ju5Ouzan3QwXqQt1Tihbh         The Beatles   \n",
+       "2   2pCqZLeavM2BMovJXsJEIV         The Beatles   \n",
+       "3   2Pqkn9Dq2DFtdfkKAeqgMd         The Beatles   \n",
+       "4   47bcKzmKgmMPHXNVOWpLiu         The Beatles   \n",
+       "5   03Qh833fEdVT30Pfs93ea6         The Beatles   \n",
+       "6   6P9yO0ukhOx3dvmhGKeYoC         The Beatles   \n",
+       "7   1PULmKbHeOqlkIwcDMNwD4         The Beatles   \n",
+       "8   0PYyrqs9NXtxPhf0CZkq2L         The Beatles   \n",
+       "9   3OdI6e43crvyAHhaqpxSyz         The Beatles   \n",
+       "10  19K3IHYeVkUTjcBHGfbCOi         The Beatles   \n",
+       "11  7BgGBZndAvDlKOcwe5rscZ         The Beatles   \n",
+       "12  71Mwd9tntFQYUk4k2DwA0D         The Beatles   \n",
+       "13  1DBkJIEoeHrTX4WCBQGcCi           Radiohead   \n",
+       "14  3nkEsxmIX0zRNXGAexaHAn         The Beatles   \n",
+       "15  7gDXyW16byCQOgK965BRzn         The Beatles   \n",
+       "16  6vuykQgDLUCiZ7YggIpLM9           Radiohead   \n",
+       "17  47xaqCsJcYFWqD1gwujl1T           Radiohead   \n",
+       "18  7eyQXxuf2nGj9d2367Gi5f           Radiohead   \n",
+       "19  36lJLPoPPOKNFddTAcirnc           Radiohead   \n",
+       "20  6Eo5EkmdLvZrONzi046iC2           Radiohead   \n",
+       "21  1oW3v5Har9mvXnGk0x4fHm           Radiohead   \n",
+       "22  6svTt5o2lUgIrgYDKVmdnD           Radiohead   \n",
+       "23  6V9YnBmFjWmXCBaUVRCVXP           Radiohead   \n",
+       "24  19RUXBFyM4PpmrLRdtqWbp           Radiohead   \n",
+       "25  7dxKtc08dYeRVHt3p9CZJn           Radiohead   \n",
+       "26  500FEaUzn8lN9zWFyZG5C2           Radiohead   \n",
+       "27  6400dnyeDyD2mIFHfkwHXN           Radiohead   \n",
+       "28  4g9Jfls8z2nbQxj5PiXkiy  The Rolling Stones   \n",
+       "29  4fhWcu56Bbh5wALuTouFVW  The Rolling Stones   \n",
+       "..                     ...                 ...   \n",
+       "32  3CHu7qW160uqPZHW3TMZ1l  The Rolling Stones   \n",
+       "33  4FTHynKEtuP7eppERNfjyG  The Rolling Stones   \n",
+       "34  50UGtgNA5bq1c0BDjPfmbD  The Rolling Stones   \n",
+       "35  0ZGddnvcVzHVHfE3WW1tV5  The Rolling Stones   \n",
+       "36  4M8Q1L9PZq0xK5tLUpO3jd  The Rolling Stones   \n",
+       "37  62ZT16LY1phGM0O8x5qW1z  The Rolling Stones   \n",
+       "38  1W1UJulgICjFDyYIMUwRs7  The Rolling Stones   \n",
+       "39  25mfHGJNQkluvIqedXHSx3  The Rolling Stones   \n",
+       "40  1TpcI1LEFVhBvDPSTMPGFG  The Rolling Stones   \n",
+       "41  1WSfNoPDPzgyKFN6OSYWUx  The Rolling Stones   \n",
+       "42  064eFGemsrDcMvgRZ0gqtw  The Rolling Stones   \n",
+       "43  0hxrNynMDh5QeyALlf1CdS  The Rolling Stones   \n",
+       "44  1YvnuYGlblQ5vLnOhaZzpn  The Rolling Stones   \n",
+       "45  2wZgoXS06wSdu9C0ZJOvlc  The Rolling Stones   \n",
+       "46  54sqbAXxR1jFfyXb1WvrHK  The Rolling Stones   \n",
+       "47  6FjXxl9VLURGuubdXUn2J3  The Rolling Stones   \n",
+       "48  4jbWZmf7kRxCBD6tgVepYh         Spice Girls   \n",
+       "49  3sr6lAuO3nmB1u8ZuQgpiX         Spice Girls   \n",
+       "50  3x2jF7blR6bFHtk4MccsyJ         Spice Girls   \n",
+       "51  3LXItxKnnJcEDc5QdTc00n         The Beatles   \n",
+       "52  7Hk1X2BCADxuR9saTIKfOW  The Rolling Stones   \n",
+       "53  6iCIB08bkoitQOL5y2uEsM  The Rolling Stones   \n",
+       "54  34d9ClCaKRoQ8pMeJ9Gfvt  The Rolling Stones   \n",
+       "55  0aWIIpfY32rT1i3yO9LROl  The Rolling Stones   \n",
+       "56  5D7RtaChuvF0Av1xXT3acu  The Rolling Stones   \n",
+       "57  2b3y5k1DchDACjH5KMlgQv  The Rolling Stones   \n",
+       "58  3wkyUMDuH56iNaSxKvukax  The Rolling Stones   \n",
+       "59  6hB5kO3oV3tlnblCNSSA9Z        Muddy Waters   \n",
+       "60  3yNf6JVyEEqvM4OqKEmZSC        Muddy Waters   \n",
+       "61  2gCp8kyDcL93s4kVP4VMTC  The Rolling Stones   \n",
+       "\n",
+       "                                                 name  \n",
+       "0                          Live At The Hollywood Bowl  \n",
+       "1                                      1 (Remastered)  \n",
+       "2                              Let It Be (Remastered)  \n",
+       "3                             Abbey Road (Remastered)  \n",
+       "4                       Yellow Submarine (Remastered)  \n",
+       "5                            The Beatles (Remastered)  \n",
+       "6                   Magical Mystery Tour (Remastered)  \n",
+       "7   Sgt. Pepper's Lonely Hearts Club Band (Remaste...  \n",
+       "8                               Revolver (Remastered)  \n",
+       "9                            Rubber Soul (Remastered)  \n",
+       "10                                 Help! (Remastered)  \n",
+       "11                      Beatles For Sale (Remastered)  \n",
+       "12                    A Hard Day's Night (Remastered)  \n",
+       "13                                  The King Of Limbs  \n",
+       "14                      With The Beatles (Remastered)  \n",
+       "15                      Please Please Me (Remastered)  \n",
+       "16                                 A Moon Shaped Pool  \n",
+       "17                                   TKOL RMX 1234567  \n",
+       "18                                        In Rainbows  \n",
+       "19                                 In Rainbows Disk 2  \n",
+       "20                                     Com Lag: 2+2=5  \n",
+       "21                                  Hail To the Thief  \n",
+       "22                                   I Might Be Wrong  \n",
+       "23                                           Amnesiac  \n",
+       "24                                              Kid A  \n",
+       "25                                        OK Computer  \n",
+       "26                                          The Bends  \n",
+       "27                                        Pablo Honey  \n",
+       "28                                    Blue & Lonesome  \n",
+       "29                                 Havana Moon (Live)  \n",
+       "..                                                ...  \n",
+       "32                                      Shine A Light  \n",
+       "33                   A Bigger Bang (2009 Re-Mastered)  \n",
+       "34                                         Live Licks  \n",
+       "35                    Bridges To Babylon (Remastered)  \n",
+       "36                                           Stripped  \n",
+       "37                    Voodoo Lounge (Remastered 2009)  \n",
+       "38                                         Flashpoint  \n",
+       "39                    Steel Wheels (2009 Re-Mastered)  \n",
+       "40                                         Dirty Work  \n",
+       "41                       Dirty Work (Remastered 2009)  \n",
+       "42                      Undercover (2009 Re-Mastered)  \n",
+       "43                                         Still Life  \n",
+       "44                      Tattoo You (2009 Re-Mastered)  \n",
+       "45                Emotional Rescue (2009 Re-Mastered)  \n",
+       "46                                         Some Girls  \n",
+       "47                        Some Girls (Deluxe Version)  \n",
+       "48                                            Forever  \n",
+       "49                                         Spiceworld  \n",
+       "50                                              Spice  \n",
+       "51  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...  \n",
+       "52                                    On Air (Deluxe)  \n",
+       "53           Sticky Fingers Live At The Fonda Theatre  \n",
+       "54                          Ladies & Gentlemen (Live)  \n",
+       "55                            Totally Stripped (Live)  \n",
+       "56                  Totally Stripped - Brixton (Live)  \n",
+       "57                Totally Stripped - Amsterdam (Live)  \n",
+       "58                    Totally Stripped - Paris (Live)  \n",
+       "59                    Live At The Checkerboard Lounge  \n",
+       "60                    Live At The Checkerboard Lounge  \n",
+       "61                      Some Girls: Live In Texas '78  \n",
+       "\n",
+       "[62 rows x 3 columns]"
+      ]
+     },
+     "execution_count": 74,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list(albums.find({}, ['artist_name', 'name'])))"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "collapsed": true
+   },
+   "source": [
+    "Manually fix a couple of errors."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 75,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "<pymongo.results.UpdateResult at 0x7f97602b8ec8>"
+      ]
+     },
+     "execution_count": 75,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "genius_tracks.update_many({'ctitle': 'revolution i'}, \n",
+    "                          {'$set': {'ctitle': 'revolution 1'}})\n",
+    "genius_tracks.update_many({'ctitle': 'when im sixtyfour'}, \n",
+    "                          {'$set': {'ctitle': 'when im sixty four'}})\n",
+    "genius_tracks.update_many({'ctitle': 'packt like sardines in a crushd tin box'}, \n",
+    "                          {'$set': {'ctitle': 'packt like sardines in a crushed tin box'}})\n",
+    "genius_tracks.update_many({'ctitle': 'a punchup at a wedding'}, \n",
+    "                          {'$set': {'ctitle': 'a punch up at a wedding'}})\n",
+    "genius_tracks.update_many({'ctitle': 'dollars cents'}, \n",
+    "                          {'$set': {'ctitle': 'dollars and cents'}})\n",
+    "genius_tracks.update_many({'ctitle': 'bullet proofi wish i was'}, \n",
+    "                          {'$set': {'ctitle': 'bullet proof i wish i was'}})\n",
+    "genius_tracks.update_many({'ctitle': 'jumpin jack flash'}, \n",
+    "                          {'$set': {'ctitle': 'jumping jack flash'}})\n",
+    "genius_tracks.update_many({'ctitle': 'far away eyes'}, \n",
+    "                          {'$set': {'ctitle': 'faraway eyes'}})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 76,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "(532, 516, 103)"
+      ]
+     },
+     "execution_count": 76,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "in_both = set(g['ctitle'] for g in genius_tracks.find({}, ['ctitle']) if tracks.find({'ctitle': g['ctitle']}).count())\n",
+    "genius_only = set(g['ctitle'] for g in genius_tracks.find({}, ['ctitle']) if not tracks.find({'ctitle': g['ctitle']}).count())\n",
+    "spotify_only = set(s['ctitle'] for s in tracks.find({}, ['ctitle']) if not genius_tracks.find({'ctitle': s['ctitle']}).count())\n",
+    "len(in_both), len(genius_only), len(spotify_only)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "### Copy the lyrics over<a name=\"copylyrics\"></a>\n",
+    "Now can can connect the tracks, let's copy across the lyrics from the Genius collection into the Spotify collection. We'll calculate the lyrical density at the same time.\n",
+    "\n",
+    "* [Top](#top)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 77,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "for t in tracks.find({}, ['ctitle', 'duration_ms']):\n",
+    "    gts = genius_tracks.find({'ctitle': t['ctitle'], 'lyrics': {'$exists': True}}, ['lyrics', 'original_lyrics'])\n",
+    "    for gt in gts:\n",
+    "        tracks.update_one({'_id': t['_id']}, \n",
+    "                          {'$set': {'lyrics': gt['lyrics'], \n",
+    "                                    'original_lyrics': gt['original_lyrics'],\n",
+    "                                    'lyrical_density': 1000 * len(gt['lyrics'].split()) / t['duration_ms']}})"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Sentiment analysis<a name=\"sentimentanalysis\"></a>\n",
+    "I couldn't find an easily-installable equivalent to the NRC corpus, so I'm using a sentiment analysis API endpoint from [Text Processing](http://text-processing.com/docs/sentiment.html).\n",
+    "\n",
+    "* [Top](#top)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 78,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [],
+   "source": [
+    "for t in tracks.find({'lyrics': {'$exists': True}}, ['lyrics']):\n",
+    "    text = t['lyrics']\n",
+    "    if text:\n",
+    "        query = urllib.parse.urlencode({'text': text}).encode('ascii')\n",
+    "        headers = {'Accept': 'application/json',\n",
+    "                   'User-Agent': 'curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)'}\n",
+    "        request = urllib.request.Request('http://text-processing.com/api/sentiment/', \n",
+    "                                 headers=headers, data=query)\n",
+    "        with urllib.request.urlopen(request) as f:\n",
+    "            response = json.loads(f.read().decode('utf-8'))\n",
+    "            tracks.update_one({'_id': t['_id']}, {'$set': {'sentiment': response}})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 79,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "dict_keys(['explicit', 'artist_name', 'lyrics', 'uri', 'track_number', 'mode', 'album_id', '_id', 'preview_url', 'acousticness', 'liveness', 'energy', 'disc_number', 'valence', 'artist_id', 'lyrical_density', 'ctitle', 'popularity', 'original_lyrics', 'speechiness', 'sentiment', 'loudness', 'href', 'available_markets', 'type', 'name', 'external_ids', 'artists', 'id', 'key', 'instrumentalness', 'album', 'time_signature', 'danceability', 'duration_ms', 'tempo', 'external_urls', 'analysis_url', 'track_href'])"
+      ]
+     },
+     "execution_count": 79,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "tracks.find_one({'sentiment': {'$exists': True}}).keys()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 80,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "{'_id': '1jgefM2ZP7RnPVShhy1eUM',\n",
+       " 'acousticness': 0.148,\n",
+       " 'album': {'album_type': 'album',\n",
+       "  'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe'},\n",
+       "    'href': 'https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe',\n",
+       "    'id': '22bE4uQ6baNwSHPVcDxLCe',\n",
+       "    'name': 'The Rolling Stones',\n",
+       "    'type': 'artist',\n",
+       "    'uri': 'spotify:artist:22bE4uQ6baNwSHPVcDxLCe'}],\n",
+       "  'available_markets': ['GB'],\n",
+       "  'external_urls': {'spotify': 'https://open.spotify.com/album/3PbRKFafwE7Of8e4dTee72'},\n",
+       "  'href': 'https://api.spotify.com/v1/albums/3PbRKFafwE7Of8e4dTee72',\n",
+       "  'id': '3PbRKFafwE7Of8e4dTee72',\n",
+       "  'images': [{'height': 640,\n",
+       "    'url': 'https://i.scdn.co/image/4bd988736fe53e8109488f0f390cdfd5d119762d',\n",
+       "    'width': 640},\n",
+       "   {'height': 300,\n",
+       "    'url': 'https://i.scdn.co/image/b5c53642ccdaac3120aa766ce5e29d9c1b61794f',\n",
+       "    'width': 300},\n",
+       "   {'height': 64,\n",
+       "    'url': 'https://i.scdn.co/image/9c6e2872cbd2688c528d5d43c57651d12c19eec1',\n",
+       "    'width': 64}],\n",
+       "  'name': 'Totally Stripped (Live)',\n",
+       "  'type': 'album',\n",
+       "  'uri': 'spotify:album:3PbRKFafwE7Of8e4dTee72'},\n",
+       " 'album_id': '3PbRKFafwE7Of8e4dTee72',\n",
+       " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/1jgefM2ZP7RnPVShhy1eUM',\n",
+       " 'artist_id': '22bE4uQ6baNwSHPVcDxLCe',\n",
+       " 'artist_name': 'The Rolling Stones',\n",
+       " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe'},\n",
+       "   'href': 'https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe',\n",
+       "   'id': '22bE4uQ6baNwSHPVcDxLCe',\n",
+       "   'name': 'The Rolling Stones',\n",
+       "   'type': 'artist',\n",
+       "   'uri': 'spotify:artist:22bE4uQ6baNwSHPVcDxLCe'}],\n",
+       " 'available_markets': ['GB'],\n",
+       " 'ctitle': 'not fade away',\n",
+       " 'danceability': 0.282,\n",
+       " 'disc_number': 1,\n",
+       " 'duration_ms': 191787,\n",
+       " 'energy': 0.883,\n",
+       " 'explicit': False,\n",
+       " 'external_ids': {'isrc': 'GBCBR1500391'},\n",
+       " 'external_urls': {'spotify': 'https://open.spotify.com/track/1jgefM2ZP7RnPVShhy1eUM'},\n",
+       " 'href': 'https://api.spotify.com/v1/tracks/1jgefM2ZP7RnPVShhy1eUM',\n",
+       " 'id': '1jgefM2ZP7RnPVShhy1eUM',\n",
+       " 'instrumentalness': 0.00116,\n",
+       " 'key': 9,\n",
+       " 'liveness': 0.969,\n",
+       " 'loudness': -7.634,\n",
+       " 'lyrical_density': 0.6934776601125207,\n",
+       " 'lyrics': \"i'm going to tell you how it's going to be you're going to give your love to me i'm going to love you night and day well love is love and not fade away well love is love and not fade away my love is bigger than a cadillac i try to show it and you're driving me back your love for me has got to be real for you to know just how i feel love is real and not fade away well love is real and not fade away i'm going to tell you how it's going to be you're going to give your love to me i'm going to love you night and day well love is love and not fade away well love is love and not fade away\",\n",
+       " 'mode': 1,\n",
+       " 'name': 'Not Fade Away - Live',\n",
+       " 'original_lyrics': \"\\n\\n[Chorus]\\nI'm going to tell you how it's going to be\\nYou're going to give your love to me\\nI'm going to love you night and day\\nWell love is love and not fade away\\nWell love is love and not fade away\\n\\n[Verse]\\nMy love is bigger than a Cadillac\\nI try to show it and you're driving me back\\nYour love for me has got to be real\\nFor you to know just how I feel\\nLove is real and not fade away\\nWell love is real and not fade away\\n\\n[Chorus]\\nI'm going to tell you how it's going to be\\nYou're going to give your love to me\\nI'm going to love you night and day\\nWell love is love and not fade away\\nWell love is love and not fade away\\n\\n\",\n",
+       " 'popularity': 14,\n",
+       " 'preview_url': 'https://p.scdn.co/mp3-preview/bba1991141c6e594e0d6cee95bfd55357958e2fa?cid=62cfd0fb31d949b091487f6b71bd39ec',\n",
+       " 'sentiment': {'label': 'pos',\n",
+       "  'probability': {'neg': 0.4330417519459868,\n",
+       "   'neutral': 0.16422979866211163,\n",
+       "   'pos': 0.5669582480540132}},\n",
+       " 'speechiness': 0.0936,\n",
+       " 'tempo': 99.59,\n",
+       " 'time_signature': 4,\n",
+       " 'track_href': 'https://api.spotify.com/v1/tracks/1jgefM2ZP7RnPVShhy1eUM',\n",
+       " 'track_number': 1,\n",
+       " 'type': 'audio_features',\n",
+       " 'uri': 'spotify:track:1jgefM2ZP7RnPVShhy1eUM',\n",
+       " 'valence': 0.678}"
+      ]
+     },
+     "execution_count": 80,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "tracks.find_one({'sentiment': {'$exists': True}})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 81,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "(790, 134)"
+      ]
+     },
+     "execution_count": 81,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "tracks.find({'sentiment': {'$exists': True}}).count(), tracks.find({'sentiment': {'$exists': False}}).count()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 82,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "8"
+      ]
+     },
+     "execution_count": 82,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "tracks.find({'sentiment': {'$exists': False}, 'lyrics': {'$exists': True}}).count()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 83,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>_id</th>\n",
+       "      <th>artist_name</th>\n",
+       "      <th>lyrics</th>\n",
+       "      <th>name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>47DgFAFnhfwoSko23P7pz5</td>\n",
+       "      <td>George Martin</td>\n",
+       "      <td></td>\n",
+       "      <td>Yellow Submarine In Pepperland - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>2z1p43SNSbeowzy8WdYHNk</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td></td>\n",
+       "      <td>Flying - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>3gKuywOm38axM8sJGq6Laq</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td></td>\n",
+       "      <td>MK 1</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>2uYSbsxAMmK1awUl06T7ix</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td></td>\n",
+       "      <td>MK 2</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>1q6X5sJSWQ2QnqvPghR0Kr</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td></td>\n",
+       "      <td>I Am Citizen Insane</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>4blz5SBUxKbtDNwMWstGNG</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td></td>\n",
+       "      <td>Where Bluebirds Fly</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>2zYrFer4QGSQkk5aUawfHB</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td></td>\n",
+       "      <td>Hunting Bears</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>4DPQvbgSM0IdX4O3HOACwL</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td></td>\n",
+       "      <td>Treefingers</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                      _id    artist_name lyrics  \\\n",
+       "0  47DgFAFnhfwoSko23P7pz5  George Martin          \n",
+       "1  2z1p43SNSbeowzy8WdYHNk    The Beatles          \n",
+       "2  3gKuywOm38axM8sJGq6Laq      Radiohead          \n",
+       "3  2uYSbsxAMmK1awUl06T7ix      Radiohead          \n",
+       "4  1q6X5sJSWQ2QnqvPghR0Kr      Radiohead          \n",
+       "5  4blz5SBUxKbtDNwMWstGNG      Radiohead          \n",
+       "6  2zYrFer4QGSQkk5aUawfHB      Radiohead          \n",
+       "7  4DPQvbgSM0IdX4O3HOACwL      Radiohead          \n",
+       "\n",
+       "                                          name  \n",
+       "0  Yellow Submarine In Pepperland - Remastered  \n",
+       "1                     Flying - Remastered 2009  \n",
+       "2                                         MK 1  \n",
+       "3                                         MK 2  \n",
+       "4                          I Am Citizen Insane  \n",
+       "5                          Where Bluebirds Fly  \n",
+       "6                                Hunting Bears  \n",
+       "7                                  Treefingers  "
+      ]
+     },
+     "execution_count": 83,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list(tracks.find({'sentiment': {'$exists': False}, \n",
+    "                               'lyrics': {'$exists': True}}, \n",
+    "                              ['name', 'artist_name', 'lyrics'])))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 84,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'_id': '47DgFAFnhfwoSko23P7pz5',\n",
+       "  'artist_name': 'George Martin',\n",
+       "  'lyrics': '',\n",
+       "  'name': 'Yellow Submarine In Pepperland - Remastered',\n",
+       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
+       " {'_id': '2z1p43SNSbeowzy8WdYHNk',\n",
+       "  'artist_name': 'The Beatles',\n",
+       "  'lyrics': '',\n",
+       "  'name': 'Flying - Remastered 2009',\n",
+       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
+       " {'_id': '3gKuywOm38axM8sJGq6Laq',\n",
+       "  'artist_name': 'Radiohead',\n",
+       "  'lyrics': '',\n",
+       "  'name': 'MK 1',\n",
+       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
+       " {'_id': '2uYSbsxAMmK1awUl06T7ix',\n",
+       "  'artist_name': 'Radiohead',\n",
+       "  'lyrics': '',\n",
+       "  'name': 'MK 2',\n",
+       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
+       " {'_id': '1q6X5sJSWQ2QnqvPghR0Kr',\n",
+       "  'artist_name': 'Radiohead',\n",
+       "  'lyrics': '',\n",
+       "  'name': 'I Am Citizen Insane',\n",
+       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
+       " {'_id': '4blz5SBUxKbtDNwMWstGNG',\n",
+       "  'artist_name': 'Radiohead',\n",
+       "  'lyrics': '',\n",
+       "  'name': 'Where Bluebirds Fly',\n",
+       "  'original_lyrics': '\\n\\n[Distorted \"Somewhere Over The Rainbow\" lyrics]\\n\\n'},\n",
+       " {'_id': '2zYrFer4QGSQkk5aUawfHB',\n",
+       "  'artist_name': 'Radiohead',\n",
+       "  'lyrics': '',\n",
+       "  'name': 'Hunting Bears',\n",
+       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
+       " {'_id': '4DPQvbgSM0IdX4O3HOACwL',\n",
+       "  'artist_name': 'Radiohead',\n",
+       "  'lyrics': '',\n",
+       "  'name': 'Treefingers',\n",
+       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'}]"
+      ]
+     },
+     "execution_count": 84,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "list(tracks.find({'sentiment': {'$exists': False}, \n",
+    "                               'lyrics': {'$exists': True}}, \n",
+    "                              ['name', 'artist_name', 'lyrics', 'original_lyrics']))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 85,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "<pymongo.results.UpdateResult at 0x7f976c0bbd08>"
+      ]
+     },
+     "execution_count": 85,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "tracks.update_many({'lyrics': ''}, {'$unset': {'lyrics': ''}})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 86,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "Empty DataFrame\n",
+       "Columns: []\n",
+       "Index: []"
+      ]
+     },
+     "execution_count": 86,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list(tracks.find({'sentiment': {'$exists': False}, \n",
+    "                               'lyrics': {'$exists': True}}, \n",
+    "                              ['name', 'artist_name', 'lyrics'])))"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Remove live and duplicate tracks<a name=\"removedupliates\"></a>\n",
+    "We don't want to include tracks from live albums and tracks that appear more than once, such as on deluxe, remastered, and basic versions of albums.\n",
+    "\n",
+    "There's no quick and easy way to do this, so this section is just a lot of faffing around. The upshot is that the tracks we want to ignore will end up with an `ignore: True` tag on them, and they will be filtered out in a view for the analysis later.\n",
+    "\n",
+    "* [Top](#top)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 87,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>_id</th>\n",
+       "      <th>artist_name</th>\n",
+       "      <th>name</th>\n",
+       "      <th>release_date</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Live At The Hollywood Bowl</td>\n",
+       "      <td>2016-09-09</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>5ju5Ouzan3QwXqQt1Tihbh</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>1 (Remastered)</td>\n",
+       "      <td>2000-11-13</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>2pCqZLeavM2BMovJXsJEIV</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Let It Be (Remastered)</td>\n",
+       "      <td>1970-05-08</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>2Pqkn9Dq2DFtdfkKAeqgMd</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Abbey Road (Remastered)</td>\n",
+       "      <td>1969-09-26</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>47bcKzmKgmMPHXNVOWpLiu</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Yellow Submarine (Remastered)</td>\n",
+       "      <td>1969-01-17</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>03Qh833fEdVT30Pfs93ea6</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>The Beatles (Remastered)</td>\n",
+       "      <td>1968-11-22</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>6P9yO0ukhOx3dvmhGKeYoC</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>1967-11-27</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>1PULmKbHeOqlkIwcDMNwD4</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>1967-06-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>0PYyrqs9NXtxPhf0CZkq2L</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Revolver (Remastered)</td>\n",
+       "      <td>1966-08-05</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>3OdI6e43crvyAHhaqpxSyz</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Rubber Soul (Remastered)</td>\n",
+       "      <td>1965-12-03</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>19K3IHYeVkUTjcBHGfbCOi</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>1965-08-06</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>7BgGBZndAvDlKOcwe5rscZ</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Beatles For Sale (Remastered)</td>\n",
+       "      <td>1964-12-04</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>71Mwd9tntFQYUk4k2DwA0D</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>1964-07-10</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>1DBkJIEoeHrTX4WCBQGcCi</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>The King Of Limbs</td>\n",
+       "      <td>2011-02-18</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>3nkEsxmIX0zRNXGAexaHAn</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>With The Beatles (Remastered)</td>\n",
+       "      <td>1963-11-22</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Please Please Me (Remastered)</td>\n",
+       "      <td>1963-03-22</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>6vuykQgDLUCiZ7YggIpLM9</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>A Moon Shaped Pool</td>\n",
+       "      <td>2016-05-08</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>17</th>\n",
+       "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>TKOL RMX 1234567</td>\n",
+       "      <td>2011-10-10</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>18</th>\n",
+       "      <td>7eyQXxuf2nGj9d2367Gi5f</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>In Rainbows</td>\n",
+       "      <td>2007-12-28</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>19</th>\n",
+       "      <td>36lJLPoPPOKNFddTAcirnc</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>In Rainbows Disk 2</td>\n",
+       "      <td>2007</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>20</th>\n",
+       "      <td>6Eo5EkmdLvZrONzi046iC2</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Com Lag: 2+2=5</td>\n",
+       "      <td>2004-03-24</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>21</th>\n",
+       "      <td>1oW3v5Har9mvXnGk0x4fHm</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Hail To the Thief</td>\n",
+       "      <td>2003</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>22</th>\n",
+       "      <td>6svTt5o2lUgIrgYDKVmdnD</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>I Might Be Wrong</td>\n",
+       "      <td>2001</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>23</th>\n",
+       "      <td>6V9YnBmFjWmXCBaUVRCVXP</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Amnesiac</td>\n",
+       "      <td>2001-03-12</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>24</th>\n",
+       "      <td>19RUXBFyM4PpmrLRdtqWbp</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Kid A</td>\n",
+       "      <td>2000-10-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>25</th>\n",
+       "      <td>7dxKtc08dYeRVHt3p9CZJn</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>OK Computer</td>\n",
+       "      <td>1997-05-28</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>26</th>\n",
+       "      <td>500FEaUzn8lN9zWFyZG5C2</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>The Bends</td>\n",
+       "      <td>1995-03-28</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>27</th>\n",
+       "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
+       "      <td>Radiohead</td>\n",
+       "      <td>Pablo Honey</td>\n",
+       "      <td>1993-02-22</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>28</th>\n",
+       "      <td>4g9Jfls8z2nbQxj5PiXkiy</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Blue &amp; Lonesome</td>\n",
+       "      <td>2016-12-02</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>29</th>\n",
+       "      <td>4fhWcu56Bbh5wALuTouFVW</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Havana Moon (Live)</td>\n",
+       "      <td>2016-11-11</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>...</th>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>32</th>\n",
+       "      <td>3CHu7qW160uqPZHW3TMZ1l</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Shine A Light</td>\n",
+       "      <td>2008-01-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>33</th>\n",
+       "      <td>4FTHynKEtuP7eppERNfjyG</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>A Bigger Bang (2009 Re-Mastered)</td>\n",
+       "      <td>2005-09-05</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>34</th>\n",
+       "      <td>50UGtgNA5bq1c0BDjPfmbD</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Live Licks</td>\n",
+       "      <td>2004-11-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>35</th>\n",
+       "      <td>0ZGddnvcVzHVHfE3WW1tV5</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Bridges To Babylon (Remastered)</td>\n",
+       "      <td>1997-09-29</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>36</th>\n",
+       "      <td>4M8Q1L9PZq0xK5tLUpO3jd</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Stripped</td>\n",
+       "      <td>1995-01-13</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>37</th>\n",
+       "      <td>62ZT16LY1phGM0O8x5qW1z</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Voodoo Lounge (Remastered 2009)</td>\n",
+       "      <td>1994-07-11</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>38</th>\n",
+       "      <td>1W1UJulgICjFDyYIMUwRs7</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Flashpoint</td>\n",
+       "      <td>1991-04-02</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>39</th>\n",
+       "      <td>25mfHGJNQkluvIqedXHSx3</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Steel Wheels (2009 Re-Mastered)</td>\n",
+       "      <td>1989-08-29</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>40</th>\n",
+       "      <td>1TpcI1LEFVhBvDPSTMPGFG</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Dirty Work</td>\n",
+       "      <td>1986-03-24</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>41</th>\n",
+       "      <td>1WSfNoPDPzgyKFN6OSYWUx</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Dirty Work (Remastered 2009)</td>\n",
+       "      <td>1986-03-24</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>42</th>\n",
+       "      <td>064eFGemsrDcMvgRZ0gqtw</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Undercover (2009 Re-Mastered)</td>\n",
+       "      <td>1983-11-07</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>43</th>\n",
+       "      <td>0hxrNynMDh5QeyALlf1CdS</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Still Life</td>\n",
+       "      <td>1982-06-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>44</th>\n",
+       "      <td>1YvnuYGlblQ5vLnOhaZzpn</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Tattoo You (2009 Re-Mastered)</td>\n",
+       "      <td>1981-08-24</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>45</th>\n",
+       "      <td>2wZgoXS06wSdu9C0ZJOvlc</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Emotional Rescue (2009 Re-Mastered)</td>\n",
+       "      <td>1980-06-20</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>46</th>\n",
+       "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>1978-06-09</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>47</th>\n",
+       "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>1978-06-09</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>48</th>\n",
+       "      <td>4jbWZmf7kRxCBD6tgVepYh</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Forever</td>\n",
+       "      <td>2000-11-06</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>49</th>\n",
+       "      <td>3sr6lAuO3nmB1u8ZuQgpiX</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Spiceworld</td>\n",
+       "      <td>1997-11-03</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>50</th>\n",
+       "      <td>3x2jF7blR6bFHtk4MccsyJ</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Spice</td>\n",
+       "      <td>1996-11-04</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>51</th>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>1967-06-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>52</th>\n",
+       "      <td>7Hk1X2BCADxuR9saTIKfOW</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>On Air (Deluxe)</td>\n",
+       "      <td>2017-12-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>53</th>\n",
+       "      <td>6iCIB08bkoitQOL5y2uEsM</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Sticky Fingers Live At The Fonda Theatre</td>\n",
+       "      <td>2017-09-29</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>54</th>\n",
+       "      <td>34d9ClCaKRoQ8pMeJ9Gfvt</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>2017-06-07</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>55</th>\n",
+       "      <td>0aWIIpfY32rT1i3yO9LROl</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>2016-06-17</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>56</th>\n",
+       "      <td>5D7RtaChuvF0Av1xXT3acu</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>2016-06-06</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>57</th>\n",
+       "      <td>2b3y5k1DchDACjH5KMlgQv</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>2016-06-03</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>58</th>\n",
+       "      <td>3wkyUMDuH56iNaSxKvukax</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>2016-05-20</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>59</th>\n",
+       "      <td>6hB5kO3oV3tlnblCNSSA9Z</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>2012-07-09</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>60</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>2012-07-09</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>61</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>2011-11-21</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "<p>62 rows × 4 columns</p>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                       _id         artist_name  \\\n",
+       "0   5XfJmldgWzrc1AIdbBaVZn         The Beatles   \n",
+       "1   5ju5Ouzan3QwXqQt1Tihbh         The Beatles   \n",
+       "2   2pCqZLeavM2BMovJXsJEIV         The Beatles   \n",
+       "3   2Pqkn9Dq2DFtdfkKAeqgMd         The Beatles   \n",
+       "4   47bcKzmKgmMPHXNVOWpLiu         The Beatles   \n",
+       "5   03Qh833fEdVT30Pfs93ea6         The Beatles   \n",
+       "6   6P9yO0ukhOx3dvmhGKeYoC         The Beatles   \n",
+       "7   1PULmKbHeOqlkIwcDMNwD4         The Beatles   \n",
+       "8   0PYyrqs9NXtxPhf0CZkq2L         The Beatles   \n",
+       "9   3OdI6e43crvyAHhaqpxSyz         The Beatles   \n",
+       "10  19K3IHYeVkUTjcBHGfbCOi         The Beatles   \n",
+       "11  7BgGBZndAvDlKOcwe5rscZ         The Beatles   \n",
+       "12  71Mwd9tntFQYUk4k2DwA0D         The Beatles   \n",
+       "13  1DBkJIEoeHrTX4WCBQGcCi           Radiohead   \n",
+       "14  3nkEsxmIX0zRNXGAexaHAn         The Beatles   \n",
+       "15  7gDXyW16byCQOgK965BRzn         The Beatles   \n",
+       "16  6vuykQgDLUCiZ7YggIpLM9           Radiohead   \n",
+       "17  47xaqCsJcYFWqD1gwujl1T           Radiohead   \n",
+       "18  7eyQXxuf2nGj9d2367Gi5f           Radiohead   \n",
+       "19  36lJLPoPPOKNFddTAcirnc           Radiohead   \n",
+       "20  6Eo5EkmdLvZrONzi046iC2           Radiohead   \n",
+       "21  1oW3v5Har9mvXnGk0x4fHm           Radiohead   \n",
+       "22  6svTt5o2lUgIrgYDKVmdnD           Radiohead   \n",
+       "23  6V9YnBmFjWmXCBaUVRCVXP           Radiohead   \n",
+       "24  19RUXBFyM4PpmrLRdtqWbp           Radiohead   \n",
+       "25  7dxKtc08dYeRVHt3p9CZJn           Radiohead   \n",
+       "26  500FEaUzn8lN9zWFyZG5C2           Radiohead   \n",
+       "27  6400dnyeDyD2mIFHfkwHXN           Radiohead   \n",
+       "28  4g9Jfls8z2nbQxj5PiXkiy  The Rolling Stones   \n",
+       "29  4fhWcu56Bbh5wALuTouFVW  The Rolling Stones   \n",
+       "..                     ...                 ...   \n",
+       "32  3CHu7qW160uqPZHW3TMZ1l  The Rolling Stones   \n",
+       "33  4FTHynKEtuP7eppERNfjyG  The Rolling Stones   \n",
+       "34  50UGtgNA5bq1c0BDjPfmbD  The Rolling Stones   \n",
+       "35  0ZGddnvcVzHVHfE3WW1tV5  The Rolling Stones   \n",
+       "36  4M8Q1L9PZq0xK5tLUpO3jd  The Rolling Stones   \n",
+       "37  62ZT16LY1phGM0O8x5qW1z  The Rolling Stones   \n",
+       "38  1W1UJulgICjFDyYIMUwRs7  The Rolling Stones   \n",
+       "39  25mfHGJNQkluvIqedXHSx3  The Rolling Stones   \n",
+       "40  1TpcI1LEFVhBvDPSTMPGFG  The Rolling Stones   \n",
+       "41  1WSfNoPDPzgyKFN6OSYWUx  The Rolling Stones   \n",
+       "42  064eFGemsrDcMvgRZ0gqtw  The Rolling Stones   \n",
+       "43  0hxrNynMDh5QeyALlf1CdS  The Rolling Stones   \n",
+       "44  1YvnuYGlblQ5vLnOhaZzpn  The Rolling Stones   \n",
+       "45  2wZgoXS06wSdu9C0ZJOvlc  The Rolling Stones   \n",
+       "46  54sqbAXxR1jFfyXb1WvrHK  The Rolling Stones   \n",
+       "47  6FjXxl9VLURGuubdXUn2J3  The Rolling Stones   \n",
+       "48  4jbWZmf7kRxCBD6tgVepYh         Spice Girls   \n",
+       "49  3sr6lAuO3nmB1u8ZuQgpiX         Spice Girls   \n",
+       "50  3x2jF7blR6bFHtk4MccsyJ         Spice Girls   \n",
+       "51  3LXItxKnnJcEDc5QdTc00n         The Beatles   \n",
+       "52  7Hk1X2BCADxuR9saTIKfOW  The Rolling Stones   \n",
+       "53  6iCIB08bkoitQOL5y2uEsM  The Rolling Stones   \n",
+       "54  34d9ClCaKRoQ8pMeJ9Gfvt  The Rolling Stones   \n",
+       "55  0aWIIpfY32rT1i3yO9LROl  The Rolling Stones   \n",
+       "56  5D7RtaChuvF0Av1xXT3acu  The Rolling Stones   \n",
+       "57  2b3y5k1DchDACjH5KMlgQv  The Rolling Stones   \n",
+       "58  3wkyUMDuH56iNaSxKvukax  The Rolling Stones   \n",
+       "59  6hB5kO3oV3tlnblCNSSA9Z        Muddy Waters   \n",
+       "60  3yNf6JVyEEqvM4OqKEmZSC        Muddy Waters   \n",
+       "61  2gCp8kyDcL93s4kVP4VMTC  The Rolling Stones   \n",
+       "\n",
+       "                                                 name release_date  \n",
+       "0                          Live At The Hollywood Bowl   2016-09-09  \n",
+       "1                                      1 (Remastered)   2000-11-13  \n",
+       "2                              Let It Be (Remastered)   1970-05-08  \n",
+       "3                             Abbey Road (Remastered)   1969-09-26  \n",
+       "4                       Yellow Submarine (Remastered)   1969-01-17  \n",
+       "5                            The Beatles (Remastered)   1968-11-22  \n",
+       "6                   Magical Mystery Tour (Remastered)   1967-11-27  \n",
+       "7   Sgt. Pepper's Lonely Hearts Club Band (Remaste...   1967-06-01  \n",
+       "8                               Revolver (Remastered)   1966-08-05  \n",
+       "9                            Rubber Soul (Remastered)   1965-12-03  \n",
+       "10                                 Help! (Remastered)   1965-08-06  \n",
+       "11                      Beatles For Sale (Remastered)   1964-12-04  \n",
+       "12                    A Hard Day's Night (Remastered)   1964-07-10  \n",
+       "13                                  The King Of Limbs   2011-02-18  \n",
+       "14                      With The Beatles (Remastered)   1963-11-22  \n",
+       "15                      Please Please Me (Remastered)   1963-03-22  \n",
+       "16                                 A Moon Shaped Pool   2016-05-08  \n",
+       "17                                   TKOL RMX 1234567   2011-10-10  \n",
+       "18                                        In Rainbows   2007-12-28  \n",
+       "19                                 In Rainbows Disk 2         2007  \n",
+       "20                                     Com Lag: 2+2=5   2004-03-24  \n",
+       "21                                  Hail To the Thief         2003  \n",
+       "22                                   I Might Be Wrong         2001  \n",
+       "23                                           Amnesiac   2001-03-12  \n",
+       "24                                              Kid A   2000-10-01  \n",
+       "25                                        OK Computer   1997-05-28  \n",
+       "26                                          The Bends   1995-03-28  \n",
+       "27                                        Pablo Honey   1993-02-22  \n",
+       "28                                    Blue & Lonesome   2016-12-02  \n",
+       "29                                 Havana Moon (Live)   2016-11-11  \n",
+       "..                                                ...          ...  \n",
+       "32                                      Shine A Light   2008-01-01  \n",
+       "33                   A Bigger Bang (2009 Re-Mastered)   2005-09-05  \n",
+       "34                                         Live Licks   2004-11-01  \n",
+       "35                    Bridges To Babylon (Remastered)   1997-09-29  \n",
+       "36                                           Stripped   1995-01-13  \n",
+       "37                    Voodoo Lounge (Remastered 2009)   1994-07-11  \n",
+       "38                                         Flashpoint   1991-04-02  \n",
+       "39                    Steel Wheels (2009 Re-Mastered)   1989-08-29  \n",
+       "40                                         Dirty Work   1986-03-24  \n",
+       "41                       Dirty Work (Remastered 2009)   1986-03-24  \n",
+       "42                      Undercover (2009 Re-Mastered)   1983-11-07  \n",
+       "43                                         Still Life   1982-06-01  \n",
+       "44                      Tattoo You (2009 Re-Mastered)   1981-08-24  \n",
+       "45                Emotional Rescue (2009 Re-Mastered)   1980-06-20  \n",
+       "46                                         Some Girls   1978-06-09  \n",
+       "47                        Some Girls (Deluxe Version)   1978-06-09  \n",
+       "48                                            Forever   2000-11-06  \n",
+       "49                                         Spiceworld   1997-11-03  \n",
+       "50                                              Spice   1996-11-04  \n",
+       "51  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   1967-06-01  \n",
+       "52                                    On Air (Deluxe)   2017-12-01  \n",
+       "53           Sticky Fingers Live At The Fonda Theatre   2017-09-29  \n",
+       "54                          Ladies & Gentlemen (Live)   2017-06-07  \n",
+       "55                            Totally Stripped (Live)   2016-06-17  \n",
+       "56                  Totally Stripped - Brixton (Live)   2016-06-06  \n",
+       "57                Totally Stripped - Amsterdam (Live)   2016-06-03  \n",
+       "58                    Totally Stripped - Paris (Live)   2016-05-20  \n",
+       "59                    Live At The Checkerboard Lounge   2012-07-09  \n",
+       "60                    Live At The Checkerboard Lounge   2012-07-09  \n",
+       "61                      Some Girls: Live In Texas '78   2011-11-21  \n",
+       "\n",
+       "[62 rows x 4 columns]"
+      ]
+     },
+     "execution_count": 87,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list(albums.find({}, ['name', 'artist_name', 'release_date'])))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 88,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "dict_keys(['genres', 'artist_id', '_id', 'copyrights', 'album_type', 'available_markets', 'release_date_precision', 'label', 'type', 'name', 'images', 'uri', 'href', 'id', 'release_date', 'artist_name', 'tracks', 'external_ids', 'artists', 'external_urls', 'popularity'])"
+      ]
+     },
+     "execution_count": 88,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "albums.find_one().keys()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 89,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>_id</th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>5JT7CoUSGNk7mMNkHMQjqr</td>\n",
+       "      <td>love me do</td>\n",
+       "      <td>Love Me Do - Mono / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>2Q2Gu7Bv8iLenuygtBgDUw</td>\n",
+       "      <td>from me to you</td>\n",
+       "      <td>From Me To You - Mono / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>2Fk411Ix3qnMG8t8Qa74ZX</td>\n",
+       "      <td>she loves you</td>\n",
+       "      <td>She Loves You - Mono / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>4DRBaZ760gyk7LWnaJFqsJ</td>\n",
+       "      <td>i want to hold your hand</td>\n",
+       "      <td>I Want To Hold Your Hand - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>7pQAq14Z73YUFMtxCyt0bG</td>\n",
+       "      <td>cant buy me love</td>\n",
+       "      <td>Can't Buy Me Love - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>0mNQUZEATk2uItMUtiLWK5</td>\n",
+       "      <td>a hard days night</td>\n",
+       "      <td>A Hard Day's Night - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>0Gm34HBxrXlaAf1jdJMjx2</td>\n",
+       "      <td>i feel fine</td>\n",
+       "      <td>I Feel Fine - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>3nhJDVdUrm6DnDW4iBfpKz</td>\n",
+       "      <td>eight days a week</td>\n",
+       "      <td>Eight Days A Week - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>6pkjW5srxjzRSKKMrl7et8</td>\n",
+       "      <td>ticket to ride</td>\n",
+       "      <td>Ticket To Ride - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>1dfuJYDSIc41cw5RPsaCF1</td>\n",
+       "      <td>help</td>\n",
+       "      <td>Help! - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>63uskN0xLezVg4281wzeQn</td>\n",
+       "      <td>yesterday</td>\n",
+       "      <td>Yesterday - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>0vXGSlE4ft3n5JHZMHHSIj</td>\n",
+       "      <td>day tripper</td>\n",
+       "      <td>Day Tripper - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>0Lckblu9CJUXOeMV0XY3b9</td>\n",
+       "      <td>we can work it out</td>\n",
+       "      <td>We Can Work It Out - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>4VFYrwy5mEuZeBywCplc2j</td>\n",
+       "      <td>paperback writer</td>\n",
+       "      <td>Paperback Writer - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>727YRTVI7pKH1uCnXnyZul</td>\n",
+       "      <td>yellow submarine</td>\n",
+       "      <td>Yellow Submarine - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>0TRkjwb4uY3CHb5zhr9bBd</td>\n",
+       "      <td>eleanor rigby</td>\n",
+       "      <td>Eleanor Rigby - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>5Kw6fC8wyRgMYfBDtEklYM</td>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Penny Lane - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>17</th>\n",
+       "      <td>56rXurvdpjoSIVggfd5ANS</td>\n",
+       "      <td>all you need is love</td>\n",
+       "      <td>All You Need Is Love - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>18</th>\n",
+       "      <td>0wFW5NQJdNDJPcZyfYSExx</td>\n",
+       "      <td>hello goodbye</td>\n",
+       "      <td>Hello, Goodbye - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>19</th>\n",
+       "      <td>3yf4uaeB2ibXSIPbfUYC2k</td>\n",
+       "      <td>lady madonna</td>\n",
+       "      <td>Lady Madonna - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>20</th>\n",
+       "      <td>3H7sv3Krffn15BufUuXzf3</td>\n",
+       "      <td>hey jude</td>\n",
+       "      <td>Hey Jude - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>21</th>\n",
+       "      <td>4ajbplh2IXiJkXjQiq5aqq</td>\n",
+       "      <td>get back</td>\n",
+       "      <td>Get Back - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>22</th>\n",
+       "      <td>69zeDbyVmHDSH4GKZD1fv5</td>\n",
+       "      <td>the ballad of john and yoko</td>\n",
+       "      <td>The Ballad Of John And Yoko - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>23</th>\n",
+       "      <td>6Y6UBWhifUnkJIO2mdy0S3</td>\n",
+       "      <td>something</td>\n",
+       "      <td>Something - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>24</th>\n",
+       "      <td>7iABnSNZciNepqGtjMQxxd</td>\n",
+       "      <td>come together</td>\n",
+       "      <td>Come Together - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>25</th>\n",
+       "      <td>22QadBPe0QCuqraFVAr1m3</td>\n",
+       "      <td>let it be</td>\n",
+       "      <td>Let It Be - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>26</th>\n",
+       "      <td>0Oroc0HXQaxs8ONgI7dLnw</td>\n",
+       "      <td>the long and winding road</td>\n",
+       "      <td>The Long And Winding Road - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                       _id                       ctitle  \\\n",
+       "0   5JT7CoUSGNk7mMNkHMQjqr                   love me do   \n",
+       "1   2Q2Gu7Bv8iLenuygtBgDUw               from me to you   \n",
+       "2   2Fk411Ix3qnMG8t8Qa74ZX                she loves you   \n",
+       "3   4DRBaZ760gyk7LWnaJFqsJ     i want to hold your hand   \n",
+       "4   7pQAq14Z73YUFMtxCyt0bG             cant buy me love   \n",
+       "5   0mNQUZEATk2uItMUtiLWK5            a hard days night   \n",
+       "6   0Gm34HBxrXlaAf1jdJMjx2                  i feel fine   \n",
+       "7   3nhJDVdUrm6DnDW4iBfpKz            eight days a week   \n",
+       "8   6pkjW5srxjzRSKKMrl7et8               ticket to ride   \n",
+       "9   1dfuJYDSIc41cw5RPsaCF1                         help   \n",
+       "10  63uskN0xLezVg4281wzeQn                    yesterday   \n",
+       "11  0vXGSlE4ft3n5JHZMHHSIj                  day tripper   \n",
+       "12  0Lckblu9CJUXOeMV0XY3b9           we can work it out   \n",
+       "13  4VFYrwy5mEuZeBywCplc2j             paperback writer   \n",
+       "14  727YRTVI7pKH1uCnXnyZul             yellow submarine   \n",
+       "15  0TRkjwb4uY3CHb5zhr9bBd                eleanor rigby   \n",
+       "16  5Kw6fC8wyRgMYfBDtEklYM                   penny lane   \n",
+       "17  56rXurvdpjoSIVggfd5ANS         all you need is love   \n",
+       "18  0wFW5NQJdNDJPcZyfYSExx                hello goodbye   \n",
+       "19  3yf4uaeB2ibXSIPbfUYC2k                 lady madonna   \n",
+       "20  3H7sv3Krffn15BufUuXzf3                     hey jude   \n",
+       "21  4ajbplh2IXiJkXjQiq5aqq                     get back   \n",
+       "22  69zeDbyVmHDSH4GKZD1fv5  the ballad of john and yoko   \n",
+       "23  6Y6UBWhifUnkJIO2mdy0S3                    something   \n",
+       "24  7iABnSNZciNepqGtjMQxxd                come together   \n",
+       "25  22QadBPe0QCuqraFVAr1m3                    let it be   \n",
+       "26  0Oroc0HXQaxs8ONgI7dLnw    the long and winding road   \n",
+       "\n",
+       "                                             name  \n",
+       "0                  Love Me Do - Mono / Remastered  \n",
+       "1              From Me To You - Mono / Remastered  \n",
+       "2               She Loves You - Mono / Remastered  \n",
+       "3      I Want To Hold Your Hand - Remastered 2015  \n",
+       "4             Can't Buy Me Love - Remastered 2015  \n",
+       "5            A Hard Day's Night - Remastered 2015  \n",
+       "6                   I Feel Fine - Remastered 2015  \n",
+       "7             Eight Days A Week - Remastered 2015  \n",
+       "8                Ticket To Ride - Remastered 2015  \n",
+       "9                         Help! - Remastered 2015  \n",
+       "10                    Yesterday - Remastered 2015  \n",
+       "11                  Day Tripper - Remastered 2015  \n",
+       "12           We Can Work It Out - Remastered 2015  \n",
+       "13             Paperback Writer - Remastered 2015  \n",
+       "14             Yellow Submarine - Remastered 2015  \n",
+       "15                Eleanor Rigby - Remastered 2015  \n",
+       "16                   Penny Lane - Remastered 2015  \n",
+       "17         All You Need Is Love - Remastered 2015  \n",
+       "18               Hello, Goodbye - Remastered 2015  \n",
+       "19                 Lady Madonna - Remastered 2015  \n",
+       "20                     Hey Jude - Remastered 2015  \n",
+       "21                     Get Back - Remastered 2015  \n",
+       "22  The Ballad Of John And Yoko - Remastered 2015  \n",
+       "23                    Something - Remastered 2015  \n",
+       "24                Come Together - Remastered 2015  \n",
+       "25                    Let It Be - Remastered 2015  \n",
+       "26    The Long And Winding Road - Remastered 2015  "
+      ]
+     },
+     "execution_count": 89,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list(tracks.find({'album_id': '5ju5Ouzan3QwXqQt1Tihbh'}, ['name', 'ctitle'])))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 90,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>t_name</th>\n",
+       "      <th>tt_alb</th>\n",
+       "      <th>tt_name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>love me do</td>\n",
+       "      <td>Love Me Do - Mono / Remastered</td>\n",
+       "      <td>Please Please Me (Remastered)</td>\n",
+       "      <td>Love Me Do - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>she loves you</td>\n",
+       "      <td>She Loves You - Mono / Remastered</td>\n",
+       "      <td>Live At The Hollywood Bowl</td>\n",
+       "      <td>She Loves You - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>i want to hold your hand</td>\n",
+       "      <td>I Want To Hold Your Hand - Remastered 2015</td>\n",
+       "      <td>Live At The Hollywood Bowl</td>\n",
+       "      <td>I Want To Hold Your Hand - Live / Bonus Track</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>cant buy me love</td>\n",
+       "      <td>Can't Buy Me Love - Remastered 2015</td>\n",
+       "      <td>Live At The Hollywood Bowl</td>\n",
+       "      <td>Can't Buy Me Love - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>cant buy me love</td>\n",
+       "      <td>Can't Buy Me Love - Remastered 2015</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>Can't Buy Me Love - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>a hard days night</td>\n",
+       "      <td>A Hard Day's Night - Remastered 2015</td>\n",
+       "      <td>Live At The Hollywood Bowl</td>\n",
+       "      <td>A Hard Day's Night - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>a hard days night</td>\n",
+       "      <td>A Hard Day's Night - Remastered 2015</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>A Hard Day's Night - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>eight days a week</td>\n",
+       "      <td>Eight Days A Week - Remastered 2015</td>\n",
+       "      <td>Beatles For Sale (Remastered)</td>\n",
+       "      <td>Eight Days A Week - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>ticket to ride</td>\n",
+       "      <td>Ticket To Ride - Remastered 2015</td>\n",
+       "      <td>Live At The Hollywood Bowl</td>\n",
+       "      <td>Ticket To Ride - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>ticket to ride</td>\n",
+       "      <td>Ticket To Ride - Remastered 2015</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Ticket To Ride - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>help</td>\n",
+       "      <td>Help! - Remastered 2015</td>\n",
+       "      <td>Live At The Hollywood Bowl</td>\n",
+       "      <td>Help! - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>help</td>\n",
+       "      <td>Help! - Remastered 2015</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Help! - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>yesterday</td>\n",
+       "      <td>Yesterday - Remastered 2015</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Yesterday - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>yellow submarine</td>\n",
+       "      <td>Yellow Submarine - Remastered 2015</td>\n",
+       "      <td>Yellow Submarine (Remastered)</td>\n",
+       "      <td>Yellow Submarine - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>yellow submarine</td>\n",
+       "      <td>Yellow Submarine - Remastered 2015</td>\n",
+       "      <td>Revolver (Remastered)</td>\n",
+       "      <td>Yellow Submarine - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>eleanor rigby</td>\n",
+       "      <td>Eleanor Rigby - Remastered 2015</td>\n",
+       "      <td>Revolver (Remastered)</td>\n",
+       "      <td>Eleanor Rigby - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Penny Lane - Remastered 2015</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Penny Lane - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>17</th>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Penny Lane - Remastered 2015</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Penny Lane - Take 6 / Instrumental</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>18</th>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Penny Lane - Remastered 2015</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Penny Lane - Stereo Mix 2017</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>19</th>\n",
+       "      <td>all you need is love</td>\n",
+       "      <td>All You Need Is Love - Remastered 2015</td>\n",
+       "      <td>Yellow Submarine (Remastered)</td>\n",
+       "      <td>All You Need Is Love - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>20</th>\n",
+       "      <td>all you need is love</td>\n",
+       "      <td>All You Need Is Love - Remastered 2015</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>All You Need Is Love - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>21</th>\n",
+       "      <td>hello goodbye</td>\n",
+       "      <td>Hello, Goodbye - Remastered 2015</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Hello, Goodbye - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>22</th>\n",
+       "      <td>get back</td>\n",
+       "      <td>Get Back - Remastered 2015</td>\n",
+       "      <td>Let It Be (Remastered)</td>\n",
+       "      <td>Get Back - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>23</th>\n",
+       "      <td>something</td>\n",
+       "      <td>Something - Remastered 2015</td>\n",
+       "      <td>Abbey Road (Remastered)</td>\n",
+       "      <td>Something - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>24</th>\n",
+       "      <td>come together</td>\n",
+       "      <td>Come Together - Remastered 2015</td>\n",
+       "      <td>Abbey Road (Remastered)</td>\n",
+       "      <td>Come Together - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>25</th>\n",
+       "      <td>let it be</td>\n",
+       "      <td>Let It Be - Remastered 2015</td>\n",
+       "      <td>Let It Be (Remastered)</td>\n",
+       "      <td>Let It Be - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>26</th>\n",
+       "      <td>the long and winding road</td>\n",
+       "      <td>The Long And Winding Road - Remastered 2015</td>\n",
+       "      <td>Let It Be (Remastered)</td>\n",
+       "      <td>The Long And Winding Road - Remastered</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                       ctitle                                       t_name  \\\n",
+       "0                  love me do               Love Me Do - Mono / Remastered   \n",
+       "1               she loves you            She Loves You - Mono / Remastered   \n",
+       "2    i want to hold your hand   I Want To Hold Your Hand - Remastered 2015   \n",
+       "3            cant buy me love          Can't Buy Me Love - Remastered 2015   \n",
+       "4            cant buy me love          Can't Buy Me Love - Remastered 2015   \n",
+       "5           a hard days night         A Hard Day's Night - Remastered 2015   \n",
+       "6           a hard days night         A Hard Day's Night - Remastered 2015   \n",
+       "7           eight days a week          Eight Days A Week - Remastered 2015   \n",
+       "8              ticket to ride             Ticket To Ride - Remastered 2015   \n",
+       "9              ticket to ride             Ticket To Ride - Remastered 2015   \n",
+       "10                       help                      Help! - Remastered 2015   \n",
+       "11                       help                      Help! - Remastered 2015   \n",
+       "12                  yesterday                  Yesterday - Remastered 2015   \n",
+       "13           yellow submarine           Yellow Submarine - Remastered 2015   \n",
+       "14           yellow submarine           Yellow Submarine - Remastered 2015   \n",
+       "15              eleanor rigby              Eleanor Rigby - Remastered 2015   \n",
+       "16                 penny lane                 Penny Lane - Remastered 2015   \n",
+       "17                 penny lane                 Penny Lane - Remastered 2015   \n",
+       "18                 penny lane                 Penny Lane - Remastered 2015   \n",
+       "19       all you need is love       All You Need Is Love - Remastered 2015   \n",
+       "20       all you need is love       All You Need Is Love - Remastered 2015   \n",
+       "21              hello goodbye             Hello, Goodbye - Remastered 2015   \n",
+       "22                   get back                   Get Back - Remastered 2015   \n",
+       "23                  something                  Something - Remastered 2015   \n",
+       "24              come together              Come Together - Remastered 2015   \n",
+       "25                  let it be                  Let It Be - Remastered 2015   \n",
+       "26  the long and winding road  The Long And Winding Road - Remastered 2015   \n",
+       "\n",
+       "                                               tt_alb  \\\n",
+       "0                       Please Please Me (Remastered)   \n",
+       "1                          Live At The Hollywood Bowl   \n",
+       "2                          Live At The Hollywood Bowl   \n",
+       "3                          Live At The Hollywood Bowl   \n",
+       "4                     A Hard Day's Night (Remastered)   \n",
+       "5                          Live At The Hollywood Bowl   \n",
+       "6                     A Hard Day's Night (Remastered)   \n",
+       "7                       Beatles For Sale (Remastered)   \n",
+       "8                          Live At The Hollywood Bowl   \n",
+       "9                                  Help! (Remastered)   \n",
+       "10                         Live At The Hollywood Bowl   \n",
+       "11                                 Help! (Remastered)   \n",
+       "12                                 Help! (Remastered)   \n",
+       "13                      Yellow Submarine (Remastered)   \n",
+       "14                              Revolver (Remastered)   \n",
+       "15                              Revolver (Remastered)   \n",
+       "16                  Magical Mystery Tour (Remastered)   \n",
+       "17  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "18  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "19                      Yellow Submarine (Remastered)   \n",
+       "20                  Magical Mystery Tour (Remastered)   \n",
+       "21                  Magical Mystery Tour (Remastered)   \n",
+       "22                             Let It Be (Remastered)   \n",
+       "23                            Abbey Road (Remastered)   \n",
+       "24                            Abbey Road (Remastered)   \n",
+       "25                             Let It Be (Remastered)   \n",
+       "26                             Let It Be (Remastered)   \n",
+       "\n",
+       "                                          tt_name  \n",
+       "0                    Love Me Do - Remastered 2009  \n",
+       "1               She Loves You - Live / Remastered  \n",
+       "2   I Want To Hold Your Hand - Live / Bonus Track  \n",
+       "3           Can't Buy Me Love - Live / Remastered  \n",
+       "4                  Can't Buy Me Love - Remastered  \n",
+       "5          A Hard Day's Night - Live / Remastered  \n",
+       "6                 A Hard Day's Night - Remastered  \n",
+       "7                  Eight Days A Week - Remastered  \n",
+       "8              Ticket To Ride - Live / Remastered  \n",
+       "9                     Ticket To Ride - Remastered  \n",
+       "10                      Help! - Live / Remastered  \n",
+       "11                             Help! - Remastered  \n",
+       "12                         Yesterday - Remastered  \n",
+       "13                  Yellow Submarine - Remastered  \n",
+       "14                  Yellow Submarine - Remastered  \n",
+       "15                     Eleanor Rigby - Remastered  \n",
+       "16                   Penny Lane - Remastered 2009  \n",
+       "17             Penny Lane - Take 6 / Instrumental  \n",
+       "18                   Penny Lane - Stereo Mix 2017  \n",
+       "19              All You Need Is Love - Remastered  \n",
+       "20         All You Need Is Love - Remastered 2009  \n",
+       "21               Hello, Goodbye - Remastered 2009  \n",
+       "22                          Get Back - Remastered  \n",
+       "23                         Something - Remastered  \n",
+       "24                     Come Together - Remastered  \n",
+       "25                         Let It Be - Remastered  \n",
+       "26         The Long And Winding Road - Remastered  "
+      ]
+     },
+     "execution_count": 90,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list({'ctitle': t['ctitle'], 't_name': t['name'],\n",
+    "                  'tt_name': tt['name'], 'tt_alb': tt['album']['name']}\n",
+    "                  for t in tracks.find({'album_id': '5ju5Ouzan3QwXqQt1Tihbh'}, ['name', 'ctitle'])\n",
+    "                  for tt in tracks.find({'ctitle': t['ctitle']}, ['name', 'ctitle', 'album.name', 'album_id'])\n",
+    "                  if tt['album_id'] != '5ju5Ouzan3QwXqQt1Tihbh'))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 91,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>t_name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>from me to you</td>\n",
+       "      <td>From Me To You - Mono / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>i feel fine</td>\n",
+       "      <td>I Feel Fine - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>day tripper</td>\n",
+       "      <td>Day Tripper - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>we can work it out</td>\n",
+       "      <td>We Can Work It Out - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>paperback writer</td>\n",
+       "      <td>Paperback Writer - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>lady madonna</td>\n",
+       "      <td>Lady Madonna - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>hey jude</td>\n",
+       "      <td>Hey Jude - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>the ballad of john and yoko</td>\n",
+       "      <td>The Ballad Of John And Yoko - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                        ctitle                                         t_name\n",
+       "0               from me to you             From Me To You - Mono / Remastered\n",
+       "1                  i feel fine                  I Feel Fine - Remastered 2015\n",
+       "2                  day tripper                  Day Tripper - Remastered 2015\n",
+       "3           we can work it out           We Can Work It Out - Remastered 2015\n",
+       "4             paperback writer             Paperback Writer - Remastered 2015\n",
+       "5                 lady madonna                 Lady Madonna - Remastered 2015\n",
+       "6                     hey jude                     Hey Jude - Remastered 2015\n",
+       "7  the ballad of john and yoko  The Ballad Of John And Yoko - Remastered 2015"
+      ]
+     },
+     "execution_count": 91,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list({'ctitle': t['ctitle'], 't_name': t['name']}\n",
+    "                  for t in tracks.find({'album_id': '5ju5Ouzan3QwXqQt1Tihbh'}, ['name', 'ctitle'])\n",
+    "                  if len(list(tracks.find({'ctitle': t['ctitle'],\n",
+    "                                          'album_id': {'$ne': '5ju5Ouzan3QwXqQt1Tihbh' }}))) == 0))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 92,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "[{'_id': '3H7sv3Krffn15BufUuXzf3',\n",
+       "  'album': {'name': '1 (Remastered)'},\n",
+       "  'ctitle': 'hey jude'}]"
+      ]
+     },
+     "execution_count": 92,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "[t for t in tracks.find({}, ['album.name', 'ctitle']) if 'jude' in  t['ctitle']]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 93,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>_id</th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>4edArG2VehvJdwOZfYOxtK</td>\n",
+       "      <td>twist and shout</td>\n",
+       "      <td>Twist And Shout - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>150EAeMGWJRubuH8zyx7h8</td>\n",
+       "      <td>shes a woman</td>\n",
+       "      <td>She's A Woman - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>1fVeHYkyMxrjbjRAD9uWsZ</td>\n",
+       "      <td>dizzy miss lizzy</td>\n",
+       "      <td>Dizzy Miss Lizzy - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>0GRplBEB2FWCKutwMmS6nY</td>\n",
+       "      <td>ticket to ride</td>\n",
+       "      <td>Ticket To Ride - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>1eVymk74iroqhsZxm0Vy3g</td>\n",
+       "      <td>cant buy me love</td>\n",
+       "      <td>Can't Buy Me Love - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>2p5a9gu6NECVSvBtGSU1vm</td>\n",
+       "      <td>things we said today</td>\n",
+       "      <td>Things We Said Today - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>1HyLh5cctOnP186CBi8bhm</td>\n",
+       "      <td>roll over beethoven</td>\n",
+       "      <td>Roll Over Beethoven - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>7fZEWm7TAL2oZDyiYrrgnk</td>\n",
+       "      <td>boys</td>\n",
+       "      <td>Boys - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>21nhooOxso7CCoHPE73w4L</td>\n",
+       "      <td>a hard days night</td>\n",
+       "      <td>A Hard Day's Night - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>1alcPfZWUHh01l4Fnoo5Jt</td>\n",
+       "      <td>help</td>\n",
+       "      <td>Help! - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>24gUDXSQysdnTaRpbWtYlK</td>\n",
+       "      <td>all my loving</td>\n",
+       "      <td>All My Loving - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>2VmFFbXSJzYxzEJSAeI0lM</td>\n",
+       "      <td>she loves you</td>\n",
+       "      <td>She Loves You - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>6b8lhQ86u5MddlmXulslpD</td>\n",
+       "      <td>long tall sally</td>\n",
+       "      <td>Long Tall Sally - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>1oKfZ5MTCSrv07hsHqJ0JS</td>\n",
+       "      <td>you cant do that</td>\n",
+       "      <td>You Can't Do That - Live / Bonus Track</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>04gBqA2mubcTgFqL9Domlj</td>\n",
+       "      <td>i want to hold your hand</td>\n",
+       "      <td>I Want To Hold Your Hand - Live / Bonus Track</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>79QDgDoBbS7pCrOjIH7ByA</td>\n",
+       "      <td>everybodys trying to be my baby</td>\n",
+       "      <td>Everybody’s Trying To Be My Baby - Live / Bonu...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>1yV2I5c6efVSqSiuv9H2AD</td>\n",
+       "      <td>babys in black</td>\n",
+       "      <td>Baby's In Black - Live / Bonus Track</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                       _id                           ctitle  \\\n",
+       "0   4edArG2VehvJdwOZfYOxtK                  twist and shout   \n",
+       "1   150EAeMGWJRubuH8zyx7h8                     shes a woman   \n",
+       "2   1fVeHYkyMxrjbjRAD9uWsZ                 dizzy miss lizzy   \n",
+       "3   0GRplBEB2FWCKutwMmS6nY                   ticket to ride   \n",
+       "4   1eVymk74iroqhsZxm0Vy3g                 cant buy me love   \n",
+       "5   2p5a9gu6NECVSvBtGSU1vm             things we said today   \n",
+       "6   1HyLh5cctOnP186CBi8bhm              roll over beethoven   \n",
+       "7   7fZEWm7TAL2oZDyiYrrgnk                             boys   \n",
+       "8   21nhooOxso7CCoHPE73w4L                a hard days night   \n",
+       "9   1alcPfZWUHh01l4Fnoo5Jt                             help   \n",
+       "10  24gUDXSQysdnTaRpbWtYlK                    all my loving   \n",
+       "11  2VmFFbXSJzYxzEJSAeI0lM                    she loves you   \n",
+       "12  6b8lhQ86u5MddlmXulslpD                  long tall sally   \n",
+       "13  1oKfZ5MTCSrv07hsHqJ0JS                 you cant do that   \n",
+       "14  04gBqA2mubcTgFqL9Domlj         i want to hold your hand   \n",
+       "15  79QDgDoBbS7pCrOjIH7ByA  everybodys trying to be my baby   \n",
+       "16  1yV2I5c6efVSqSiuv9H2AD                   babys in black   \n",
+       "\n",
+       "                                                 name  \n",
+       "0                 Twist And Shout - Live / Remastered  \n",
+       "1                   She's A Woman - Live / Remastered  \n",
+       "2                Dizzy Miss Lizzy - Live / Remastered  \n",
+       "3                  Ticket To Ride - Live / Remastered  \n",
+       "4               Can't Buy Me Love - Live / Remastered  \n",
+       "5            Things We Said Today - Live / Remastered  \n",
+       "6             Roll Over Beethoven - Live / Remastered  \n",
+       "7                            Boys - Live / Remastered  \n",
+       "8              A Hard Day's Night - Live / Remastered  \n",
+       "9                           Help! - Live / Remastered  \n",
+       "10                  All My Loving - Live / Remastered  \n",
+       "11                  She Loves You - Live / Remastered  \n",
+       "12                Long Tall Sally - Live / Remastered  \n",
+       "13             You Can't Do That - Live / Bonus Track  \n",
+       "14      I Want To Hold Your Hand - Live / Bonus Track  \n",
+       "15  Everybody’s Trying To Be My Baby - Live / Bonu...  \n",
+       "16               Baby's In Black - Live / Bonus Track  "
+      ]
+     },
+     "execution_count": 93,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list(tracks.find({'album_id': '5XfJmldgWzrc1AIdbBaVZn'}, ['name', 'ctitle'])))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 94,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "<pymongo.results.UpdateResult at 0x7f976c0bb748>"
+      ]
+     },
+     "execution_count": 94,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "tracks.update_many({'album_id': '5XfJmldgWzrc1AIdbBaVZn'}, {'$set': {'ignore': True}})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 95,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>_id</th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>ignore</th>\n",
+       "      <th>name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>4edArG2VehvJdwOZfYOxtK</td>\n",
+       "      <td>twist and shout</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Twist And Shout - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>150EAeMGWJRubuH8zyx7h8</td>\n",
+       "      <td>shes a woman</td>\n",
+       "      <td>True</td>\n",
+       "      <td>She's A Woman - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>1fVeHYkyMxrjbjRAD9uWsZ</td>\n",
+       "      <td>dizzy miss lizzy</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Dizzy Miss Lizzy - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>0GRplBEB2FWCKutwMmS6nY</td>\n",
+       "      <td>ticket to ride</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Ticket To Ride - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>1eVymk74iroqhsZxm0Vy3g</td>\n",
+       "      <td>cant buy me love</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Can't Buy Me Love - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>2p5a9gu6NECVSvBtGSU1vm</td>\n",
+       "      <td>things we said today</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Things We Said Today - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>1HyLh5cctOnP186CBi8bhm</td>\n",
+       "      <td>roll over beethoven</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Roll Over Beethoven - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>7fZEWm7TAL2oZDyiYrrgnk</td>\n",
+       "      <td>boys</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Boys - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>21nhooOxso7CCoHPE73w4L</td>\n",
+       "      <td>a hard days night</td>\n",
+       "      <td>True</td>\n",
+       "      <td>A Hard Day's Night - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>1alcPfZWUHh01l4Fnoo5Jt</td>\n",
+       "      <td>help</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Help! - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>24gUDXSQysdnTaRpbWtYlK</td>\n",
+       "      <td>all my loving</td>\n",
+       "      <td>True</td>\n",
+       "      <td>All My Loving - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>2VmFFbXSJzYxzEJSAeI0lM</td>\n",
+       "      <td>she loves you</td>\n",
+       "      <td>True</td>\n",
+       "      <td>She Loves You - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>6b8lhQ86u5MddlmXulslpD</td>\n",
+       "      <td>long tall sally</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Long Tall Sally - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>1oKfZ5MTCSrv07hsHqJ0JS</td>\n",
+       "      <td>you cant do that</td>\n",
+       "      <td>True</td>\n",
+       "      <td>You Can't Do That - Live / Bonus Track</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>04gBqA2mubcTgFqL9Domlj</td>\n",
+       "      <td>i want to hold your hand</td>\n",
+       "      <td>True</td>\n",
+       "      <td>I Want To Hold Your Hand - Live / Bonus Track</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>79QDgDoBbS7pCrOjIH7ByA</td>\n",
+       "      <td>everybodys trying to be my baby</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Everybody’s Trying To Be My Baby - Live / Bonu...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>1yV2I5c6efVSqSiuv9H2AD</td>\n",
+       "      <td>babys in black</td>\n",
+       "      <td>True</td>\n",
+       "      <td>Baby's In Black - Live / Bonus Track</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                       _id                           ctitle  ignore  \\\n",
+       "0   4edArG2VehvJdwOZfYOxtK                  twist and shout    True   \n",
+       "1   150EAeMGWJRubuH8zyx7h8                     shes a woman    True   \n",
+       "2   1fVeHYkyMxrjbjRAD9uWsZ                 dizzy miss lizzy    True   \n",
+       "3   0GRplBEB2FWCKutwMmS6nY                   ticket to ride    True   \n",
+       "4   1eVymk74iroqhsZxm0Vy3g                 cant buy me love    True   \n",
+       "5   2p5a9gu6NECVSvBtGSU1vm             things we said today    True   \n",
+       "6   1HyLh5cctOnP186CBi8bhm              roll over beethoven    True   \n",
+       "7   7fZEWm7TAL2oZDyiYrrgnk                             boys    True   \n",
+       "8   21nhooOxso7CCoHPE73w4L                a hard days night    True   \n",
+       "9   1alcPfZWUHh01l4Fnoo5Jt                             help    True   \n",
+       "10  24gUDXSQysdnTaRpbWtYlK                    all my loving    True   \n",
+       "11  2VmFFbXSJzYxzEJSAeI0lM                    she loves you    True   \n",
+       "12  6b8lhQ86u5MddlmXulslpD                  long tall sally    True   \n",
+       "13  1oKfZ5MTCSrv07hsHqJ0JS                 you cant do that    True   \n",
+       "14  04gBqA2mubcTgFqL9Domlj         i want to hold your hand    True   \n",
+       "15  79QDgDoBbS7pCrOjIH7ByA  everybodys trying to be my baby    True   \n",
+       "16  1yV2I5c6efVSqSiuv9H2AD                   babys in black    True   \n",
+       "\n",
+       "                                                 name  \n",
+       "0                 Twist And Shout - Live / Remastered  \n",
+       "1                   She's A Woman - Live / Remastered  \n",
+       "2                Dizzy Miss Lizzy - Live / Remastered  \n",
+       "3                  Ticket To Ride - Live / Remastered  \n",
+       "4               Can't Buy Me Love - Live / Remastered  \n",
+       "5            Things We Said Today - Live / Remastered  \n",
+       "6             Roll Over Beethoven - Live / Remastered  \n",
+       "7                            Boys - Live / Remastered  \n",
+       "8              A Hard Day's Night - Live / Remastered  \n",
+       "9                           Help! - Live / Remastered  \n",
+       "10                  All My Loving - Live / Remastered  \n",
+       "11                  She Loves You - Live / Remastered  \n",
+       "12                Long Tall Sally - Live / Remastered  \n",
+       "13             You Can't Do That - Live / Bonus Track  \n",
+       "14      I Want To Hold Your Hand - Live / Bonus Track  \n",
+       "15  Everybody’s Trying To Be My Baby - Live / Bonu...  \n",
+       "16               Baby's In Black - Live / Bonus Track  "
       ]
      },
-     "execution_count": 37,
+     "execution_count": 95,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "[g for g in genius_only\n",
-    " if 'take' not in g[0]\n",
-    " if 'medley' not in g[0]\n",
-    " if 'intro' not in g[0]\n",
-    " if 'live' not in g[0]\n",
-    "]"
+    "pd.DataFrame(list(tracks.find({'album_id': '5XfJmldgWzrc1AIdbBaVZn'}, ['name', 'ctitle', 'ignore'])))"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 38,
+   "execution_count": 96,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>t_name</th>\n",
+       "      <th>tt_alb</th>\n",
+       "      <th>tt_name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>twist and shout</td>\n",
+       "      <td>Twist And Shout - Live / Remastered</td>\n",
+       "      <td>Please Please Me (Remastered)</td>\n",
+       "      <td>Twist And Shout - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>dizzy miss lizzy</td>\n",
+       "      <td>Dizzy Miss Lizzy - Live / Remastered</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Dizzy Miss Lizzy - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>ticket to ride</td>\n",
+       "      <td>Ticket To Ride - Live / Remastered</td>\n",
+       "      <td>1 (Remastered)</td>\n",
+       "      <td>Ticket To Ride - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>ticket to ride</td>\n",
+       "      <td>Ticket To Ride - Live / Remastered</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Ticket To Ride - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>cant buy me love</td>\n",
+       "      <td>Can't Buy Me Love - Live / Remastered</td>\n",
+       "      <td>1 (Remastered)</td>\n",
+       "      <td>Can't Buy Me Love - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>cant buy me love</td>\n",
+       "      <td>Can't Buy Me Love - Live / Remastered</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>Can't Buy Me Love - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>things we said today</td>\n",
+       "      <td>Things We Said Today - Live / Remastered</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>Things We Said Today - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>roll over beethoven</td>\n",
+       "      <td>Roll Over Beethoven - Live / Remastered</td>\n",
+       "      <td>With The Beatles (Remastered)</td>\n",
+       "      <td>Roll Over Beethoven - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>roll over beethoven</td>\n",
+       "      <td>Roll Over Beethoven - Live / Remastered</td>\n",
+       "      <td>On Air (Deluxe)</td>\n",
+       "      <td>Roll Over Beethoven - Saturday Club / 1963</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>boys</td>\n",
+       "      <td>Boys - Live / Remastered</td>\n",
+       "      <td>Please Please Me (Remastered)</td>\n",
+       "      <td>Boys - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>a hard days night</td>\n",
+       "      <td>A Hard Day's Night - Live / Remastered</td>\n",
+       "      <td>1 (Remastered)</td>\n",
+       "      <td>A Hard Day's Night - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>a hard days night</td>\n",
+       "      <td>A Hard Day's Night - Live / Remastered</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>A Hard Day's Night - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>help</td>\n",
+       "      <td>Help! - Live / Remastered</td>\n",
+       "      <td>1 (Remastered)</td>\n",
+       "      <td>Help! - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>help</td>\n",
+       "      <td>Help! - Live / Remastered</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Help! - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>all my loving</td>\n",
+       "      <td>All My Loving - Live / Remastered</td>\n",
+       "      <td>With The Beatles (Remastered)</td>\n",
+       "      <td>All My Loving - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>she loves you</td>\n",
+       "      <td>She Loves You - Live / Remastered</td>\n",
+       "      <td>1 (Remastered)</td>\n",
+       "      <td>She Loves You - Mono / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>you cant do that</td>\n",
+       "      <td>You Can't Do That - Live / Bonus Track</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>You Can't Do That - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>17</th>\n",
+       "      <td>i want to hold your hand</td>\n",
+       "      <td>I Want To Hold Your Hand - Live / Bonus Track</td>\n",
+       "      <td>1 (Remastered)</td>\n",
+       "      <td>I Want To Hold Your Hand - Remastered 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>18</th>\n",
+       "      <td>everybodys trying to be my baby</td>\n",
+       "      <td>Everybody’s Trying To Be My Baby - Live / Bonu...</td>\n",
+       "      <td>Beatles For Sale (Remastered)</td>\n",
+       "      <td>Everybody's Trying To Be My Baby - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>19</th>\n",
+       "      <td>babys in black</td>\n",
+       "      <td>Baby's In Black - Live / Bonus Track</td>\n",
+       "      <td>Beatles For Sale (Remastered)</td>\n",
+       "      <td>Baby's In Black - Remastered</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                             ctitle  \\\n",
+       "0                   twist and shout   \n",
+       "1                  dizzy miss lizzy   \n",
+       "2                    ticket to ride   \n",
+       "3                    ticket to ride   \n",
+       "4                  cant buy me love   \n",
+       "5                  cant buy me love   \n",
+       "6              things we said today   \n",
+       "7               roll over beethoven   \n",
+       "8               roll over beethoven   \n",
+       "9                              boys   \n",
+       "10                a hard days night   \n",
+       "11                a hard days night   \n",
+       "12                             help   \n",
+       "13                             help   \n",
+       "14                    all my loving   \n",
+       "15                    she loves you   \n",
+       "16                 you cant do that   \n",
+       "17         i want to hold your hand   \n",
+       "18  everybodys trying to be my baby   \n",
+       "19                   babys in black   \n",
+       "\n",
+       "                                               t_name  \\\n",
+       "0                 Twist And Shout - Live / Remastered   \n",
+       "1                Dizzy Miss Lizzy - Live / Remastered   \n",
+       "2                  Ticket To Ride - Live / Remastered   \n",
+       "3                  Ticket To Ride - Live / Remastered   \n",
+       "4               Can't Buy Me Love - Live / Remastered   \n",
+       "5               Can't Buy Me Love - Live / Remastered   \n",
+       "6            Things We Said Today - Live / Remastered   \n",
+       "7             Roll Over Beethoven - Live / Remastered   \n",
+       "8             Roll Over Beethoven - Live / Remastered   \n",
+       "9                            Boys - Live / Remastered   \n",
+       "10             A Hard Day's Night - Live / Remastered   \n",
+       "11             A Hard Day's Night - Live / Remastered   \n",
+       "12                          Help! - Live / Remastered   \n",
+       "13                          Help! - Live / Remastered   \n",
+       "14                  All My Loving - Live / Remastered   \n",
+       "15                  She Loves You - Live / Remastered   \n",
+       "16             You Can't Do That - Live / Bonus Track   \n",
+       "17      I Want To Hold Your Hand - Live / Bonus Track   \n",
+       "18  Everybody’s Trying To Be My Baby - Live / Bonu...   \n",
+       "19               Baby's In Black - Live / Bonus Track   \n",
+       "\n",
+       "                             tt_alb  \\\n",
+       "0     Please Please Me (Remastered)   \n",
+       "1                Help! (Remastered)   \n",
+       "2                    1 (Remastered)   \n",
+       "3                Help! (Remastered)   \n",
+       "4                    1 (Remastered)   \n",
+       "5   A Hard Day's Night (Remastered)   \n",
+       "6   A Hard Day's Night (Remastered)   \n",
+       "7     With The Beatles (Remastered)   \n",
+       "8                   On Air (Deluxe)   \n",
+       "9     Please Please Me (Remastered)   \n",
+       "10                   1 (Remastered)   \n",
+       "11  A Hard Day's Night (Remastered)   \n",
+       "12                   1 (Remastered)   \n",
+       "13               Help! (Remastered)   \n",
+       "14    With The Beatles (Remastered)   \n",
+       "15                   1 (Remastered)   \n",
+       "16  A Hard Day's Night (Remastered)   \n",
+       "17                   1 (Remastered)   \n",
+       "18    Beatles For Sale (Remastered)   \n",
+       "19    Beatles For Sale (Remastered)   \n",
+       "\n",
+       "                                          tt_name  \n",
+       "0               Twist And Shout - Remastered 2009  \n",
+       "1                   Dizzy Miss Lizzy - Remastered  \n",
+       "2                Ticket To Ride - Remastered 2015  \n",
+       "3                     Ticket To Ride - Remastered  \n",
+       "4             Can't Buy Me Love - Remastered 2015  \n",
+       "5                  Can't Buy Me Love - Remastered  \n",
+       "6               Things We Said Today - Remastered  \n",
+       "7                Roll Over Beethoven - Remastered  \n",
+       "8      Roll Over Beethoven - Saturday Club / 1963  \n",
+       "9                          Boys - Remastered 2009  \n",
+       "10           A Hard Day's Night - Remastered 2015  \n",
+       "11                A Hard Day's Night - Remastered  \n",
+       "12                        Help! - Remastered 2015  \n",
+       "13                             Help! - Remastered  \n",
+       "14                     All My Loving - Remastered  \n",
+       "15              She Loves You - Mono / Remastered  \n",
+       "16                 You Can't Do That - Remastered  \n",
+       "17     I Want To Hold Your Hand - Remastered 2015  \n",
+       "18  Everybody's Trying To Be My Baby - Remastered  \n",
+       "19                   Baby's In Black - Remastered  "
+      ]
+     },
+     "execution_count": 96,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list({'ctitle': t['ctitle'], 't_name': t['name'],\n",
+    "                  'tt_name': tt['name'], 'tt_alb': tt['album']['name']}\n",
+    "                  for t in tracks.find({'album_id': '5XfJmldgWzrc1AIdbBaVZn'}, ['name', 'ctitle'])\n",
+    "                  for tt in tracks.find({'ctitle': t['ctitle'], \n",
+    "                                         'album_id': {'$ne': '5XfJmldgWzrc1AIdbBaVZn'}}, \n",
+    "                                        ['name', 'ctitle', 'album.name', 'album_id'])))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 97,
    "metadata": {},
    "outputs": [
     {
      "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>t_name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>shes a woman</td>\n",
+       "      <td>She's A Woman - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>long tall sally</td>\n",
+       "      <td>Long Tall Sally - Live / Remastered</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
       "text/plain": [
-       "[('revolution', 'The Beatles'), ('revolution i', 'The Beatles')]"
+       "            ctitle                               t_name\n",
+       "0     shes a woman    She's A Woman - Live / Remastered\n",
+       "1  long tall sally  Long Tall Sally - Live / Remastered"
       ]
      },
-     "execution_count": 38,
+     "execution_count": 97,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "[t for t in genius_only if 'revolution' in t[0]]"
+    "pd.DataFrame(list({'ctitle': t['ctitle'], 't_name': t['name']}\n",
+    "                  for t in tracks.find({'album_id': '5XfJmldgWzrc1AIdbBaVZn'}, ['name', 'ctitle'])\n",
+    "                  if len(list(tracks.find({'ctitle': t['ctitle'],\n",
+    "                                          'album_id': {'$ne': '5XfJmldgWzrc1AIdbBaVZn' }}))) == 0))"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 39,
+   "execution_count": 98,
    "metadata": {},
    "outputs": [
     {
      "data": {
       "text/plain": [
-       "[('revolution 1', 'The Beatles')]"
+       "dict_keys(['artists', 'id', 'images', 'href', 'album_type', 'available_markets', 'uri', 'type', 'name', 'external_urls'])"
       ]
      },
-     "execution_count": 39,
+     "execution_count": 98,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "[t for t in spotify_only if 'revolution' in t[0]]"
+    "tracks.find_one()['album'].keys()"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 40,
+   "execution_count": 99,
    "metadata": {},
    "outputs": [
     {
      "data": {
-      "text/plain": [
-       "([], [('jumping jack flash', 'The Rolling Stones')])"
-      ]
-     },
-     "execution_count": 40,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "([t for t in in_both if 'jack flash' in t], [t for t in spotify_only if 'jack flash' in t[0]])"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 42,
-   "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "i might be wrong live [('i might be wrong live', 'Radiohead')] []\n",
-      "losing my touch [] [('losing my touch', 'The Rolling Stones')]\n",
-      "burning bush [] [('burning bush', 'Radiohead')]\n",
-      "just a rumour [] [('just a rumour', 'The Beatles')]\n",
-      "eight days a week [('eight days a week', 'The Beatles'), ('eight days a week', 'The Beatles')] [('eight days a week', 'The Beatles')]\n",
-      "little by little caribou rmx [('little by little caribou rmx', 'Radiohead')] []\n",
-      "yesterdays papers [] [('yesterdays papers', 'The Rolling Stones')]\n",
-      "con le mie lacrime [] [('con le mie lacrime', 'The Rolling Stones')]\n",
-      "come on [] [('come on', 'The Rolling Stones')]\n",
-      "fortune teller [] [('fortune teller', 'The Rolling Stones')]\n",
-      "cinnamon girl [] [('cinnamon girl', 'Radiohead')]\n",
-      "lewis mistreated [] [('lewis mistreated', 'Radiohead')]\n",
-      "bright lights big city [] [('bright lights big city', 'The Rolling Stones')]\n",
-      "johnny b goode [] [('johnny b goode', 'The Beatles')]\n",
-      "give it up [] [('give it up', 'On A Friday')]\n",
-      "crinsk dee night [] [('crinsk dee night', 'The Beatles')]\n",
-      "hoochie coochie man [] [('hoochie coochie man', 'The Rolling Stones')]\n",
-      "union city blue [] [('union city blue', 'Radiohead')]\n",
-      "yesterday [('yesterday', 'The Beatles'), ('yesterday', 'The Beatles')] [('yesterday', 'Yusdrew'), ('yesterday', 'The Beatles')]\n",
-      "had it with you [('had it with you', 'The Rolling Stones'), ('had it with you', 'The Rolling Stones')] [('had it with you', 'The Rolling Stones')]\n",
-      "gnik nus [] [('gnik nus', 'The Beatles')]\n",
-      "bullet proof i wish i was [('bullet proof i wish i was', 'Radiohead')] []\n",
-      "child of nature [] [('child of nature', 'The Beatles')]\n",
-      "dont stop [] [('dont stop', 'The Rolling Stones')]\n",
-      "kansas city heyheyheyhey [('kansas city heyheyheyhey', 'The Beatles')] []\n",
-      "dance [] [('dance', 'The Rolling Stones')]\n",
-      "besame mucho [] [('besame mucho', 'The Beatles')]\n",
-      "you got the silver [('you got the silver', 'The Rolling Stones'), ('you got the silver', 'The Rolling Stones')] [('you got the silver', 'The Rolling Stones')]\n",
-      "march of the meanies [('march of the meanies', 'George Martin')] []\n",
-      "stupid girl [] [('stupid girl', 'The Rolling Stones')]\n",
-      "child of the moon [] [('child of the moon', 'The Rolling Stones')]\n",
-      "stoned [] [('stoned', 'The Rolling Stones')]\n",
-      "good time women [] [('good time women', 'The Rolling Stones')]\n",
-      "you can make it if you try [] [('you can make it if you try', 'The Rolling Stones')]\n",
-      "christmas time is here again [] [('christmas time is here again', 'The Beatles')]\n",
-      "everyone needs someone to hate [] [('everyone needs someone to hate', 'On A Friday')]\n",
-      "its not easy [] [('its not easy', 'The Rolling Stones')]\n",
-      "worried about you [('worried about you', 'The Rolling Stones'), ('worried about you', 'Bob Clearmountain')] [('worried about you', 'The Rolling Stones')]\n",
-      "i promise [] [('i promise', 'Radiohead')]\n",
-      "charlie watts introduction of marianne faithfull [] [('charlie watts introduction of marianne faithfull', 'The Rolling Stones')]\n",
-      "out of time [] [('out of time', 'The Rolling Stones'), ('out of time', 'The Rolling Stones')]\n",
-      "play with fire [] [('play with fire', 'The Rolling Stones')]\n",
-      "the storm [] [('the storm', 'The Rolling Stones')]\n",
-      "hiheel sneakers [] [('hiheel sneakers', 'The Rolling Stones')]\n",
-      "ill wind [] [('ill wind', 'Radiohead')]\n",
-      "walking through the sleepy city [] [('walking through the sleepy city', 'The Rolling Stones')]\n",
-      "maquiladora [] [('maquiladora', 'Radiohead')]\n",
-      "when the whip comes down [('when the whip comes down', 'The Rolling Stones'), ('when the whip comes down', 'The Rolling Stones'), ('when the whip comes down', 'The Rolling Stones')] [('when the whip comes down', 'The Rolling Stones')]\n",
-      "worrywort [] [('worrywort', 'Radiohead')]\n",
-      "a moon shaped pool tracklist album cover [] [('a moon shaped pool tracklist album cover', 'Radiohead')]\n",
-      "ill be on my way [] [('ill be on my way', 'The Beatles')]\n",
-      "sure to fall in love with you [] [('sure to fall in love with you', 'The Beatles')]\n",
-      "i wanna be your man [('i wanna be your man', 'The Beatles')] [('i wanna be your man', 'The Beatles'), ('i wanna be your man', 'The Rolling Stones')]\n",
-      "glad all over [] [('glad all over', 'The Beatles')]\n",
-      "goin home [] [('goin home', 'The Rolling Stones')]\n",
-      "i am waiting [] [('i am waiting', 'The Rolling Stones')]\n",
-      "high and dry [('high and dry', 'Radiohead')] [('high and dry', 'Radiohead'), ('high and dry', 'The Rolling Stones')]\n",
-      "highway child [] [('highway child', 'The Rolling Stones')]\n",
-      "sgt peppers lonely hearts club band band documentary multimedia [] [('sgt peppers lonely hearts club band band documentary multimedia', 'The Beatles')]\n",
-      "gangsters maul [] [('gangsters maul', 'The Rolling Stones')]\n",
-      "ooh my arms speech [] [('ooh my arms speech', 'The Beatles')]\n",
-      "from us to you [] [('from us to you', 'The Beatles')]\n",
-      "why [] [('why', 'The Beatles')]\n",
-      "yellow submarine [('yellow submarine', 'The Beatles'), ('yellow submarine', 'The Beatles'), ('yellow submarine', 'The Beatles')] [('yellow submarine', 'The Beatles')]\n",
-      "im gonna drive [] [('im gonna drive', 'The Rolling Stones')]\n",
-      "one hit to the body [('one hit to the body', 'The Rolling Stones'), ('one hit to the body', 'The Rolling Stones')] [('one hit to the body', 'The Rolling Stones')]\n",
-      "nobodys child [] [('nobodys child', 'The Beatles')]\n",
-      "sweet little sixteen [] [('sweet little sixteen', 'The Beatles'), ('sweet little sixteen', 'The Rolling Stones')]\n",
-      "you better move on [] [('you better move on', 'The Rolling Stones')]\n",
-      "paranoid android [('paranoid android', 'Radiohead')] [('paranoid android', 'Sia'), ('paranoid android', 'Radiohead')]\n",
-      "keep your hands off my baby [] [('keep your hands off my baby', 'The Beatles')]\n",
-      "eleanor rigbyjulia transition [] [('eleanor rigbyjulia transition', 'The Beatles')]\n",
-      "dear wack [] [('dear wack', 'The Beatles')]\n",
-      "fingerprint file [] [('fingerprint file', 'The Rolling Stones')]\n",
-      "everything in its right place live in france [('everything in its right place live in france', 'Radiohead')] []\n",
-      "mailman bring me no more blues [] [('mailman bring me no more blues', 'The Beatles')]\n",
-      "till the next goodbye [] [('till the next goodbye', 'The Rolling Stones')]\n",
-      "another beatles christmas record [] [('another beatles christmas record', 'The Beatles')]\n",
-      "harlem shuffle [('harlem shuffle', 'The Rolling Stones'), ('harlem shuffle', 'The Rolling Stones')] [('harlem shuffle', 'The Rolling Stones')]\n",
-      "that means a lot [] [('that means a lot', 'The Beatles')]\n",
-      "tell me baby how many times [] [('tell me baby how many times', 'The Rolling Stones')]\n",
-      "like a rolling stone [('like a rolling stone', 'The Rolling Stones'), ('like a rolling stone', 'The Rolling Stones')] [('like a rolling stone', 'The Rolling Stones')]\n",
-      "you know what to do [] [('you know what to do', 'The Beatles')]\n",
-      "too rude [('too rude', 'The Rolling Stones'), ('too rude', 'The Rolling Stones')] [('too rude', 'The Rolling Stones')]\n",
-      "drive my carthe wordwhat youre doing [] [('drive my carthe wordwhat youre doing', 'The Beatles')]\n",
-      "everybody lies through their teeth [] [('everybody lies through their teeth', 'On A Friday')]\n",
-      "ladytron [] [('ladytron', 'Radiohead')]\n",
-      "open pick [] [('open pick', 'Radiohead')]\n",
-      "i want none of this [] [('i want none of this', 'Radiohead')]\n",
-      "whos been sleeping here [] [('whos been sleeping here', 'The Rolling Stones')]\n",
-      "being for the benefit of mr kitei want you shes so heavyhelter skelter [] [('being for the benefit of mr kitei want you shes so heavyhelter skelter', 'The Beatles')]\n",
-      "james bond theme [] [('james bond theme', 'The Beatles')]\n",
-      "what to do [] [('what to do', 'The Rolling Stones')]\n",
-      "ruby baby [] [('ruby baby', 'The Beatles')]\n",
-      "still a fool [] [('still a fool', 'The Rolling Stones')]\n",
-      "pedro the fisherman [] [('pedro the fisherman', 'The Beatles')]\n",
-      "watching rainbows [] [('watching rainbows', 'The Beatles')]\n",
-      "if you love me baby [] [('if you love me baby', 'The Beatles')]\n",
-      "if you cant rock me [] [('if you cant rock me', 'The Rolling Stones')]\n",
-      "bitches talkin [] [('bitches talkin', 'Frank Ocean')]\n",
-      "fog [] [('fog', 'Radiohead')]\n",
-      "strawberry fields forever take 7 edit piece [] [('strawberry fields forever take 7 edit piece', 'The Beatles')]\n",
-      "fanny mae [] [('fanny mae', 'The Rolling Stones')]\n",
-      "band introductions [('band introductions', 'The Rolling Stones')] []\n",
-      "nothing touches me [] [('nothing touches me', 'Radiohead')]\n",
-      "the national anthem live in france [('the national anthem live in france', 'Radiohead')] []\n",
-      "bloom harmonic 313 rmx [('bloom harmonic 313 rmx', 'Radiohead')] []\n",
-      "hey negrita [] [('hey negrita', 'The Rolling Stones')]\n",
-      "give up the ghost thriller houseghost remix [('give up the ghost thriller houseghost remix', 'Radiohead')] []\n",
-      "if you need me [] [('if you need me', 'The Rolling Stones')]\n"
-     ]
-    },
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "the daily mail [] [('the daily mail', 'Radiohead')]\n",
-      "try a little harder [] [('try a little harder', 'The Rolling Stones')]\n",
-      "bishops robes [] [('bishops robes', 'Radiohead')]\n",
-      "casino boogie [] [('casino boogie', 'The Rolling Stones')]\n",
-      "fool to cry [] [('fool to cry', 'The Rolling Stones')]\n",
-      "outro [('outro', 'Jimi Hendrix')] []\n",
-      "i will [('i will', 'The Beatles'), ('i will', 'Radiohead')] [('i will', 'Radiohead'), ('i will', 'The Beatles')]\n",
-      "the fool on the hill demo [] [('the fool on the hill demo', 'The Beatles')]\n",
-      "yes it is [] [('yes it is', 'The Beatles')]\n",
-      "the butcher [] [('the butcher', 'Radiohead')]\n",
-      "blood red wine [] [('blood red wine', 'The Rolling Stones')]\n",
-      "youll be mine [] [('youll be mine', 'The Beatles')]\n",
-      "luxury [] [('luxury', 'The Rolling Stones')]\n",
-      "tell me youre coming back [] [('tell me youre coming back', 'The Rolling Stones')]\n",
-      "paint it black [('paint it black', 'The Rolling Stones'), ('paint it black', 'The Rolling Stones'), ('paint it black', 'The Rolling Stones'), ('paint it black', 'The Rolling Stones')] [('paint it black', 'The Rolling Stones')]\n",
-      "start me up [('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones'), ('start me up', 'The Rolling Stones')] [('start me up', 'The Rolling Stones')]\n",
-      "dead flowers [('dead flowers', 'The Rolling Stones'), ('dead flowers', 'The Rolling Stones')] [('dead flowers', 'The Rolling Stones')]\n",
-      "stuck out all alone [] [('stuck out all alone', 'The Rolling Stones')]\n",
-      "love me do [('love me do', 'The Beatles'), ('love me do', 'The Beatles')] [('love me do', 'The Beatles'), ('love me do', 'The Beatles')]\n",
-      "can i get a witness [] [('can i get a witness', 'The Rolling Stones')]\n",
-      "have you seen your mother baby standing in the shadow [] [('have you seen your mother baby standing in the shadow', 'The Rolling Stones')]\n",
-      "cherry oh baby [] [('cherry oh baby', 'The Rolling Stones')]\n",
-      "hear me lord harrison [] [('hear me lord harrison', 'The Beatles')]\n",
-      "crushed pearl [] [('crushed pearl', 'The Rolling Stones')]\n",
-      "criss cross man [] [('criss cross man', 'The Rolling Stones')]\n",
-      "citadel [] [('citadel', 'The Rolling Stones')]\n",
-      "shattered [('shattered', 'The Rolling Stones'), ('shattered', 'The Rolling Stones'), ('shattered', 'The Rolling Stones'), ('shattered', 'The Rolling Stones')] [('shattered', 'The Rolling Stones')]\n",
-      "wake up in the morning [] [('wake up in the morning', 'The Rolling Stones')]\n",
-      "lets dance [] [('lets dance', 'The Beatles')]\n",
-      "surprise surprise [] [('surprise surprise', 'The Rolling Stones')]\n",
-      "have a banana speech [] [('have a banana speech', 'The Beatles')]\n",
-      "ticket to ride [('ticket to ride', 'The Beatles'), ('ticket to ride', 'The Beatles'), ('ticket to ride', 'The Beatles')] [('ticket to ride', 'The Beatles')]\n",
-      "all my loving [('all my loving', 'The Beatles'), ('all my loving', 'The Beatles')] [('all my loving', 'The Beatles')]\n",
-      "goodbye girl [] [('goodbye girl', 'The Rolling Stones')]\n",
-      "turd on the run [] [('turd on the run', 'The Rolling Stones')]\n",
-      "codex illum sphere [('codex illum sphere', 'Radiohead')] []\n",
-      "the amazing sounds of orgy [] [('the amazing sounds of orgy', 'Radiohead')]\n",
-      "a shot of rhythm and blues [] [('a shot of rhythm and blues', 'The Beatles')]\n",
-      "blue turns to grey [] [('blue turns to grey', 'The Rolling Stones')]\n",
-      "faraway eyes [('faraway eyes', 'The Rolling Stones'), ('faraway eyes', 'The Rolling Stones')] []\n",
-      "dandelion [] [('dandelion', 'The Rolling Stones')]\n",
-      "down in the bottom [] [('down in the bottom', 'The Rolling Stones')]\n",
-      "transatlantic drawl [] [('transatlantic drawl', 'Radiohead')]\n",
-      "dollars cents [('dollars cents', 'Radiohead')] []\n",
-      "i got to find my baby [] [('i got to find my baby', 'The Beatles')]\n",
-      "mantua [] [('mantua', 'Radiohead')]\n",
-      "being for the benefit of mr kite take 7 [] [('being for the benefit of mr kite take 7', 'The Beatles')]\n",
-      "get back [('get back', 'Billy Preston'), ('get back', 'The Beatles')] [('get back', 'The Beatles')]\n",
-      "all things must pass [] [('all things must pass', 'The Beatles')]\n",
-      "time is on my side [('time is on my side', 'The Rolling Stones'), ('time is on my side', 'The Rolling Stones')] [('time is on my side', 'The Rolling Stones')]\n",
-      "slow down [] [('slow down', 'The Beatles')]\n",
-      "crackin up [] [('crackin up', 'The Rolling Stones')]\n",
-      "i just want to see his face [] [('i just want to see his face', 'The Rolling Stones')]\n",
-      "down home girl [] [('down home girl', 'The Rolling Stones')]\n",
-      "dont ever change [] [('dont ever change', 'The Beatles')]\n",
-      "all together on the wireless machine [] [('all together on the wireless machine', 'The Beatles')]\n",
-      "lift [] [('lift', 'Radiohead')]\n",
-      "glass onion love remix [] [('glass onion love remix', 'The Beatles')]\n",
-      "martin scorsese intro [('martin scorsese intro', 'The Rolling Stones')] []\n",
-      "good times bad times [] [('good times bad times', 'The Rolling Stones')]\n",
-      "you cant always get what you want [('you cant always get what you want', 'The Rolling Stones'), ('you cant always get what you want', 'The Rolling Stones'), ('you cant always get what you want', 'The Rolling Stones')] [('you cant always get what you want', 'The Rolling Stones')]\n",
-      "2 2 5 live at earls court [('2 2 5 live at earls court', 'Radiohead')] []\n",
-      "separator four tet rmx [('separator four tet rmx', 'Radiohead')] []\n",
-      "all down the line [('all down the line', 'The Rolling Stones'), ('all down the line', 'The Rolling Stones')] [('all down the line', 'The Rolling Stones')]\n",
-      "baby whats wrong [] [('baby whats wrong', 'The Rolling Stones')]\n",
-      "beautiful dreamer [] [('beautiful dreamer', 'The Beatles')]\n",
-      "reelin and rockin [] [('reelin and rockin', 'The Rolling Stones')]\n",
-      "looking tired [] [('looking tired', 'The Rolling Stones')]\n",
-      "matchbox [] [('matchbox', 'The Beatles')]\n",
-      "september in the rain [] [('september in the rain', 'The Beatles')]\n",
-      "hound dog [] [('hound dog', 'The Rolling Stones')]\n",
-      "street fighting man [('street fighting man', 'The Rolling Stones'), ('street fighting man', 'The Rolling Stones'), ('street fighting man', 'The Rolling Stones')] [('street fighting man', 'The Rolling Stones')]\n",
-      "downtown suzie [] [('downtown suzie', 'The Rolling Stones')]\n",
-      "lend me your comb [] [('lend me your comb', 'The Beatles')]\n",
-      "my bonnie english intro [] [('my bonnie english intro', 'The Beatles')]\n",
-      "sing a song for you [] [('sing a song for you', 'Radiohead')]\n",
-      "staircase [] [('staircase', 'Radiohead')]\n",
-      "across the universe wildlife version [] [('across the universe wildlife version', 'The Beatles')]\n",
-      "little ta [('little ta', 'The Rolling Stones'), ('little ta', 'The Rolling Stones')] []\n",
-      "in another land [] [('in another land', 'The Rolling Stones')]\n",
-      "the beatles 1968 christmas record [] [('the beatles 1968 christmas record', 'The Beatles')]\n",
-      "lady jane [] [('lady jane', 'The Rolling Stones')]\n",
-      "stray cat blues [] [('stray cat blues', 'The Rolling Stones')]\n",
-      "bad to me [] [('bad to me', 'The Beatles')]\n",
-      "soul survivor [] [('soul survivor', 'The Rolling Stones')]\n",
-      "keith richards introduction of the who [] [('keith richards introduction of the who', 'The Rolling Stones')]\n",
-      "bloom blawan rmx [('bloom blawan rmx', 'Radiohead')] []\n",
-      "love [] [('love', 'The Beatles')]\n",
-      "dont let me down [] [('dont let me down', 'The Beatles')]\n",
-      "melatonin [] [('melatonin', 'Radiohead')]\n",
-      "the harder they come [] [('the harder they come', 'The Rolling Stones')]\n",
-      "someone else [] [('someone else', 'On A Friday')]\n",
-      "pearly [] [('pearly', 'Radiohead')]\n",
-      "no expectations [] [('no expectations', 'The Rolling Stones')]\n",
-      "dont look back [] [('dont look back', 'The Rolling Stones')]\n",
-      "lull [] [('lull', 'Radiohead')]\n",
-      "million dollar question [] [('million dollar question', 'Radiohead')]\n",
-      "gomper [] [('gomper', 'The Rolling Stones')]\n",
-      "a picture of you [] [('a picture of you', 'The Beatles')]\n",
-      "sympathy for the devil fatboy slim remix [] [('sympathy for the devil fatboy slim remix', 'The Rolling Stones')]\n",
-      "revolution [] [('revolution', 'The Beatles')]\n",
-      "what a shame [] [('what a shame', 'The Rolling Stones')]\n",
-      "coming down again [] [('coming down again', 'The Rolling Stones')]\n",
-      "fasttrack [] [('fasttrack', 'Radiohead')]\n",
-      "cuttooth [] [('cuttooth', 'Radiohead')]\n",
-      "morning bell live in oxford [('morning bell live in oxford', 'Radiohead')] []\n",
-      "heavys pizza [] [('heavys pizza', 'Dallas Smart')]\n",
-      "i forgot to remember to forget [] [('i forgot to remember to forget', 'The Beatles')]\n",
-      "set fire to that lot [] [('set fire to that lot', 'The Beatles')]\n"
-     ]
-    },
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "good times [] [('good times', 'The Rolling Stones')]\n",
-      "meeting in the aisle [] [('meeting in the aisle', 'Radiohead')]\n",
-      "lozenge of love [] [('lozenge of love', 'Radiohead')]\n",
-      "hitch hike [] [('hitch hike', 'The Rolling Stones')]\n",
-      "to be a brilliant light [] [('to be a brilliant light', 'On A Friday')]\n",
-      "separator anstam rmx [('separator anstam rmx', 'Radiohead')] []\n",
-      "doo doo doo doo doo heartbreaker [] [('doo doo doo doo doo heartbreaker', 'The Rolling Stones')]\n",
-      "beast of burden [('beast of burden', 'The Rolling Stones'), ('beast of burden', 'The Rolling Stones'), ('beast of burden', 'The Rolling Stones')] [('beast of burden', 'The Rolling Stones')]\n",
-      "medley kansas cityhey hey hey hey [] [('medley kansas cityhey hey hey hey', 'The Beatles')]\n",
-      "bloom objekt rmx [('bloom objekt rmx', 'Radiohead')] []\n",
-      "intro take the a train [('intro take the a train', 'Duke Ellington')] []\n",
-      "money thats what i want [('money thats what i want', 'The Beatles')] [('money thats what i want', 'The Beatles'), ('money thats what i want', 'The Beatles')]\n",
-      "how do you do it [] [('how do you do it', 'The Beatles')]\n",
-      "soldier of love [] [('soldier of love', 'The Beatles')]\n",
-      "wish i never met you [] [('wish i never met you', 'The Rolling Stones')]\n",
-      "remyxomatosis cristian vogel rmx [('remyxomatosis cristian vogel rmx', 'Radiohead')] []\n",
-      "bebopalula [] [('bebopalula', 'The Beatles')]\n",
-      "before they make me run [('before they make me run', 'The Rolling Stones'), ('before they make me run', 'The Rolling Stones'), ('before they make me run', 'The Rolling Stones')] [('before they make me run', 'The Rolling Stones')]\n",
-      "twist and shout [('twist and shout', 'The Beatles'), ('twist and shout', 'The Beatles')] [('twist and shout', 'The Beatles'), ('twist and shout', 'The Beatles'), ('twist and shout', 'The Beatles')]\n",
-      "jazz piano song [] [('jazz piano song', 'The Beatles')]\n",
-      "spectre [] [('spectre', 'Radiohead')]\n",
-      "within you without youtomorrow never knows [] [('within you without youtomorrow never knows', 'The Beatles')]\n",
-      "im free [('im free', 'The Rolling Stones'), ('im free', 'The Rolling Stones')] [('im free', 'The Rolling Stones')]\n",
-      "things we said today [('things we said today', 'The Beatles'), ('things we said today', 'The Beatles')] [('things we said today', 'The Beatles')]\n",
-      "nobody does it better [] [('nobody does it better', 'Radiohead')]\n",
-      "country honk [] [('country honk', 'The Rolling Stones')]\n",
-      "suzy parker [] [('suzy parker', 'The Beatles')]\n",
-      "hide your love [] [('hide your love', 'The Rolling Stones')]\n",
-      "charlies intro to little red rooster [('charlies intro to little red rooster', 'The Rolling Stones')] []\n",
-      "honky tonk women [('honky tonk women', 'The Rolling Stones'), ('honky tonk women', 'Sheryl Crow'), ('honky tonk women', 'The Rolling Stones')] [('honky tonk women', 'The Rolling Stones')]\n",
-      "here comes the sunthe inner light transition [] [('here comes the sunthe inner light transition', 'The Beatles')]\n",
-      "dear doctor [] [('dear doctor', 'The Rolling Stones')]\n",
-      "little t a [] [('little t a', 'The Rolling Stones')]\n",
-      "title 5 [] [('title 5', 'The Rolling Stones')]\n",
-      "saints when the saints go marching in [] [('saints when the saints go marching in', 'The Beatles')]\n",
-      "happy song [] [('happy song', 'On A Friday')]\n",
-      "neighbours [('neighbours', 'The Rolling Stones'), ('neighbours', 'Bob Clearmountain')] [('neighbours', 'The Rolling Stones')]\n",
-      "wonderwall [] [('wonderwall', 'Radiohead')]\n",
-      "i got the blues [] [('i got the blues', 'The Rolling Stones')]\n",
-      "the new generation [] [('the new generation', 'Radiohead')]\n",
-      "sleep tonight [('sleep tonight', 'The Rolling Stones'), ('sleep tonight', 'The Rolling Stones')] [('sleep tonight', 'The Rolling Stones')]\n",
-      "like spinning plates live [('like spinning plates live', 'Radiohead')] []\n",
-      "what is it that you say [] [('what is it that you say', 'On A Friday')]\n",
-      "teddy boy [] [('teddy boy', 'The Beatles')]\n",
-      "the beatles seventh christmas record [] [('the beatles seventh christmas record', 'The Beatles')]\n",
-      "harry patch in memory of [] [('harry patch in memory of', 'Radiohead')]\n",
-      "through the lonely nights [] [('through the lonely nights', 'The Rolling Stones')]\n",
-      "pepperland laid waste [('pepperland laid waste', 'George Martin')] []\n",
-      "cant buy me love [('cant buy me love', 'The Beatles'), ('cant buy me love', 'The Beatles'), ('cant buy me love', 'The Beatles')] [('cant buy me love', 'The Beatles')]\n",
-      "look what youve done [] [('look what youve done', 'The Rolling Stones')]\n",
-      "can you take me back [] [('can you take me back', 'The Beatles')]\n",
-      "dirty work [('dirty work', 'The Rolling Stones'), ('dirty work', 'The Rolling Stones')] [('dirty work', 'The Rolling Stones')]\n",
-      "heart of stone [] [('heart of stone', 'The Rolling Stones')]\n",
-      "moonlight [] [('moonlight', 'The Beatles')]\n",
-      "in spite of all the danger [] [('in spite of all the danger', 'The Beatles')]\n",
-      "im down [] [('im down', 'The Beatles')]\n",
-      "walking the dog [] [('walking the dog', 'The Rolling Stones')]\n",
-      "the long and winding road [('the long and winding road', 'The Beatles'), ('the long and winding road', 'The Beatles')] [('the long and winding road', 'The Beatles')]\n",
-      "mick jaggers and john lennons introduction of the dirty mac [] [('mick jaggers and john lennons introduction of the dirty mac', 'The Rolling Stones')]\n",
-      "get off of my cloud [] [('get off of my cloud', 'The Rolling Stones')]\n",
-      "coke babies [] [('coke babies', 'Radiohead')]\n",
-      "ps i love you [('ps i love you', 'The Beatles')] [('ps i love you', 'The Beatles'), ('ps i love you', 'The Beatles')]\n",
-      "stupid car [] [('stupid car', 'Radiohead')]\n",
-      "nothin shakin but the leaves on the trees [] [('nothin shakin but the leaves on the trees', 'The Beatles')]\n",
-      "strawberry fields forever take 1 [] [('strawberry fields forever take 1', 'The Beatles')]\n",
-      "far away eyes [('far away eyes', 'The Rolling Stones'), ('far away eyes', 'The Rolling Stones')] [('far away eyes', 'The Rolling Stones')]\n",
-      "were wastin time [] [('were wastin time', 'The Rolling Stones')]\n",
-      "i go wild [('i go wild', 'The Rolling Stones'), ('i go wild', 'The Rolling Stones')] [('i go wild', 'The Rolling Stones')]\n",
-      "have a banana [] [('have a banana', 'The Beatles')]\n",
-      "sea of time [('sea of time', 'George Martin')] []\n",
-      "continental drift [('continental drift', 'The Rolling Stones'), ('continental drift', 'The Rolling Stones')] [('continental drift', 'The Rolling Stones')]\n",
-      "its all over now [] [('its all over now', 'The Rolling Stones')]\n",
-      "come together [('come together', 'The Beatles'), ('come together', 'The Beatles')] [('come together', 'The Beatles')]\n",
-      "sway [] [('sway', 'The Rolling Stones')]\n",
-      "somewhere [] [('somewhere', 'Ali brustofski')]\n",
-      "penny lane [('penny lane', 'The Beatles'), ('penny lane', 'The Beatles')] [('penny lane', 'The Beatles')]\n",
-      "beatles movie medley [] [('beatles movie medley', 'The Beatles')]\n",
-      "the thief [] [('the thief', 'Radiohead')]\n",
-      "mercy mercy [] [('mercy mercy', 'The Rolling Stones')]\n",
-      "egyptian song [] [('egyptian song', 'Radiohead')]\n",
-      "love of the loved [] [('love of the loved', 'The Beatles')]\n",
-      "i just dont understand [] [('i just dont understand', 'The Beatles')]\n",
-      "from fluff to you [] [('from fluff to you', 'The Beatles')]\n",
-      "youve got to hide your love away [('youve got to hide your love away', 'The Beatles')] [('youve got to hide your love away', 'The Beatles'), ('youve got to hide your love away', 'The Beatles')]\n",
-      "jumpin jack flash [('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'The Rolling Stones'), ('jumpin jack flash', 'The Rolling Stones')] [('jumpin jack flash', 'The Rolling Stones')]\n",
-      "gotta get away [] [('gotta get away', 'The Rolling Stones')]\n",
-      "give peace a chance [] [('give peace a chance', 'The Beatles')]\n",
-      "let it rock [] [('let it rock', 'The Rolling Stones')]\n",
-      "i cant get no satisfaction [('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones'), ('i cant get no satisfaction', 'The Rolling Stones')] [('i cant get no satisfaction', 'The Rolling Stones')]\n",
-      "falling in love again [] [('falling in love again', 'The Beatles')]\n",
-      "let me go [('let me go', 'The Rolling Stones'), ('let me go', 'The Rolling Stones')] [('let me go', 'The Rolling Stones')]\n",
-      "corinna [] [('corinna', 'The Rolling Stones')]\n",
-      "dollars and cents [] [('dollars and cents', 'Radiohead')]\n",
-      "lucille [] [('lucille', 'The Beatles')]\n",
-      "jumping jack flash [('jumping jack flash', 'The Rolling Stones')] []\n",
-      "you know my name look up the number [] [('you know my name look up the number', 'The Beatles')]\n",
-      "the trickster [] [('the trickster', 'Radiohead')]\n",
-      "she loves you [('she loves you', 'The Beatles'), ('she loves you', 'The Beatles')] [('she loves you', 'The Beatles'), ('she loves you', 'The Beatles')]\n",
-      "shes a rainbow [] [('shes a rainbow', 'The Rolling Stones')]\n",
-      "jiving sister fanny [] [('jiving sister fanny', 'The Rolling Stones')]\n",
-      "im gonna sit right down and cry over you [] [('im gonna sit right down and cry over you', 'The Beatles')]\n",
-      "paint it blacker [] [('paint it blacker', 'Plan B')]\n",
-      "when the saints go marchin in [] [('when the saints go marchin in', 'The Beatles')]\n",
-      "how can you be sure [] [('how can you be sure', 'Radiohead')]\n",
-      "if you really want to be my friend [] [('if you really want to be my friend', 'The Rolling Stones')]\n",
-      "sgt peppers lonely hearts club band reprise [] [('sgt peppers lonely hearts club band reprise', 'The Beatles')]\n",
-      "dollars cents live [('dollars cents live', 'Radiohead')] []\n",
-      "get back aka no pakistanis [] [('get back aka no pakistanis', 'The Beatles')]\n",
-      "give up the ghost brokenchord rmx [('give up the ghost brokenchord rmx', 'Radiohead')] []\n",
-      "each and every day of the year [] [('each and every day of the year', 'The Rolling Stones')]\n",
-      "19th nervous breakdown [] [('19th nervous breakdown', 'The Rolling Stones')]\n",
-      "true love waits live in oslo [('true love waits live in oslo', 'Radiohead')] []\n",
-      "pay your dues [] [('pay your dues', 'The Rolling Stones')]\n",
-      "you never wash up after yourself [] [('you never wash up after yourself', 'Radiohead')]\n",
-      "all sold out [] [('all sold out', 'The Rolling Stones')]\n",
-      "polyethylene parts 1 2 [] [('polyethylene parts 1 2', 'Radiohead')]\n",
-      "love these goon shows [] [('love these goon shows', 'The Beatles')]\n",
-      "around and around [] [('around and around', 'The Rolling Stones')]\n",
-      "palo alto [] [('palo alto', 'Radiohead')]\n",
-      "untogether [] [('untogether', 'Radiohead')]\n",
-      "doom and gloom [] [('doom and gloom', 'The Rolling Stones')]\n",
-      "the beatles third christmas record [] [('the beatles third christmas record', 'The Beatles')]\n",
-      "she smiled sweetly [] [('she smiled sweetly', 'The Rolling Stones')]\n",
-      "little queenie [] [('little queenie', 'The Rolling Stones')]\n",
-      "because i know you love me so [] [('because i know you love me so', 'The Beatles')]\n",
-      "we want the stones [] [('we want the stones', 'The Rolling Stones')]\n"
-     ]
-    },
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "sea of monsters [('sea of monsters', 'George Martin')] []\n",
-      "3 [] [('3', 'The Rolling Stones')]\n",
-      "linda lu [] [('linda lu', 'The Rolling Stones')]\n",
-      "please go home [] [('please go home', 'The Rolling Stones')]\n",
-      "tell me why ep [] [('tell me why ep', 'The Beatles')]\n",
-      "fight [('fight', 'The Rolling Stones'), ('fight', 'The Rolling Stones')] [('fight', 'The Rolling Stones')]\n",
-      "goodbye [] [('goodbye', 'The Beatles')]\n",
-      "mr b [] [('mr b', 'Radiohead')]\n",
-      "jerusalem [] [('jerusalem', 'On A Friday')]\n",
-      "bye bye johnny [] [('bye bye johnny', 'The Rolling Stones')]\n",
-      "india [] [('india', 'The Beatles')]\n",
-      "eds scary song [] [('eds scary song', 'Radiohead')]\n",
-      "beautiful delilah [] [('beautiful delilah', 'The Rolling Stones')]\n",
-      "upside down [] [('upside down', 'Radiohead')]\n",
-      "hello little girl [] [('hello little girl', 'The Beatles')]\n",
-      "meet me in the bottom [] [('meet me in the bottom', 'The Rolling Stones')]\n",
-      "feral lone rmx [('feral lone rmx', 'Radiohead')] []\n",
-      "aint she sweet [] [('aint she sweet', 'The Beatles')]\n",
-      "harlem shuffle ny mix [] [('harlem shuffle ny mix', 'The Rolling Stones')]\n",
-      "blue suede shoes [] [('blue suede shoes', 'The Beatles')]\n",
-      "road runner [] [('road runner', 'The Rolling Stones')]\n",
-      "leave my kitten alone [] [('leave my kitten alone', 'The Beatles')]\n",
-      "pantomime everywhere its christmas [] [('pantomime everywhere its christmas', 'The Beatles')]\n",
-      "keys to your love [] [('keys to your love', 'The Rolling Stones')]\n",
-      "lotus flower sbtrkt rmx [('lotus flower sbtrkt rmx', 'Radiohead')] []\n",
-      "little red rooster [('little red rooster', 'The Rolling Stones'), ('little red rooster', 'The Rolling Stones')] [('little red rooster', 'The Rolling Stones')]\n",
-      "complicated [] [('complicated', 'The Rolling Stones')]\n",
-      "im not signifying [] [('im not signifying', 'The Rolling Stones')]\n",
-      "sea of holes [('sea of holes', 'George Martin')] []\n",
-      "ooh my arms [] [('ooh my arms', 'The Beatles')]\n",
-      "cry to me [] [('cry to me', 'The Rolling Stones')]\n",
-      "prodigal son [] [('prodigal son', 'The Rolling Stones')]\n",
-      "everybody needs somebody to love finale [('everybody needs somebody to love finale', 'The Rolling Stones')] []\n",
-      "stand by me [] [('stand by me', 'The Beatles')]\n",
-      "please please me [('please please me', 'The Beatles')] [('please please me', 'The Beatles'), ('please please me', 'The Rolling Stones')]\n",
-      "big ideas [] [('big ideas', 'Radiohead')]\n",
-      "sympathy for the devil [('sympathy for the devil', 'The Rolling Stones'), ('sympathy for the devil', 'The Rolling Stones'), ('sympathy for the devil', 'The Rolling Stones')] [('sympathy for the devil', 'The Rolling Stones')]\n",
-      "pepperland [('pepperland', 'George Martin')] []\n",
-      "crying waiting hoping [] [('crying waiting hoping', 'The Beatles')]\n",
-      "punchdrunk lovesick singalong [] [('punchdrunk lovesick singalong', 'Radiohead')]\n",
-      "i dont know why aka dont know why i love you [] [('i dont know why aka dont know why i love you', 'The Rolling Stones')]\n",
-      "when im sixtyfour [] [('when im sixtyfour', 'The Beatles')]\n",
-      "a reminder [] [('a reminder', 'Radiohead')]\n",
-      "come togetherdear prudence [] [('come togetherdear prudence', 'The Beatles')]\n",
-      "four guys [] [('four guys', 'James Richards')]\n",
-      "cops and robbers [] [('cops and robbers', 'The Rolling Stones')]\n",
-      "you cant do that [('you cant do that', 'The Beatles'), ('you cant do that', 'The Beatles')] [('you cant do that', 'The Beatles')]\n",
-      "blue moon of kentucky [] [('blue moon of kentucky', 'The Beatles')]\n",
-      "andrews blues [] [('andrews blues', 'The Rolling Stones')]\n",
-      "bloom jamie xx rework [('bloom jamie xx rework', 'Radiohead')] []\n",
-      "how i made my millions [] [('how i made my millions', 'Radiohead')]\n",
-      "john lennon vs bill oreilly [] [('john lennon vs bill oreilly', 'Nice Peter')]\n",
-      "petrol gang [] [('petrol gang', 'The Rolling Stones')]\n",
-      "swanee river [] [('swanee river', 'The Beatles')]\n",
-      "cant get next to you [] [('cant get next to you', 'The Rolling Stones')]\n",
-      "empty heart [] [('empty heart', 'The Rolling Stones')]\n",
-      "let it loose [] [('let it loose', 'The Rolling Stones')]\n",
-      "susie q [] [('susie q', 'The Rolling Stones')]\n",
-      "so how come no one loves me [] [('so how come no one loves me', 'The Beatles')]\n",
-      "no reply demo [] [('no reply demo', 'The Beatles')]\n",
-      "babys in black [('babys in black', 'The Beatles'), ('babys in black', 'The Beatles')] [('babys in black', 'The Beatles')]\n",
-      "if youve got trouble [] [('if youve got trouble', 'The Beatles')]\n",
-      "anyway you look at it [] [('anyway you look at it', 'The Rolling Stones')]\n",
-      "thank you girl [] [('thank you girl', 'The Beatles')]\n",
-      "ladies and gentlemen the rolling stones [] [('ladies and gentlemen the rolling stones', 'The Rolling Stones')]\n",
-      "you cant catch me [] [('you cant catch me', 'The Rolling Stones')]\n",
-      "slipping away [('slipping away', 'The Rolling Stones'), ('slipping away', 'The Rolling Stones')] [('slipping away', 'The Rolling Stones')]\n",
-      "morning mr magpie pearson sound scavenger rmx [('morning mr magpie pearson sound scavenger rmx', 'Radiohead')] []\n",
-      "jigsaw puzzle [] [('jigsaw puzzle', 'The Rolling Stones')]\n",
-      "congratulations [] [('congratulations', 'The Rolling Stones')]\n",
-      "i want to hold your hand [('i want to hold your hand', 'The Beatles'), ('i want to hold your hand', 'The Beatles')] [('i want to hold your hand', 'The Beatles'), ('i want to hold your hand', 'Ali brustofski')]\n",
-      "winter [] [('winter', 'The Rolling Stones')]\n",
-      "whatd i say [] [('whatd i say', 'The Beatles')]\n",
-      "bitch [] [('bitch', 'The Rolling Stones')]\n",
-      "she said yeah [] [('she said yeah', 'The Rolling Stones')]\n",
-      "komm gib mir deine hand [] [('komm gib mir deine hand', 'The Beatles')]\n",
-      "i need you baby mona [] [('i need you baby mona', 'The Rolling Stones')]\n",
-      "the fool on the hill take 4 [] [('the fool on the hill take 4', 'The Beatles')]\n",
-      "memphis [] [('memphis', 'The Beatles')]\n",
-      "searchin [] [('searchin', 'The Beatles')]\n",
-      "thats alright mama [] [('thats alright mama', 'The Beatles')]\n",
-      "confessin the blues [] [('confessin the blues', 'The Rolling Stones')]\n",
-      "shine a light [('shine a light', 'The Rolling Stones'), ('shine a light', 'The Rolling Stones'), ('shine a light', 'The Rolling Stones')] [('shine a light', 'The Rolling Stones')]\n",
-      "the lantern [] [('the lantern', 'The Rolling Stones')]\n",
-      "follow me around [] [('follow me around', 'Radiohead')]\n",
-      "dream baby [] [('dream baby', 'The Beatles')]\n",
-      "talk show host [] [('talk show host', 'Radiohead')]\n",
-      "it hurts me too [] [('it hurts me too', 'The Rolling Stones')]\n",
-      "come and get it [] [('come and get it', 'The Beatles')]\n",
-      "shake rattle and roll [] [('shake rattle and roll', 'The Beatles')]\n",
-      "its only rock n roll but i like it [('its only rock n roll but i like it', 'The Rolling Stones'), ('its only rock n roll but i like it', 'The Rolling Stones')] [('its only rock n roll but i like it', 'The Rolling Stones')]\n",
-      "ive been loving you too long [] [('ive been loving you too long', 'The Rolling Stones')]\n",
-      "ventilator blues [] [('ventilator blues', 'The Rolling Stones')]\n",
-      "this boy [] [('this boy', 'The Beatles')]\n",
-      "out of control [('out of control', 'The Rolling Stones'), ('out of control', 'The Rolling Stones')] [('out of control', 'The Rolling Stones')]\n",
-      "when im sixty four [('when im sixty four', 'The Beatles')] []\n",
-      "respectable [('respectable', 'The Rolling Stones'), ('respectable', 'The Rolling Stones')] [('respectable', 'The Rolling Stones')]\n",
-      "winning ugly [('winning ugly', 'The Rolling Stones'), ('winning ugly', 'The Rolling Stones')] [('winning ugly', 'The Rolling Stones')]\n",
-      "the sheik of araby [] [('the sheik of araby', 'The Beatles')]\n",
-      "poison ivy [] [('poison ivy', 'The Rolling Stones')]\n",
-      "i just want to make love to you [] [('i just want to make love to you', 'The Rolling Stones')]\n",
-      "kansas city [] [('kansas city', 'The Beatles')]\n",
-      "honest i do [] [('honest i do', 'The Rolling Stones')]\n",
-      "everything is turning to gold [] [('everything is turning to gold', 'The Rolling Stones')]\n",
-      "jump on top of me [] [('jump on top of me', 'The Rolling Stones')]\n",
-      "set fire to that lot speech [] [('set fire to that lot speech', 'The Beatles')]\n",
-      "ride on baby [] [('ride on baby', 'The Rolling Stones')]\n",
-      "2120 south michigan avenue [] [('2120 south michigan avenue', 'The Rolling Stones')]\n",
-      "i want to know [] [('i want to know', 'On A Friday')]\n",
-      "lonesome tears in my eyes [] [('lonesome tears in my eyes', 'The Beatles')]\n",
-      "cook cook blues [] [('cook cook blues', 'The Rolling Stones')]\n",
-      "money [] [('money', 'The Rolling Stones')]\n",
-      "stranger in my arms [] [('stranger in my arms', 'The Beatles')]\n",
-      "climbing up a bloody great hill [] [('climbing up a bloody great hill', 'Radiohead')]\n",
-      "sleepy city [] [('sleepy city', 'The Rolling Stones')]\n",
-      "lotus flower jacques greene rmx [('lotus flower jacques greene rmx', 'Radiohead')] []\n",
-      "salt of the earth [] [('salt of the earth', 'The Rolling Stones')]\n",
-      "cool calm and collected [] [('cool calm and collected', 'The Rolling Stones')]\n",
-      "hello goodbye [('hello goodbye', 'The Beatles'), ('hello goodbye', 'The Beatles')] [('hello goodbye', 'The Beatles')]\n",
-      "miss you dr dre remix 2002 [] [('miss you dr dre remix 2002', 'The Rolling Stones')]\n",
-      "tumbling dice [('tumbling dice', 'The Rolling Stones'), ('tumbling dice', 'The Rolling Stones')] [('tumbling dice', 'The Rolling Stones')]\n",
-      "just my imagination [('just my imagination', 'The Rolling Stones')] []\n",
-      "everybody needs somebody to love [('everybody needs somebody to love', 'Solomon Burke'), ('everybody needs somebody to love', 'The Rolling Stones')] [('everybody needs somebody to love', 'The Rolling Stones')]\n",
-      "stop breaking down [] [('stop breaking down', 'The Rolling Stones')]\n",
-      "riding on a bus [] [('riding on a bus', 'The Beatles')]\n",
-      "take good care of my baby [] [('take good care of my baby', 'The Beatles')]\n",
-      "id much rather be with the boys [] [('id much rather be with the boys', 'The Rolling Stones')]\n",
-      "its for you [] [('its for you', 'The Beatles')]\n",
-      "wish you were here [] [('wish you were here', 'Radiohead')]\n",
-      "little by little shed [('little by little shed', 'Radiohead')] []\n",
-      "my girl [] [('my girl', 'The Rolling Stones')]\n",
-      "memphis tennessee [] [('memphis tennessee', 'The Beatles'), ('memphis tennessee', 'The Rolling Stones')]\n",
-      "moonlight mile [] [('moonlight mile', 'The Rolling Stones')]\n",
-      "phillipa chicken [] [('phillipa chicken', 'Radiohead')]\n",
-      "down in eastern australia [] [('down in eastern australia', 'The Beatles')]\n",
-      "aint that loving you baby [] [('aint that loving you baby', 'The Rolling Stones')]\n",
-      "final show [] [('final show', 'Beatles Candlestick Park Setlist')]\n",
-      "words of love ep [] [('words of love ep', 'The Beatles')]\n",
-      "sing this all together [] [('sing this all together', 'The Rolling Stones')]\n",
-      "let it be [('let it be', 'The Beatles'), ('let it be', 'The Beatles')] [('let it be', 'The Beatles')]\n",
-      "i cant be satisfied [] [('i cant be satisfied', 'The Rolling Stones')]\n",
-      "time waits for no one [] [('time waits for no one', 'The Rolling Stones')]\n",
-      "the rocky road to dublin [] [('the rocky road to dublin', 'The Chieftains')]\n",
-      "fancyman blues [] [('fancyman blues', 'The Rolling Stones')]\n",
-      "rain fall down william remix [] [('rain fall down william remix', 'The Rolling Stones')]\n",
-      "sure to fall [] [('sure to fall', 'The Beatles')]\n",
-      "i will los angeles version [('i will los angeles version', 'Radiohead')] []\n"
-     ]
-    },
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>_id</th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>t_name</th>\n",
+       "      <th>tt_alb</th>\n",
+       "      <th>tt_name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>5JT7CoUSGNk7mMNkHMQjqr</td>\n",
+       "      <td>love me do</td>\n",
+       "      <td>Love Me Do - Mono / Remastered</td>\n",
+       "      <td>Please Please Me (Remastered)</td>\n",
+       "      <td>Love Me Do - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>7pQAq14Z73YUFMtxCyt0bG</td>\n",
+       "      <td>cant buy me love</td>\n",
+       "      <td>Can't Buy Me Love - Remastered 2015</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>Can't Buy Me Love - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>0mNQUZEATk2uItMUtiLWK5</td>\n",
+       "      <td>a hard days night</td>\n",
+       "      <td>A Hard Day's Night - Remastered 2015</td>\n",
+       "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>A Hard Day's Night - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>3nhJDVdUrm6DnDW4iBfpKz</td>\n",
+       "      <td>eight days a week</td>\n",
+       "      <td>Eight Days A Week - Remastered 2015</td>\n",
+       "      <td>Beatles For Sale (Remastered)</td>\n",
+       "      <td>Eight Days A Week - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>6pkjW5srxjzRSKKMrl7et8</td>\n",
+       "      <td>ticket to ride</td>\n",
+       "      <td>Ticket To Ride - Remastered 2015</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Ticket To Ride - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>1dfuJYDSIc41cw5RPsaCF1</td>\n",
+       "      <td>help</td>\n",
+       "      <td>Help! - Remastered 2015</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Help! - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>63uskN0xLezVg4281wzeQn</td>\n",
+       "      <td>yesterday</td>\n",
+       "      <td>Yesterday - Remastered 2015</td>\n",
+       "      <td>Help! (Remastered)</td>\n",
+       "      <td>Yesterday - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>727YRTVI7pKH1uCnXnyZul</td>\n",
+       "      <td>yellow submarine</td>\n",
+       "      <td>Yellow Submarine - Remastered 2015</td>\n",
+       "      <td>Yellow Submarine (Remastered)</td>\n",
+       "      <td>Yellow Submarine - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>727YRTVI7pKH1uCnXnyZul</td>\n",
+       "      <td>yellow submarine</td>\n",
+       "      <td>Yellow Submarine - Remastered 2015</td>\n",
+       "      <td>Revolver (Remastered)</td>\n",
+       "      <td>Yellow Submarine - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>0TRkjwb4uY3CHb5zhr9bBd</td>\n",
+       "      <td>eleanor rigby</td>\n",
+       "      <td>Eleanor Rigby - Remastered 2015</td>\n",
+       "      <td>Revolver (Remastered)</td>\n",
+       "      <td>Eleanor Rigby - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>5Kw6fC8wyRgMYfBDtEklYM</td>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Penny Lane - Remastered 2015</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Penny Lane - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>5Kw6fC8wyRgMYfBDtEklYM</td>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Penny Lane - Remastered 2015</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Penny Lane - Take 6 / Instrumental</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>5Kw6fC8wyRgMYfBDtEklYM</td>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Penny Lane - Remastered 2015</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Penny Lane - Stereo Mix 2017</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>56rXurvdpjoSIVggfd5ANS</td>\n",
+       "      <td>all you need is love</td>\n",
+       "      <td>All You Need Is Love - Remastered 2015</td>\n",
+       "      <td>Yellow Submarine (Remastered)</td>\n",
+       "      <td>All You Need Is Love - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>56rXurvdpjoSIVggfd5ANS</td>\n",
+       "      <td>all you need is love</td>\n",
+       "      <td>All You Need Is Love - Remastered 2015</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>All You Need Is Love - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>0wFW5NQJdNDJPcZyfYSExx</td>\n",
+       "      <td>hello goodbye</td>\n",
+       "      <td>Hello, Goodbye - Remastered 2015</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Hello, Goodbye - Remastered 2009</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>4ajbplh2IXiJkXjQiq5aqq</td>\n",
+       "      <td>get back</td>\n",
+       "      <td>Get Back - Remastered 2015</td>\n",
+       "      <td>Let It Be (Remastered)</td>\n",
+       "      <td>Get Back - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>17</th>\n",
+       "      <td>6Y6UBWhifUnkJIO2mdy0S3</td>\n",
+       "      <td>something</td>\n",
+       "      <td>Something - Remastered 2015</td>\n",
+       "      <td>Abbey Road (Remastered)</td>\n",
+       "      <td>Something - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>18</th>\n",
+       "      <td>7iABnSNZciNepqGtjMQxxd</td>\n",
+       "      <td>come together</td>\n",
+       "      <td>Come Together - Remastered 2015</td>\n",
+       "      <td>Abbey Road (Remastered)</td>\n",
+       "      <td>Come Together - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>19</th>\n",
+       "      <td>22QadBPe0QCuqraFVAr1m3</td>\n",
+       "      <td>let it be</td>\n",
+       "      <td>Let It Be - Remastered 2015</td>\n",
+       "      <td>Let It Be (Remastered)</td>\n",
+       "      <td>Let It Be - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>20</th>\n",
+       "      <td>0Oroc0HXQaxs8ONgI7dLnw</td>\n",
+       "      <td>the long and winding road</td>\n",
+       "      <td>The Long And Winding Road - Remastered 2015</td>\n",
+       "      <td>Let It Be (Remastered)</td>\n",
+       "      <td>The Long And Winding Road - Remastered</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                       _id                     ctitle  \\\n",
+       "0   5JT7CoUSGNk7mMNkHMQjqr                 love me do   \n",
+       "1   7pQAq14Z73YUFMtxCyt0bG           cant buy me love   \n",
+       "2   0mNQUZEATk2uItMUtiLWK5          a hard days night   \n",
+       "3   3nhJDVdUrm6DnDW4iBfpKz          eight days a week   \n",
+       "4   6pkjW5srxjzRSKKMrl7et8             ticket to ride   \n",
+       "5   1dfuJYDSIc41cw5RPsaCF1                       help   \n",
+       "6   63uskN0xLezVg4281wzeQn                  yesterday   \n",
+       "7   727YRTVI7pKH1uCnXnyZul           yellow submarine   \n",
+       "8   727YRTVI7pKH1uCnXnyZul           yellow submarine   \n",
+       "9   0TRkjwb4uY3CHb5zhr9bBd              eleanor rigby   \n",
+       "10  5Kw6fC8wyRgMYfBDtEklYM                 penny lane   \n",
+       "11  5Kw6fC8wyRgMYfBDtEklYM                 penny lane   \n",
+       "12  5Kw6fC8wyRgMYfBDtEklYM                 penny lane   \n",
+       "13  56rXurvdpjoSIVggfd5ANS       all you need is love   \n",
+       "14  56rXurvdpjoSIVggfd5ANS       all you need is love   \n",
+       "15  0wFW5NQJdNDJPcZyfYSExx              hello goodbye   \n",
+       "16  4ajbplh2IXiJkXjQiq5aqq                   get back   \n",
+       "17  6Y6UBWhifUnkJIO2mdy0S3                  something   \n",
+       "18  7iABnSNZciNepqGtjMQxxd              come together   \n",
+       "19  22QadBPe0QCuqraFVAr1m3                  let it be   \n",
+       "20  0Oroc0HXQaxs8ONgI7dLnw  the long and winding road   \n",
+       "\n",
+       "                                         t_name  \\\n",
+       "0                Love Me Do - Mono / Remastered   \n",
+       "1           Can't Buy Me Love - Remastered 2015   \n",
+       "2          A Hard Day's Night - Remastered 2015   \n",
+       "3           Eight Days A Week - Remastered 2015   \n",
+       "4              Ticket To Ride - Remastered 2015   \n",
+       "5                       Help! - Remastered 2015   \n",
+       "6                   Yesterday - Remastered 2015   \n",
+       "7            Yellow Submarine - Remastered 2015   \n",
+       "8            Yellow Submarine - Remastered 2015   \n",
+       "9               Eleanor Rigby - Remastered 2015   \n",
+       "10                 Penny Lane - Remastered 2015   \n",
+       "11                 Penny Lane - Remastered 2015   \n",
+       "12                 Penny Lane - Remastered 2015   \n",
+       "13       All You Need Is Love - Remastered 2015   \n",
+       "14       All You Need Is Love - Remastered 2015   \n",
+       "15             Hello, Goodbye - Remastered 2015   \n",
+       "16                   Get Back - Remastered 2015   \n",
+       "17                  Something - Remastered 2015   \n",
+       "18              Come Together - Remastered 2015   \n",
+       "19                  Let It Be - Remastered 2015   \n",
+       "20  The Long And Winding Road - Remastered 2015   \n",
+       "\n",
+       "                                               tt_alb  \\\n",
+       "0                       Please Please Me (Remastered)   \n",
+       "1                     A Hard Day's Night (Remastered)   \n",
+       "2                     A Hard Day's Night (Remastered)   \n",
+       "3                       Beatles For Sale (Remastered)   \n",
+       "4                                  Help! (Remastered)   \n",
+       "5                                  Help! (Remastered)   \n",
+       "6                                  Help! (Remastered)   \n",
+       "7                       Yellow Submarine (Remastered)   \n",
+       "8                               Revolver (Remastered)   \n",
+       "9                               Revolver (Remastered)   \n",
+       "10                  Magical Mystery Tour (Remastered)   \n",
+       "11  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "12  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "13                      Yellow Submarine (Remastered)   \n",
+       "14                  Magical Mystery Tour (Remastered)   \n",
+       "15                  Magical Mystery Tour (Remastered)   \n",
+       "16                             Let It Be (Remastered)   \n",
+       "17                            Abbey Road (Remastered)   \n",
+       "18                            Abbey Road (Remastered)   \n",
+       "19                             Let It Be (Remastered)   \n",
+       "20                             Let It Be (Remastered)   \n",
+       "\n",
+       "                                   tt_name  \n",
+       "0             Love Me Do - Remastered 2009  \n",
+       "1           Can't Buy Me Love - Remastered  \n",
+       "2          A Hard Day's Night - Remastered  \n",
+       "3           Eight Days A Week - Remastered  \n",
+       "4              Ticket To Ride - Remastered  \n",
+       "5                       Help! - Remastered  \n",
+       "6                   Yesterday - Remastered  \n",
+       "7            Yellow Submarine - Remastered  \n",
+       "8            Yellow Submarine - Remastered  \n",
+       "9               Eleanor Rigby - Remastered  \n",
+       "10            Penny Lane - Remastered 2009  \n",
+       "11      Penny Lane - Take 6 / Instrumental  \n",
+       "12            Penny Lane - Stereo Mix 2017  \n",
+       "13       All You Need Is Love - Remastered  \n",
+       "14  All You Need Is Love - Remastered 2009  \n",
+       "15        Hello, Goodbye - Remastered 2009  \n",
+       "16                   Get Back - Remastered  \n",
+       "17                  Something - Remastered  \n",
+       "18              Come Together - Remastered  \n",
+       "19                  Let It Be - Remastered  \n",
+       "20  The Long And Winding Road - Remastered  "
+      ]
+     },
+     "execution_count": 99,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "pd.DataFrame(list({'_id': t['_id'], 'ctitle': t['ctitle'], 't_name': t['name'],\n",
+    "                  'tt_name': tt['name'], 'tt_alb': tt['album']['name']}\n",
+    "                  for t in tracks.find({'album_id': '5ju5Ouzan3QwXqQt1Tihbh'}, ['name', 'ctitle'])\n",
+    "                  for tt in tracks.find({'ctitle': t['ctitle'], \n",
+    "                                         'album_id': {'$ne': '5ju5Ouzan3QwXqQt1Tihbh'},\n",
+    "                                         'ignore': {'$exists': False}}, \n",
+    "                                        ['name', 'ctitle', 'album.name', 'album_id'])))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 100,
+   "metadata": {},
+   "outputs": [
     {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "sittin on a fence [] [('sittin on a fence', 'The Rolling Stones')]\n",
-      "pass the wine sophia loren [] [('pass the wine sophia loren', 'The Rolling Stones')]\n",
-      "grown up wrong [] [('grown up wrong', 'The Rolling Stones')]\n",
-      "think [] [('think', 'The Rolling Stones')]\n",
-      "idioteque live in oxford [('idioteque live in oxford', 'Radiohead')] []\n",
-      "sour milk sea [] [('sour milk sea', 'The Beatles')]\n",
-      "killer cars [] [('killer cars', 'Radiohead')]\n",
-      "tell me [] [('tell me', 'The Rolling Stones')]\n",
-      "sie liebt dich [] [('sie liebt dich', 'The Beatles')]\n",
-      "movie medley [] [('movie medley', 'The Beatles')]\n",
-      "one more try [] [('one more try', 'The Rolling Stones')]\n",
-      "tkol altrice rmx [('tkol altrice rmx', 'Radiohead')] []\n",
-      "mannish boy [] [('mannish boy', 'The Rolling Stones')]\n",
-      "commonwealth [] [('commonwealth', 'The Beatles')]\n",
-      "ceremony [] [('ceremony', 'Radiohead')]\n",
-      "dance little sister [] [('dance little sister', 'The Rolling Stones')]\n",
-      "i call your name [] [('i call your name', 'The Beatles')]\n",
-      "sing this all together see what happens [] [('sing this all together see what happens', 'The Rolling Stones')]\n",
-      "the happy rishikesh song [] [('the happy rishikesh song', 'The Beatles')]\n",
-      "revolution 1 [('revolution 1', 'The Beatles')] []\n",
-      "you gotta move [] [('you gotta move', 'The Rolling Stones')]\n",
-      "fog again live [('fog again live', 'Radiohead')] []\n",
-      "key to the highway [('key to the highway', 'The Rolling Stones'), ('key to the highway', 'The Rolling Stones')] []\n",
-      "you dont have to mean it [('you dont have to mean it', 'The Rolling Stones'), ('you dont have to mean it', 'The Rolling Stones')] [('you dont have to mean it', 'The Rolling Stones')]\n",
-      "mothers little helper [] [('mothers little helper', 'The Rolling Stones')]\n",
-      "one and one is two [] [('one and one is two', 'The Beatles')]\n",
-      "permanent daylight [] [('permanent daylight', 'Radiohead')]\n",
-      "parachute woman [] [('parachute woman', 'The Rolling Stones')]\n",
-      "sympathy for the devil the neptunes remix [] [('sympathy for the devil the neptunes remix', 'The Rolling Stones')]\n",
-      "drift away [] [('drift away', 'The Rolling Stones')]\n",
-      "hand of fate [] [('hand of fate', 'The Rolling Stones')]\n",
-      "100 years ago [] [('100 years ago', 'The Rolling Stones')]\n",
-      "hold back [('hold back', 'The Rolling Stones'), ('hold back', 'The Rolling Stones')] [('hold back', 'The Rolling Stones')]\n",
-      "saints [] [('saints', 'The Beatles')]\n",
-      "angie [('angie', 'The Rolling Stones'), ('angie', 'The Rolling Stones'), ('angie', 'The Rolling Stones')] [('angie', 'The Rolling Stones')]\n",
-      "doncha bother me [] [('doncha bother me', 'The Rolling Stones')]\n",
-      "roll over beethoven [('roll over beethoven', 'The Beatles'), ('roll over beethoven', 'The Beatles')] [('roll over beethoven', 'The Beatles'), ('roll over beethoven', 'The Rolling Stones')]\n",
-      "packt like sardines in a crushed tin box [('packt like sardines in a crushed tin box', 'Radiohead')] []\n",
-      "hallelujah i love her so [] [('hallelujah i love her so', 'The Beatles')]\n",
-      "young blood [] [('young blood', 'The Beatles')]\n",
-      "aint too proud to beg [] [('aint too proud to beg', 'The Rolling Stones')]\n",
-      "something [('something', 'The Beatles'), ('something', 'The Beatles')] [('something', 'The Beatles')]\n",
-      "flight 505 [] [('flight 505', 'The Rolling Stones')]\n",
-      "hey crawdaddy [] [('hey crawdaddy', 'The Rolling Stones')]\n",
-      "miss you [('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones'), ('miss you', 'The Rolling Stones')] [('miss you', 'The Rolling Stones')]\n",
-      "midnight rambler [('midnight rambler', 'The Rolling Stones'), ('midnight rambler', 'The Rolling Stones')] [('midnight rambler', 'The Rolling Stones')]\n",
-      "rhinestone cowboy [] [('rhinestone cowboy', 'Radiohead')]\n",
-      "supercollider [] [('supercollider', 'Radiohead')]\n",
-      "i think im going mad [] [('i think im going mad', 'The Rolling Stones')]\n",
-      "whats the new mary jane [] [('whats the new mary jane', 'The Beatles')]\n",
-      "carol [] [('carol', 'The Beatles'), ('carol', 'The Rolling Stones')]\n",
-      "a little rhyme [] [('a little rhyme', 'The Beatles')]\n",
-      "memo from turner [] [('memo from turner', 'The Rolling Stones')]\n",
-      "just my imagination running away with me [('just my imagination running away with me', 'The Rolling Stones'), ('just my imagination running away with me', 'The Rolling Stones'), ('just my imagination running away with me', 'The Rolling Stones')] [('just my imagination running away with me', 'The Rolling Stones')]\n",
-      "rain [] [('rain', 'The Beatles')]\n",
-      "my bonnie german intro [] [('my bonnie german intro', 'The Beatles')]\n",
-      "yove got to hide your love away [] [('yove got to hide your love away', 'The Beatles')]\n",
-      "manowar [] [('manowar', 'Radiohead')]\n",
-      "sgt peppers lonely hearts club band [('sgt peppers lonely hearts club band', 'The Beatles'), ('sgt peppers lonely hearts club band', 'The Beatles')] [('sgt peppers lonely hearts club band', 'The Beatles')]\n",
-      "diddley daddy [] [('diddley daddy', 'The Rolling Stones')]\n",
-      "molasses [] [('molasses', 'Radiohead')]\n",
-      "you know my name [] [('you know my name', 'The Beatles')]\n",
-      "nothing from nothing [] [('nothing from nothing', 'The Rolling Stones')]\n",
-      "so divine aladdin story [] [('so divine aladdin story', 'The Rolling Stones')]\n",
-      "i cant help it [] [('i cant help it', 'The Rolling Stones')]\n",
-      "keep strong [] [('keep strong', 'On A Friday')]\n",
-      "some things just stick in your mind [] [('some things just stick in your mind', 'The Rolling Stones')]\n",
-      "bad boy [] [('bad boy', 'The Beatles')]\n",
-      "star star [] [('star star', 'The Rolling Stones')]\n",
-      "pop is dead [] [('pop is dead', 'Radiohead')]\n",
-      "on with the show [] [('on with the show', 'The Rolling Stones')]\n",
-      "blackbirdyesterday [] [('blackbirdyesterday', 'The Beatles')]\n",
-      "sha la la la la [] [('sha la la la la', 'The Beatles')]\n",
-      "on the beach [] [('on the beach', 'Radiohead')]\n",
-      "if you let me [] [('if you let me', 'The Rolling Stones')]\n",
-      "help [('help', 'The Beatles'), ('help', 'The Beatles'), ('help', 'The Beatles')] [('help', 'The Beatles')]\n",
-      "something with blue jay way transition [] [('something with blue jay way transition', 'The Beatles')]\n",
-      "following the river [] [('following the river', 'The Rolling Stones')]\n",
-      "i aint superstitious [] [('i aint superstitious', 'The Rolling Stones')]\n",
-      "backstreet girl [] [('backstreet girl', 'The Rolling Stones')]\n",
-      "if i was a dancer dance part 2 [] [('if i was a dancer dance part 2', 'The Rolling Stones')]\n",
-      "sweet black angel [] [('sweet black angel', 'The Rolling Stones')]\n",
-      "not guilty [] [('not guilty', 'The Beatles')]\n",
-      "shake your hips [] [('shake your hips', 'The Rolling Stones')]\n",
-      "i get a kick out of you [] [('i get a kick out of you', 'The Rolling Stones')]\n",
-      "missing links bootleg [] [('missing links bootleg', 'Plan B')]\n",
-      "thatll be the day [] [('thatll be the day', 'The Beatles')]\n",
-      "step inside love los paranoias [] [('step inside love los paranoias', 'The Beatles')]\n",
-      "silver train [] [('silver train', 'The Rolling Stones')]\n",
-      "boys [('boys', 'The Beatles'), ('boys', 'The Beatles')] [('boys', 'The Beatles')]\n",
-      "bloom mark pritchard rmx [('bloom mark pritchard rmx', 'Radiohead')] []\n",
-      "john wesley harding [] [('john wesley harding', 'The Rolling Stones')]\n",
-      "a punchup at a wedding [] [('a punchup at a wedding', 'Radiohead')]\n",
-      "under the board walk [] [('under the board walk', 'The Rolling Stones')]\n",
-      "inside my head [] [('inside my head', 'Radiohead')]\n",
-      "to know her is to love her [] [('to know her is to love her', 'The Beatles')]\n",
-      "rip it up medley [] [('rip it up medley', 'The Beatles')]\n",
-      "good evening mrs magpie modeselektor rmx [('good evening mrs magpie modeselektor rmx', 'Radiohead')] []\n",
-      "brown sugar [('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones'), ('brown sugar', 'The Rolling Stones')] [('brown sugar', 'The Rolling Stones')]\n",
-      "miss amanda jones [] [('miss amanda jones', 'The Rolling Stones')]\n",
-      "ready teddy [] [('ready teddy', 'The Beatles')]\n",
-      "morning mr magpie nathan fake rmx [('morning mr magpie nathan fake rmx', 'Radiohead')] []\n",
-      "rock and a hard place [('rock and a hard place', 'The Rolling Stones'), ('rock and a hard place', 'The Rolling Stones')] [('rock and a hard place', 'The Rolling Stones')]\n",
-      "im talking about you [] [('im talking about you', 'The Beatles')]\n",
-      "medley rip it up shake rattle and roll blue suede shoes [] [('medley rip it up shake rattle and roll blue suede shoes', 'The Beatles')]\n",
-      "can you hear the music [] [('can you hear the music', 'The Rolling Stones')]\n",
-      "what is that you say [] [('what is that you say', 'Radiohead')]\n",
-      "sweet georgia brown [] [('sweet georgia brown', 'The Beatles')]\n",
-      "gimme shelter [('gimme shelter', 'The Rolling Stones'), ('gimme shelter', 'The Rolling Stones'), ('gimme shelter', 'The Rolling Stones')] [('gimme shelter', 'The Rolling Stones')]\n",
-      "jingle bells [] [('jingle bells', 'The Beatles')]\n",
-      "im a king bee [] [('im a king bee', 'The Rolling Stones')]\n",
-      "take it or leave it [] [('take it or leave it', 'The Rolling Stones')]\n",
-      "long long while [] [('long long while', 'The Rolling Stones')]\n",
-      "packt like sardines in a crushd tin box [] [('packt like sardines in a crushd tin box', 'Radiohead')]\n",
-      "2000 light years from home [] [('2000 light years from home', 'The Rolling Stones')]\n",
-      "being for the benefit of mr kite takes 1 2 [] [('being for the benefit of mr kite takes 1 2', 'The Beatles')]\n",
-      "real love [] [('real love', 'The Beatles')]\n",
-      "reminiscing [] [('reminiscing', 'The Beatles')]\n",
-      "just a rumour speech [] [('just a rumour speech', 'The Beatles')]\n",
-      "nothin shakin [] [('nothin shakin', 'The Beatles')]\n",
-      "we love you [] [('we love you', 'The Rolling Stones')]\n",
-      "one more shot [] [('one more shot', 'The Rolling Stones')]\n",
-      "im coming up [] [('im coming up', 'On A Friday')]\n",
-      "the beatles christmas record [] [('the beatles christmas record', 'The Beatles')]\n",
-      "i want to be loved [] [('i want to be loved', 'The Rolling Stones')]\n",
-      "my obsession [] [('my obsession', 'The Rolling Stones')]\n",
-      "somebody else [] [('somebody else', 'Radiohead')]\n",
-      "2000 man [] [('2000 man', 'The Rolling Stones')]\n",
-      "ill get you [] [('ill get you', 'The Beatles')]\n"
-     ]
-    },
+     "data": {
+      "text/plain": [
+       "['5JT7CoUSGNk7mMNkHMQjqr',\n",
+       " '7pQAq14Z73YUFMtxCyt0bG',\n",
+       " '0mNQUZEATk2uItMUtiLWK5',\n",
+       " '3nhJDVdUrm6DnDW4iBfpKz',\n",
+       " '6pkjW5srxjzRSKKMrl7et8',\n",
+       " '1dfuJYDSIc41cw5RPsaCF1',\n",
+       " '63uskN0xLezVg4281wzeQn',\n",
+       " '727YRTVI7pKH1uCnXnyZul',\n",
+       " '727YRTVI7pKH1uCnXnyZul',\n",
+       " '0TRkjwb4uY3CHb5zhr9bBd',\n",
+       " '5Kw6fC8wyRgMYfBDtEklYM',\n",
+       " '5Kw6fC8wyRgMYfBDtEklYM',\n",
+       " '5Kw6fC8wyRgMYfBDtEklYM',\n",
+       " '56rXurvdpjoSIVggfd5ANS',\n",
+       " '56rXurvdpjoSIVggfd5ANS',\n",
+       " '0wFW5NQJdNDJPcZyfYSExx',\n",
+       " '4ajbplh2IXiJkXjQiq5aqq',\n",
+       " '6Y6UBWhifUnkJIO2mdy0S3',\n",
+       " '7iABnSNZciNepqGtjMQxxd',\n",
+       " '22QadBPe0QCuqraFVAr1m3',\n",
+       " '0Oroc0HXQaxs8ONgI7dLnw']"
+      ]
+     },
+     "execution_count": 100,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ignore_tracks = [t['_id']\n",
+    "                  for t in tracks.find({'album_id': '5ju5Ouzan3QwXqQt1Tihbh'}, ['name', 'ctitle'])\n",
+    "                  for tt in tracks.find({'ctitle': t['ctitle'], \n",
+    "                                         'album_id': {'$ne': '5ju5Ouzan3QwXqQt1Tihbh'},\n",
+    "                                         'ignore': {'$exists': False}}, \n",
+    "                                        ['name', 'ctitle', 'album.name', 'album_id'])]\n",
+    "ignore_tracks"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 101,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "for t in ignore_tracks:\n",
+    "    tracks.update_one({'_id': t}, {'$set': {'ignore': True}})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 102,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "stones_live_albums = ['4fhWcu56Bbh5wALuTouFVW', '3PbRKFafwE7Of8e4dTee72', '5eTqRwTGKPBUiUuN1rFaXD',\n",
+    "                     '50UGtgNA5bq1c0BDjPfmbD', '4M8Q1L9PZq0xK5tLUpO3jd', '1W1UJulgICjFDyYIMUwRs7',\n",
+    "                     '0hxrNynMDh5QeyALlf1CdS', '3CHu7qW160uqPZHW3TMZ1l']"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 103,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "for a in stones_live_albums:\n",
+    "    tracks.update_many({'album_id': a}, {'$set': {'ignore': True}})"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 104,
+   "metadata": {
+    "scrolled": true
+   },
+   "outputs": [
     {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "cry for a shadow [] [('cry for a shadow', 'The Beatles')]\n",
-      "wicked child [] [('wicked child', 'Radiohead')]\n",
-      "like dreamers do [] [('like dreamers do', 'The Beatles')]\n",
-      "step inside love [] [('step inside love', 'The Beatles')]\n",
-      "sad day [] [('sad day', 'The Rolling Stones')]\n",
-      "talkin about you [] [('talkin about you', 'The Rolling Stones')]\n",
-      "faithless the wonderboy [] [('faithless the wonderboy', 'Radiohead')]\n",
-      "dancing with mr d [] [('dancing with mr d', 'The Rolling Stones')]\n",
-      "im going down [] [('im going down', 'The Rolling Stones')]\n",
-      "who am i [] [('who am i', 'The Rolling Stones')]\n",
-      "untitled [('untitled', 'Radiohead')] []\n",
-      "we are wasting time [] [('we are wasting time', 'The Rolling Stones')]\n",
-      "moonlight bay [] [('moonlight bay', 'The Beatles')]\n",
-      "eleanor rigby [('eleanor rigby', 'The Beatles'), ('eleanor rigby', 'The Beatles')] [('eleanor rigby', 'The Beatles')]\n",
-      "pain in my heart [('pain in my heart', 'The Rolling Stones')] [('pain in my heart', 'The Rolling Stones'), ('pain in my heart', 'The Rolling Stones')]\n",
-      "some girls [('some girls', 'The Rolling Stones'), ('some girls', 'The Rolling Stones'), ('some girls', 'The Rolling Stones')] [('some girls', 'The Rolling Stones')]\n",
-      "mona [] [('mona', 'The Rolling Stones')]\n",
-      "the hippy hippy shake [] [('the hippy hippy shake', 'The Beatles')]\n",
-      "baby please dont go [] [('baby please dont go', 'The Rolling Stones')]\n",
-      "sad sad sad [('sad sad sad', 'The Rolling Stones'), ('sad sad sad', 'The Rolling Stones')] [('sad sad sad', 'The Rolling Stones')]\n",
-      "cocksucker blues [] [('cocksucker blues', 'The Rolling Stones')]\n",
-      "junk [] [('junk', 'The Beatles')]\n",
-      "everybodys trying to be my baby [('everybodys trying to be my baby', 'The Beatles'), ('everybodys trying to be my baby', 'The Beatles')] [('everybodys trying to be my baby', 'The Beatles')]\n",
-      "mick jaggers introduction to jethro tull [] [('mick jaggers introduction to jethro tull', 'The Rolling Stones')]\n",
-      "hot stuff [] [('hot stuff', 'The Rolling Stones')]\n",
-      "my bonnie [] [('my bonnie', 'Tony Sheridan'), ('my bonnie', 'The Beatles')]\n",
-      "these are my twisted words [] [('these are my twisted words', 'Radiohead')]\n",
-      "whos driving your plane [] [('whos driving your plane', 'The Rolling Stones')]\n",
-      "the singer not the song [] [('the singer not the song', 'The Rolling Stones')]\n",
-      "da doo ron ron [] [('da doo ron ron', 'The Rolling Stones')]\n",
-      "what goes on girl [] [('what goes on girl', 'The Beatles')]\n",
-      "bullet proofi wish i was [] [('bullet proofi wish i was', 'Radiohead')]\n",
-      "the under assistant west coast promotion man [] [('the under assistant west coast promotion man', 'The Rolling Stones')]\n",
-      "yes i am [] [('yes i am', 'Radiohead')]\n",
-      "some other guy [] [('some other guy', 'The Beatles')]\n",
-      "sinking ship [] [('sinking ship', 'On A Friday')]\n",
-      "mick jaggers introduction of rock roll circus [] [('mick jaggers introduction of rock roll circus', 'The Rolling Stones')]\n",
-      "kid a tracklist album cover [] [('kid a tracklist album cover', 'Radiohead')]\n",
-      "sister morphine [] [('sister morphine', 'The Rolling Stones')]\n",
-      "oh baby we got a good thing goin [] [('oh baby we got a good thing goin', 'The Rolling Stones')]\n",
-      "intro [] [('intro', 'The Rolling Stones')]\n",
-      "the honeymoon song [] [('the honeymoon song', 'The Beatles')]\n",
-      "plundered my soul [] [('plundered my soul', 'The Rolling Stones')]\n",
-      "stealing my heart [] [('stealing my heart', 'The Rolling Stones')]\n",
-      "old brown shoe [] [('old brown shoe', 'The Beatles')]\n",
-      "clarabella [] [('clarabella', 'The Beatles')]\n",
-      "i got a woman [] [('i got a woman', 'The Beatles')]\n",
-      "1822 [] [('1822', 'The Beatles')]\n",
-      "revolution i [] [('revolution i', 'The Beatles')]\n",
-      "crazy mama [] [('crazy mama', 'The Rolling Stones')]\n",
-      "cant be seen [('cant be seen', 'The Rolling Stones'), ('cant be seen', 'The Rolling Stones')] [('cant be seen', 'The Rolling Stones')]\n",
-      "the inner light [] [('the inner light', 'The Beatles')]\n",
-      "banana co [] [('banana co', 'Radiohead')]\n",
-      "three cool cats [] [('three cool cats', 'The Beatles')]\n",
-      "it should be you [] [('it should be you', 'The Rolling Stones')]\n",
-      "travellin man [] [('travellin man', 'The Rolling Stones')]\n",
-      "ooh my soul [] [('ooh my soul', 'The Beatles')]\n",
-      "a hard days night [('a hard days night', 'The Beatles'), ('a hard days night', 'The Beatles'), ('a hard days night', 'The Beatles')] [('a hard days night', 'The Beatles')]\n",
-      "big boots [] [('big boots', 'Radiohead')]\n",
-      "youve got a hold on me [] [('youve got a hold on me', 'The Beatles')]\n",
-      "cut a hole [] [('cut a hole', 'Radiohead')]\n",
-      "dont lie to me [] [('dont lie to me', 'The Rolling Stones')]\n",
-      "skttrbrain four tet remix [('skttrbrain four tet remix', 'Radiohead')] []\n",
-      "torn and frayed [] [('torn and frayed', 'The Rolling Stones')]\n",
-      "too much monkey business [] [('too much monkey business', 'The Beatles')]\n",
-      "a punch up at a wedding [('a punch up at a wedding', 'Radiohead')] []\n",
-      "not fade away [('not fade away', 'The Rolling Stones'), ('not fade away', 'The Rolling Stones')] [('not fade away', 'The Rolling Stones')]\n",
-      "wild horses [('wild horses', 'The Rolling Stones')] [('wild horses', 'Plan B'), ('wild horses', 'The Rolling Stones')]\n",
-      "i froze up [] [('i froze up', 'Radiohead')]\n",
-      "free as a bird [] [('free as a bird', 'The Beatles')]\n",
-      "dizzy miss lizzy [('dizzy miss lizzy', 'The Beatles'), ('dizzy miss lizzy', 'The Beatles')] [('dizzy miss lizzy', 'The Beatles')]\n",
-      "india rubber [] [('india rubber', 'Radiohead')]\n",
-      "back to zero [('back to zero', 'The Rolling Stones'), ('back to zero', 'The Rolling Stones')] [('back to zero', 'The Rolling Stones')]\n",
-      "little by little [('little by little', 'Radiohead')] [('little by little', 'Radiohead'), ('little by little', 'The Rolling Stones')]\n",
-      "that girl belongs to yesterday [] [('that girl belongs to yesterday', 'The Rolling Stones')]\n",
-      "ill wear it proudly [] [('ill wear it proudly', 'Radiohead')]\n",
-      "summertime blues [] [('summertime blues', 'The Rolling Stones')]\n",
-      "short and curlies [] [('short and curlies', 'The Rolling Stones')]\n",
-      "family [] [('family', 'The Rolling Stones')]\n",
-      "lies [('lies', 'The Rolling Stones'), ('lies', 'The Rolling Stones')] [('lies', 'The Rolling Stones')]\n",
-      "beatle greetings [] [('beatle greetings', 'The Beatles')]\n",
-      "dancing in the light [] [('dancing in the light', 'The Rolling Stones')]\n",
-      "i dont know why [] [('i dont know why', 'The Rolling Stones')]\n",
-      "she was hot [('she was hot', 'The Rolling Stones'), ('she was hot', 'The Rolling Stones')] [('she was hot', 'The Rolling Stones')]\n",
-      "melody [] [('melody', 'The Rolling Stones')]\n",
-      "all you need is love [('all you need is love', 'The Beatles'), ('all you need is love', 'The Beatles'), ('all you need is love', 'The Beatles')] [('all you need is love', 'The Beatles')]\n",
-      "shout [] [('shout', 'The Beatles')]\n",
-      "ya ya [] [('ya ya', 'The Beatles')]\n",
-      "memory motel [] [('memory motel', 'The Rolling Stones')]\n",
-      "something happened to me yesterday [] [('something happened to me yesterday', 'The Rolling Stones')]\n",
-      "intro excerpt from fanfare for the common man [] [('intro excerpt from fanfare for the common man', 'The Rolling Stones')]\n"
-     ]
+     "data": {
+      "text/html": [
+       "<div>\n",
+       "<style>\n",
+       "    .dataframe thead tr:only-child th {\n",
+       "        text-align: right;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe thead th {\n",
+       "        text-align: left;\n",
+       "    }\n",
+       "\n",
+       "    .dataframe tbody tr th {\n",
+       "        vertical-align: top;\n",
+       "    }\n",
+       "</style>\n",
+       "<table border=\"1\" class=\"dataframe\">\n",
+       "  <thead>\n",
+       "    <tr style=\"text-align: right;\">\n",
+       "      <th></th>\n",
+       "      <th>_id</th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>t_alb</th>\n",
+       "      <th>t_name</th>\n",
+       "      <th>tt_alb</th>\n",
+       "      <th>tt_name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>2uO1HbJhQvmXpjclLmLEeK</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>1oluhsJUDe1uAVGwfsFpfg</td>\n",
+       "      <td>key to the highway</td>\n",
+       "      <td>Dirty Work (Remastered 2009)</td>\n",
+       "      <td>Key To The Highway - Piano Instrumental/Remast...</td>\n",
+       "      <td>Dirty Work</td>\n",
+       "      <td>Key To The Highway - Piano Instrumental</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>3v2SyLXNg7IY3I3N6QTZ45</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>3v2SyLXNg7IY3I3N6QTZ45</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>5Y77giAAAmU9EpfHBDbBV8</td>\n",
+       "      <td>you got me rockin</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>You Got Me Rockin’ - Live</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>You Got Me Rockin’ - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>1w9FiXsMcaxb5SD8vIZgm3</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>1w9FiXsMcaxb5SD8vIZgm3</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>1w9FiXsMcaxb5SD8vIZgm3</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>1w9FiXsMcaxb5SD8vIZgm3</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>1tEdH58k6r4CvjEhmxxbMC</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>1tEdH58k6r4CvjEhmxxbMC</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>1tEdH58k6r4CvjEhmxxbMC</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>0Za26pWVLQpKfXmb9FX10S</td>\n",
+       "      <td>respectable</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Respectable - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Respectable - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>0Za26pWVLQpKfXmb9FX10S</td>\n",
+       "      <td>respectable</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Respectable - Remastered</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Respectable - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>0832Tptls5YicHPGgw7ssP</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Beast Of Burden - Remastered</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>0832Tptls5YicHPGgw7ssP</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Beast Of Burden - Remastered</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>0832Tptls5YicHPGgw7ssP</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Beast Of Burden - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>17</th>\n",
+       "      <td>6yq33zsqWCd8cYXQdtAFZ9</td>\n",
+       "      <td>shattered</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Shattered - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Shattered - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>18</th>\n",
+       "      <td>6yq33zsqWCd8cYXQdtAFZ9</td>\n",
+       "      <td>shattered</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Shattered - Remastered</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Shattered - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>19</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>20</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>21</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>22</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>23</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>24</th>\n",
+       "      <td>4E8qFhiuYAWEYYAsYIf4dW</td>\n",
+       "      <td>when the whip comes down</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>When The Whip Comes Down - Remastered</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>When The Whip Comes Down - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>25</th>\n",
+       "      <td>4E8qFhiuYAWEYYAsYIf4dW</td>\n",
+       "      <td>when the whip comes down</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>When The Whip Comes Down - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>When The Whip Comes Down - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>26</th>\n",
+       "      <td>7sDQlyQACyT7mNHFwwEMI7</td>\n",
+       "      <td>just my imagination running away with me</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Just My Imagination (Running Away With Me) - R...</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Just My Imagination (Running Away With Me) - R...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>27</th>\n",
+       "      <td>48bJ1sWhJKdB8M43uqi924</td>\n",
+       "      <td>some girls</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Some Girls - Remastered</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Some Girls - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>28</th>\n",
+       "      <td>6362zAWHGgbrQaoeCFZpuO</td>\n",
+       "      <td>lies</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Lies - Remastered</td>\n",
+       "      <td>Some Girls</td>\n",
+       "      <td>Lies - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>29</th>\n",
+       "      <td>4RlD0KvoqPZy5n9Zi76X9l</td>\n",
+       "      <td>far away eyes</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Far Away Eyes - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Far Away Eyes - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>...</th>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>153</th>\n",
+       "      <td>7tXuNR6xy9wGBXatDfqFEj</td>\n",
+       "      <td>all down the line</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>All Down The Line - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>All Down The Line - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>154</th>\n",
+       "      <td>3nGR1fpxsAfDdZc9wwm16u</td>\n",
+       "      <td>shattered</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Shattered - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Shattered - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>155</th>\n",
+       "      <td>4Uq4cdVjNDZFtiuzTopRac</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>156</th>\n",
+       "      <td>4Uq4cdVjNDZFtiuzTopRac</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>157</th>\n",
+       "      <td>7i0HwPhGd77HqpGliF8hWC</td>\n",
+       "      <td>let it bleed</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Let It Bleed - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Let It Bleed - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>158</th>\n",
+       "      <td>7ccGJ2vLgjqUDmfn9m66ob</td>\n",
+       "      <td>angie</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Angie - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Angie - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>159</th>\n",
+       "      <td>57H3scKLSd9UOWzjfxa8Ct</td>\n",
+       "      <td>wild horses</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Wild Horses - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Wild Horses - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>160</th>\n",
+       "      <td>3ovO4GmtWckNKeFItjPDVP</td>\n",
+       "      <td>shine a light</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Shine A Light - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Shine A Light - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>161</th>\n",
+       "      <td>3ovO4GmtWckNKeFItjPDVP</td>\n",
+       "      <td>shine a light</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Shine A Light - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Shine A Light - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>162</th>\n",
+       "      <td>2jaOxamwOcyjN1E4ut6CK1</td>\n",
+       "      <td>like a rolling stone</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Like A Rolling Stone - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Like A Rolling Stone - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>163</th>\n",
+       "      <td>2jaOxamwOcyjN1E4ut6CK1</td>\n",
+       "      <td>like a rolling stone</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Like A Rolling Stone - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Like A Rolling Stone - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>164</th>\n",
+       "      <td>6zL5bMJTpJKrf2xkU85b0j</td>\n",
+       "      <td>i go wild</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>I Go Wild - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>I Go Wild - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>165</th>\n",
+       "      <td>6WKiTv7SJ486taXpKIMANr</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>166</th>\n",
+       "      <td>6WKiTv7SJ486taXpKIMANr</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>167</th>\n",
+       "      <td>0v4MSSHsVfsog0miOeNCDM</td>\n",
+       "      <td>connection</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Connection - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Connection - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>168</th>\n",
+       "      <td>4Eh4q5GJegCgMQU1E7rRl7</td>\n",
+       "      <td>slipping away</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Slipping Away - Live</td>\n",
+       "      <td>Steel Wheels (Remastered 2009)</td>\n",
+       "      <td>Slipping Away - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>169</th>\n",
+       "      <td>4Eh4q5GJegCgMQU1E7rRl7</td>\n",
+       "      <td>slipping away</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Slipping Away - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Slipping Away - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>170</th>\n",
+       "      <td>0DK2fsv7gaw2q4P41wtW94</td>\n",
+       "      <td>midnight rambler</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Midnight Rambler - Live</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Midnight Rambler - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>171</th>\n",
+       "      <td>0DK2fsv7gaw2q4P41wtW94</td>\n",
+       "      <td>midnight rambler</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Midnight Rambler - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Midnight Rambler - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>172</th>\n",
+       "      <td>1mnDusx7zn2yzmr42hUksE</td>\n",
+       "      <td>rip this joint</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>173</th>\n",
+       "      <td>1mnDusx7zn2yzmr42hUksE</td>\n",
+       "      <td>rip this joint</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>174</th>\n",
+       "      <td>1mnDusx7zn2yzmr42hUksE</td>\n",
+       "      <td>rip this joint</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>175</th>\n",
+       "      <td>5lWzRBoBzcfr1oNYNhR5ac</td>\n",
+       "      <td>start me up</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Start Me Up - Live</td>\n",
+       "      <td>Tattoo You (2009 Re-Mastered)</td>\n",
+       "      <td>Start Me Up - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>176</th>\n",
+       "      <td>4EllMMamxvLvwvOQLsyc9W</td>\n",
+       "      <td>brown sugar</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>177</th>\n",
+       "      <td>4EllMMamxvLvwvOQLsyc9W</td>\n",
+       "      <td>brown sugar</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>178</th>\n",
+       "      <td>4EllMMamxvLvwvOQLsyc9W</td>\n",
+       "      <td>brown sugar</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>179</th>\n",
+       "      <td>1F69leTp8WQHMFVQ5gOtIS</td>\n",
+       "      <td>mannish boy</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>Mannish Boy - Live</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>Mannish Boy - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>180</th>\n",
+       "      <td>6dx6G9OexgRFCulfKI4sPN</td>\n",
+       "      <td>all down the line</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>All Down The Line - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>All Down The Line - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>181</th>\n",
+       "      <td>16FlhqpxLT6WTfiLVEZ7Vv</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>182</th>\n",
+       "      <td>5UXwp4rKvtXtKJpe0iIctM</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "  </tbody>\n",
+       "</table>\n",
+       "<p>183 rows × 6 columns</p>\n",
+       "</div>"
+      ],
+      "text/plain": [
+       "                        _id                                    ctitle  \\\n",
+       "0    2uO1HbJhQvmXpjclLmLEeK                         jumpin jack flash   \n",
+       "1    1oluhsJUDe1uAVGwfsFpfg                        key to the highway   \n",
+       "2    3v2SyLXNg7IY3I3N6QTZ45                         jumpin jack flash   \n",
+       "3    3v2SyLXNg7IY3I3N6QTZ45                         jumpin jack flash   \n",
+       "4    5Y77giAAAmU9EpfHBDbBV8                         you got me rockin   \n",
+       "5    1w9FiXsMcaxb5SD8vIZgm3                         jumpin jack flash   \n",
+       "6    1w9FiXsMcaxb5SD8vIZgm3                         jumpin jack flash   \n",
+       "7    1w9FiXsMcaxb5SD8vIZgm3                         jumpin jack flash   \n",
+       "8    1w9FiXsMcaxb5SD8vIZgm3                         jumpin jack flash   \n",
+       "9    1tEdH58k6r4CvjEhmxxbMC                         jumpin jack flash   \n",
+       "10   1tEdH58k6r4CvjEhmxxbMC                         jumpin jack flash   \n",
+       "11   1tEdH58k6r4CvjEhmxxbMC                         jumpin jack flash   \n",
+       "12   0Za26pWVLQpKfXmb9FX10S                               respectable   \n",
+       "13   0Za26pWVLQpKfXmb9FX10S                               respectable   \n",
+       "14   0832Tptls5YicHPGgw7ssP                           beast of burden   \n",
+       "15   0832Tptls5YicHPGgw7ssP                           beast of burden   \n",
+       "16   0832Tptls5YicHPGgw7ssP                           beast of burden   \n",
+       "17   6yq33zsqWCd8cYXQdtAFZ9                                 shattered   \n",
+       "18   6yq33zsqWCd8cYXQdtAFZ9                                 shattered   \n",
+       "19   5pTWpY8l7B1XcQnijEFGFj                                  miss you   \n",
+       "20   5pTWpY8l7B1XcQnijEFGFj                                  miss you   \n",
+       "21   5pTWpY8l7B1XcQnijEFGFj                                  miss you   \n",
+       "22   5pTWpY8l7B1XcQnijEFGFj                                  miss you   \n",
+       "23   5pTWpY8l7B1XcQnijEFGFj                                  miss you   \n",
+       "24   4E8qFhiuYAWEYYAsYIf4dW                  when the whip comes down   \n",
+       "25   4E8qFhiuYAWEYYAsYIf4dW                  when the whip comes down   \n",
+       "26   7sDQlyQACyT7mNHFwwEMI7  just my imagination running away with me   \n",
+       "27   48bJ1sWhJKdB8M43uqi924                                some girls   \n",
+       "28   6362zAWHGgbrQaoeCFZpuO                                      lies   \n",
+       "29   4RlD0KvoqPZy5n9Zi76X9l                             far away eyes   \n",
+       "..                      ...                                       ...   \n",
+       "153  7tXuNR6xy9wGBXatDfqFEj                         all down the line   \n",
+       "154  3nGR1fpxsAfDdZc9wwm16u                                 shattered   \n",
+       "155  4Uq4cdVjNDZFtiuzTopRac                           beast of burden   \n",
+       "156  4Uq4cdVjNDZFtiuzTopRac                           beast of burden   \n",
+       "157  7i0HwPhGd77HqpGliF8hWC                              let it bleed   \n",
+       "158  7ccGJ2vLgjqUDmfn9m66ob                                     angie   \n",
+       "159  57H3scKLSd9UOWzjfxa8Ct                               wild horses   \n",
+       "160  3ovO4GmtWckNKeFItjPDVP                             shine a light   \n",
+       "161  3ovO4GmtWckNKeFItjPDVP                             shine a light   \n",
+       "162  2jaOxamwOcyjN1E4ut6CK1                      like a rolling stone   \n",
+       "163  2jaOxamwOcyjN1E4ut6CK1                      like a rolling stone   \n",
+       "164  6zL5bMJTpJKrf2xkU85b0j                                 i go wild   \n",
+       "165  6WKiTv7SJ486taXpKIMANr                                  miss you   \n",
+       "166  6WKiTv7SJ486taXpKIMANr                                  miss you   \n",
+       "167  0v4MSSHsVfsog0miOeNCDM                                connection   \n",
+       "168  4Eh4q5GJegCgMQU1E7rRl7                             slipping away   \n",
+       "169  4Eh4q5GJegCgMQU1E7rRl7                             slipping away   \n",
+       "170  0DK2fsv7gaw2q4P41wtW94                          midnight rambler   \n",
+       "171  0DK2fsv7gaw2q4P41wtW94                          midnight rambler   \n",
+       "172  1mnDusx7zn2yzmr42hUksE                            rip this joint   \n",
+       "173  1mnDusx7zn2yzmr42hUksE                            rip this joint   \n",
+       "174  1mnDusx7zn2yzmr42hUksE                            rip this joint   \n",
+       "175  5lWzRBoBzcfr1oNYNhR5ac                               start me up   \n",
+       "176  4EllMMamxvLvwvOQLsyc9W                               brown sugar   \n",
+       "177  4EllMMamxvLvwvOQLsyc9W                               brown sugar   \n",
+       "178  4EllMMamxvLvwvOQLsyc9W                               brown sugar   \n",
+       "179  1F69leTp8WQHMFVQ5gOtIS                               mannish boy   \n",
+       "180  6dx6G9OexgRFCulfKI4sPN                         all down the line   \n",
+       "181  16FlhqpxLT6WTfiLVEZ7Vv                           beast of burden   \n",
+       "182  5UXwp4rKvtXtKJpe0iIctM                                  miss you   \n",
+       "\n",
+       "                                 t_alb  \\\n",
+       "0        Some Girls: Live In Texas '78   \n",
+       "1         Dirty Work (Remastered 2009)   \n",
+       "2            Ladies & Gentlemen (Live)   \n",
+       "3            Ladies & Gentlemen (Live)   \n",
+       "4    Totally Stripped - Brixton (Live)   \n",
+       "5    Totally Stripped - Brixton (Live)   \n",
+       "6    Totally Stripped - Brixton (Live)   \n",
+       "7    Totally Stripped - Brixton (Live)   \n",
+       "8    Totally Stripped - Brixton (Live)   \n",
+       "9      Totally Stripped - Paris (Live)   \n",
+       "10     Totally Stripped - Paris (Live)   \n",
+       "11     Totally Stripped - Paris (Live)   \n",
+       "12                          Some Girls   \n",
+       "13                          Some Girls   \n",
+       "14                          Some Girls   \n",
+       "15                          Some Girls   \n",
+       "16                          Some Girls   \n",
+       "17                          Some Girls   \n",
+       "18                          Some Girls   \n",
+       "19         Some Girls (Deluxe Version)   \n",
+       "20         Some Girls (Deluxe Version)   \n",
+       "21         Some Girls (Deluxe Version)   \n",
+       "22         Some Girls (Deluxe Version)   \n",
+       "23         Some Girls (Deluxe Version)   \n",
+       "24         Some Girls (Deluxe Version)   \n",
+       "25         Some Girls (Deluxe Version)   \n",
+       "26         Some Girls (Deluxe Version)   \n",
+       "27         Some Girls (Deluxe Version)   \n",
+       "28         Some Girls (Deluxe Version)   \n",
+       "29         Some Girls (Deluxe Version)   \n",
+       "..                                 ...   \n",
+       "153    Totally Stripped - Paris (Live)   \n",
+       "154    Totally Stripped - Paris (Live)   \n",
+       "155    Totally Stripped - Paris (Live)   \n",
+       "156    Totally Stripped - Paris (Live)   \n",
+       "157    Totally Stripped - Paris (Live)   \n",
+       "158    Totally Stripped - Paris (Live)   \n",
+       "159    Totally Stripped - Paris (Live)   \n",
+       "160    Totally Stripped - Paris (Live)   \n",
+       "161    Totally Stripped - Paris (Live)   \n",
+       "162    Totally Stripped - Paris (Live)   \n",
+       "163    Totally Stripped - Paris (Live)   \n",
+       "164    Totally Stripped - Paris (Live)   \n",
+       "165    Totally Stripped - Paris (Live)   \n",
+       "166    Totally Stripped - Paris (Live)   \n",
+       "167    Totally Stripped - Paris (Live)   \n",
+       "168    Totally Stripped - Paris (Live)   \n",
+       "169    Totally Stripped - Paris (Live)   \n",
+       "170    Totally Stripped - Paris (Live)   \n",
+       "171    Totally Stripped - Paris (Live)   \n",
+       "172    Totally Stripped - Paris (Live)   \n",
+       "173    Totally Stripped - Paris (Live)   \n",
+       "174    Totally Stripped - Paris (Live)   \n",
+       "175    Totally Stripped - Paris (Live)   \n",
+       "176    Totally Stripped - Paris (Live)   \n",
+       "177    Totally Stripped - Paris (Live)   \n",
+       "178    Totally Stripped - Paris (Live)   \n",
+       "179    Live At The Checkerboard Lounge   \n",
+       "180      Some Girls: Live In Texas '78   \n",
+       "181      Some Girls: Live In Texas '78   \n",
+       "182      Some Girls: Live In Texas '78   \n",
+       "\n",
+       "                                                t_name  \\\n",
+       "0                            Jumpin' Jack Flash - Live   \n",
+       "1    Key To The Highway - Piano Instrumental/Remast...   \n",
+       "2                            Jumpin' Jack Flash - Live   \n",
+       "3                            Jumpin' Jack Flash - Live   \n",
+       "4                            You Got Me Rockin’ - Live   \n",
+       "5                            Jumpin’ Jack Flash - Live   \n",
+       "6                            Jumpin’ Jack Flash - Live   \n",
+       "7                            Jumpin’ Jack Flash - Live   \n",
+       "8                            Jumpin’ Jack Flash - Live   \n",
+       "9                            Jumpin’ Jack Flash - Live   \n",
+       "10                           Jumpin’ Jack Flash - Live   \n",
+       "11                           Jumpin’ Jack Flash - Live   \n",
+       "12                            Respectable - Remastered   \n",
+       "13                            Respectable - Remastered   \n",
+       "14                        Beast Of Burden - Remastered   \n",
+       "15                        Beast Of Burden - Remastered   \n",
+       "16                        Beast Of Burden - Remastered   \n",
+       "17                              Shattered - Remastered   \n",
+       "18                              Shattered - Remastered   \n",
+       "19                               Miss You - Remastered   \n",
+       "20                               Miss You - Remastered   \n",
+       "21                               Miss You - Remastered   \n",
+       "22                               Miss You - Remastered   \n",
+       "23                               Miss You - Remastered   \n",
+       "24               When The Whip Comes Down - Remastered   \n",
+       "25               When The Whip Comes Down - Remastered   \n",
+       "26   Just My Imagination (Running Away With Me) - R...   \n",
+       "27                             Some Girls - Remastered   \n",
+       "28                                   Lies - Remastered   \n",
+       "29                          Far Away Eyes - Remastered   \n",
+       "..                                                 ...   \n",
+       "153                           All Down The Line - Live   \n",
+       "154                                   Shattered - Live   \n",
+       "155                             Beast Of Burden - Live   \n",
+       "156                             Beast Of Burden - Live   \n",
+       "157                                Let It Bleed - Live   \n",
+       "158                                       Angie - Live   \n",
+       "159                                 Wild Horses - Live   \n",
+       "160                               Shine A Light - Live   \n",
+       "161                               Shine A Light - Live   \n",
+       "162                        Like A Rolling Stone - Live   \n",
+       "163                        Like A Rolling Stone - Live   \n",
+       "164                                   I Go Wild - Live   \n",
+       "165                                    Miss You - Live   \n",
+       "166                                    Miss You - Live   \n",
+       "167                                  Connection - Live   \n",
+       "168                               Slipping Away - Live   \n",
+       "169                               Slipping Away - Live   \n",
+       "170                            Midnight Rambler - Live   \n",
+       "171                            Midnight Rambler - Live   \n",
+       "172                              Rip This Joint - Live   \n",
+       "173                              Rip This Joint - Live   \n",
+       "174                              Rip This Joint - Live   \n",
+       "175                                 Start Me Up - Live   \n",
+       "176                                 Brown Sugar - Live   \n",
+       "177                                 Brown Sugar - Live   \n",
+       "178                                 Brown Sugar - Live   \n",
+       "179                                 Mannish Boy - Live   \n",
+       "180                           All Down The Line - Live   \n",
+       "181                             Beast Of Burden - Live   \n",
+       "182                                    Miss You - Live   \n",
+       "\n",
+       "                                  tt_alb  \\\n",
+       "0                Totally Stripped (Live)   \n",
+       "1                             Dirty Work   \n",
+       "2          Some Girls: Live In Texas '78   \n",
+       "3                Totally Stripped (Live)   \n",
+       "4        Totally Stripped - Paris (Live)   \n",
+       "5          Some Girls: Live In Texas '78   \n",
+       "6              Ladies & Gentlemen (Live)   \n",
+       "7                Totally Stripped (Live)   \n",
+       "8        Totally Stripped - Paris (Live)   \n",
+       "9          Some Girls: Live In Texas '78   \n",
+       "10             Ladies & Gentlemen (Live)   \n",
+       "11               Totally Stripped (Live)   \n",
+       "12         Some Girls: Live In Texas '78   \n",
+       "13   Totally Stripped - Amsterdam (Live)   \n",
+       "14   Totally Stripped - Amsterdam (Live)   \n",
+       "15       Totally Stripped - Paris (Live)   \n",
+       "16         Some Girls: Live In Texas '78   \n",
+       "17         Some Girls: Live In Texas '78   \n",
+       "18       Totally Stripped - Paris (Live)   \n",
+       "19                            Some Girls   \n",
+       "20               Totally Stripped (Live)   \n",
+       "21     Totally Stripped - Brixton (Live)   \n",
+       "22       Totally Stripped - Paris (Live)   \n",
+       "23         Some Girls: Live In Texas '78   \n",
+       "24                            Some Girls   \n",
+       "25         Some Girls: Live In Texas '78   \n",
+       "26                            Some Girls   \n",
+       "27                            Some Girls   \n",
+       "28                            Some Girls   \n",
+       "29         Some Girls: Live In Texas '78   \n",
+       "..                                   ...   \n",
+       "153        Some Girls: Live In Texas '78   \n",
+       "154        Some Girls: Live In Texas '78   \n",
+       "155  Totally Stripped - Amsterdam (Live)   \n",
+       "156        Some Girls: Live In Texas '78   \n",
+       "157  Totally Stripped - Amsterdam (Live)   \n",
+       "158  Totally Stripped - Amsterdam (Live)   \n",
+       "159  Totally Stripped - Amsterdam (Live)   \n",
+       "160              Totally Stripped (Live)   \n",
+       "161  Totally Stripped - Amsterdam (Live)   \n",
+       "162              Totally Stripped (Live)   \n",
+       "163  Totally Stripped - Amsterdam (Live)   \n",
+       "164              Totally Stripped (Live)   \n",
+       "165              Totally Stripped (Live)   \n",
+       "166        Some Girls: Live In Texas '78   \n",
+       "167  Totally Stripped - Amsterdam (Live)   \n",
+       "168       Steel Wheels (Remastered 2009)   \n",
+       "169  Totally Stripped - Amsterdam (Live)   \n",
+       "170            Ladies & Gentlemen (Live)   \n",
+       "171              Totally Stripped (Live)   \n",
+       "172            Ladies & Gentlemen (Live)   \n",
+       "173              Totally Stripped (Live)   \n",
+       "174  Totally Stripped - Amsterdam (Live)   \n",
+       "175        Tattoo You (2009 Re-Mastered)   \n",
+       "176        Some Girls: Live In Texas '78   \n",
+       "177            Ladies & Gentlemen (Live)   \n",
+       "178              Totally Stripped (Live)   \n",
+       "179      Live At The Checkerboard Lounge   \n",
+       "180  Totally Stripped - Amsterdam (Live)   \n",
+       "181  Totally Stripped - Amsterdam (Live)   \n",
+       "182              Totally Stripped (Live)   \n",
+       "\n",
+       "                                               tt_name  \n",
+       "0                            Jumpin’ Jack Flash - Live  \n",
+       "1              Key To The Highway - Piano Instrumental  \n",
+       "2                            Jumpin' Jack Flash - Live  \n",
+       "3                            Jumpin’ Jack Flash - Live  \n",
+       "4                            You Got Me Rockin’ - Live  \n",
+       "5                            Jumpin' Jack Flash - Live  \n",
+       "6                            Jumpin' Jack Flash - Live  \n",
+       "7                            Jumpin’ Jack Flash - Live  \n",
+       "8                            Jumpin’ Jack Flash - Live  \n",
+       "9                            Jumpin' Jack Flash - Live  \n",
+       "10                           Jumpin' Jack Flash - Live  \n",
+       "11                           Jumpin’ Jack Flash - Live  \n",
+       "12                                  Respectable - Live  \n",
+       "13                                  Respectable - Live  \n",
+       "14                              Beast Of Burden - Live  \n",
+       "15                              Beast Of Burden - Live  \n",
+       "16                              Beast Of Burden - Live  \n",
+       "17                                    Shattered - Live  \n",
+       "18                                    Shattered - Live  \n",
+       "19                               Miss You - Remastered  \n",
+       "20                                     Miss You - Live  \n",
+       "21                                     Miss You - Live  \n",
+       "22                                     Miss You - Live  \n",
+       "23                                     Miss You - Live  \n",
+       "24               When The Whip Comes Down - Remastered  \n",
+       "25                     When The Whip Comes Down - Live  \n",
+       "26   Just My Imagination (Running Away With Me) - R...  \n",
+       "27                             Some Girls - Remastered  \n",
+       "28                                   Lies - Remastered  \n",
+       "29                                Far Away Eyes - Live  \n",
+       "..                                                 ...  \n",
+       "153                           All Down The Line - Live  \n",
+       "154                                   Shattered - Live  \n",
+       "155                             Beast Of Burden - Live  \n",
+       "156                             Beast Of Burden - Live  \n",
+       "157                                Let It Bleed - Live  \n",
+       "158                                       Angie - Live  \n",
+       "159                                 Wild Horses - Live  \n",
+       "160                               Shine A Light - Live  \n",
+       "161                               Shine A Light - Live  \n",
+       "162                        Like A Rolling Stone - Live  \n",
+       "163                        Like A Rolling Stone - Live  \n",
+       "164                                   I Go Wild - Live  \n",
+       "165                                    Miss You - Live  \n",
+       "166                                    Miss You - Live  \n",
+       "167                                  Connection - Live  \n",
+       "168                         Slipping Away - Remastered  \n",
+       "169                               Slipping Away - Live  \n",
+       "170                            Midnight Rambler - Live  \n",
+       "171                            Midnight Rambler - Live  \n",
+       "172                              Rip This Joint - Live  \n",
+       "173                              Rip This Joint - Live  \n",
+       "174                              Rip This Joint - Live  \n",
+       "175                           Start Me Up - Remastered  \n",
+       "176                                 Brown Sugar - Live  \n",
+       "177                                 Brown Sugar - Live  \n",
+       "178                                 Brown Sugar - Live  \n",
+       "179                                 Mannish Boy - Live  \n",
+       "180                           All Down The Line - Live  \n",
+       "181                             Beast Of Burden - Live  \n",
+       "182                                    Miss You - Live  \n",
+       "\n",
+       "[183 rows x 6 columns]"
+      ]
+     },
+     "execution_count": 104,
+     "metadata": {},
+     "output_type": "execute_result"
     }
    ],
    "source": [
-    "for ct in ctitles:\n",
-    "    sts = [(t['ctitle'], t['artist_name']) for t in tracks.find({'ctitle': ct}, ['ctitle', 'artist_name'])]\n",
-    "    gts = [(t['ctitle'], t['primary_artist']['name']) for t in genius_tracks.find({'ctitle': ct}, ['ctitle', 'primary_artist.name'])]\n",
-    "    if len(sts) != 1 or len(gts) != 1:\n",
-    "        print(ct, sts, gts)"
+    "pd.DataFrame(list({'_id': t['_id'], 'ctitle': t['ctitle'], 't_name': t['name'], 't_alb': t['album']['name'],\n",
+    "                  'tt_name': tt['name'], 'tt_alb': tt['album']['name']}\n",
+    "                  for t in tracks.find({'artist_id': stones_id, 'ignore': {'$exists': False}}, \n",
+    "                                       ['name', 'ctitle', 'album_id', 'album.name'])\n",
+    "                  for tt in tracks.find({'ctitle': t['ctitle'], \n",
+    "                                         'album_id': {'$lt': t['album_id']},\n",
+    "                                         'ignore': {'$exists': False}}, \n",
+    "                                        ['name', 'ctitle', 'album.name', 'album_id'])))"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 44,
+   "execution_count": 105,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "(set(), set())"
+      ]
+     },
+     "execution_count": 105,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
    "source": [
-    "def levenshtein(s1, s2):\n",
-    "    if len(s1) < len(s2):\n",
-    "        return levenshtein(s2, s1)\n",
-    "\n",
-    "    # len(s1) >= len(s2)\n",
-    "    if len(s2) == 0:\n",
-    "        return len(s1)\n",
+    "# Dirty Work and Dirty Work Remastered\n",
+    "dw = set(t['ctitle'] for t in tracks.find({'album_id': '1TpcI1LEFVhBvDPSTMPGFG'}))\n",
+    "dwd = set(t['ctitle'] for t in tracks.find({'album_id': '1WSfNoPDPzgyKFN6OSYWUx'}))\n",
     "\n",
-    "    previous_row = range(len(s2) + 1)\n",
-    "    for i, c1 in enumerate(s1):\n",
-    "        current_row = [i + 1]\n",
-    "        for j, c2 in enumerate(s2):\n",
-    "            insertions = previous_row[j + 1] + 1 # j+1 instead of j since previous_row and current_row are one character longer\n",
-    "            deletions = current_row[j] + 1       # than s2\n",
-    "            substitutions = previous_row[j] + (c1 != c2)\n",
-    "            current_row.append(min(insertions, deletions, substitutions))\n",
-    "        previous_row = current_row\n",
-    "    \n",
-    "    return previous_row[-1]"
+    "dw - dwd, dwd - dw"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 76,
-   "metadata": {
-    "scrolled": true
-   },
+   "execution_count": 106,
+   "metadata": {},
    "outputs": [
     {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "('sea of monsters', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 23 True\n",
-      "('just my imagination', 'The Rolling Stones') ('out of control', 'The Rolling Stones') 12 True\n",
-      "('jumping jack flash', 'The Rolling Stones') ('jumpin jack flash', 'The Rolling Stones') 1 True\n",
-      "('pepperland laid waste', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 25 True\n",
-      "('little ta', 'The Rolling Stones') ('little t a', 'The Rolling Stones') 1 False\n",
-      "('kansas city heyheyheyhey', 'The Beatles') ('medley kansas cityhey hey hey hey', 'The Beatles') 11 False\n",
-      "('bullet proof i wish i was', 'Radiohead') ('bullet proofi wish i was', 'Radiohead') 1 False\n",
-      "('sea of holes', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 25 True\n",
-      "('packt like sardines in a crushed tin box', 'Radiohead') ('packt like sardines in a crushd tin box', 'Radiohead') 1 False\n",
-      "('codex illum sphere', 'Radiohead') ('the butcher', 'Radiohead') 12 False\n",
-      "('outro', 'Jimi Hendrix') Missing 99999 False\n",
-      "('pepperland', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 20 True\n",
-      "('key to the highway', 'The Rolling Stones') ('thief in the night', 'The Rolling Stones') 10 True\n",
-      "('march of the meanies', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 24 True\n",
-      "('dollars cents', 'Radiohead') ('dollars and cents', 'Radiohead') 4 False\n",
-      "('little by little shed', 'Radiohead') ('little by little', 'Radiohead') 5 True\n",
-      "('sea of time', 'George Martin') ('yellow submarine in pepperland', 'George Martin') 25 True\n",
-      "('faraway eyes', 'The Rolling Stones') ('far away eyes', 'The Rolling Stones') 1 True\n",
-      "('i will los angeles version', 'Radiohead') ('wish you were here', 'Radiohead') 16 False\n",
-      "('everybody needs somebody to love finale', 'The Rolling Stones') ('everybody needs somebody to love', 'The Rolling Stones') 7 True\n",
-      "('a punch up at a wedding', 'Radiohead') ('a punchup at a wedding', 'Radiohead') 1 False\n",
-      "('revolution 1', 'The Beatles') ('revolution 9', 'The Beatles') 1 True\n",
-      "('untitled', 'Radiohead') ('untogether', 'Radiohead') 5 False\n",
-      "('when im sixty four', 'The Beatles') ('when im sixtyfour', 'The Beatles') 1 False\n"
-     ]
+     "data": {
+      "text/plain": [
+       "(set(),\n",
+       " {'claudine',\n",
+       "  'do you think i really care',\n",
+       "  'dont be a stranger',\n",
+       "  'i love you too much',\n",
+       "  'keep up blues',\n",
+       "  'no spare parts',\n",
+       "  'petrol blues',\n",
+       "  'so young',\n",
+       "  'tallahassee lassie',\n",
+       "  'we had it all',\n",
+       "  'when youre gone',\n",
+       "  'you win again'})"
+      ]
+     },
+     "execution_count": 106,
+     "metadata": {},
+     "output_type": "execute_result"
     }
    ],
    "source": [
-    "banned_substrings = ['rmx', 'remix', 'rework', 'live', 'intro', 'medley']\n",
-    "genius_and_both = genius_only | in_both\n",
-    "for s in spotify_only:\n",
-    "    if not any(banned in s[0] for banned in banned_substrings):\n",
-    "        candidates = [g for g in genius_and_both if g[1] == s[1]]\n",
-    "        if candidates:\n",
-    "            gt = min(candidates, key=lambda g: levenshtein(s[0], g[0]))\n",
-    "            d = levenshtein(s[0], gt[0])\n",
-    "        else:\n",
-    "            gt = 'Missing'\n",
-    "            d = 99999\n",
-    "        print(s, gt, d, gt in in_both)"
+    "# Some Girls and Some Girls Deluxe\n",
+    "sg = set(t['ctitle'] for t in tracks.find({'album_id': '54sqbAXxR1jFfyXb1WvrHK'}))\n",
+    "sgd = set(t['ctitle'] for t in tracks.find({'album_id': '6FjXxl9VLURGuubdXUn2J3'}))\n",
+    "\n",
+    "sg - sgd, sgd - sg"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 52,
+   "execution_count": 107,
    "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "('charlies intro to little red rooster', 'The Rolling Stones') []\n",
-      "('bloom jamie xx rework', 'Radiohead') []\n",
-      "('sea of monsters', 'George Martin') []\n",
-      "('just my imagination', 'The Rolling Stones') []\n",
-      "('jumping jack flash', 'The Rolling Stones') [(('jumpin jack flash', 'The Rolling Stones'), 1)]\n",
-      "('pepperland laid waste', 'George Martin') []\n",
-      "('little ta', 'The Rolling Stones') [(('title 5', 'The Rolling Stones'), 4), (('little t a', 'The Rolling Stones'), 1), (('little rain', 'The Rolling Stones'), 3), (('little baby', 'The Rolling Stones'), 3)]\n",
-      "('kansas city heyheyheyhey', 'The Beatles') []\n",
-      "('bullet proof i wish i was', 'Radiohead') [(('bullet proofi wish i was', 'Radiohead'), 1)]\n",
-      "('sea of holes', 'George Martin') []\n",
-      "('packt like sardines in a crushed tin box', 'Radiohead') [(('packt like sardines in a crushd tin box', 'Radiohead'), 1)]\n",
-      "('codex illum sphere', 'Radiohead') []\n",
-      "('pepperland', 'George Martin') []\n",
-      "('key to the highway', 'The Rolling Stones') []\n",
-      "('march of the meanies', 'George Martin') []\n",
-      "('band introductions', 'The Rolling Stones') []\n",
-      "('dollars cents', 'Radiohead') [(('dollars and cents', 'Radiohead'), 4)]\n",
-      "('little by little shed', 'Radiohead') []\n",
-      "('sea of time', 'George Martin') []\n",
-      "('faraway eyes', 'The Rolling Stones') [(('far away eyes', 'The Rolling Stones'), 1)]\n",
-      "('i will los angeles version', 'Radiohead') []\n",
-      "('everybody needs somebody to love finale', 'The Rolling Stones') []\n",
-      "('a punch up at a wedding', 'Radiohead') [(('a punchup at a wedding', 'Radiohead'), 1)]\n",
-      "('martin scorsese intro', 'The Rolling Stones') []\n",
-      "('revolution 1', 'The Beatles') [(('revolution 9', 'The Beatles'), 1), (('revolution', 'The Beatles'), 2), (('revolution i', 'The Beatles'), 1)]\n",
-      "('untitled', 'Radiohead') []\n",
-      "('when im sixty four', 'The Beatles') [(('when im sixtyfour', 'The Beatles'), 1)]\n"
-     ]
-    }
-   ],
+   "outputs": [],
    "source": [
-    "genius_and_both = genius_only | in_both\n",
-    "for s in spotify_only:\n",
-    "    if 'rmx' not in s[0] and 'remix' not in s[0] and 'live' not in s[0]:\n",
-    "        album = \n",
-    "        candidates = [g for g in genius_and_both if g[1] == s[1]]\n",
-    "        if candidates:\n",
-    "            gts = [(g, levenshtein(s[0], g[0])) for g in candidates if levenshtein(s[0], g[0]) < 5]\n",
-    "            print(s, gts)"
+    "for a in ['1TpcI1LEFVhBvDPSTMPGFG', '54sqbAXxR1jFfyXb1WvrHK']:\n",
+    "    tracks.update_many({'album_id': a}, {'$set': {'ignore': True}})"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 54,
+   "execution_count": 108,
    "metadata": {
-    "scrolled": true
+    "scrolled": false
    },
    "outputs": [
     {
        "      <th>_id</th>\n",
        "      <th>artist_name</th>\n",
        "      <th>name</th>\n",
+       "      <th>release_date</th>\n",
        "    </tr>\n",
        "  </thead>\n",
        "  <tbody>\n",
        "      <td>5XfJmldgWzrc1AIdbBaVZn</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Live At The Hollywood Bowl</td>\n",
+       "      <td>2016-09-09</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>1</th>\n",
        "      <td>5ju5Ouzan3QwXqQt1Tihbh</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>1 (Remastered)</td>\n",
+       "      <td>2000-11-13</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>2</th>\n",
        "      <td>2pCqZLeavM2BMovJXsJEIV</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Let It Be (Remastered)</td>\n",
+       "      <td>1970-05-08</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>3</th>\n",
        "      <td>2Pqkn9Dq2DFtdfkKAeqgMd</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Abbey Road (Remastered)</td>\n",
+       "      <td>1969-09-26</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>4</th>\n",
        "      <td>47bcKzmKgmMPHXNVOWpLiu</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Yellow Submarine (Remastered)</td>\n",
+       "      <td>1969-01-17</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>5</th>\n",
        "      <td>03Qh833fEdVT30Pfs93ea6</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>The Beatles (Remastered)</td>\n",
+       "      <td>1968-11-22</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>6</th>\n",
        "      <td>6P9yO0ukhOx3dvmhGKeYoC</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>1967-11-27</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>7</th>\n",
        "      <td>1PULmKbHeOqlkIwcDMNwD4</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>1967-06-01</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>8</th>\n",
        "      <td>0PYyrqs9NXtxPhf0CZkq2L</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Revolver (Remastered)</td>\n",
+       "      <td>1966-08-05</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>9</th>\n",
        "      <td>3OdI6e43crvyAHhaqpxSyz</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Rubber Soul (Remastered)</td>\n",
+       "      <td>1965-12-03</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>10</th>\n",
        "      <td>19K3IHYeVkUTjcBHGfbCOi</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Help! (Remastered)</td>\n",
+       "      <td>1965-08-06</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>11</th>\n",
        "      <td>7BgGBZndAvDlKOcwe5rscZ</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Beatles For Sale (Remastered)</td>\n",
+       "      <td>1964-12-04</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>12</th>\n",
        "      <td>71Mwd9tntFQYUk4k2DwA0D</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>A Hard Day's Night (Remastered)</td>\n",
+       "      <td>1964-07-10</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>13</th>\n",
        "      <td>1DBkJIEoeHrTX4WCBQGcCi</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>The King Of Limbs</td>\n",
+       "      <td>2011-02-18</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>14</th>\n",
        "      <td>3nkEsxmIX0zRNXGAexaHAn</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>With The Beatles (Remastered)</td>\n",
+       "      <td>1963-11-22</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>15</th>\n",
        "      <td>7gDXyW16byCQOgK965BRzn</td>\n",
        "      <td>The Beatles</td>\n",
        "      <td>Please Please Me (Remastered)</td>\n",
+       "      <td>1963-03-22</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>16</th>\n",
        "      <td>6vuykQgDLUCiZ7YggIpLM9</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>A Moon Shaped Pool</td>\n",
+       "      <td>2016-05-08</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>17</th>\n",
        "      <td>47xaqCsJcYFWqD1gwujl1T</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>TKOL RMX 1234567</td>\n",
+       "      <td>2011-10-10</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>18</th>\n",
        "      <td>7eyQXxuf2nGj9d2367Gi5f</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>In Rainbows</td>\n",
+       "      <td>2007-12-28</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>19</th>\n",
        "      <td>36lJLPoPPOKNFddTAcirnc</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>In Rainbows Disk 2</td>\n",
+       "      <td>2007</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>20</th>\n",
        "      <td>6Eo5EkmdLvZrONzi046iC2</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>Com Lag: 2+2=5</td>\n",
+       "      <td>2004-03-24</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>21</th>\n",
        "      <td>1oW3v5Har9mvXnGk0x4fHm</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>Hail To the Thief</td>\n",
+       "      <td>2003</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>22</th>\n",
        "      <td>6svTt5o2lUgIrgYDKVmdnD</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>I Might Be Wrong</td>\n",
+       "      <td>2001</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>23</th>\n",
        "      <td>6V9YnBmFjWmXCBaUVRCVXP</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>Amnesiac</td>\n",
+       "      <td>2001-03-12</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>24</th>\n",
        "      <td>19RUXBFyM4PpmrLRdtqWbp</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>Kid A</td>\n",
+       "      <td>2000-10-01</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>25</th>\n",
        "      <td>7dxKtc08dYeRVHt3p9CZJn</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>OK Computer</td>\n",
+       "      <td>1997-05-28</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>26</th>\n",
        "      <td>500FEaUzn8lN9zWFyZG5C2</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>The Bends</td>\n",
+       "      <td>1995-03-28</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>27</th>\n",
        "      <td>6400dnyeDyD2mIFHfkwHXN</td>\n",
        "      <td>Radiohead</td>\n",
        "      <td>Pablo Honey</td>\n",
+       "      <td>1993-02-22</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>28</th>\n",
        "      <td>4g9Jfls8z2nbQxj5PiXkiy</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Blue &amp; Lonesome</td>\n",
+       "      <td>2016-12-02</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>29</th>\n",
        "      <td>4fhWcu56Bbh5wALuTouFVW</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Havana Moon (Live)</td>\n",
+       "      <td>2016-11-11</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>30</th>\n",
-       "      <td>3PbRKFafwE7Of8e4dTee72</td>\n",
-       "      <td>The Rolling Stones</td>\n",
-       "      <td>Totally Stripped (Live)</td>\n",
-       "    </tr>\n",
-       "    <tr>\n",
-       "      <th>31</th>\n",
-       "      <td>5eTqRwTGKPBUiUuN1rFaXD</td>\n",
-       "      <td>The Rolling Stones</td>\n",
-       "      <td>Live 1965: Music From Charlie Is My Darling (L...</td>\n",
+       "      <th>...</th>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>32</th>\n",
        "      <td>3CHu7qW160uqPZHW3TMZ1l</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Shine A Light</td>\n",
+       "      <td>2008-01-01</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>33</th>\n",
        "      <td>4FTHynKEtuP7eppERNfjyG</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>A Bigger Bang (2009 Re-Mastered)</td>\n",
+       "      <td>2005-09-05</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>34</th>\n",
        "      <td>50UGtgNA5bq1c0BDjPfmbD</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Live Licks</td>\n",
+       "      <td>2004-11-01</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>35</th>\n",
        "      <td>0ZGddnvcVzHVHfE3WW1tV5</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>Bridges To Babylon (2009 Re-Mastered)</td>\n",
+       "      <td>Bridges To Babylon (Remastered)</td>\n",
+       "      <td>1997-09-29</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>36</th>\n",
        "      <td>4M8Q1L9PZq0xK5tLUpO3jd</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Stripped</td>\n",
+       "      <td>1995-01-13</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>37</th>\n",
        "      <td>62ZT16LY1phGM0O8x5qW1z</td>\n",
        "      <td>The Rolling Stones</td>\n",
-       "      <td>Voodoo Lounge (2009 Re-Mastered)</td>\n",
+       "      <td>Voodoo Lounge (Remastered 2009)</td>\n",
+       "      <td>1994-07-11</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>38</th>\n",
        "      <td>1W1UJulgICjFDyYIMUwRs7</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Flashpoint</td>\n",
+       "      <td>1991-04-02</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>39</th>\n",
        "      <td>25mfHGJNQkluvIqedXHSx3</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Steel Wheels (2009 Re-Mastered)</td>\n",
+       "      <td>1989-08-29</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>40</th>\n",
        "      <td>1TpcI1LEFVhBvDPSTMPGFG</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Dirty Work</td>\n",
+       "      <td>1986-03-24</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>41</th>\n",
        "      <td>1WSfNoPDPzgyKFN6OSYWUx</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Dirty Work (Remastered 2009)</td>\n",
+       "      <td>1986-03-24</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>42</th>\n",
        "      <td>064eFGemsrDcMvgRZ0gqtw</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Undercover (2009 Re-Mastered)</td>\n",
+       "      <td>1983-11-07</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>43</th>\n",
        "      <td>0hxrNynMDh5QeyALlf1CdS</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Still Life</td>\n",
+       "      <td>1982-06-01</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>44</th>\n",
        "      <td>1YvnuYGlblQ5vLnOhaZzpn</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Tattoo You (2009 Re-Mastered)</td>\n",
+       "      <td>1981-08-24</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>45</th>\n",
        "      <td>2wZgoXS06wSdu9C0ZJOvlc</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Emotional Rescue (2009 Re-Mastered)</td>\n",
+       "      <td>1980-06-20</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>46</th>\n",
        "      <td>54sqbAXxR1jFfyXb1WvrHK</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Some Girls</td>\n",
+       "      <td>1978-06-09</td>\n",
        "    </tr>\n",
        "    <tr>\n",
        "      <th>47</th>\n",
        "      <td>6FjXxl9VLURGuubdXUn2J3</td>\n",
        "      <td>The Rolling Stones</td>\n",
        "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>1978-06-09</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>48</th>\n",
+       "      <td>4jbWZmf7kRxCBD6tgVepYh</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Forever</td>\n",
+       "      <td>2000-11-06</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>49</th>\n",
+       "      <td>3sr6lAuO3nmB1u8ZuQgpiX</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Spiceworld</td>\n",
+       "      <td>1997-11-03</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>50</th>\n",
+       "      <td>3x2jF7blR6bFHtk4MccsyJ</td>\n",
+       "      <td>Spice Girls</td>\n",
+       "      <td>Spice</td>\n",
+       "      <td>1996-11-04</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>51</th>\n",
+       "      <td>3LXItxKnnJcEDc5QdTc00n</td>\n",
+       "      <td>The Beatles</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>1967-06-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>52</th>\n",
+       "      <td>7Hk1X2BCADxuR9saTIKfOW</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>On Air (Deluxe)</td>\n",
+       "      <td>2017-12-01</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>53</th>\n",
+       "      <td>6iCIB08bkoitQOL5y2uEsM</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Sticky Fingers Live At The Fonda Theatre</td>\n",
+       "      <td>2017-09-29</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>54</th>\n",
+       "      <td>34d9ClCaKRoQ8pMeJ9Gfvt</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>2017-06-07</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>55</th>\n",
+       "      <td>0aWIIpfY32rT1i3yO9LROl</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>2016-06-17</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>56</th>\n",
+       "      <td>5D7RtaChuvF0Av1xXT3acu</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>2016-06-06</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>57</th>\n",
+       "      <td>2b3y5k1DchDACjH5KMlgQv</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>2016-06-03</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>58</th>\n",
+       "      <td>3wkyUMDuH56iNaSxKvukax</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>2016-05-20</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>59</th>\n",
+       "      <td>6hB5kO3oV3tlnblCNSSA9Z</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>2012-07-09</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>60</th>\n",
+       "      <td>3yNf6JVyEEqvM4OqKEmZSC</td>\n",
+       "      <td>Muddy Waters</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>2012-07-09</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>61</th>\n",
+       "      <td>2gCp8kyDcL93s4kVP4VMTC</td>\n",
+       "      <td>The Rolling Stones</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>2011-11-21</td>\n",
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
+       "<p>62 rows × 4 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
        "26  500FEaUzn8lN9zWFyZG5C2           Radiohead   \n",
        "27  6400dnyeDyD2mIFHfkwHXN           Radiohead   \n",
        "28  4g9Jfls8z2nbQxj5PiXkiy  The Rolling Stones   \n",
-       "29  4fhWcu56Bbh5wALuTouFVW  The Rolling Stones   \n",
-       "30  3PbRKFafwE7Of8e4dTee72  The Rolling Stones   \n",
-       "31  5eTqRwTGKPBUiUuN1rFaXD  The Rolling Stones   \n",
-       "32  3CHu7qW160uqPZHW3TMZ1l  The Rolling Stones   \n",
-       "33  4FTHynKEtuP7eppERNfjyG  The Rolling Stones   \n",
-       "34  50UGtgNA5bq1c0BDjPfmbD  The Rolling Stones   \n",
-       "35  0ZGddnvcVzHVHfE3WW1tV5  The Rolling Stones   \n",
-       "36  4M8Q1L9PZq0xK5tLUpO3jd  The Rolling Stones   \n",
-       "37  62ZT16LY1phGM0O8x5qW1z  The Rolling Stones   \n",
-       "38  1W1UJulgICjFDyYIMUwRs7  The Rolling Stones   \n",
-       "39  25mfHGJNQkluvIqedXHSx3  The Rolling Stones   \n",
-       "40  1TpcI1LEFVhBvDPSTMPGFG  The Rolling Stones   \n",
-       "41  1WSfNoPDPzgyKFN6OSYWUx  The Rolling Stones   \n",
-       "42  064eFGemsrDcMvgRZ0gqtw  The Rolling Stones   \n",
-       "43  0hxrNynMDh5QeyALlf1CdS  The Rolling Stones   \n",
-       "44  1YvnuYGlblQ5vLnOhaZzpn  The Rolling Stones   \n",
-       "45  2wZgoXS06wSdu9C0ZJOvlc  The Rolling Stones   \n",
-       "46  54sqbAXxR1jFfyXb1WvrHK  The Rolling Stones   \n",
-       "47  6FjXxl9VLURGuubdXUn2J3  The Rolling Stones   \n",
-       "\n",
-       "                                                 name  \n",
-       "0                          Live At The Hollywood Bowl  \n",
-       "1                                      1 (Remastered)  \n",
-       "2                              Let It Be (Remastered)  \n",
-       "3                             Abbey Road (Remastered)  \n",
-       "4                       Yellow Submarine (Remastered)  \n",
-       "5                            The Beatles (Remastered)  \n",
-       "6                   Magical Mystery Tour (Remastered)  \n",
-       "7   Sgt. Pepper's Lonely Hearts Club Band (Remaste...  \n",
-       "8                               Revolver (Remastered)  \n",
-       "9                            Rubber Soul (Remastered)  \n",
-       "10                                 Help! (Remastered)  \n",
-       "11                      Beatles For Sale (Remastered)  \n",
-       "12                    A Hard Day's Night (Remastered)  \n",
-       "13                                  The King Of Limbs  \n",
-       "14                      With The Beatles (Remastered)  \n",
-       "15                      Please Please Me (Remastered)  \n",
-       "16                                 A Moon Shaped Pool  \n",
-       "17                                   TKOL RMX 1234567  \n",
-       "18                                        In Rainbows  \n",
-       "19                                 In Rainbows Disk 2  \n",
-       "20                                     Com Lag: 2+2=5  \n",
-       "21                                  Hail To the Thief  \n",
-       "22                                   I Might Be Wrong  \n",
-       "23                                           Amnesiac  \n",
-       "24                                              Kid A  \n",
-       "25                                        OK Computer  \n",
-       "26                                          The Bends  \n",
-       "27                                        Pablo Honey  \n",
-       "28                                    Blue & Lonesome  \n",
-       "29                                 Havana Moon (Live)  \n",
-       "30                            Totally Stripped (Live)  \n",
-       "31  Live 1965: Music From Charlie Is My Darling (L...  \n",
-       "32                                      Shine A Light  \n",
-       "33                   A Bigger Bang (2009 Re-Mastered)  \n",
-       "34                                         Live Licks  \n",
-       "35              Bridges To Babylon (2009 Re-Mastered)  \n",
-       "36                                           Stripped  \n",
-       "37                   Voodoo Lounge (2009 Re-Mastered)  \n",
-       "38                                         Flashpoint  \n",
-       "39                    Steel Wheels (2009 Re-Mastered)  \n",
-       "40                                         Dirty Work  \n",
-       "41                       Dirty Work (Remastered 2009)  \n",
-       "42                      Undercover (2009 Re-Mastered)  \n",
-       "43                                         Still Life  \n",
-       "44                      Tattoo You (2009 Re-Mastered)  \n",
-       "45                Emotional Rescue (2009 Re-Mastered)  \n",
-       "46                                         Some Girls  \n",
-       "47                        Some Girls (Deluxe Version)  "
-      ]
-     },
-     "execution_count": 54,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "pd.DataFrame(list(albums.find({}, ['artist_name', 'name'])))"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {
-    "collapsed": true
-   },
-   "source": [
-    "Manually fix a couple of errors."
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 85,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "<pymongo.results.UpdateResult at 0x7f4550282a88>"
-      ]
-     },
-     "execution_count": 85,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "genius_tracks.update_many({'ctitle': 'revolution i'}, \n",
-    "                          {'$set': {'ctitle': 'revolution 1'}})\n",
-    "genius_tracks.update_many({'ctitle': 'when im sixtyfour'}, \n",
-    "                          {'$set': {'ctitle': 'when im sixty four'}})\n",
-    "genius_tracks.update_many({'ctitle': 'packt like sardines in a crushd tin box'}, \n",
-    "                          {'$set': {'ctitle': 'packt like sardines in a crushed tin box'}})\n",
-    "genius_tracks.update_many({'ctitle': 'a punchup at a wedding'}, \n",
-    "                          {'$set': {'ctitle': 'a punch up at a wedding'}})\n",
-    "genius_tracks.update_many({'ctitle': 'dollars cents'}, \n",
-    "                          {'$set': {'ctitle': 'dollars and cents'}})\n",
-    "genius_tracks.update_many({'ctitle': 'bullet proofi wish i was'}, \n",
-    "                          {'$set': {'ctitle': 'bullet proof i wish i was'}})\n",
-    "genius_tracks.update_many({'ctitle': 'jumpin jack flash'}, \n",
-    "                          {'$set': {'ctitle': 'jumping jack flash'}})\n",
-    "genius_tracks.update_many({'ctitle': 'far away eyes'}, \n",
-    "                          {'$set': {'ctitle': 'faraway eyes'}})"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 86,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "(494, 554, 52)"
-      ]
-     },
-     "execution_count": 86,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "in_both = set(g['ctitle'] for g in genius_tracks.find({}, ['ctitle']) if tracks.find({'ctitle': g['ctitle']}).count())\n",
-    "genius_only = set(g['ctitle'] for g in genius_tracks.find({}, ['ctitle']) if not tracks.find({'ctitle': g['ctitle']}).count())\n",
-    "spotify_only = set(s['ctitle'] for s in tracks.find({}, ['ctitle']) if not genius_tracks.find({'ctitle': s['ctitle']}).count())\n",
-    "len(in_both), len(genius_only), len(spotify_only)"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "### Copy the lyrics over<a name=\"copylyrics\"></a>\n",
-    "Now can can connect the tracks, let's copy across the lyrics from the Genius collection into the Spotify collection. We'll calculate the lyrical density at the same time.\n",
-    "\n",
-    "* [Top](#top)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 87,
-   "metadata": {},
-   "outputs": [],
-   "source": [
-    "for t in tracks.find({}, ['ctitle', 'duration_ms']):\n",
-    "    gts = genius_tracks.find({'ctitle': t['ctitle'], 'lyrics': {'$exists': True}}, ['lyrics', 'original_lyrics'])\n",
-    "    for gt in gts:\n",
-    "        tracks.update_one({'_id': t['_id']}, \n",
-    "                          {'$set': {'lyrics': gt['lyrics'], \n",
-    "                                    'original_lyrics': gt['original_lyrics'],\n",
-    "                                    'lyrical_density': 1000 * len(gt['lyrics'].split()) / t['duration_ms']}})"
-   ]
-  },
-  {
-   "cell_type": "markdown",
-   "metadata": {},
-   "source": [
-    "## Sentiment analysis<a name=\"sentimentanalysis\"></a>\n",
-    "I couldn't find an easily-installable equivalent to the NRC corpus, so I'm using a sentiment analysis API endpoint from [Text Processing](http://text-processing.com/docs/sentiment.html).\n",
-    "\n",
-    "* [Top](#top)"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 88,
-   "metadata": {
-    "scrolled": true
-   },
-   "outputs": [],
-   "source": [
-    "for t in tracks.find({'lyrics': {'$exists': True}}, ['lyrics']):\n",
-    "    text = t['lyrics']\n",
-    "    if text:\n",
-    "        query = urllib.parse.urlencode({'text': text}).encode('ascii')\n",
-    "        headers = {'Accept': 'application/json',\n",
-    "                   'User-Agent': 'curl/7.9.8 (i686-pc-linux-gnu) libcurl 7.9.8 (OpenSSL 0.9.6b) (ipv6 enabled)'}\n",
-    "        request = urllib.request.Request('http://text-processing.com/api/sentiment/', \n",
-    "                                 headers=headers, data=query)\n",
-    "        with urllib.request.urlopen(request) as f:\n",
-    "            response = json.loads(f.read().decode('utf-8'))\n",
-    "            tracks.update_one({'_id': t['_id']}, {'$set': {'sentiment': response}})"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 89,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "dict_keys(['track_number', 'time_signature', '_id', 'preview_url', 'sentiment', 'loudness', 'type', 'external_ids', 'uri', 'album_id', 'lyrics', 'lyrical_density', 'tempo', 'danceability', 'href', 'disc_number', 'available_markets', 'analysis_url', 'instrumentalness', 'artist_id', 'name', 'id', 'valence', 'external_urls', 'ctitle', 'track_href', 'duration_ms', 'artist_name', 'explicit', 'speechiness', 'artists', 'album', 'key', 'original_lyrics', 'popularity', 'acousticness', 'liveness', 'mode', 'energy'])"
+       "29  4fhWcu56Bbh5wALuTouFVW  The Rolling Stones   \n",
+       "..                     ...                 ...   \n",
+       "32  3CHu7qW160uqPZHW3TMZ1l  The Rolling Stones   \n",
+       "33  4FTHynKEtuP7eppERNfjyG  The Rolling Stones   \n",
+       "34  50UGtgNA5bq1c0BDjPfmbD  The Rolling Stones   \n",
+       "35  0ZGddnvcVzHVHfE3WW1tV5  The Rolling Stones   \n",
+       "36  4M8Q1L9PZq0xK5tLUpO3jd  The Rolling Stones   \n",
+       "37  62ZT16LY1phGM0O8x5qW1z  The Rolling Stones   \n",
+       "38  1W1UJulgICjFDyYIMUwRs7  The Rolling Stones   \n",
+       "39  25mfHGJNQkluvIqedXHSx3  The Rolling Stones   \n",
+       "40  1TpcI1LEFVhBvDPSTMPGFG  The Rolling Stones   \n",
+       "41  1WSfNoPDPzgyKFN6OSYWUx  The Rolling Stones   \n",
+       "42  064eFGemsrDcMvgRZ0gqtw  The Rolling Stones   \n",
+       "43  0hxrNynMDh5QeyALlf1CdS  The Rolling Stones   \n",
+       "44  1YvnuYGlblQ5vLnOhaZzpn  The Rolling Stones   \n",
+       "45  2wZgoXS06wSdu9C0ZJOvlc  The Rolling Stones   \n",
+       "46  54sqbAXxR1jFfyXb1WvrHK  The Rolling Stones   \n",
+       "47  6FjXxl9VLURGuubdXUn2J3  The Rolling Stones   \n",
+       "48  4jbWZmf7kRxCBD6tgVepYh         Spice Girls   \n",
+       "49  3sr6lAuO3nmB1u8ZuQgpiX         Spice Girls   \n",
+       "50  3x2jF7blR6bFHtk4MccsyJ         Spice Girls   \n",
+       "51  3LXItxKnnJcEDc5QdTc00n         The Beatles   \n",
+       "52  7Hk1X2BCADxuR9saTIKfOW  The Rolling Stones   \n",
+       "53  6iCIB08bkoitQOL5y2uEsM  The Rolling Stones   \n",
+       "54  34d9ClCaKRoQ8pMeJ9Gfvt  The Rolling Stones   \n",
+       "55  0aWIIpfY32rT1i3yO9LROl  The Rolling Stones   \n",
+       "56  5D7RtaChuvF0Av1xXT3acu  The Rolling Stones   \n",
+       "57  2b3y5k1DchDACjH5KMlgQv  The Rolling Stones   \n",
+       "58  3wkyUMDuH56iNaSxKvukax  The Rolling Stones   \n",
+       "59  6hB5kO3oV3tlnblCNSSA9Z        Muddy Waters   \n",
+       "60  3yNf6JVyEEqvM4OqKEmZSC        Muddy Waters   \n",
+       "61  2gCp8kyDcL93s4kVP4VMTC  The Rolling Stones   \n",
+       "\n",
+       "                                                 name release_date  \n",
+       "0                          Live At The Hollywood Bowl   2016-09-09  \n",
+       "1                                      1 (Remastered)   2000-11-13  \n",
+       "2                              Let It Be (Remastered)   1970-05-08  \n",
+       "3                             Abbey Road (Remastered)   1969-09-26  \n",
+       "4                       Yellow Submarine (Remastered)   1969-01-17  \n",
+       "5                            The Beatles (Remastered)   1968-11-22  \n",
+       "6                   Magical Mystery Tour (Remastered)   1967-11-27  \n",
+       "7   Sgt. Pepper's Lonely Hearts Club Band (Remaste...   1967-06-01  \n",
+       "8                               Revolver (Remastered)   1966-08-05  \n",
+       "9                            Rubber Soul (Remastered)   1965-12-03  \n",
+       "10                                 Help! (Remastered)   1965-08-06  \n",
+       "11                      Beatles For Sale (Remastered)   1964-12-04  \n",
+       "12                    A Hard Day's Night (Remastered)   1964-07-10  \n",
+       "13                                  The King Of Limbs   2011-02-18  \n",
+       "14                      With The Beatles (Remastered)   1963-11-22  \n",
+       "15                      Please Please Me (Remastered)   1963-03-22  \n",
+       "16                                 A Moon Shaped Pool   2016-05-08  \n",
+       "17                                   TKOL RMX 1234567   2011-10-10  \n",
+       "18                                        In Rainbows   2007-12-28  \n",
+       "19                                 In Rainbows Disk 2         2007  \n",
+       "20                                     Com Lag: 2+2=5   2004-03-24  \n",
+       "21                                  Hail To the Thief         2003  \n",
+       "22                                   I Might Be Wrong         2001  \n",
+       "23                                           Amnesiac   2001-03-12  \n",
+       "24                                              Kid A   2000-10-01  \n",
+       "25                                        OK Computer   1997-05-28  \n",
+       "26                                          The Bends   1995-03-28  \n",
+       "27                                        Pablo Honey   1993-02-22  \n",
+       "28                                    Blue & Lonesome   2016-12-02  \n",
+       "29                                 Havana Moon (Live)   2016-11-11  \n",
+       "..                                                ...          ...  \n",
+       "32                                      Shine A Light   2008-01-01  \n",
+       "33                   A Bigger Bang (2009 Re-Mastered)   2005-09-05  \n",
+       "34                                         Live Licks   2004-11-01  \n",
+       "35                    Bridges To Babylon (Remastered)   1997-09-29  \n",
+       "36                                           Stripped   1995-01-13  \n",
+       "37                    Voodoo Lounge (Remastered 2009)   1994-07-11  \n",
+       "38                                         Flashpoint   1991-04-02  \n",
+       "39                    Steel Wheels (2009 Re-Mastered)   1989-08-29  \n",
+       "40                                         Dirty Work   1986-03-24  \n",
+       "41                       Dirty Work (Remastered 2009)   1986-03-24  \n",
+       "42                      Undercover (2009 Re-Mastered)   1983-11-07  \n",
+       "43                                         Still Life   1982-06-01  \n",
+       "44                      Tattoo You (2009 Re-Mastered)   1981-08-24  \n",
+       "45                Emotional Rescue (2009 Re-Mastered)   1980-06-20  \n",
+       "46                                         Some Girls   1978-06-09  \n",
+       "47                        Some Girls (Deluxe Version)   1978-06-09  \n",
+       "48                                            Forever   2000-11-06  \n",
+       "49                                         Spiceworld   1997-11-03  \n",
+       "50                                              Spice   1996-11-04  \n",
+       "51  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   1967-06-01  \n",
+       "52                                    On Air (Deluxe)   2017-12-01  \n",
+       "53           Sticky Fingers Live At The Fonda Theatre   2017-09-29  \n",
+       "54                          Ladies & Gentlemen (Live)   2017-06-07  \n",
+       "55                            Totally Stripped (Live)   2016-06-17  \n",
+       "56                  Totally Stripped - Brixton (Live)   2016-06-06  \n",
+       "57                Totally Stripped - Amsterdam (Live)   2016-06-03  \n",
+       "58                    Totally Stripped - Paris (Live)   2016-05-20  \n",
+       "59                    Live At The Checkerboard Lounge   2012-07-09  \n",
+       "60                    Live At The Checkerboard Lounge   2012-07-09  \n",
+       "61                      Some Girls: Live In Texas '78   2011-11-21  \n",
+       "\n",
+       "[62 rows x 4 columns]"
       ]
      },
-     "execution_count": 89,
+     "execution_count": 108,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "tracks.find_one({'sentiment': {'$exists': True}}).keys()"
+    "pd.DataFrame(list(albums.find({}, ['name', 'artist_name', 'release_date'])))"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 90,
+   "execution_count": 109,
    "metadata": {
     "scrolled": true
    },
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "{'_id': '74tlMxJ8wF0sNp93GBEPdK',\n",
-       " 'acousticness': 0.00352,\n",
-       " 'album': {'album_type': 'album',\n",
-       "  'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe'},\n",
-       "    'href': 'https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe',\n",
-       "    'id': '22bE4uQ6baNwSHPVcDxLCe',\n",
-       "    'name': 'The Rolling Stones',\n",
-       "    'type': 'artist',\n",
-       "    'uri': 'spotify:artist:22bE4uQ6baNwSHPVcDxLCe'}],\n",
-       "  'available_markets': ['GB'],\n",
-       "  'external_urls': {'spotify': 'https://open.spotify.com/album/3PbRKFafwE7Of8e4dTee72'},\n",
-       "  'href': 'https://api.spotify.com/v1/albums/3PbRKFafwE7Of8e4dTee72',\n",
-       "  'id': '3PbRKFafwE7Of8e4dTee72',\n",
-       "  'images': [{'height': 640,\n",
-       "    'url': 'https://i.scdn.co/image/4bd988736fe53e8109488f0f390cdfd5d119762d',\n",
-       "    'width': 640},\n",
-       "   {'height': 300,\n",
-       "    'url': 'https://i.scdn.co/image/b5c53642ccdaac3120aa766ce5e29d9c1b61794f',\n",
-       "    'width': 300},\n",
-       "   {'height': 64,\n",
-       "    'url': 'https://i.scdn.co/image/9c6e2872cbd2688c528d5d43c57651d12c19eec1',\n",
-       "    'width': 64}],\n",
-       "  'name': 'Totally Stripped (Live)',\n",
-       "  'type': 'album',\n",
-       "  'uri': 'spotify:album:3PbRKFafwE7Of8e4dTee72'},\n",
-       " 'album_id': '3PbRKFafwE7Of8e4dTee72',\n",
-       " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/74tlMxJ8wF0sNp93GBEPdK',\n",
-       " 'artist_id': '22bE4uQ6baNwSHPVcDxLCe',\n",
-       " 'artist_name': 'The Rolling Stones',\n",
-       " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe'},\n",
-       "   'href': 'https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe',\n",
-       "   'id': '22bE4uQ6baNwSHPVcDxLCe',\n",
-       "   'name': 'The Rolling Stones',\n",
-       "   'type': 'artist',\n",
-       "   'uri': 'spotify:artist:22bE4uQ6baNwSHPVcDxLCe'}],\n",
-       " 'available_markets': ['GB'],\n",
-       " 'ctitle': 'honky tonk women',\n",
-       " 'danceability': 0.367,\n",
-       " 'disc_number': 1,\n",
-       " 'duration_ms': 293773,\n",
-       " 'energy': 0.962,\n",
-       " 'explicit': False,\n",
-       " 'external_ids': {'isrc': 'GBCBR1500392'},\n",
-       " 'external_urls': {'spotify': 'https://open.spotify.com/track/74tlMxJ8wF0sNp93GBEPdK'},\n",
-       " 'href': 'https://api.spotify.com/v1/tracks/74tlMxJ8wF0sNp93GBEPdK',\n",
-       " 'id': '74tlMxJ8wF0sNp93GBEPdK',\n",
-       " 'instrumentalness': 0.000172,\n",
-       " 'key': 0,\n",
-       " 'liveness': 0.962,\n",
-       " 'loudness': -5.589,\n",
-       " 'lyrical_density': 0.48336640875778236,\n",
-       " 'lyrics': \"i met a gin-soaked barroom queen in memphis she tried to take me upstairs for a ride she had to heave me right across her shoulder cause i just can't seem to drink it off my mind it's the honky tonk women gimme, gimme, gimme the honky tonk blues i laid a divorcee in new york city i had to put up some kind of a fight the lady then she covered me with roses she blew my nose and then she blew my mind it's the honky tonk women gimme, gimme, gimme the honky tonk blues strollin' on the boulevards of paris naked as the day that i will die the sailors, they're so charming there in paris but i just don't seem to sail you off my mind it's the honky tonk women gimme, gimme, gimme the honky tonk blues\",\n",
-       " 'mode': 1,\n",
-       " 'name': 'Honky Tonk Women - Live',\n",
-       " 'original_lyrics': \"\\n\\nI met a gin-soaked barroom queen in Memphis\\nShe tried to take me upstairs for a ride\\nShe had to heave me right across her shoulder\\nCause I just can't seem to drink it off my mind\\n\\nIt's the honky tonk women\\nGimme, gimme, gimme the honky tonk blues\\n\\nI laid a divorcee in New York City\\nI had to put up some kind of a fight\\nThe lady then she covered me with roses\\nShe blew my nose and then she blew my mind\\n\\nIt's the honky tonk women\\nGimme, gimme, gimme the honky tonk blues\\n\\nStrollin' on the boulevards of Paris\\nNaked as the day that I will die\\nThe sailors, they're so charming there in Paris\\nBut I just don't seem to sail you off my mind\\n\\nIt's the honky tonk women\\nGimme, gimme, gimme the honky tonk blues\\n\\n\",\n",
-       " 'popularity': 19,\n",
-       " 'preview_url': 'https://p.scdn.co/mp3-preview/671f51874a70b3f786fe38b452f2c0fa0e64356b?cid=null',\n",
-       " 'sentiment': {'label': 'neutral',\n",
-       "  'probability': {'neg': 0.6068924635372548,\n",
-       "   'neutral': 0.6112522000410702,\n",
-       "   'pos': 0.3931075364627452}},\n",
-       " 'speechiness': 0.11,\n",
-       " 'tempo': 114.303,\n",
-       " 'time_signature': 4,\n",
-       " 'track_href': 'https://api.spotify.com/v1/tracks/74tlMxJ8wF0sNp93GBEPdK',\n",
-       " 'track_number': 2,\n",
-       " 'type': 'audio_features',\n",
-       " 'uri': 'spotify:track:74tlMxJ8wF0sNp93GBEPdK',\n",
-       " 'valence': 0.426}"
-      ]
-     },
-     "execution_count": 90,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "tracks.find_one({'sentiment': {'$exists': True}})"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 91,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "(606, 65)"
-      ]
-     },
-     "execution_count": 91,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "tracks.find({'sentiment': {'$exists': True}}).count(), tracks.find({'sentiment': {'$exists': False}}).count()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 92,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "8"
-      ]
-     },
-     "execution_count": 92,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "tracks.find({'sentiment': {'$exists': False}, 'lyrics': {'$exists': True}}).count()"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 97,
-   "metadata": {},
    "outputs": [
     {
      "data": {
        "    <tr style=\"text-align: right;\">\n",
        "      <th></th>\n",
        "      <th>_id</th>\n",
-       "      <th>artist_name</th>\n",
-       "      <th>lyrics</th>\n",
-       "      <th>name</th>\n",
+       "      <th>ctitle</th>\n",
+       "      <th>t_alb</th>\n",
+       "      <th>t_name</th>\n",
+       "      <th>tt_alb</th>\n",
+       "      <th>tt_name</th>\n",
+       "    </tr>\n",
+       "  </thead>\n",
+       "  <tbody>\n",
+       "    <tr>\n",
+       "      <th>0</th>\n",
+       "      <td>2uO1HbJhQvmXpjclLmLEeK</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>1</th>\n",
+       "      <td>3v2SyLXNg7IY3I3N6QTZ45</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>2</th>\n",
+       "      <td>3v2SyLXNg7IY3I3N6QTZ45</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>3</th>\n",
+       "      <td>5Y77giAAAmU9EpfHBDbBV8</td>\n",
+       "      <td>you got me rockin</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>You Got Me Rockin’ - Live</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>You Got Me Rockin’ - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>4</th>\n",
+       "      <td>1w9FiXsMcaxb5SD8vIZgm3</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>5</th>\n",
+       "      <td>1w9FiXsMcaxb5SD8vIZgm3</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>6</th>\n",
+       "      <td>1w9FiXsMcaxb5SD8vIZgm3</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>7</th>\n",
+       "      <td>1w9FiXsMcaxb5SD8vIZgm3</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>8</th>\n",
+       "      <td>1tEdH58k6r4CvjEhmxxbMC</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>9</th>\n",
+       "      <td>1tEdH58k6r4CvjEhmxxbMC</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Jumpin' Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>10</th>\n",
+       "      <td>1tEdH58k6r4CvjEhmxxbMC</td>\n",
+       "      <td>jumpin jack flash</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Jumpin’ Jack Flash - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>11</th>\n",
+       "      <td>5jWDi16gJx7N2oexwjGx5y</td>\n",
+       "      <td>introduction</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>Introduction - Live</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>Introduction - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>12</th>\n",
+       "      <td>6M75z4blVIRMeWtjSU1UyR</td>\n",
+       "      <td>you dont have to go</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>You Don't Have To Go - Live</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>You Don't Have To Go - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>13</th>\n",
+       "      <td>6NqtddM4j4X9dG75yOmy0S</td>\n",
+       "      <td>yellow submarine</td>\n",
+       "      <td>Yellow Submarine (Remastered)</td>\n",
+       "      <td>Yellow Submarine - Remastered</td>\n",
+       "      <td>Revolver (Remastered)</td>\n",
+       "      <td>Yellow Submarine - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>14</th>\n",
+       "      <td>5EuraV2jbqB15ihd3d2Hex</td>\n",
+       "      <td>strawberry fields forever</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Strawberry Fields Forever - Remastered 2009</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Strawberry Fields Forever - Take 7</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>15</th>\n",
+       "      <td>5EuraV2jbqB15ihd3d2Hex</td>\n",
+       "      <td>strawberry fields forever</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Strawberry Fields Forever - Remastered 2009</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Strawberry Fields Forever - Take 26</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>16</th>\n",
+       "      <td>5EuraV2jbqB15ihd3d2Hex</td>\n",
+       "      <td>strawberry fields forever</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Strawberry Fields Forever - Remastered 2009</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Strawberry Fields Forever - Stereo Mix 2015</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>17</th>\n",
+       "      <td>5RStjc42UAYI2NMY3cYpgz</td>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Penny Lane - Remastered 2009</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Penny Lane - Take 6 / Instrumental</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>18</th>\n",
+       "      <td>5RStjc42UAYI2NMY3cYpgz</td>\n",
+       "      <td>penny lane</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>Penny Lane - Remastered 2009</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Penny Lane - Stereo Mix 2017</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>19</th>\n",
+       "      <td>3xMSaDC9TU6AQJIsxQB7MK</td>\n",
+       "      <td>all you need is love</td>\n",
+       "      <td>Magical Mystery Tour (Remastered)</td>\n",
+       "      <td>All You Need Is Love - Remastered 2009</td>\n",
+       "      <td>Yellow Submarine (Remastered)</td>\n",
+       "      <td>All You Need Is Love - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>20</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>21</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Totally Stripped - Brixton (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>22</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>23</th>\n",
+       "      <td>5pTWpY8l7B1XcQnijEFGFj</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Miss You - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>24</th>\n",
+       "      <td>4E8qFhiuYAWEYYAsYIf4dW</td>\n",
+       "      <td>when the whip comes down</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>When The Whip Comes Down - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>When The Whip Comes Down - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>25</th>\n",
+       "      <td>4RlD0KvoqPZy5n9Zi76X9l</td>\n",
+       "      <td>far away eyes</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Far Away Eyes - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Far Away Eyes - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>26</th>\n",
+       "      <td>33PXyHrkIHxp6PBVPlQGx7</td>\n",
+       "      <td>respectable</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Respectable - Remastered</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Respectable - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>27</th>\n",
+       "      <td>33PXyHrkIHxp6PBVPlQGx7</td>\n",
+       "      <td>respectable</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Respectable - Remastered</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Respectable - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>28</th>\n",
+       "      <td>7pfVe0VrMK5QhTaAYzkuYn</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Beast Of Burden - Remastered</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
        "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
        "    <tr>\n",
-       "      <th>0</th>\n",
-       "      <td>47DgFAFnhfwoSko23P7pz5</td>\n",
-       "      <td>George Martin</td>\n",
-       "      <td></td>\n",
-       "      <td>Yellow Submarine In Pepperland - Remastered 2009</td>\n",
+       "      <th>29</th>\n",
+       "      <td>7pfVe0VrMK5QhTaAYzkuYn</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Some Girls (Deluxe Version)</td>\n",
+       "      <td>Beast Of Burden - Remastered</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>1</th>\n",
-       "      <td>2z1p43SNSbeowzy8WdYHNk</td>\n",
-       "      <td>The Beatles</td>\n",
-       "      <td></td>\n",
-       "      <td>Flying - Remastered 2009</td>\n",
+       "      <th>...</th>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
+       "      <td>...</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>2</th>\n",
-       "      <td>3gKuywOm38axM8sJGq6Laq</td>\n",
-       "      <td>Radiohead</td>\n",
-       "      <td></td>\n",
-       "      <td>MK 1</td>\n",
+       "      <th>149</th>\n",
+       "      <td>1mnDusx7zn2yzmr42hUksE</td>\n",
+       "      <td>rip this joint</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>3</th>\n",
-       "      <td>2uYSbsxAMmK1awUl06T7ix</td>\n",
-       "      <td>Radiohead</td>\n",
-       "      <td></td>\n",
-       "      <td>MK 2</td>\n",
+       "      <th>150</th>\n",
+       "      <td>1mnDusx7zn2yzmr42hUksE</td>\n",
+       "      <td>rip this joint</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Rip This Joint - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>4</th>\n",
-       "      <td>1q6X5sJSWQ2QnqvPghR0Kr</td>\n",
-       "      <td>Radiohead</td>\n",
-       "      <td></td>\n",
-       "      <td>I Am Citizen Insane</td>\n",
+       "      <th>151</th>\n",
+       "      <td>5lWzRBoBzcfr1oNYNhR5ac</td>\n",
+       "      <td>start me up</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Start Me Up - Live</td>\n",
+       "      <td>Tattoo You (2009 Re-Mastered)</td>\n",
+       "      <td>Start Me Up - Remastered</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>5</th>\n",
-       "      <td>4blz5SBUxKbtDNwMWstGNG</td>\n",
-       "      <td>Radiohead</td>\n",
-       "      <td></td>\n",
-       "      <td>Where Bluebirds Fly</td>\n",
+       "      <th>152</th>\n",
+       "      <td>4EllMMamxvLvwvOQLsyc9W</td>\n",
+       "      <td>brown sugar</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>6</th>\n",
-       "      <td>2zYrFer4QGSQkk5aUawfHB</td>\n",
-       "      <td>Radiohead</td>\n",
-       "      <td></td>\n",
-       "      <td>Hunting Bears</td>\n",
+       "      <th>153</th>\n",
+       "      <td>4EllMMamxvLvwvOQLsyc9W</td>\n",
+       "      <td>brown sugar</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "      <td>Ladies &amp; Gentlemen (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
        "    </tr>\n",
        "    <tr>\n",
-       "      <th>7</th>\n",
-       "      <td>4DPQvbgSM0IdX4O3HOACwL</td>\n",
-       "      <td>Radiohead</td>\n",
-       "      <td></td>\n",
-       "      <td>Treefingers</td>\n",
+       "      <th>154</th>\n",
+       "      <td>4EllMMamxvLvwvOQLsyc9W</td>\n",
+       "      <td>brown sugar</td>\n",
+       "      <td>Totally Stripped - Paris (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Brown Sugar - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>155</th>\n",
+       "      <td>1F69leTp8WQHMFVQ5gOtIS</td>\n",
+       "      <td>mannish boy</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>Mannish Boy - Live</td>\n",
+       "      <td>Live At The Checkerboard Lounge</td>\n",
+       "      <td>Mannish Boy - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>156</th>\n",
+       "      <td>6dx6G9OexgRFCulfKI4sPN</td>\n",
+       "      <td>all down the line</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>All Down The Line - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>All Down The Line - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>157</th>\n",
+       "      <td>16FlhqpxLT6WTfiLVEZ7Vv</td>\n",
+       "      <td>beast of burden</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "      <td>Totally Stripped - Amsterdam (Live)</td>\n",
+       "      <td>Beast Of Burden - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>158</th>\n",
+       "      <td>5UXwp4rKvtXtKJpe0iIctM</td>\n",
+       "      <td>miss you</td>\n",
+       "      <td>Some Girls: Live In Texas '78</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "      <td>Totally Stripped (Live)</td>\n",
+       "      <td>Miss You - Live</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>159</th>\n",
+       "      <td>6bxyTE0a0SFneMeIxXDCm7</td>\n",
+       "      <td>sgt peppers lonely hearts club band</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Remast...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>160</th>\n",
+       "      <td>6bxyTE0a0SFneMeIxXDCm7</td>\n",
+       "      <td>sgt peppers lonely hearts club band</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Repris...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>161</th>\n",
+       "      <td>4sOAk2nNTildSyJSLSlXuG</td>\n",
+       "      <td>with a little help from my friends</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>With A Little Help From My Friends - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>With A Little Help From My Friends - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>162</th>\n",
+       "      <td>7jqsBIOx7CGhtNPNYxBWIj</td>\n",
+       "      <td>lucy in the sky with diamonds</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Lucy In The Sky With Diamonds - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Lucy In The Sky With Diamonds - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>163</th>\n",
+       "      <td>7FgFsmFqGDWduAW4vdgya1</td>\n",
+       "      <td>getting better</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Getting Better - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Getting Better - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>164</th>\n",
+       "      <td>4qYGe6lTon2cHuTQF45xov</td>\n",
+       "      <td>fixing a hole</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Fixing A Hole - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Fixing A Hole - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>165</th>\n",
+       "      <td>55kc3bnwWdGFCqthgjqR9l</td>\n",
+       "      <td>shes leaving home</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>She's Leaving Home - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>She's Leaving Home - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>166</th>\n",
+       "      <td>1Yk5EOxuBEClupjWcUX0Ti</td>\n",
+       "      <td>being for the benefit of mr kite</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Being For The Benefit Of Mr. Kite! - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Being For The Benefit Of Mr. Kite! - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>167</th>\n",
+       "      <td>2UGZC7jvYr11WFSd6xvbk9</td>\n",
+       "      <td>within you without you</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Within You Without You - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Within You Without You - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>168</th>\n",
+       "      <td>59dYBIJ4cOrjtgkuwUnqQq</td>\n",
+       "      <td>lovely rita</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Lovely Rita - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Lovely Rita - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>169</th>\n",
+       "      <td>3pY5chBSUotRa6RoIfwJjc</td>\n",
+       "      <td>good morning good morning</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Good Morning Good Morning - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Good Morning Good Morning - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>170</th>\n",
+       "      <td>3ZFPe2aiLQuEfDxSqQstZp</td>\n",
+       "      <td>a day in the life</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>A Day In The Life - Remix</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>A Day In The Life - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>171</th>\n",
+       "      <td>2BOawXVznHmi2KJzRFstBN</td>\n",
+       "      <td>sgt peppers lonely hearts club band</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Take 9...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Remast...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>172</th>\n",
+       "      <td>2BOawXVznHmi2KJzRFstBN</td>\n",
+       "      <td>sgt peppers lonely hearts club band</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Take 9...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band - Repris...</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>173</th>\n",
+       "      <td>1alxZZpi5dBLcmV3WkYIzN</td>\n",
+       "      <td>with a little help from my friends</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>With A Little Help From My Friends - Take 1 / ...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>With A Little Help From My Friends - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>174</th>\n",
+       "      <td>1k1kJBeaL3FCUG2vOJ1z0g</td>\n",
+       "      <td>lucy in the sky with diamonds</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Lucy In The Sky With Diamonds - Take 1</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Lucy In The Sky With Diamonds - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>175</th>\n",
+       "      <td>42uZOBjvKNv4QKnBmjOwb0</td>\n",
+       "      <td>getting better</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Getting Better - Take 1 / Instrumental And Spe...</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Getting Better - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>176</th>\n",
+       "      <td>5JnPM6eKhHJtkWfS6ymUMF</td>\n",
+       "      <td>fixing a hole</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Fixing A Hole - Speech And Take 3</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Fixing A Hole - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>177</th>\n",
+       "      <td>3HEC6nzAo3U5z7blaCNBcF</td>\n",
+       "      <td>shes leaving home</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>She's Leaving Home - Take 1 / Instrumental</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>She's Leaving Home - Remastered</td>\n",
+       "    </tr>\n",
+       "    <tr>\n",
+       "      <th>178</th>\n",
+       "      <td>3qchAN1uJ1KiF8yxmqb3Ov</td>\n",
+       "      <td>being for the benefit of mr kite</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...</td>\n",
+       "      <td>Being For The Benefit Of Mr. Kite! - Take 4</td>\n",
+       "      <td>Sgt. Pepper's Lonely Hearts Club Band (Remaste...</td>\n",
+       "      <td>Being For The Benefit Of Mr. Kite! - Remastered</td>\n",
        "    </tr>\n",
        "  </tbody>\n",
        "</table>\n",
+       "<p>179 rows × 6 columns</p>\n",
        "</div>"
       ],
       "text/plain": [
-       "                      _id    artist_name lyrics  \\\n",
-       "0  47DgFAFnhfwoSko23P7pz5  George Martin          \n",
-       "1  2z1p43SNSbeowzy8WdYHNk    The Beatles          \n",
-       "2  3gKuywOm38axM8sJGq6Laq      Radiohead          \n",
-       "3  2uYSbsxAMmK1awUl06T7ix      Radiohead          \n",
-       "4  1q6X5sJSWQ2QnqvPghR0Kr      Radiohead          \n",
-       "5  4blz5SBUxKbtDNwMWstGNG      Radiohead          \n",
-       "6  2zYrFer4QGSQkk5aUawfHB      Radiohead          \n",
-       "7  4DPQvbgSM0IdX4O3HOACwL      Radiohead          \n",
+       "                        _id                               ctitle  \\\n",
+       "0    2uO1HbJhQvmXpjclLmLEeK                    jumpin jack flash   \n",
+       "1    3v2SyLXNg7IY3I3N6QTZ45                    jumpin jack flash   \n",
+       "2    3v2SyLXNg7IY3I3N6QTZ45                    jumpin jack flash   \n",
+       "3    5Y77giAAAmU9EpfHBDbBV8                    you got me rockin   \n",
+       "4    1w9FiXsMcaxb5SD8vIZgm3                    jumpin jack flash   \n",
+       "5    1w9FiXsMcaxb5SD8vIZgm3                    jumpin jack flash   \n",
+       "6    1w9FiXsMcaxb5SD8vIZgm3                    jumpin jack flash   \n",
+       "7    1w9FiXsMcaxb5SD8vIZgm3                    jumpin jack flash   \n",
+       "8    1tEdH58k6r4CvjEhmxxbMC                    jumpin jack flash   \n",
+       "9    1tEdH58k6r4CvjEhmxxbMC                    jumpin jack flash   \n",
+       "10   1tEdH58k6r4CvjEhmxxbMC                    jumpin jack flash   \n",
+       "11   5jWDi16gJx7N2oexwjGx5y                         introduction   \n",
+       "12   6M75z4blVIRMeWtjSU1UyR                  you dont have to go   \n",
+       "13   6NqtddM4j4X9dG75yOmy0S                     yellow submarine   \n",
+       "14   5EuraV2jbqB15ihd3d2Hex            strawberry fields forever   \n",
+       "15   5EuraV2jbqB15ihd3d2Hex            strawberry fields forever   \n",
+       "16   5EuraV2jbqB15ihd3d2Hex            strawberry fields forever   \n",
+       "17   5RStjc42UAYI2NMY3cYpgz                           penny lane   \n",
+       "18   5RStjc42UAYI2NMY3cYpgz                           penny lane   \n",
+       "19   3xMSaDC9TU6AQJIsxQB7MK                 all you need is love   \n",
+       "20   5pTWpY8l7B1XcQnijEFGFj                             miss you   \n",
+       "21   5pTWpY8l7B1XcQnijEFGFj                             miss you   \n",
+       "22   5pTWpY8l7B1XcQnijEFGFj                             miss you   \n",
+       "23   5pTWpY8l7B1XcQnijEFGFj                             miss you   \n",
+       "24   4E8qFhiuYAWEYYAsYIf4dW             when the whip comes down   \n",
+       "25   4RlD0KvoqPZy5n9Zi76X9l                        far away eyes   \n",
+       "26   33PXyHrkIHxp6PBVPlQGx7                          respectable   \n",
+       "27   33PXyHrkIHxp6PBVPlQGx7                          respectable   \n",
+       "28   7pfVe0VrMK5QhTaAYzkuYn                      beast of burden   \n",
+       "29   7pfVe0VrMK5QhTaAYzkuYn                      beast of burden   \n",
+       "..                      ...                                  ...   \n",
+       "149  1mnDusx7zn2yzmr42hUksE                       rip this joint   \n",
+       "150  1mnDusx7zn2yzmr42hUksE                       rip this joint   \n",
+       "151  5lWzRBoBzcfr1oNYNhR5ac                          start me up   \n",
+       "152  4EllMMamxvLvwvOQLsyc9W                          brown sugar   \n",
+       "153  4EllMMamxvLvwvOQLsyc9W                          brown sugar   \n",
+       "154  4EllMMamxvLvwvOQLsyc9W                          brown sugar   \n",
+       "155  1F69leTp8WQHMFVQ5gOtIS                          mannish boy   \n",
+       "156  6dx6G9OexgRFCulfKI4sPN                    all down the line   \n",
+       "157  16FlhqpxLT6WTfiLVEZ7Vv                      beast of burden   \n",
+       "158  5UXwp4rKvtXtKJpe0iIctM                             miss you   \n",
+       "159  6bxyTE0a0SFneMeIxXDCm7  sgt peppers lonely hearts club band   \n",
+       "160  6bxyTE0a0SFneMeIxXDCm7  sgt peppers lonely hearts club band   \n",
+       "161  4sOAk2nNTildSyJSLSlXuG   with a little help from my friends   \n",
+       "162  7jqsBIOx7CGhtNPNYxBWIj        lucy in the sky with diamonds   \n",
+       "163  7FgFsmFqGDWduAW4vdgya1                       getting better   \n",
+       "164  4qYGe6lTon2cHuTQF45xov                        fixing a hole   \n",
+       "165  55kc3bnwWdGFCqthgjqR9l                    shes leaving home   \n",
+       "166  1Yk5EOxuBEClupjWcUX0Ti     being for the benefit of mr kite   \n",
+       "167  2UGZC7jvYr11WFSd6xvbk9               within you without you   \n",
+       "168  59dYBIJ4cOrjtgkuwUnqQq                          lovely rita   \n",
+       "169  3pY5chBSUotRa6RoIfwJjc            good morning good morning   \n",
+       "170  3ZFPe2aiLQuEfDxSqQstZp                    a day in the life   \n",
+       "171  2BOawXVznHmi2KJzRFstBN  sgt peppers lonely hearts club band   \n",
+       "172  2BOawXVznHmi2KJzRFstBN  sgt peppers lonely hearts club band   \n",
+       "173  1alxZZpi5dBLcmV3WkYIzN   with a little help from my friends   \n",
+       "174  1k1kJBeaL3FCUG2vOJ1z0g        lucy in the sky with diamonds   \n",
+       "175  42uZOBjvKNv4QKnBmjOwb0                       getting better   \n",
+       "176  5JnPM6eKhHJtkWfS6ymUMF                        fixing a hole   \n",
+       "177  3HEC6nzAo3U5z7blaCNBcF                    shes leaving home   \n",
+       "178  3qchAN1uJ1KiF8yxmqb3Ov     being for the benefit of mr kite   \n",
        "\n",
-       "                                               name  \n",
-       "0  Yellow Submarine In Pepperland - Remastered 2009  \n",
-       "1                          Flying - Remastered 2009  \n",
-       "2                                              MK 1  \n",
-       "3                                              MK 2  \n",
-       "4                               I Am Citizen Insane  \n",
-       "5                               Where Bluebirds Fly  \n",
-       "6                                     Hunting Bears  \n",
-       "7                                       Treefingers  "
-      ]
-     },
-     "execution_count": 97,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "pd.DataFrame(list(tracks.find({'sentiment': {'$exists': False}, \n",
-    "                               'lyrics': {'$exists': True}}, \n",
-    "                              ['name', 'artist_name', 'lyrics'])))"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 99,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "[{'_id': '47DgFAFnhfwoSko23P7pz5',\n",
-       "  'artist_name': 'George Martin',\n",
-       "  'lyrics': '',\n",
-       "  'name': 'Yellow Submarine In Pepperland - Remastered 2009',\n",
-       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
-       " {'_id': '2z1p43SNSbeowzy8WdYHNk',\n",
-       "  'artist_name': 'The Beatles',\n",
-       "  'lyrics': '',\n",
-       "  'name': 'Flying - Remastered 2009',\n",
-       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
-       " {'_id': '3gKuywOm38axM8sJGq6Laq',\n",
-       "  'artist_name': 'Radiohead',\n",
-       "  'lyrics': '',\n",
-       "  'name': 'MK 1',\n",
-       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
-       " {'_id': '2uYSbsxAMmK1awUl06T7ix',\n",
-       "  'artist_name': 'Radiohead',\n",
-       "  'lyrics': '',\n",
-       "  'name': 'MK 2',\n",
-       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
-       " {'_id': '1q6X5sJSWQ2QnqvPghR0Kr',\n",
-       "  'artist_name': 'Radiohead',\n",
-       "  'lyrics': '',\n",
-       "  'name': 'I Am Citizen Insane',\n",
-       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
-       " {'_id': '4blz5SBUxKbtDNwMWstGNG',\n",
-       "  'artist_name': 'Radiohead',\n",
-       "  'lyrics': '',\n",
-       "  'name': 'Where Bluebirds Fly',\n",
-       "  'original_lyrics': '\\n\\n[Distorted \"Somewhere Over The Rainbow\" lyrics]\\n\\n'},\n",
-       " {'_id': '2zYrFer4QGSQkk5aUawfHB',\n",
-       "  'artist_name': 'Radiohead',\n",
-       "  'lyrics': '',\n",
-       "  'name': 'Hunting Bears',\n",
-       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n",
-       " {'_id': '4DPQvbgSM0IdX4O3HOACwL',\n",
-       "  'artist_name': 'Radiohead',\n",
-       "  'lyrics': '',\n",
-       "  'name': 'Treefingers',\n",
-       "  'original_lyrics': '\\n\\n[Instrumental]\\n\\n'}]"
-      ]
-     },
-     "execution_count": 99,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "source": [
-    "list(tracks.find({'sentiment': {'$exists': False}, \n",
-    "                               'lyrics': {'$exists': True}}, \n",
-    "                              ['name', 'artist_name', 'lyrics', 'original_lyrics']))"
-   ]
-  },
-  {
-   "cell_type": "code",
-   "execution_count": 101,
-   "metadata": {},
-   "outputs": [
-    {
-     "data": {
-      "text/plain": [
-       "<pymongo.results.UpdateResult at 0x7f454b640bc8>"
+       "                                                 t_alb  \\\n",
+       "0                        Some Girls: Live In Texas '78   \n",
+       "1                            Ladies & Gentlemen (Live)   \n",
+       "2                            Ladies & Gentlemen (Live)   \n",
+       "3                    Totally Stripped - Brixton (Live)   \n",
+       "4                    Totally Stripped - Brixton (Live)   \n",
+       "5                    Totally Stripped - Brixton (Live)   \n",
+       "6                    Totally Stripped - Brixton (Live)   \n",
+       "7                    Totally Stripped - Brixton (Live)   \n",
+       "8                      Totally Stripped - Paris (Live)   \n",
+       "9                      Totally Stripped - Paris (Live)   \n",
+       "10                     Totally Stripped - Paris (Live)   \n",
+       "11                     Live At The Checkerboard Lounge   \n",
+       "12                     Live At The Checkerboard Lounge   \n",
+       "13                       Yellow Submarine (Remastered)   \n",
+       "14                   Magical Mystery Tour (Remastered)   \n",
+       "15                   Magical Mystery Tour (Remastered)   \n",
+       "16                   Magical Mystery Tour (Remastered)   \n",
+       "17                   Magical Mystery Tour (Remastered)   \n",
+       "18                   Magical Mystery Tour (Remastered)   \n",
+       "19                   Magical Mystery Tour (Remastered)   \n",
+       "20                         Some Girls (Deluxe Version)   \n",
+       "21                         Some Girls (Deluxe Version)   \n",
+       "22                         Some Girls (Deluxe Version)   \n",
+       "23                         Some Girls (Deluxe Version)   \n",
+       "24                         Some Girls (Deluxe Version)   \n",
+       "25                         Some Girls (Deluxe Version)   \n",
+       "26                         Some Girls (Deluxe Version)   \n",
+       "27                         Some Girls (Deluxe Version)   \n",
+       "28                         Some Girls (Deluxe Version)   \n",
+       "29                         Some Girls (Deluxe Version)   \n",
+       "..                                                 ...   \n",
+       "149                    Totally Stripped - Paris (Live)   \n",
+       "150                    Totally Stripped - Paris (Live)   \n",
+       "151                    Totally Stripped - Paris (Live)   \n",
+       "152                    Totally Stripped - Paris (Live)   \n",
+       "153                    Totally Stripped - Paris (Live)   \n",
+       "154                    Totally Stripped - Paris (Live)   \n",
+       "155                    Live At The Checkerboard Lounge   \n",
+       "156                      Some Girls: Live In Texas '78   \n",
+       "157                      Some Girls: Live In Texas '78   \n",
+       "158                      Some Girls: Live In Texas '78   \n",
+       "159  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "160  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "161  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "162  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "163  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "164  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "165  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "166  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "167  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "168  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "169  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "170  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "171  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "172  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "173  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "174  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "175  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "176  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "177  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "178  Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "\n",
+       "                                                t_name  \\\n",
+       "0                            Jumpin' Jack Flash - Live   \n",
+       "1                            Jumpin' Jack Flash - Live   \n",
+       "2                            Jumpin' Jack Flash - Live   \n",
+       "3                            You Got Me Rockin’ - Live   \n",
+       "4                            Jumpin’ Jack Flash - Live   \n",
+       "5                            Jumpin’ Jack Flash - Live   \n",
+       "6                            Jumpin’ Jack Flash - Live   \n",
+       "7                            Jumpin’ Jack Flash - Live   \n",
+       "8                            Jumpin’ Jack Flash - Live   \n",
+       "9                            Jumpin’ Jack Flash - Live   \n",
+       "10                           Jumpin’ Jack Flash - Live   \n",
+       "11                                 Introduction - Live   \n",
+       "12                         You Don't Have To Go - Live   \n",
+       "13                       Yellow Submarine - Remastered   \n",
+       "14         Strawberry Fields Forever - Remastered 2009   \n",
+       "15         Strawberry Fields Forever - Remastered 2009   \n",
+       "16         Strawberry Fields Forever - Remastered 2009   \n",
+       "17                        Penny Lane - Remastered 2009   \n",
+       "18                        Penny Lane - Remastered 2009   \n",
+       "19              All You Need Is Love - Remastered 2009   \n",
+       "20                               Miss You - Remastered   \n",
+       "21                               Miss You - Remastered   \n",
+       "22                               Miss You - Remastered   \n",
+       "23                               Miss You - Remastered   \n",
+       "24               When The Whip Comes Down - Remastered   \n",
+       "25                          Far Away Eyes - Remastered   \n",
+       "26                            Respectable - Remastered   \n",
+       "27                            Respectable - Remastered   \n",
+       "28                        Beast Of Burden - Remastered   \n",
+       "29                        Beast Of Burden - Remastered   \n",
+       "..                                                 ...   \n",
+       "149                              Rip This Joint - Live   \n",
+       "150                              Rip This Joint - Live   \n",
+       "151                                 Start Me Up - Live   \n",
+       "152                                 Brown Sugar - Live   \n",
+       "153                                 Brown Sugar - Live   \n",
+       "154                                 Brown Sugar - Live   \n",
+       "155                                 Mannish Boy - Live   \n",
+       "156                           All Down The Line - Live   \n",
+       "157                             Beast Of Burden - Live   \n",
+       "158                                    Miss You - Live   \n",
+       "159      Sgt. Pepper's Lonely Hearts Club Band - Remix   \n",
+       "160      Sgt. Pepper's Lonely Hearts Club Band - Remix   \n",
+       "161         With A Little Help From My Friends - Remix   \n",
+       "162              Lucy In The Sky With Diamonds - Remix   \n",
+       "163                             Getting Better - Remix   \n",
+       "164                              Fixing A Hole - Remix   \n",
+       "165                         She's Leaving Home - Remix   \n",
+       "166         Being For The Benefit Of Mr. Kite! - Remix   \n",
+       "167                     Within You Without You - Remix   \n",
+       "168                                Lovely Rita - Remix   \n",
+       "169                  Good Morning Good Morning - Remix   \n",
+       "170                          A Day In The Life - Remix   \n",
+       "171  Sgt. Pepper's Lonely Hearts Club Band - Take 9...   \n",
+       "172  Sgt. Pepper's Lonely Hearts Club Band - Take 9...   \n",
+       "173  With A Little Help From My Friends - Take 1 / ...   \n",
+       "174             Lucy In The Sky With Diamonds - Take 1   \n",
+       "175  Getting Better - Take 1 / Instrumental And Spe...   \n",
+       "176                  Fixing A Hole - Speech And Take 3   \n",
+       "177         She's Leaving Home - Take 1 / Instrumental   \n",
+       "178        Being For The Benefit Of Mr. Kite! - Take 4   \n",
+       "\n",
+       "                                                tt_alb  \\\n",
+       "0                              Totally Stripped (Live)   \n",
+       "1                        Some Girls: Live In Texas '78   \n",
+       "2                              Totally Stripped (Live)   \n",
+       "3                      Totally Stripped - Paris (Live)   \n",
+       "4                        Some Girls: Live In Texas '78   \n",
+       "5                            Ladies & Gentlemen (Live)   \n",
+       "6                              Totally Stripped (Live)   \n",
+       "7                      Totally Stripped - Paris (Live)   \n",
+       "8                        Some Girls: Live In Texas '78   \n",
+       "9                            Ladies & Gentlemen (Live)   \n",
+       "10                             Totally Stripped (Live)   \n",
+       "11                     Live At The Checkerboard Lounge   \n",
+       "12                     Live At The Checkerboard Lounge   \n",
+       "13                               Revolver (Remastered)   \n",
+       "14   Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "15   Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "16   Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "17   Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "18   Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...   \n",
+       "19                       Yellow Submarine (Remastered)   \n",
+       "20                             Totally Stripped (Live)   \n",
+       "21                   Totally Stripped - Brixton (Live)   \n",
+       "22                     Totally Stripped - Paris (Live)   \n",
+       "23                       Some Girls: Live In Texas '78   \n",
+       "24                       Some Girls: Live In Texas '78   \n",
+       "25                       Some Girls: Live In Texas '78   \n",
+       "26                       Some Girls: Live In Texas '78   \n",
+       "27                 Totally Stripped - Amsterdam (Live)   \n",
+       "28                 Totally Stripped - Amsterdam (Live)   \n",
+       "29                     Totally Stripped - Paris (Live)   \n",
+       "..                                                 ...   \n",
+       "149                            Totally Stripped (Live)   \n",
+       "150                Totally Stripped - Amsterdam (Live)   \n",
+       "151                      Tattoo You (2009 Re-Mastered)   \n",
+       "152                      Some Girls: Live In Texas '78   \n",
+       "153                          Ladies & Gentlemen (Live)   \n",
+       "154                            Totally Stripped (Live)   \n",
+       "155                    Live At The Checkerboard Lounge   \n",
+       "156                Totally Stripped - Amsterdam (Live)   \n",
+       "157                Totally Stripped - Amsterdam (Live)   \n",
+       "158                            Totally Stripped (Live)   \n",
+       "159  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "160  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "161  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "162  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "163  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "164  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "165  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "166  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "167  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "168  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "169  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "170  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "171  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "172  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "173  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "174  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "175  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "176  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "177  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "178  Sgt. Pepper's Lonely Hearts Club Band (Remaste...   \n",
+       "\n",
+       "                                               tt_name  \n",
+       "0                            Jumpin’ Jack Flash - Live  \n",
+       "1                            Jumpin' Jack Flash - Live  \n",
+       "2                            Jumpin’ Jack Flash - Live  \n",
+       "3                            You Got Me Rockin’ - Live  \n",
+       "4                            Jumpin' Jack Flash - Live  \n",
+       "5                            Jumpin' Jack Flash - Live  \n",
+       "6                            Jumpin’ Jack Flash - Live  \n",
+       "7                            Jumpin’ Jack Flash - Live  \n",
+       "8                            Jumpin' Jack Flash - Live  \n",
+       "9                            Jumpin' Jack Flash - Live  \n",
+       "10                           Jumpin’ Jack Flash - Live  \n",
+       "11                                 Introduction - Live  \n",
+       "12                         You Don't Have To Go - Live  \n",
+       "13                       Yellow Submarine - Remastered  \n",
+       "14                  Strawberry Fields Forever - Take 7  \n",
+       "15                 Strawberry Fields Forever - Take 26  \n",
+       "16         Strawberry Fields Forever - Stereo Mix 2015  \n",
+       "17                  Penny Lane - Take 6 / Instrumental  \n",
+       "18                        Penny Lane - Stereo Mix 2017  \n",
+       "19                   All You Need Is Love - Remastered  \n",
+       "20                                     Miss You - Live  \n",
+       "21                                     Miss You - Live  \n",
+       "22                                     Miss You - Live  \n",
+       "23                                     Miss You - Live  \n",
+       "24                     When The Whip Comes Down - Live  \n",
+       "25                                Far Away Eyes - Live  \n",
+       "26                                  Respectable - Live  \n",
+       "27                                  Respectable - Live  \n",
+       "28                              Beast Of Burden - Live  \n",
+       "29                              Beast Of Burden - Live  \n",
+       "..                                                 ...  \n",
+       "149                              Rip This Joint - Live  \n",
+       "150                              Rip This Joint - Live  \n",
+       "151                           Start Me Up - Remastered  \n",
+       "152                                 Brown Sugar - Live  \n",
+       "153                                 Brown Sugar - Live  \n",
+       "154                                 Brown Sugar - Live  \n",
+       "155                                 Mannish Boy - Live  \n",
+       "156                           All Down The Line - Live  \n",
+       "157                             Beast Of Burden - Live  \n",
+       "158                                    Miss You - Live  \n",
+       "159  Sgt. Pepper's Lonely Hearts Club Band - Remast...  \n",
+       "160  Sgt. Pepper's Lonely Hearts Club Band - Repris...  \n",
+       "161    With A Little Help From My Friends - Remastered  \n",
+       "162         Lucy In The Sky With Diamonds - Remastered  \n",
+       "163                        Getting Better - Remastered  \n",
+       "164                         Fixing A Hole - Remastered  \n",
+       "165                    She's Leaving Home - Remastered  \n",
+       "166    Being For The Benefit Of Mr. Kite! - Remastered  \n",
+       "167                Within You Without You - Remastered  \n",
+       "168                           Lovely Rita - Remastered  \n",
+       "169             Good Morning Good Morning - Remastered  \n",
+       "170                     A Day In The Life - Remastered  \n",
+       "171  Sgt. Pepper's Lonely Hearts Club Band - Remast...  \n",
+       "172  Sgt. Pepper's Lonely Hearts Club Band - Repris...  \n",
+       "173    With A Little Help From My Friends - Remastered  \n",
+       "174         Lucy In The Sky With Diamonds - Remastered  \n",
+       "175                        Getting Better - Remastered  \n",
+       "176                         Fixing A Hole - Remastered  \n",
+       "177                    She's Leaving Home - Remastered  \n",
+       "178    Being For The Benefit Of Mr. Kite! - Remastered  \n",
+       "\n",
+       "[179 rows x 6 columns]"
       ]
      },
-     "execution_count": 101,
+     "execution_count": 109,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "tracks.update_many({'lyrics': ''}, {'$unset': {'lyrics': ''}})"
+    "pd.DataFrame(list({'_id': t['_id'], 'ctitle': t['ctitle'], 't_name': t['name'], 't_alb': t['album']['name'],\n",
+    "                  'tt_name': tt['name'], 'tt_alb': tt['album']['name']}\n",
+    "                  for t in tracks.find({'ignore': {'$exists': False}}, \n",
+    "                                       ['name', 'ctitle', 'artist_id', 'album_id', 'album.name'])\n",
+    "                  for tt in tracks.find({'ctitle': t['ctitle'], \n",
+    "                                         'artist_id': t['artist_id'],\n",
+    "                                         'album_id': {'$lt': t['album_id']},\n",
+    "                                         'ignore': {'$exists': False}}, \n",
+    "                                        ['name', 'ctitle', 'album.name', 'album_id'])))"
    ]
   },
   {
    "cell_type": "code",
-   "execution_count": 102,
+   "execution_count": 110,
    "metadata": {},
    "outputs": [
     {
      "data": {
-      "text/html": [
-       "<div>\n",
-       "<style>\n",
-       "    .dataframe thead tr:only-child th {\n",
-       "        text-align: right;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe thead th {\n",
-       "        text-align: left;\n",
-       "    }\n",
-       "\n",
-       "    .dataframe tbody tr th {\n",
-       "        vertical-align: top;\n",
-       "    }\n",
-       "</style>\n",
-       "<table border=\"1\" class=\"dataframe\">\n",
-       "  <thead>\n",
-       "    <tr style=\"text-align: right;\">\n",
-       "      <th></th>\n",
-       "    </tr>\n",
-       "  </thead>\n",
-       "  <tbody>\n",
-       "  </tbody>\n",
-       "</table>\n",
-       "</div>"
-      ],
       "text/plain": [
-       "Empty DataFrame\n",
-       "Columns: []\n",
-       "Index: []"
+       "<pymongo.results.UpdateResult at 0x7f97604daa48>"
       ]
      },
-     "execution_count": 102,
+     "execution_count": 110,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
    "source": [
-    "pd.DataFrame(list(tracks.find({'sentiment': {'$exists': False}, \n",
-    "                               'lyrics': {'$exists': True}}, \n",
-    "                              ['name', 'artist_name', 'lyrics'])))"
+    "# Radiohead: I Might be Wrong (live album)\n",
+    "tracks.update_many({'album_id': '6svTt5o2lUgIrgYDKVmdnD'}, {'$set': {'ignore': True}})"
    ]
   },
   {