{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Battle of the Bands\n", "\n", "This is the slightly generic version of [Battle of the Bands: Data gathering](beatles-vs-stones-gather-data.ipynb). Look there for a description of the contents of this notebook.\n", "\n", "## Contents: Data gathering\n", "\n", "* [Getting data from Spotify](#getspotify)\n", "* [Tag album with artist](#tagalbumwithartist)\n", "* [Tag track with artist](#tagtrackwithartist)\n", "* [Get full track data](#fulltrackdata)\n", "* [Lyrics search](#lyricssearch)\n", "* [Matching datasets](#matchingdatasets)\n", "* [Copy the lyrics over](#copylyrics)\n", "* [Sentiment analysis](#sentimentanalysis)\n" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "run_control": { "read_only": false } }, "outputs": [], "source": [ "import pandas as pd\n", "import numpy as np\n", "import matplotlib\n", "import matplotlib.pyplot as plt\n", "%matplotlib inline \n", "import urllib.request\n", "import urllib.parse\n", "import urllib.error\n", "import json\n", "import base64\n", "import configparser\n", "from bs4 import BeautifulSoup\n", "import re\n", "import pymongo\n", "from datetime import datetime\n", "import time\n", "import collections" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We'll use MongoDB to store the data, to save keeping it all in memory, and mean we don't have to recapture all the data to to a different analysis." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# Open a connection to the Mongo server\n", "client = pymongo.MongoClient('mongodb://localhost:27017/')" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "# try:\n", "# client.drop_database(songs_db)\n", "# except NameError:\n", "# print(\"DB doesn't exist yet.\")" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "# Create a database and a collections within it.\n", "songs_db = client.songs\n", "albums = songs_db.albums\n", "tracks = songs_db.tracks\n", "genius_tracks = songs_db.gtracks" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "API keys and the like are kept in a configuration file, which is read here.\n", "\n", "You'll need to create a web API key for Spotify and Genius. " ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['app_name', 'client_id', 'client_secret', 'redirect_uri', 'token']" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "config = configparser.ConfigParser()\n", "config.read('secrets.ini')\n", "[k for k in config['genius']]" ] }, { "cell_type": "code", "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", "# config['genius'] = {}\n", "# config['genius']['app_name'] = 'xxx'\n", "# config['genius']['client_id'] = 'xxx'\n", "# config['genius']['client_secret'] = 'xxx'\n", "# config['genius']['token'] = 'xxx'\n", "# with open('secrets.ini', 'w') as configfile:\n", "# config.write(configfile)" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [], "source": [ "stones_id = '22bE4uQ6baNwSHPVcDxLCe'\n", "beatles_id = '3WrFJ7ztbogyGnTHbHJFl2'\n", "radiohead_id = '4Z8W4fKeB5YxbusRsdQVPb'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Get album and track data from Spotify\n", "We'll download the data on artists, albums, and tracks from Spotify.\n", "\n", "* [Top](#top)" ] }, { "cell_type": "code", "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": 10, "metadata": {}, "outputs": [], "source": [ "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", " 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", " for artist in response['artists']['items']:\n", " if artist['name'].lower() == artist_name.lower():\n", " this_artist = {'name': artist['name'], 'id': artist['id']}\n", " if artist['images']:\n", " this_artist['image'] = artist['images'][0]['url']\n", " artists += [this_artist]\n", " return artists" ] }, { "cell_type": "code", "execution_count": 385, "metadata": {}, "outputs": [], "source": [ "a_type, a_token = get_spotify_auth_token()" ] }, { "cell_type": "code", "execution_count": 386, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "('1dfeR4HaWDbWqFHLkxsg1d',\n", " [{'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'image': 'https://i.scdn.co/image/b040846ceba13c3e9c125d68389491094e7f2982',\n", " 'name': 'Queen'},\n", " {'id': '6QWuYtzBkQ2Re44gRxaB2e',\n", " 'image': 'https://i.scdn.co/image/8d95cd1630b207d11749082f1e7e4c5b698865a1',\n", " 'name': 'Queen'}])" ] }, "execution_count": 386, "metadata": {}, "output_type": "execute_result" } ], "source": [ "artists = get_artists('Queen', a_type, a_token)\n", "this_artist_id = artists[0]['id']\n", "this_artist_id, artists" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Find all the albums for an artist." ] }, { "cell_type": "code", "execution_count": 295, "metadata": {}, "outputs": [], "source": [ "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", " while url:\n", " request = urllib.request.Request(url, headers=headers, method='GET')\n", " \n", " for _ in range(10):\n", " try:\n", " f = urllib.request.urlopen(request)\n", " break\n", " except urllib.error.HTTPError as e:\n", " print(\"Rate limited. Pausing for\", e.info()['Retry-After'])\n", " time.sleep(int(e.info()['Retry-After']) + 0.5)\n", " continue\n", " \n", " response = json.loads(f.read().decode('utf-8'))\n", " if 'next' in response:\n", " url = response['next']\n", " else:\n", " url = None\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": 286, "metadata": {}, "outputs": [], "source": [ "def get_albums_debug(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", " with urllib.request.urlopen(request) as f:\n", " response = json.loads(f.read().decode('utf-8'))\n", " return response " ] }, { "cell_type": "code", "execution_count": 293, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\n" ] }, { "ename": "KeyboardInterrupt", "evalue": "", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mresp\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mget_albums\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mthis_artist_id\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0ma_type\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0ma_token\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2\u001b[0m \u001b[0mresp\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'next'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m\u001b[0m in \u001b[0;36mget_albums\u001b[0;34m(artist_id, auth_type, auth_token)\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0m_\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 9\u001b[0;31m \u001b[0mf\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0murllib\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0murlopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrequest\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 10\u001b[0m \u001b[0;32mbreak\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0murllib\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0merror\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mHTTPError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/urllib/request.py\u001b[0m in \u001b[0;36murlopen\u001b[0;34m(url, data, timeout, cafile, capath, cadefault, context)\u001b[0m\n\u001b[1;32m 161\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 162\u001b[0m \u001b[0mopener\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0m_opener\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 163\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mopener\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mopen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtimeout\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 164\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 165\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0minstall_opener\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mopener\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/urllib/request.py\u001b[0m in \u001b[0;36mopen\u001b[0;34m(self, fullurl, data, timeout)\u001b[0m\n\u001b[1;32m 464\u001b[0m \u001b[0mreq\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mmeth\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mreq\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 465\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 466\u001b[0;31m \u001b[0mresponse\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_open\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mreq\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 467\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 468\u001b[0m \u001b[0;31m# post-process response\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/urllib/request.py\u001b[0m in \u001b[0;36m_open\u001b[0;34m(self, req, data)\u001b[0m\n\u001b[1;32m 482\u001b[0m \u001b[0mprotocol\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mreq\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtype\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 483\u001b[0m result = self._call_chain(self.handle_open, protocol, protocol +\n\u001b[0;32m--> 484\u001b[0;31m '_open', req)\n\u001b[0m\u001b[1;32m 485\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mresult\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 486\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresult\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/urllib/request.py\u001b[0m in \u001b[0;36m_call_chain\u001b[0;34m(self, chain, kind, meth_name, *args)\u001b[0m\n\u001b[1;32m 442\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mhandler\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mhandlers\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 443\u001b[0m \u001b[0mfunc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mgetattr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mhandler\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmeth_name\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 444\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 445\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mresult\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 446\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresult\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/urllib/request.py\u001b[0m in \u001b[0;36mhttps_open\u001b[0;34m(self, req)\u001b[0m\n\u001b[1;32m 1295\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mhttps_open\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreq\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1296\u001b[0m return self.do_open(http.client.HTTPSConnection, req,\n\u001b[0;32m-> 1297\u001b[0;31m context=self._context, check_hostname=self._check_hostname)\n\u001b[0m\u001b[1;32m 1298\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1299\u001b[0m \u001b[0mhttps_request\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mAbstractHTTPHandler\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdo_request_\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/urllib/request.py\u001b[0m in \u001b[0;36mdo_open\u001b[0;34m(self, http_class, req, **http_conn_args)\u001b[0m\n\u001b[1;32m 1255\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mOSError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0merr\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0;31m# timeout error\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1256\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mURLError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0merr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1257\u001b[0;31m \u001b[0mr\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mh\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetresponse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1258\u001b[0m \u001b[0;32mexcept\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1259\u001b[0m \u001b[0mh\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mclose\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/http/client.py\u001b[0m in \u001b[0;36mgetresponse\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1196\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1197\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1198\u001b[0;31m \u001b[0mresponse\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbegin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1199\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mConnectionError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1200\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mclose\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/http/client.py\u001b[0m in \u001b[0;36mbegin\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 295\u001b[0m \u001b[0;31m# read until we get a non-100 response\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 296\u001b[0m \u001b[0;32mwhile\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 297\u001b[0;31m \u001b[0mversion\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstatus\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreason\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 298\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mstatus\u001b[0m \u001b[0;34m!=\u001b[0m \u001b[0mCONTINUE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 299\u001b[0m \u001b[0;32mbreak\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/http/client.py\u001b[0m in \u001b[0;36m_read_status\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 256\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 257\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_read_status\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 258\u001b[0;31m \u001b[0mline\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreadline\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0m_MAXLINE\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"iso-8859-1\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 259\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mline\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0m_MAXLINE\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 260\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mLineTooLong\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"status line\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/socket.py\u001b[0m in \u001b[0;36mreadinto\u001b[0;34m(self, b)\u001b[0m\n\u001b[1;32m 574\u001b[0m \u001b[0;32mwhile\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 575\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 576\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sock\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv_into\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mb\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 577\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mtimeout\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 578\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_timeout_occurred\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/ssl.py\u001b[0m in \u001b[0;36mrecv_into\u001b[0;34m(self, buffer, nbytes, flags)\u001b[0m\n\u001b[1;32m 935\u001b[0m \u001b[0;34m\"non-zero flags not allowed in calls to recv_into() on %s\"\u001b[0m \u001b[0;34m%\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 936\u001b[0m self.__class__)\n\u001b[0;32m--> 937\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mnbytes\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbuffer\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 938\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 939\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0msocket\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv_into\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbuffer\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mnbytes\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mflags\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/ssl.py\u001b[0m in \u001b[0;36mread\u001b[0;34m(self, len, buffer)\u001b[0m\n\u001b[1;32m 797\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mValueError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"Read on closed or unwrapped SSL socket.\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 798\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 799\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sslobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbuffer\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 800\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mSSLError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0mx\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 801\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mx\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mSSL_ERROR_EOF\u001b[0m \u001b[0;32mand\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msuppress_ragged_eofs\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/lib/python3.5/ssl.py\u001b[0m in \u001b[0;36mread\u001b[0;34m(self, len, buffer)\u001b[0m\n\u001b[1;32m 581\u001b[0m \"\"\"\n\u001b[1;32m 582\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mbuffer\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 583\u001b[0;31m \u001b[0mv\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sslobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbuffer\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 584\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 585\u001b[0m \u001b[0mv\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_sslobj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mKeyboardInterrupt\u001b[0m: " ] } ], "source": [ "# resp = get_albums(this_artist_id, a_type, a_token)\n", "# resp['next']" ] }, { "cell_type": "code", "execution_count": 13, "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": 387, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0" ] }, "execution_count": 387, "metadata": {}, "output_type": "execute_result" } ], "source": [ "get_albums(this_artist_id, a_type, a_token)\n", "albums.find({'artists': {'$eq': this_artist_id}}).count()" ] }, { "cell_type": "code", "execution_count": 388, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "[{'_id': '4z3q8RPwbnRiiQJDUwMAwH', 'name': 'On Air'},\n", " {'_id': '2tWmWIqaGRhHssZiGrkn8v', 'name': 'A Night At The Odeon'},\n", " {'_id': '7dDGrgcjzDmzXBfyinYIGQ', 'name': 'Live At The Rainbow'},\n", " {'_id': '39YPL3W4Ug5ZFfpiulv2C7', 'name': 'Live At The Rainbow (Deluxe)'},\n", " {'_id': '0w4sTU4HG4QrEQrGqFLh7B',\n", " 'name': 'Hungarian Rhapsody (Live In Budapest / 1986)'},\n", " {'_id': '47paRwe37Iwl2Dasr2pc17', 'name': 'The Cosmos Rocks'},\n", " {'_id': '27JIAjxwuXQ5gXfl4Ya0qn', 'name': 'Queen Rock Montreal'},\n", " {'_id': '612jMQoBQ7Y0mZJjoAsJO7', 'name': 'Return Of The Champions'},\n", " {'_id': '6SXKdxJs7RV5pe4RB2shvQ', 'name': 'On Fire: Live At The Bowl'},\n", " {'_id': '391ScNR3xKywWSpfDwP3n0', 'name': 'Made In Heaven (2011 Remaster)'},\n", " {'_id': '4kCtf1Mrytg1DhNyaDcbDz',\n", " 'name': 'Made In Heaven (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '74VmDpx1yWY5sOYA1KkWmZ', 'name': 'Live At Wembley Stadium'},\n", " {'_id': '5kffKW0sSLo6tkLg1veUGC', 'name': 'Innuendo (2011 Remaster)'},\n", " {'_id': '4May3oxm4OfBv9QwkXylAC',\n", " 'name': 'Innuendo (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '3h6SV9wHJtNL1YswZUJs8V', 'name': 'The Miracle (2011 Remaster)'},\n", " {'_id': '1HmWxU8jJ27zCs3thz4yX5',\n", " 'name': 'The Miracle (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '0pEfDPZko6TnNOgrZMe5nn', 'name': 'A Kind Of Magic (2011 Remaster)'},\n", " {'_id': '4pDRU9NBCmst37ZBT4hXVE',\n", " 'name': 'A Kind Of Magic (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '5RS9xkMuDmeVISqGDBmnSa', 'name': 'The Works (2011 Remaster)'},\n", " {'_id': '7K6YvloaUMP4rnQQVzdBEo',\n", " 'name': 'The Works (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '6reTSIf5MoBco62rk8T7Q1', 'name': 'Hot Space (2011 Remaster)'},\n", " {'_id': '0jEONRWXxZ5LddnJqHPC9g',\n", " 'name': 'Hot Space (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '3rxolmqfcqWFr1kihP3lpQ', 'name': 'Flash Gordon (Remastered)'},\n", " {'_id': '5d3AOgrLzJFrmiv6eds2wM',\n", " 'name': 'Flash Gordon (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '58alCatewkjNm9IM1Ucj67', 'name': 'The Game (2011 Remaster)'},\n", " {'_id': '5EgbL7EnLNXO999sc47gOl',\n", " 'name': 'The Game (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '2nwy2IT4YbOsZzwUKPb6Pq', 'name': 'Live Killers'},\n", " {'_id': '2yuTRGIackbcReLUXOYBqU', 'name': 'Jazz (2011 Remaster)'},\n", " {'_id': '7nYftNpa1Bnq12jdIwfI5x',\n", " 'name': 'Jazz (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '7tB40pGzj6Tg0HePj2jWZt',\n", " 'name': 'News Of The World (2011 Remaster)'},\n", " {'_id': '3jr9DLjls4THNQSYa0YcTv',\n", " 'name': 'News Of The World (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '0QRlYlrBuP7eGpEMZvZiaQ',\n", " 'name': 'A Day At The Races (2011 Remaster)'},\n", " {'_id': '5zMufYBMrHmqeYLoXs05Ko',\n", " 'name': 'A Day At The Races (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '1TSZDcvlPtAnekTaItI3qO',\n", " 'name': 'A Night At The Opera (2011 Remaster)'},\n", " {'_id': '2mEAmmRoZrvhBh1Vic03fZ',\n", " 'name': 'Sheer Heart Attack (2011 Remaster)'},\n", " {'_id': '1Gnrd76EubInPV4KjOJ1Zr',\n", " 'name': 'Sheer Heart Attack (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '1rjtzyJM3m6PDcFtwp7JZm', 'name': 'Queen II (2011 Remaster)'},\n", " {'_id': '0YpxBancYcVg9aLnZerBQg',\n", " 'name': 'Queen II (Deluxe Edition 2011 Remaster)'},\n", " {'_id': '4Vu6gMiQx2N61fVjPoPdmZ', 'name': 'Queen (2011 Remaster)'},\n", " {'_id': '6YwX6crCLDQTE8ZbtdzFUh',\n", " 'name': 'Queen (Deluxe Edition 2011 Remaster)'}]" ] }, "execution_count": 388, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(albums.find({'artist_id': {'$exists': False}}, ['name']))" ] }, { "cell_type": "code", "execution_count": 299, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 299, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# albums.delete_many({'artist_id': {'$exists': False}})" ] }, { "cell_type": "code", "execution_count": 389, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
01234
_id5XfJmldgWzrc1AIdbBaVZn5ju5Ouzan3QwXqQt1Tihbh2pCqZLeavM2BMovJXsJEIV2Pqkn9Dq2DFtdfkKAeqgMd47bcKzmKgmMPHXNVOWpLiu
album_typealbumalbumalbumalbumalbum
artist_id3WrFJ7ztbogyGnTHbHJFl23WrFJ7ztbogyGnTHbHJFl23WrFJ7ztbogyGnTHbHJFl23WrFJ7ztbogyGnTHbHJFl23WrFJ7ztbogyGnTHbHJFl2
artist_nameThe BeatlesThe BeatlesThe BeatlesThe BeatlesThe Beatles
artists[{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ...[{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ...[{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ...[{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ...[{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ...
available_markets[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...
copyrights[{'type': 'C', 'text': '© 2016 Apple Corps Ltd...[{'type': 'C', 'text': '© 2015 Apple Corps Ltd...[{'type': 'C', 'text': '© 2015 Apple Corps Ltd...[{'type': 'C', 'text': '© 2015 Apple Corps Ltd...[{'type': 'C', 'text': '© 2015 Apple Corps Ltd...
external_ids{'upc': '00602557054989'}{'upc': '00602547673503'}{'upc': '00602547670069'}{'upc': '00602547670342'}{'upc': '00602547670328'}
external_urls{'spotify': 'https://open.spotify.com/album/5X...{'spotify': 'https://open.spotify.com/album/5j...{'spotify': 'https://open.spotify.com/album/2p...{'spotify': 'https://open.spotify.com/album/2P...{'spotify': 'https://open.spotify.com/album/47...
genres[][][][][]
hrefhttps://api.spotify.com/v1/albums/5XfJmldgWzrc...https://api.spotify.com/v1/albums/5ju5Ouzan3Qw...https://api.spotify.com/v1/albums/2pCqZLeavM2B...https://api.spotify.com/v1/albums/2Pqkn9Dq2DFt...https://api.spotify.com/v1/albums/47bcKzmKgmMP...
id5XfJmldgWzrc1AIdbBaVZn5ju5Ouzan3QwXqQt1Tihbh2pCqZLeavM2BMovJXsJEIV2Pqkn9Dq2DFtdfkKAeqgMd47bcKzmKgmMPHXNVOWpLiu
images[{'height': 640, 'url': 'https://i.scdn.co/ima...[{'height': 640, 'url': 'https://i.scdn.co/ima...[{'height': 640, 'url': 'https://i.scdn.co/ima...[{'height': 640, 'url': 'https://i.scdn.co/ima...[{'height': 640, 'url': 'https://i.scdn.co/ima...
labelDigital Distribution Trinidad and TobagoDigital Distribution Trinidad and TobagoEMI CatalogueEMI CatalogueEMI Catalogue
nameLive At The Hollywood Bowl1 (Remastered)Let It Be (Remastered)Abbey Road (Remastered)Yellow Submarine (Remastered)
popularity5976697657
release_date2016-09-092000-11-131970-05-081969-09-261969-01-17
release_date_precisiondaydaydaydayday
tracks{'previous': None, 'items': [{'type': 'track',...{'previous': None, 'items': [{'type': 'track',...{'previous': None, 'items': [{'type': 'track',...{'previous': None, 'items': [{'type': 'track',...{'previous': None, 'items': [{'type': 'track',...
typealbumalbumalbumalbumalbum
urispotify:album:5XfJmldgWzrc1AIdbBaVZnspotify:album:5ju5Ouzan3QwXqQt1Tihbhspotify:album:2pCqZLeavM2BMovJXsJEIVspotify:album:2Pqkn9Dq2DFtdfkKAeqgMdspotify:album:47bcKzmKgmMPHXNVOWpLiu
\n", "
" ], "text/plain": [ " 0 \\\n", "_id 5XfJmldgWzrc1AIdbBaVZn \n", "album_type album \n", "artist_id 3WrFJ7ztbogyGnTHbHJFl2 \n", "artist_name The Beatles \n", "artists [{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \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", "label Digital Distribution Trinidad and Tobago \n", "name Live At The Hollywood Bowl \n", "popularity 59 \n", "release_date 2016-09-09 \n", "release_date_precision day \n", "tracks {'previous': None, 'items': [{'type': 'track',... \n", "type album \n", "uri spotify:album:5XfJmldgWzrc1AIdbBaVZn \n", "\n", " 1 \\\n", "_id 5ju5Ouzan3QwXqQt1Tihbh \n", "album_type album \n", "artist_id 3WrFJ7ztbogyGnTHbHJFl2 \n", "artist_name The Beatles \n", "artists [{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \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", "label Digital Distribution Trinidad and Tobago \n", "name 1 (Remastered) \n", "popularity 76 \n", "release_date 2000-11-13 \n", "release_date_precision day \n", "tracks {'previous': None, 'items': [{'type': 'track',... \n", "type album \n", "uri spotify:album:5ju5Ouzan3QwXqQt1Tihbh \n", "\n", " 2 \\\n", "_id 2pCqZLeavM2BMovJXsJEIV \n", "album_type album \n", "artist_id 3WrFJ7ztbogyGnTHbHJFl2 \n", "artist_name The Beatles \n", "artists [{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \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", "label EMI Catalogue \n", "name Let It Be (Remastered) \n", "popularity 69 \n", "release_date 1970-05-08 \n", "release_date_precision day \n", "tracks {'previous': None, 'items': [{'type': 'track',... \n", "type album \n", "uri spotify:album:2pCqZLeavM2BMovJXsJEIV \n", "\n", " 3 \\\n", "_id 2Pqkn9Dq2DFtdfkKAeqgMd \n", "album_type album \n", "artist_id 3WrFJ7ztbogyGnTHbHJFl2 \n", "artist_name The Beatles \n", "artists [{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \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", "label EMI Catalogue \n", "name Abbey Road (Remastered) \n", "popularity 76 \n", "release_date 1969-09-26 \n", "release_date_precision day \n", "tracks {'previous': None, 'items': [{'type': 'track',... \n", "type album \n", "uri spotify:album:2Pqkn9Dq2DFtdfkKAeqgMd \n", "\n", " 4 \n", "_id 47bcKzmKgmMPHXNVOWpLiu \n", "album_type album \n", "artist_id 3WrFJ7ztbogyGnTHbHJFl2 \n", "artist_name The Beatles \n", "artists [{'type': 'artist', 'id': '3WrFJ7ztbogyGnTHbHJ... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \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", "label EMI Catalogue \n", "name Yellow Submarine (Remastered) \n", "popularity 57 \n", "release_date 1969-01-17 \n", "release_date_precision day \n", "tracks {'previous': None, 'items': [{'type': 'track',... \n", "type album \n", "uri spotify:album:47bcKzmKgmMPHXNVOWpLiu " ] }, "execution_count": 389, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame(list(albums.find())).head().T" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Tag albums with artists\n", "As we have tracks for two artists, let's keep the identification easy and insert the artist name and id into each track document.\n", "\n", "* [Top](#top)" ] }, { "cell_type": "code", "execution_count": 390, "metadata": {}, "outputs": [], "source": [ "for a in albums.find({}, ['artists']):\n", " albums.update_one({'_id': a['_id']}, \n", " {'$set': {'artist_name': a['artists'][0]['name'],\n", " 'artist_id': a['artists'][0]['id']}})" ] }, { "cell_type": "code", "execution_count": 391, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'_id': '44Ig8dzqOkvkGDzaUof9lK', 'name': 'Led Zeppelin IV (Deluxe Edition)'},\n", " {'_id': '5EyIDBAqhnlkAHqvPRwdbX',\n", " 'name': 'Led Zeppelin IV (Remastered Version)'},\n", " {'_id': '4xGEiQ7La4japmGrREeLlw',\n", " 'name': 'Led Zeppelin III (Remastered Deluxe Edition)'},\n", " {'_id': '6P5QHz4XtxOmS5EuiGIPut', 'name': 'Led Zeppelin III (Remastered)'},\n", " {'_id': '58N1RPC3B4mRkjBaug4u3X',\n", " 'name': 'Led Zeppelin II (Remastered Deluxe Edition)'},\n", " {'_id': '58MQ0PLijVHePUonQlK76Y', 'name': 'Led Zeppelin II (Remastered)'},\n", " {'_id': '70lQYZtypdCALtFVlQAcvx', 'name': 'Led Zeppelin II'},\n", " {'_id': '22BzOOZKYZ2jYYKLpOlnET',\n", " 'name': 'Led Zeppelin (Remastered Deluxe Edition)'},\n", " {'_id': '1J8QW9qsMLx3staWaHpQmU', 'name': 'Led Zeppelin (Remastered)'},\n", " {'_id': '3ycjBixZf7S3WpC5WZhhUK', 'name': 'Led Zeppelin'}]" ] }, "execution_count": 391, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[a for a in albums.find({}, ['name']) if 'Zeppelin' in a['name']]" ] }, { "cell_type": "code", "execution_count": 392, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idartist_namename
04z3q8RPwbnRiiQJDUwMAwHQueenOn Air
12tWmWIqaGRhHssZiGrkn8vQueenA Night At The Odeon
27dDGrgcjzDmzXBfyinYIGQQueenLive At The Rainbow
339YPL3W4Ug5ZFfpiulv2C7QueenLive At The Rainbow (Deluxe)
40w4sTU4HG4QrEQrGqFLh7BQueenHungarian Rhapsody (Live In Budapest / 1986)
547paRwe37Iwl2Dasr2pc17QueenThe Cosmos Rocks
627JIAjxwuXQ5gXfl4Ya0qnQueenQueen Rock Montreal
7612jMQoBQ7Y0mZJjoAsJO7QueenReturn Of The Champions
86SXKdxJs7RV5pe4RB2shvQQueenOn Fire: Live At The Bowl
9391ScNR3xKywWSpfDwP3n0QueenMade In Heaven (2011 Remaster)
104kCtf1Mrytg1DhNyaDcbDzQueenMade In Heaven (Deluxe Edition 2011 Remaster)
1174VmDpx1yWY5sOYA1KkWmZQueenLive At Wembley Stadium
125kffKW0sSLo6tkLg1veUGCQueenInnuendo (2011 Remaster)
134May3oxm4OfBv9QwkXylACQueenInnuendo (Deluxe Edition 2011 Remaster)
143h6SV9wHJtNL1YswZUJs8VQueenThe Miracle (2011 Remaster)
151HmWxU8jJ27zCs3thz4yX5QueenThe Miracle (Deluxe Edition 2011 Remaster)
160pEfDPZko6TnNOgrZMe5nnQueenA Kind Of Magic (2011 Remaster)
174pDRU9NBCmst37ZBT4hXVEQueenA Kind Of Magic (Deluxe Edition 2011 Remaster)
185RS9xkMuDmeVISqGDBmnSaQueenThe Works (2011 Remaster)
197K6YvloaUMP4rnQQVzdBEoQueenThe Works (Deluxe Edition 2011 Remaster)
206reTSIf5MoBco62rk8T7Q1QueenHot Space (2011 Remaster)
210jEONRWXxZ5LddnJqHPC9gQueenHot Space (Deluxe Edition 2011 Remaster)
223rxolmqfcqWFr1kihP3lpQQueenFlash Gordon (Remastered)
235d3AOgrLzJFrmiv6eds2wMQueenFlash Gordon (Deluxe Edition 2011 Remaster)
2458alCatewkjNm9IM1Ucj67QueenThe Game (2011 Remaster)
255EgbL7EnLNXO999sc47gOlQueenThe Game (Deluxe Edition 2011 Remaster)
262nwy2IT4YbOsZzwUKPb6PqQueenLive Killers
272yuTRGIackbcReLUXOYBqUQueenJazz (2011 Remaster)
287nYftNpa1Bnq12jdIwfI5xQueenJazz (Deluxe Edition 2011 Remaster)
297tB40pGzj6Tg0HePj2jWZtQueenNews Of The World (2011 Remaster)
303jr9DLjls4THNQSYa0YcTvQueenNews Of The World (Deluxe Edition 2011 Remaster)
310QRlYlrBuP7eGpEMZvZiaQQueenA Day At The Races (2011 Remaster)
325zMufYBMrHmqeYLoXs05KoQueenA Day At The Races (Deluxe Edition 2011 Remaster)
331TSZDcvlPtAnekTaItI3qOQueenA Night At The Opera (2011 Remaster)
342mEAmmRoZrvhBh1Vic03fZQueenSheer Heart Attack (2011 Remaster)
351Gnrd76EubInPV4KjOJ1ZrQueenSheer Heart Attack (Deluxe Edition 2011 Remaster)
361rjtzyJM3m6PDcFtwp7JZmQueenQueen II (2011 Remaster)
370YpxBancYcVg9aLnZerBQgQueenQueen II (Deluxe Edition 2011 Remaster)
384Vu6gMiQx2N61fVjPoPdmZQueenQueen (2011 Remaster)
396YwX6crCLDQTE8ZbtdzFUhQueenQueen (Deluxe Edition 2011 Remaster)
\n", "
" ], "text/plain": [ " _id artist_name \\\n", "0 4z3q8RPwbnRiiQJDUwMAwH Queen \n", "1 2tWmWIqaGRhHssZiGrkn8v Queen \n", "2 7dDGrgcjzDmzXBfyinYIGQ Queen \n", "3 39YPL3W4Ug5ZFfpiulv2C7 Queen \n", "4 0w4sTU4HG4QrEQrGqFLh7B Queen \n", "5 47paRwe37Iwl2Dasr2pc17 Queen \n", "6 27JIAjxwuXQ5gXfl4Ya0qn Queen \n", "7 612jMQoBQ7Y0mZJjoAsJO7 Queen \n", "8 6SXKdxJs7RV5pe4RB2shvQ Queen \n", "9 391ScNR3xKywWSpfDwP3n0 Queen \n", "10 4kCtf1Mrytg1DhNyaDcbDz Queen \n", "11 74VmDpx1yWY5sOYA1KkWmZ Queen \n", "12 5kffKW0sSLo6tkLg1veUGC Queen \n", "13 4May3oxm4OfBv9QwkXylAC Queen \n", "14 3h6SV9wHJtNL1YswZUJs8V Queen \n", "15 1HmWxU8jJ27zCs3thz4yX5 Queen \n", "16 0pEfDPZko6TnNOgrZMe5nn Queen \n", "17 4pDRU9NBCmst37ZBT4hXVE Queen \n", "18 5RS9xkMuDmeVISqGDBmnSa Queen \n", "19 7K6YvloaUMP4rnQQVzdBEo Queen \n", "20 6reTSIf5MoBco62rk8T7Q1 Queen \n", "21 0jEONRWXxZ5LddnJqHPC9g Queen \n", "22 3rxolmqfcqWFr1kihP3lpQ Queen \n", "23 5d3AOgrLzJFrmiv6eds2wM Queen \n", "24 58alCatewkjNm9IM1Ucj67 Queen \n", "25 5EgbL7EnLNXO999sc47gOl Queen \n", "26 2nwy2IT4YbOsZzwUKPb6Pq Queen \n", "27 2yuTRGIackbcReLUXOYBqU Queen \n", "28 7nYftNpa1Bnq12jdIwfI5x Queen \n", "29 7tB40pGzj6Tg0HePj2jWZt Queen \n", "30 3jr9DLjls4THNQSYa0YcTv Queen \n", "31 0QRlYlrBuP7eGpEMZvZiaQ Queen \n", "32 5zMufYBMrHmqeYLoXs05Ko Queen \n", "33 1TSZDcvlPtAnekTaItI3qO Queen \n", "34 2mEAmmRoZrvhBh1Vic03fZ Queen \n", "35 1Gnrd76EubInPV4KjOJ1Zr Queen \n", "36 1rjtzyJM3m6PDcFtwp7JZm Queen \n", "37 0YpxBancYcVg9aLnZerBQg Queen \n", "38 4Vu6gMiQx2N61fVjPoPdmZ Queen \n", "39 6YwX6crCLDQTE8ZbtdzFUh Queen \n", "\n", " name \n", "0 On Air \n", "1 A Night At The Odeon \n", "2 Live At The Rainbow \n", "3 Live At The Rainbow (Deluxe) \n", "4 Hungarian Rhapsody (Live In Budapest / 1986) \n", "5 The Cosmos Rocks \n", "6 Queen Rock Montreal \n", "7 Return Of The Champions \n", "8 On Fire: Live At The Bowl \n", "9 Made In Heaven (2011 Remaster) \n", "10 Made In Heaven (Deluxe Edition 2011 Remaster) \n", "11 Live At Wembley Stadium \n", "12 Innuendo (2011 Remaster) \n", "13 Innuendo (Deluxe Edition 2011 Remaster) \n", "14 The Miracle (2011 Remaster) \n", "15 The Miracle (Deluxe Edition 2011 Remaster) \n", "16 A Kind Of Magic (2011 Remaster) \n", "17 A Kind Of Magic (Deluxe Edition 2011 Remaster) \n", "18 The Works (2011 Remaster) \n", "19 The Works (Deluxe Edition 2011 Remaster) \n", "20 Hot Space (2011 Remaster) \n", "21 Hot Space (Deluxe Edition 2011 Remaster) \n", "22 Flash Gordon (Remastered) \n", "23 Flash Gordon (Deluxe Edition 2011 Remaster) \n", "24 The Game (2011 Remaster) \n", "25 The Game (Deluxe Edition 2011 Remaster) \n", "26 Live Killers \n", "27 Jazz (2011 Remaster) \n", "28 Jazz (Deluxe Edition 2011 Remaster) \n", "29 News Of The World (2011 Remaster) \n", "30 News Of The World (Deluxe Edition 2011 Remaster) \n", "31 A Day At The Races (2011 Remaster) \n", "32 A Day At The Races (Deluxe Edition 2011 Remaster) \n", "33 A Night At The Opera (2011 Remaster) \n", "34 Sheer Heart Attack (2011 Remaster) \n", "35 Sheer Heart Attack (Deluxe Edition 2011 Remaster) \n", "36 Queen II (2011 Remaster) \n", "37 Queen II (Deluxe Edition 2011 Remaster) \n", "38 Queen (2011 Remaster) \n", "39 Queen (Deluxe Edition 2011 Remaster) " ] }, "execution_count": 392, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame(list(albums.find({'artist_id': this_artist_id}, ['name', 'artist_name'])))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "According to the [Spotify documentation](https://developer.spotify.com/web-api/object-model/#track-object), some objects returned have only a bit of the data, and contain a `href` field for where to find the rest. The track details in the album documents fit that bill, so let's find the full track information.\n", "\n", "While doing this, not that Spotify will rate-limit the requests, so we have to include a loop to respect the timeout and retry the requests after the appropriate time." ] }, { "cell_type": "code", "execution_count": 145, "metadata": {}, "outputs": [], "source": [ "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", " 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", " tracks.replace_one({'_id': track['_id']}, track, upsert=True)\n", " break\n", " except urllib.error.HTTPError as e:\n", " print(\"Rate limited. Pausing for\", e.info()['Retry-After'])\n", " time.sleep(int(e.info()['Retry-After']) + 0.5)\n", " continue" ] }, { "cell_type": "code", "execution_count": 393, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Rate limited. Pausing for 1\n", "Rate limited. Pausing for 1\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": [ "2387" ] }, "execution_count": 393, "metadata": {}, "output_type": "execute_result" } ], "source": [ "a_type, a_token = get_spotify_auth_token()\n", "for album in albums.find({'artist_id': this_artist_id}):\n", " get_tracks(album['_id'], a_type, a_token)\n", "tracks.find().count()" ] }, { "cell_type": "code", "execution_count": 310, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
" ], "text/plain": [ "Empty DataFrame\n", "Columns: []\n", "Index: []" ] }, "execution_count": 310, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame(list(tracks.find({'artist_id': this_artist_id}))).head().T" ] }, { "cell_type": "code", "execution_count": 311, "metadata": { "scrolled": true }, "outputs": [], "source": [ "tracks.find_one({'artist_id': this_artist_id, 'lyrics': {'$exists': False}})" ] }, { "cell_type": "code", "execution_count": 394, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'_id': '2k74gJnywz27PEN353xNrH',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Jumpin’ Jack Flash - Live'},\n", " {'_id': '34M7SNsiLrEIcPSdBZMuUx',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'I Can’t Turn You Loose - Live'},\n", " {'_id': '6Kik662VPYcP28O0AgDOyo',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/2lVPicgpjjlbROFIzwGm8V'},\n", " 'href': 'https://api.spotify.com/v1/artists/2lVPicgpjjlbROFIzwGm8V',\n", " 'id': '2lVPicgpjjlbROFIzwGm8V',\n", " 'name': 'Björn Ulvaeus',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2lVPicgpjjlbROFIzwGm8V'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/0kV0e99xlTJcLKSu8KrLyp'},\n", " 'href': 'https://api.spotify.com/v1/artists/0kV0e99xlTJcLKSu8KrLyp',\n", " 'id': '0kV0e99xlTJcLKSu8KrLyp',\n", " 'name': 'Benny Andersson',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0kV0e99xlTJcLKSu8KrLyp'}],\n", " 'name': 'Hej gamle man'},\n", " {'_id': '5zAm139b7KbvpceGYrKRoN',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Reaching Out - Live In Sheffield / 2005'},\n", " {'_id': '7uqynFHD7FTj776YwoWcsi',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Tie Your Mother Down - Live In Sheffield / 2005'},\n", " {'_id': '3pqbMyquXu4GwWdoTXzLYh',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'I Want To Break Free - Live In Sheffield / 2005'},\n", " {'_id': '45ebbrXQJUnVOZhKZH0kzm',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Fat Bottomed Girls - Live In Sheffield / 2005'},\n", " {'_id': '2RdZ9xrrMx1Kne8tSGix7t',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Wishing Well - Live In Sheffield / 2005'},\n", " {'_id': '00I1iFyMfSNwG4aC5E1XRy',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Another One Bites The Dust - Live In Sheffield / 2005'},\n", " {'_id': '2nULmxIsEuCasBbqALrdYQ',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Crazy Little Thing Called Love - Live In Sheffield / 2005'},\n", " {'_id': '5MMJRe95y2MlOx6B4vfO5W',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"Say It's Not True - Live In Sheffield / 2005\"},\n", " {'_id': '64iVLKQRTiw9dD265lUmbI',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"'39 - Live In Sheffield / 2005\"},\n", " {'_id': '6ectiUHgVLd3FhFz5FwzDM',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Love Of My Life - Live In Sheffield / 2005'},\n", " {'_id': '2GzUvGaVnu6NwkWApwpZ22',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Hammer To Fall - Live In Sheffield / 2005'},\n", " {'_id': '3pxivkJc3Injjyqtq2wqG8',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"Feel Like Makin' Love - Live In Sheffield / 2005\"},\n", " {'_id': '3KFsjXOLV99xXQZuebwadN',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Let There Be Drums - Live In Sheffield / 2005'},\n", " {'_id': '0T6NEM5ymlDDHSmasroYmv',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"I'm In Love With My Car - Live In Sheffield / 2005\"},\n", " {'_id': '1Hq7YTkt4Dhu5uTsldzcmS',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Guitar Solo - Live In Sheffield / 2005'},\n", " {'_id': '7DHz15yq6TiPocdRzjQUQG',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Last Horizon - Live In Sheffield / 2005'},\n", " {'_id': '62IEv8MNCzFNpijhQpbt9m',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'These Are The Days Of Our Lives - Live In Sheffield / 2005'},\n", " {'_id': '31Hh9up5R3F6DIYDx5aaVe',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Radio Ga Ga - Live In Sheffield / 2005'},\n", " {'_id': '7ewkc3USNXanzaGhVGkagO',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"Can't Get Enough - Live In Sheffield / 2005\"},\n", " {'_id': '2cCKi8ZW15HJSOzd0Ax6Dv',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'A Kind Of Magic - Live In Sheffield / 2005'},\n", " {'_id': '0XFDqsJ7vez95jgEEo2jnA',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'I Want It All - Live In Sheffield / 2005'},\n", " {'_id': '3cyIzikX3zWA1ppzLTPaI5',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Bohemian Rhapsody - Live In Sheffield / 2005'},\n", " {'_id': '4Ho7azcUY1CAWo8SGqW5aV',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'The Show Must Go On - Live In Sheffield / 2005'},\n", " {'_id': '0QcOB1JjdVGbKSyjHbYeOY',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'All Right Now - Live In Sheffield / 2005'},\n", " {'_id': '5T7MgB91xcdGrZPdp7083e',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'We Will Rock You - Live In Sheffield / 2005'},\n", " {'_id': '5dfibKLMobUyrgY0hxJOud',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'We Are The Champions - Live In Sheffield / 2005'},\n", " {'_id': '3bxvtSKdOKlWEFjyZBB9gr',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'God Save The Queen - Live In Sheffield / 2005'},\n", " {'_id': '4ajbplh2IXiJkXjQiq5aqq',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/3WrFJ7ztbogyGnTHbHJFl2'},\n", " 'href': 'https://api.spotify.com/v1/artists/3WrFJ7ztbogyGnTHbHJFl2',\n", " 'id': '3WrFJ7ztbogyGnTHbHJFl2',\n", " 'name': 'The Beatles',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:3WrFJ7ztbogyGnTHbHJFl2'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/0IecGJbdBeYSOVtSPRehh5'},\n", " 'href': 'https://api.spotify.com/v1/artists/0IecGJbdBeYSOVtSPRehh5',\n", " 'id': '0IecGJbdBeYSOVtSPRehh5',\n", " 'name': 'Billy Preston',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0IecGJbdBeYSOVtSPRehh5'}],\n", " 'name': 'Get Back - Remastered 2015'},\n", " {'_id': '5hmAmukTLOW6cqxuLznTKX',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/20Zw3d3t38Y4w1cTiR5ejP'},\n", " 'href': 'https://api.spotify.com/v1/artists/20Zw3d3t38Y4w1cTiR5ejP',\n", " 'id': '20Zw3d3t38Y4w1cTiR5ejP',\n", " 'name': 'Jack White',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:20Zw3d3t38Y4w1cTiR5ejP'}],\n", " 'name': 'Loving Cup - Live At The Beacon Theatre, New York / 2006'},\n", " {'_id': '4PNzP8riN8adoqhMMt1vQV',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gCsNOpiBaMNh20jQ5prf0'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gCsNOpiBaMNh20jQ5prf0',\n", " 'id': '2gCsNOpiBaMNh20jQ5prf0',\n", " 'name': 'Buddy Guy',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gCsNOpiBaMNh20jQ5prf0'}],\n", " 'name': 'Champagne & Reefer - Live At The Beacon Theatre, New York / 2006'},\n", " {'_id': '5Qjk4RBJLflnrSvhszQ9ZZ',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/1l7ZsJRRS8wlW3WfJfPfNS'},\n", " 'href': 'https://api.spotify.com/v1/artists/1l7ZsJRRS8wlW3WfJfPfNS',\n", " 'id': '1l7ZsJRRS8wlW3WfJfPfNS',\n", " 'name': 'Christina Aguilera',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1l7ZsJRRS8wlW3WfJfPfNS'}],\n", " 'name': 'Live With Me - Live At The Beacon Theatre, New York / 2006'},\n", " {'_id': '07HQyzxsGis1aZrKgXvVcV',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/4nts0oxMT67lVUoi5Kjxrb'},\n", " 'href': 'https://api.spotify.com/v1/artists/4nts0oxMT67lVUoi5Kjxrb',\n", " 'id': '4nts0oxMT67lVUoi5Kjxrb',\n", " 'name': 'Solomon Burke',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4nts0oxMT67lVUoi5Kjxrb'}],\n", " 'name': 'Everybody Needs Somebody To Love - Live Licks Tour - 2009 Re-Mastered Digital Version'},\n", " {'_id': '4bVeIOiHrcHP0i8oN5vuOv',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/4TKTii6gnOnUXQHyuo9JaD'},\n", " 'href': 'https://api.spotify.com/v1/artists/4TKTii6gnOnUXQHyuo9JaD',\n", " 'id': '4TKTii6gnOnUXQHyuo9JaD',\n", " 'name': 'Sheryl Crow',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4TKTii6gnOnUXQHyuo9JaD'}],\n", " 'name': 'Honky Tonk Women - Live Licks Tour - 2009 Re-Mastered Digital Version'},\n", " {'_id': '6DwVfITR9VP2hybiTkGWBc',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Hoochie Coochie Man - Live'},\n", " {'_id': '68WvRRgVhGBYmc8OCEvNA1',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Long Distance Call - Live'},\n", " {'_id': '2cXHVXOz40gZN7sJX64aFF',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': \"Got My Mojo Workin' - Live\"},\n", " {'_id': '5ginMi09yrNMiWo7LFyiwK',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"Cosmos Rockin'\"},\n", " {'_id': '0LhqNSF2lKyClA4LsrWOTM',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Time To Shine'},\n", " {'_id': '6IvHjKkAAx2YImuceKK9qF',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"Still Burnin'\"},\n", " {'_id': '6MqFkEAQLQBeZiatubcfez',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Small'},\n", " {'_id': '6DxPhadRS7Oo7wFXkisBNl',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Warboys'},\n", " {'_id': '0RVHU0fI1P2HzTFAKQ9RjG',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'We Believe'},\n", " {'_id': '58yf6DjFNl8hJXGc30hO9h',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Call Me'},\n", " {'_id': '3q8FnAzHrsQDNg5lo1dldS',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Voodoo'},\n", " {'_id': '2z6pOkdTFUUSWJIeJdHStp',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Some Things That Glitter'},\n", " {'_id': '0mkbZsjgHsCWxiGZbxO9QW',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'C-lebrity'},\n", " {'_id': '3QmNJxZUS4dsASHjdK7Fqa',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Through The Night'},\n", " {'_id': '2NCKFPU6KeXHC7mbrnRfo6',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"Say It's Not True\"},\n", " {'_id': '7zB8ZyUP9hTmZ3veSznNEh',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': \"Surf's Up...School's Out!\"},\n", " {'_id': '2xMzXlytzdAmOq7yIobTJV',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2gaWNB3YrlTc0KRlHNqhol'},\n", " 'href': 'https://api.spotify.com/v1/artists/2gaWNB3YrlTc0KRlHNqhol',\n", " 'id': '2gaWNB3YrlTc0KRlHNqhol',\n", " 'name': 'Paul Rodgers',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2gaWNB3YrlTc0KRlHNqhol'}],\n", " 'name': 'Small Reprise'},\n", " {'_id': '45qDksEJzeg5yHjHb81N89',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Hang Fire - Remastered'},\n", " {'_id': '3DG3HqCI9SZ1iTUBtH2Tqj',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Neighbours - Remastered'},\n", " {'_id': '2NJl6DPqHnD5f3mShjFSF8',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Worried About You - Remastered'},\n", " {'_id': '7cT82dppW9lRJs5B0sO3PE',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Tops - Remastered'},\n", " {'_id': '0z4o8TMSswtKc4I5hntpEE',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Heaven - Remastered'},\n", " {'_id': '0OA9xod1fnFecSQPb165D6',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'No Use In Crying - Remastered'},\n", " {'_id': '6b2oPTD7iwZ8u0GSiQ9KjB',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': \"Baby Please Don't Go - Live / Instrumental\"},\n", " {'_id': '1SOU2BrRM88ykKxPxUBCeL',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': \"Baby Please Don't Go - Live\"},\n", " {'_id': '5fdp64tlkhSRvxQRhDb90C',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Next Time You See Me - Live'},\n", " {'_id': '0lNv4CSgoSPd5w6H1ACpQq',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'One Eyed Woman - Live'},\n", " {'_id': '1G7MgWxeUZ2Xq1tMAHobrV',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Clouds In My Heart - Live'},\n", " {'_id': '26SBBavAHnSEZVHQ7OCqEY',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Champagne And Reefer - Live'},\n", " {'_id': '5AmdUA5aj3BKXBHqMcwpDL',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Instrumental 1 - Live'},\n", " {'_id': '1eIRZEohfewV7H1zGxZy0L',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Instrumental 2 - Live'},\n", " {'_id': '7m6dBGKuagWUryeevcBrE0',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': \"Baby Please Don't Go - Live\"},\n", " {'_id': '6yjQRBe4nt7KznxYqh7qfK',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Hoochie Coochie Man - Live'},\n", " {'_id': '10eM8qubZ9IBU0v6LNLjNM',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Long Distance Call - Live'},\n", " {'_id': '4kYnrUr98AZARciXJGjjzH',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': \"Got My Mojo Workin' - Live\"},\n", " {'_id': '15RgKpCJ1rxwbNMpoA503m',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Next Time You See Me - Live'},\n", " {'_id': '1yFFTCqtFerayfTq46m0P0',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'One Eyed Woman - Live'},\n", " {'_id': '402iDzjasfYVYx1LT5gNFS',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Clouds In My Heart - Live'},\n", " {'_id': '0L8sAIZr2OcE45cGZ3qbb7',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Champagne And Reefer - Live'},\n", " {'_id': '0Ceca20fqfNJMthxWr21X4',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Start Me Up - Live'},\n", " {'_id': '2Tc9ZA3YjkenxjQfSiL0Mv',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'When The Whip Comes Down - Live'},\n", " {'_id': '1QP7LrHUWR0LAglxdjAufD',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'All Down The Line - Live'},\n", " {'_id': '3RYXjy8HMrp9IV29Vlugkd',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Sway - Live'},\n", " {'_id': '4LSSZbf6jb9iJkDg5WgMGY',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Dead Flowers - Live'},\n", " {'_id': '6hz3FoUQakWunNkles60bE',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Wild Horses - Live'},\n", " {'_id': '4i8ZAszepLzVIwmdvgD3jw',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Sister Morphine - Live'},\n", " {'_id': '1jk4WaIif3J1zEXjMP8ZcD',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'You Gotta Move - Live'},\n", " {'_id': '7irq6dGW2z37J18rnjSo8K',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Bitch - Live'},\n", " {'_id': '73MgBR8k2EsPszWy8ZphAF',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': \"Can't You Hear Me Knocking - Live\"},\n", " {'_id': '3VMoD8OuJ7t1gsFkWgqo1h',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'I Got The Blues - Live'},\n", " {'_id': '4e9TWBLsP2aeshY1SAMWOA',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Moonlight Mile - Live'},\n", " {'_id': '1H5W8Xhv0rloLJuuE3ADvi',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Brown Sugar - Live'},\n", " {'_id': '4O8XKEmjlfoQL0maIJoYED',\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", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/7iWYCIyfxwVyVae6u7qJaO'},\n", " 'href': 'https://api.spotify.com/v1/artists/7iWYCIyfxwVyVae6u7qJaO',\n", " 'id': '7iWYCIyfxwVyVae6u7qJaO',\n", " 'name': 'Bob Clearmountain',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7iWYCIyfxwVyVae6u7qJaO'}],\n", " 'name': 'Rock Me Baby - Live'},\n", " {'_id': '1F69leTp8WQHMFVQ5gOtIS',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Mannish Boy - Live'},\n", " {'_id': '3nc2vvots8KXJIssvtJvh6',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R'},\n", " 'href': 'https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R',\n", " 'id': '4y6J8jwRAwO4dssiSmN91R',\n", " 'name': 'Muddy Waters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4y6J8jwRAwO4dssiSmN91R'},\n", " {'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", " 'name': 'Mannish Boy - Live'},\n", " {'_id': '1pbYEdmXxMMQgliPdTK7fX',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/7jy3rLJdDQY21OgRLCZ9sD'},\n", " 'href': 'https://api.spotify.com/v1/artists/7jy3rLJdDQY21OgRLCZ9sD',\n", " 'id': '7jy3rLJdDQY21OgRLCZ9sD',\n", " 'name': 'Foo Fighters',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:7jy3rLJdDQY21OgRLCZ9sD'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/2CIMQHirSU0MQqyYHq0eOx'},\n", " 'href': 'https://api.spotify.com/v1/artists/2CIMQHirSU0MQqyYHq0eOx',\n", " 'id': '2CIMQHirSU0MQqyYHq0eOx',\n", " 'name': 'deadmau5',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2CIMQHirSU0MQqyYHq0eOx'}],\n", " 'name': 'Rope - deadmau5 mix'},\n", " {'_id': '2fuCquhmrzHpu5xcA1ci9x',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy'},\n", " 'href': 'https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy',\n", " 'id': '0oSGxfWSnnOXhD2fKuz2Gy',\n", " 'name': 'David Bowie',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy'}],\n", " 'name': 'Under Pressure - Remastered 2011'},\n", " {'_id': '5siBhoh232tTCTDBrdZtSV',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy'},\n", " 'href': 'https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy',\n", " 'id': '0oSGxfWSnnOXhD2fKuz2Gy',\n", " 'name': 'David Bowie',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy'}],\n", " 'name': 'Under Pressure - Remastered 2011'}]" ] }, "execution_count": 394, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[t for t in tracks.find({}, ['artists', 'name']) if len(t['artists']) > 1]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Tag tracks with artist\n", "Again, make an easy tag for the artist of each track.\n", "\n", "* [Top](#top)" ] }, { "cell_type": "code", "execution_count": 395, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "track 1SvX2R7kPc0JsGnJaJVzZO ['Queen']\n", "track 0539iqYPTBADCOErdzreVt ['Queen']\n", "track 336FWwFS99OzxnCaXcx0gt ['Queen']\n", "track 3ldtMr0AMzoMd1xGR5aAYz ['Queen']\n", "track 7z1JYjP1HnbGMJLqCVm1eC ['Queen']\n", "track 021qUf6DWC3VJYipCvvApm ['Queen']\n", "track 5rbGVn7WkOw2whbwso1dBX ['Queen']\n", "track 7Gjz9hnR8IlQvptOxZzygX ['Queen']\n", "track 2QQ41S2czs8Pvo4p2o5LAk ['Queen']\n", "track 7apJhSwq7A7pAe706UTWTW ['Queen']\n", "track 76iDj66U3eRH2zV0o0M0x6 ['Queen']\n", "track 74uqDXfmT2is8PcWPZ2zWA ['Queen']\n", "track 4XCpYmANx7w251PILeySgp ['Queen']\n", "track 4mzapiSJjvJWSXGg4ZHGl1 ['Queen']\n", "track 3ROPrLWea9uICOW4V2Px1y ['Queen']\n", "track 5RYLa5P4qweEAKq5U1gdcK ['Queen']\n", "track 1jgefM2ZP7RnPVShhy1eUM ['The Rolling Stones']\n", "track 7FagS2T3y5XwDpYvyHfvmc ['The Rolling Stones']\n", "track 4pKN6TNF59rJ1PCtPoeppg ['The Rolling Stones']\n", "track 39OF4xTwA6f5BaIeA9aAwF ['The Rolling Stones']\n", "track 2uO1HbJhQvmXpjclLmLEeK ['The Rolling Stones']\n", "track 7IiEMNeyHBjHQCi4sBeUSh ['Led Zeppelin']\n", "track 5oXApBdISAwO8SPEC33QPz ['Led Zeppelin']\n", "track 5W6WEL8SmY1vW51KcGha8x ['Led Zeppelin']\n", "track 48s3z2htm4EKCY8Wl3fYqZ ['Led Zeppelin']\n", "track 3GuChJAbZF8AFVYFkk2gk2 ['Led Zeppelin']\n", "track 6kpMYSZ58MkohGS7OkO4A9 ['Led Zeppelin']\n", "track 5HqmfJsnokv4VOzdYJkV3L ['Led Zeppelin']\n", "track 5rgWj8h7lzbSmwpp0wFkXD ['Led Zeppelin']\n", "track 1PELiBvwMisTq8ERS5OhlD ['Led Zeppelin']\n", "track 3lXXHpUSHFEl0CDQt4ekJ2 ['Led Zeppelin']\n", "track 01pTpvBghy8H9l7IGWOq5r ['Led Zeppelin']\n", "track 5E2juuVhD7yB1EOThC08lw ['Queen']\n", "track 6IqKqd9q4pPXc8J64snYT8 ['Queen']\n", "track 4zX8GHDkVlXNKPwHLfZG6G ['Queen']\n", "track 6lSYYtIE71a7lH0JquxKl6 ['Queen']\n", "track 0BzhS74ByIVlyz8BedHaYi ['Queen']\n", "track 1pHVfiNHMMZYquR35fTZdM ['Queen']\n", "track 6goUTcMn0V30hWtKFIj6Kh ['Queen']\n", "track 4HF7ddEW0eadUpIi3iSqiB ['Queen']\n", "track 161M6Ul0mY3trIlDxBHyhK ['Queen']\n", "track 5Z5xbf3G5ld4kHMjJWpwem ['Queen']\n", "track 6VWhk0VNyGs6o5aTUj4akR ['Queen']\n", "track 5js1JJOAkR5KwlifBpvHMN ['Queen']\n", "track 1r1edvjolplEOpqGK2GoHt ['Queen']\n", "track 3DTonaWjulk1qsxL7ULIax ['Queen']\n", "track 3doVdGo0NrKWDuiAUiWyCY ['Queen']\n", "track 5n6RDaGFSN88oRWuGtYAIN ['Queen']\n", "track 6eGjyvl2LCovg5fstFxAga ['Queen']\n", "track 0lRGxO56Y6ARKEyvpJOX1N ['Queen']\n", "track 7vHSspNs8MPkOB2A3x9ARJ ['Queen']\n", "track 0BkEev4JcKY0Hk54VWwtSO ['Queen']\n", "track 6vUbXquGK5Q3osX5wJXx8q ['Queen']\n", "track 4srbcly4yWgbyvIww7Dunz ['Queen']\n", "track 6YXCFjv7y12dX97iWcdzks ['Queen']\n", "track 6kvmyRoDEiRldGyVyt6zex ['Queen']\n", "track 0SkKJNTOTdOz0jl17Fm6Co ['Queen']\n", "track 7BLZzMO6PMGqXSp56jz0Bb ['Queen']\n", "track 0g7AkY1T1lt9kYuBUPOv1I ['Queen']\n", "track 6leGGL1jleM6GOJ9CJLkgr ['Queen']\n", "track 2Jd320a4gWyq7b5id234rh ['Queen']\n", "track 70zIlBRaU4uKeShAv6QQ3Q ['Queen']\n", "track 2wm2c4wARmRyQ7y92Jz8ak ['Queen']\n", "track 5lodcyh28Gx6nY80qWAGTK ['Queen']\n", "track 0F66rb8Of8ulhXQQ0kI8Yk ['Queen']\n", "track 2As8W0MhoBuWVCyuVUj0sl ['Queen']\n", "track 1SH4lUFMH0gp6WFfVb0jYD ['Queen']\n", "track 5EQXJGm08LMM1ZtVmkYJMn ['Queen']\n", "track 3Dpyn5Cu7BdURzo2ov4dku ['Queen']\n", "track 6VoiY3rukFPoqzP4AoGPU8 ['Queen']\n", "track 5Nuxdf0f5PpaeaPm4jrhiE ['Queen']\n", "track 6jornLGJEzC3wFP2MFFvWg ['Queen']\n", "track 6ntpR3xo7Zcc9akHgcMbu5 ['Queen']\n", "track 4ThbgbCyLKCPrPEdmYfwtV ['Queen']\n", "track 5YAXhS6lCmoQD4HJvi6YwW ['Queen']\n", "track 6ePYuPiBKrahiVF8aejiYW ['Queen']\n", "track 5fdllAhRzlWOByIyulTpOm ['Queen']\n", "track 0rzis6bBgOiA4kviQmypjE ['Queen']\n", "track 0ncl4XVpQASObiCY0KYmqw ['Queen']\n", "track 3XqQuk01PcRXbyHf2AovYN ['George Martin']\n", "track 7jZX0QSP4YClL1smfBt1yl ['George Martin']\n", "track 4rkGGQEqxHIXVJ4oXjOHgF ['George Martin']\n", "track 2PbwmAMaxIBIWis8XLViat ['George Martin']\n", "track 7M0HjPZ5KZMik1FYHOU6sR ['George Martin']\n", "track 49JPfRfsAfjWYRN6lbC3my ['George Martin']\n", "track 47DgFAFnhfwoSko23P7pz5 ['George Martin']\n", "track 2ucFulEWapRAmTn7l6f5Q7 ['The Beatles']\n", "track 2z1p43SNSbeowzy8WdYHNk ['The Beatles']\n", "track 3ckvsHnEffhhS5c0Cs6Gv5 ['The Beatles']\n", "track 6Unw1AAcpS1ZgZoRlj2jxA ['Radiohead']\n", "track 5hfzW7LG97Hxv62HHUKgaj ['Radiohead']\n", "track 64lecUR19lBSu317AzVZv3 ['Radiohead']\n", "track 1CxhtUbe1o2PeMM3l5Kch6 ['Radiohead']\n", "track 2H7Y8wYixrSlKJoaZ1N2yl ['Radiohead']\n", "track 3zkFTfcboFcOdno0CHCmTc ['Radiohead']\n", "track 7KKglMFf5KV0PIDSAOqfnH ['Radiohead']\n", "track 4raxzmnFq93jfKC8c3xcIv ['Radiohead']\n", "track 1gaAIZ4vGQ6QvDUgN2Xyus ['Radiohead']\n", "track 7krim8C3DpTu1ShdoZezix ['Radiohead']\n", "track 1mlpZ1Zv1CZSAVsXKQYnQY ['Radiohead']\n", "track 410fAd2tXU8aEb4vrGzslY ['Radiohead']\n", "track 66Pyms4pYaHEcPHZ7DdMbE ['Radiohead']\n", "track 1AVrv7FD10FoKW38oBiKRg ['Radiohead']\n", "track 0tKuiKb2mazZYdA6fPP7kI ['Radiohead']\n", "track 6M0NzgHVT1FL7vPIUTZlXD ['Radiohead']\n", "track 4LgjuZHNEoqsFlJfP7IDTB ['Radiohead']\n", "track 2Bri2rrUY9kVo6teP0kaeJ ['Radiohead']\n", "track 1MheF7RyAsg9tuI6Vje9SB ['Radiohead']\n", "track 3gKuywOm38axM8sJGq6Laq ['Radiohead']\n", "track 2uYSbsxAMmK1awUl06T7ix ['Radiohead']\n", "track 3Y0ZPYdFsJ1ynQxpWZLNDj ['Radiohead']\n", "track 4eMihOfR2uAfWz3neCzyRU ['Radiohead']\n", "track 1KoAkWyPZVnuOFsTsUFSla ['Radiohead']\n", "track 1q6X5sJSWQ2QnqvPghR0Kr ['Radiohead']\n", "track 7JPAaoRHlkZhdJmS79CZ6J ['Radiohead']\n", "track 4wZahoQpi02ogLEBy0Psxx ['Radiohead']\n", "track 4blz5SBUxKbtDNwMWstGNG ['Radiohead']\n", "track 3bk7mfQWZ0acgp0hXzYQKS ['Radiohead']\n", "track 2hWZJox4TXssEA8lNUBxPN ['Radiohead']\n", "track 5MwVV6v5ak6NecRGXazcPJ ['Radiohead']\n", "track 2j2n2VGCMIyFaQ6ToEC0Cy ['Radiohead']\n", "track 3Em5EatvVONefKtPAjXad0 ['Radiohead']\n", "track 4Biwp5reDGs2xNPt1irGg1 ['Radiohead']\n", "track 3dM4EViXbO9TH5SYsvcVmj ['Radiohead']\n", "track 6PbeGqzGdjookqESRgm1AS ['Radiohead']\n", "track 2mvmuCtmmrERnm03ULdDye ['Radiohead']\n", "track 2zYrFer4QGSQkk5aUawfHB ['Radiohead']\n", "track 19LYBNYOMwmDKXvhwq5Ggv ['The Rolling Stones']\n", "track 56ljxn1tdisThe4xcVe4px ['The Rolling Stones']\n", "track 2Ax0tajnMzn8bB0jkmGNCK ['The Rolling Stones']\n", "track 2l4gWzhTj7Yt1IvMTWnSgF ['The Rolling Stones']\n", "track 7otIbWwB2rkqB3BHl6v296 ['The Rolling Stones']\n", "track 5yneY9DxScLNVshnxdOLLl ['The Rolling Stones']\n", "track 1oluhsJUDe1uAVGwfsFpfg ['The Rolling Stones']\n", "track 5WYoa7WQiZOpjYy3lg9Apg ['Duke Ellington']\n", "track 6HazgW4PjOxihpQPAAnLya ['Jimi Hendrix']\n", "track 72StxiucOrubnIMjrUd0Wr ['The Rolling Stones']\n", "track 5cXiWs6VoLlDlowJQo0UPk ['The Beatles']\n", "track 13ym1HXRT3sKBgxNe6FxIn ['The Rolling Stones']\n", "track 4LKBTN1shmp3Vq1gxYc7Zz ['The Rolling Stones']\n", "track 4zN811GoD9cpxxvEc0dXyn ['The Rolling Stones']\n", "track 2k74gJnywz27PEN353xNrH ['The Rolling Stones', 'Bob Clearmountain']\n", "track 34M7SNsiLrEIcPSdBZMuUx ['The Rolling Stones', 'Bob Clearmountain']\n", "track 3v2SyLXNg7IY3I3N6QTZ45 ['The Rolling Stones']\n", "track 3gaxO9MXNZZ7Hxim8BR8hp ['The Rolling Stones']\n", "track 5JSa2U2PfMh7Nlsobst4Bx ['The Rolling Stones']\n", "track 5Y77giAAAmU9EpfHBDbBV8 ['The Rolling Stones']\n", "track 1w9FiXsMcaxb5SD8vIZgm3 ['The Rolling Stones']\n", "track 3YuXrJHzDyJ6ZAcp5noG1A ['The Rolling Stones']\n", "track 1tEdH58k6r4CvjEhmxxbMC ['The Rolling Stones']\n", "track 66wTQfPvARWOqKQcYSb35W ['Muddy Waters']\n", "track 54qOZAmnp4mZKqzATGrQqH ['Muddy Waters']\n", "track 0IomOxgzgvvFBuf3zDb2P2 ['Muddy Waters']\n", "track 5jWDi16gJx7N2oexwjGx5y ['Muddy Waters']\n", "track 6M75z4blVIRMeWtjSU1UyR ['Muddy Waters']\n", "track 04MVrbZR8Stn0s4IHbvTvN ['Muddy Waters']\n", "track 16fHIS2r9vdkNZ5Tg5vkNj ['Muddy Waters']\n", "track 04syG20V41aGRZcnt1NPSJ ['Muddy Waters']\n", "track 1ILxG8b0iynG1wQA7aqm58 ['Muddy Waters']\n", "track 6HRXy5YBKOlT3uiAQjCjjJ ['Muddy Waters']\n", "track 4ezQNclWJhzDmqYlv9qNIj ['ABBA']\n", "track 30a68RyhjUjCxLf6JehuYR ['ABBA']\n", "track 12Gx5uHEmfW7JaUDfAFXrp ['ABBA']\n", "track 5WJXF7QtGJeiiMDPb1W5vm ['ABBA']\n", "track 3tA55rbIQehdDjBvOsG1ji ['ABBA']\n", "track 1QImjH4ZOpzteJOnEYddA6 ['ABBA']\n", "track 7ywGwZO5kuJQaNRlnn8i7y ['ABBA']\n", "track 3aoZueUNrIuvWgFvrvQIo3 ['ABBA']\n", "track 5igVCUsTMkUGAZMIhl3xkf ['ABBA']\n", "track 2llN3IetldxX64YwI51E5F ['ABBA']\n", "track 71lRPYnqmF5yXrkHLabtIt ['ABBA']\n", "track 6Kik662VPYcP28O0AgDOyo ['Björn Ulvaeus', 'Benny Andersson']\n", "track 098jRmhqBvHf28Cm4oGMAh ['Billy G-son']\n", "track 7AcHel101DYYntiEkRcIVj ['Billy G-son']\n", "track 6TwCpgROskwotNBbgHV7HI ['Jarl Kulle']\n", "track 31CC3PStZNwMt3ltOnxH1e ['Frida']\n", "track 6TqO2UhOT1iHsljoZ3Lxok ['Lill-Babs']\n", "track 2TwWcm0UqFWzTKFbGBKoA7 ['Foo Fighters']\n", "track 0CJuzA63oAQb8dJDY5IKhZ ['Foo Fighters']\n", "track 53bUZHJf4W6mkP5zEXxuzi ['Led Zeppelin']\n", "track 2y8JpjYjhqP1qnCL8knt6e ['Led Zeppelin']\n", "track 3S16cvoEfCj7ZC82cLjXrd ['Led Zeppelin']\n", "track 0B2QdK7qYJXY4EJ3cCHnqO ['Led Zeppelin']\n", "track 7n8FOouaabpFxOo2dvr6Nx ['Led Zeppelin']\n", "track 5Ww4barEifhHOIIfPKXpiu ['Led Zeppelin']\n", "track 5oiPnT0Hg5gL4jmJPmEdpP ['Led Zeppelin']\n", "track 2kbCP6nAqCgYt0T6TCTYUE ['Led Zeppelin']\n", "track 7qfnStJsXETYnPRI2CUhkG ['Led Zeppelin']\n", "track 5r98K14TytMcJzeqw0XJv5 ['Led Zeppelin']\n", "track 3dCarMp6T3GsKCspJgeD0a ['Led Zeppelin']\n", "track 0UtbPJGU7LWAqJ3GYf6Jn1 ['Led Zeppelin']\n", "track 0x4vkC1gduKDjz6RGp75jk ['Led Zeppelin']\n", "track 1GMREDmMejNPc13xfOCiDB ['Led Zeppelin']\n", "track 5q4xMMJDmIALkPx6LYKMT2 ['Led Zeppelin']\n", "track 32jWQWxNUbyh0cz2qo2Y3E ['Led Zeppelin']\n", "track 0nBxdeNF1TSfy4OATiR9NK ['Led Zeppelin']\n", "track 69cHZiUAKixXAVXuJeMPbq ['Led Zeppelin']\n", "track 5yiMPpkzl5hTeh0EV3IJlb ['Led Zeppelin']\n", "track 2GdYdQEEH09MaEJKqB3iyk ['Led Zeppelin']\n", "track 0opKedsbLA4lXauh3vLwij ['Led Zeppelin']\n", "track 6PKDV88gnBkKZF3igm5uxq ['Led Zeppelin']\n", "track 3j7Oa4tiMvi8BdbfEhe98a ['Led Zeppelin']\n", "track 0ZKMGHPVixxwN5mnh3EMUH ['Led Zeppelin']\n", "track 0E6LTe4d2TNHDcWIFAjCm5 ['Led Zeppelin']\n", "track 5BaBVpQNHBk2ONZQlU8VXT ['Led Zeppelin']\n", "track 3V6RXfIWuTpAlBkx5uaPbQ ['Led Zeppelin']\n", "track 7ll8muXAomKNStOTzhA4Pk ['Led Zeppelin']\n", "track 0Z5hlLn4LdDfCfgm2zOBOh ['Led Zeppelin']\n", "track 3wcbVq8PGuu0sevHG6hDzI ['Led Zeppelin']\n", "track 4KgySG49LYSJNK1uqzFOOD ['Queen']\n", "track 5HVpMiHPSuLUawYdFZ8NAd ['Queen']\n", "track 4vMz6c33gnKobTNcoUE2bM ['Queen']\n", "track 3MM2W5F4TEGaD3OlVCEtKO ['Queen']\n", "track 7Jsud7J2MoQM7Y14V2WmQv ['Queen']\n", "track 5wGH5ukNIm1S8rD51oE6v3 ['Queen']\n", "track 6b7IIAifCRw8B5Tze2kyS3 ['Queen']\n", "track 1o6I63EXoegUj9Z0HRMVaY ['Queen']\n", "track 1um5cD8HwceM5Rhqf3lKSU ['Queen']\n", "track 6CzEvNVsl1BBCcEVt9ILm0 ['Queen']\n", "track 1fNo4jzUtg9EC0yyHcZY5j ['Queen']\n", "track 6KUkksb86M2HdNggI0IWpT ['Queen']\n", "track 5HF1IkFq5pYx4wTwZL7BWu ['Queen']\n", "track 7IXo6ltRGMyDtSwAtfIycD ['Queen']\n", "track 5hGrJNpvxSqYY7UOEWQRN6 ['Queen']\n", "track 2hiCuAp4p5uycVjxHVPXmY ['Queen']\n", "track 713O5qIuVQ12PqE4ClamsI ['Queen']\n", "track 5zAm139b7KbvpceGYrKRoN ['Queen', 'Paul Rodgers']\n", "track 7uqynFHD7FTj776YwoWcsi ['Queen', 'Paul Rodgers']\n", "track 3pqbMyquXu4GwWdoTXzLYh ['Queen', 'Paul Rodgers']\n", "track 45ebbrXQJUnVOZhKZH0kzm ['Queen', 'Paul Rodgers']\n", "track 2RdZ9xrrMx1Kne8tSGix7t ['Queen', 'Paul Rodgers']\n", "track 00I1iFyMfSNwG4aC5E1XRy ['Queen', 'Paul Rodgers']\n", "track 2nULmxIsEuCasBbqALrdYQ ['Queen', 'Paul Rodgers']\n", "track 5MMJRe95y2MlOx6B4vfO5W ['Queen', 'Paul Rodgers']\n", "track 64iVLKQRTiw9dD265lUmbI ['Queen', 'Paul Rodgers']\n", "track 6ectiUHgVLd3FhFz5FwzDM ['Queen', 'Paul Rodgers']\n", "track 2GzUvGaVnu6NwkWApwpZ22 ['Queen', 'Paul Rodgers']\n", "track 3pxivkJc3Injjyqtq2wqG8 ['Queen', 'Paul Rodgers']\n", "track 3KFsjXOLV99xXQZuebwadN ['Queen', 'Paul Rodgers']\n", "track 0T6NEM5ymlDDHSmasroYmv ['Queen', 'Paul Rodgers']\n", "track 1Hq7YTkt4Dhu5uTsldzcmS ['Queen', 'Paul Rodgers']\n", "track 7DHz15yq6TiPocdRzjQUQG ['Queen', 'Paul Rodgers']\n", "track 62IEv8MNCzFNpijhQpbt9m ['Queen', 'Paul Rodgers']\n", "track 31Hh9up5R3F6DIYDx5aaVe ['Queen', 'Paul Rodgers']\n", "track 7ewkc3USNXanzaGhVGkagO ['Queen', 'Paul Rodgers']\n", "track 2cCKi8ZW15HJSOzd0Ax6Dv ['Queen', 'Paul Rodgers']\n", "track 0XFDqsJ7vez95jgEEo2jnA ['Queen', 'Paul Rodgers']\n", "track 3cyIzikX3zWA1ppzLTPaI5 ['Queen', 'Paul Rodgers']\n", "track 4Ho7azcUY1CAWo8SGqW5aV ['Queen', 'Paul Rodgers']\n", "track 0QcOB1JjdVGbKSyjHbYeOY ['Queen', 'Paul Rodgers']\n", "track 5T7MgB91xcdGrZPdp7083e ['Queen', 'Paul Rodgers']\n", "track 5dfibKLMobUyrgY0hxJOud ['Queen', 'Paul Rodgers']\n", "track 3bxvtSKdOKlWEFjyZBB9gr ['Queen', 'Paul Rodgers']\n", "track 2EUa2nTWB4wvlK2X6cOcEw ['Queen']\n", "track 7ARfXeV9h9AHW8W6DwMeoP ['Queen']\n", "track 7gV6R4fVf79tauqHF9Wtma ['Queen']\n", "track 1ivhVKuIAmji68cXatk8tK ['Queen']\n", "track 5UOEZxlWmxXGUAuhNzvuD1 ['Queen']\n", "track 7cqcWmuwpIwiS9Y8a0iWFX ['Queen']\n", "track 135QOfGUfkCUXddAxnwOvm ['Queen']\n", "track 7tSbkeV1S6rF8bqqALlUGR ['Queen']\n", "track 5dZ6Tpi1BTJlCWJbGtzhCL ['Queen']\n", "track 3okrP0ZescCfmYR7fh1Pwr ['Queen']\n", "track 24KbXhVhlGZSIckHhtKpqB ['Queen']\n", "track 5VENiucVn8efyOnvl6SOS5 ['Queen']\n", "track 5PgT8PrrgXJJYaoS1u1Tq6 ['Queen']\n", "track 2C1gwM1C5LJ6jedI5I954o ['Queen']\n", "track 5OzDT9uw1Pl3q87UD1sLCN ['Queen']\n", "track 7aXTIziFWnERKpAPG6Vgms ['Queen']\n", "track 4Rd1QzNSYDKAvrV3xYhleb ['Queen']\n", "track 2yeOldRmQVKrhXEzRD3cai ['Queen']\n", "track 1bnOxnoooRjyacVR0u7Zu8 ['Queen']\n", "track 1l9xs6xTL18Li4H8hOK0cw ['Queen']\n", "track 6rDI4Ld6J80D8puBJbnPhV ['Queen']\n", "track 19J0ytxeEOsL6b2rDz8Le7 ['Queen']\n", "track 5UVbzgCghMAydM7WwuDyFm ['Queen']\n", "track 6FhIDnGaOMKZPXJ4pXncxW ['Queen']\n", "track 5f5uD3cpwW7CZ89kR5gBAr ['Queen']\n", "track 23OksreAzaswJBN5APV58U ['Queen']\n", "track 4NTMIFWtDXnWN4hDSBlKOf ['Queen']\n", "track 0l5orJ4UauYhiq0pitl889 ['Queen']\n", "track 5ShmaPvHBM0lMG5Tj2VtZF ['Queen']\n", "track 0W6NenBf8U0HUujewiVQ6y ['Queen']\n", "track 6j72nKKRKnGTq7HBMyuvfB ['Queen']\n", "track 3Klfd4rsRO53fYpxmdQmYV ['Queen']\n", "track 0W1uTK6I97CbjFKAVtRGfK ['Queen']\n", "track 4cVwf12pBJChNUXXl3jzdg ['Queen']\n", "track 12HWTqP3GWqzyyKrpkhojF ['Queen']\n", "track 0xvJ2Ucr9Vdpkm1anaPwDg ['Queen']\n", "track 65YeIE3Y4YBNLnXcpVZz1P ['Queen']\n", "track 7zzSsdYQCM2ZYQ9krf2Ptt ['Queen']\n", "track 7hxwLTAJZVOjtLv95oXhb6 ['Queen']\n", "track 2BMXBZksLPdYuiE7BsJBx9 ['Queen']\n", "track 1MPyb1annQU4KENKV1oP2N ['Queen']\n", "track 15v9OTlsIILyVffyDNBELA ['Queen']\n", "track 4ljDobFk9PxD7Ds4A284jG ['Queen']\n", "track 679OeT1opXQYJSJBVEXHqA ['Queen']\n", "track 256lSzuR1GRnOLMjovK339 ['Queen']\n", "track 2ienNC5fVKcrGQpXVgF2hi ['Queen']\n", "track 3nuawriFuKKe6CKVJ3bG0b ['Queen']\n", "track 0mIbLYTsUfzmz63gvDGdqQ ['Queen']\n", "track 1mswsshHR4FHTx3RMN5RTj ['Queen']\n", "track 50s50lFVFxZcw7h9fTG9fE ['Queen']\n", "track 2hu3h04Z94Y230ysXGmtTu ['Queen']\n", "track 5k1njDcNju7wL0KSqlWMW0 ['Queen']\n", "track 69g0C5ACrnyrdETPGT0N2C ['Queen']\n", "track 6rHSabXzZtWNpiB2S1yiXU ['Queen']\n", "track 13ajMX9JcgntmIcJQ35VAD ['Queen']\n", "track 3E5WhyiCVu5RZdp2t9Mvou ['Queen']\n", "track 0T4NDPhvv18jtTSpYRscSD ['Queen']\n", "track 12bfIVTvjf0MTeVxmov31X ['Queen']\n", "track 5ht4HK9eKNCpOfORU0BtwF ['Queen']\n", "track 0wuSW3iY9OIFKnkZQCYYge ['Queen']\n", "track 7Fx7H03I4NdytpCdrZyL64 ['Queen']\n", "track 3yZPO7d46XeyjrpAmtqpJT ['Queen']\n", "track 1lC2mJuTHI0Un8MavPK1kU ['Queen']\n", "track 5c3ZaAjLMbLtHehtaSBU0i ['Queen']\n", "track 1TwVxT1kwHjzqhjVBrPhTA ['Queen']\n", "track 01j4oqqb95L9pggl5luCRk ['Queen']\n", "track 56ZPHU4GaydjciSSs4sepo ['Queen']\n", "track 4zqBgQiMaM4OZzWTvBKGQq ['Queen']\n", "track 3V4W76eP05ApGTR1GFHAIH ['Queen']\n", "track 6inN8pw3LRhzE6iPlBaqZN ['Queen']\n", "track 3PhLx734gRkLF2DegijKJY ['Queen']\n", "track 7CnTtcL3EINeeho0jEpM6S ['Queen']\n", "track 7sMtfGh5j5BhmW9MZwoBmE ['Queen']\n", "track 0yovIvX6TFISdkXJWDeNyv ['Queen']\n", "track 4AckXLIbfbTjBrGdDIwOfK ['Queen']\n", "track 6ymSCvhKCttKROfCvBBOsr ['Queen']\n", "track 5YJIdKE76GacbcTxuoOf93 ['Queen']\n", "track 6DISTFCUpIyB3pD9MRU5hD ['Queen']\n", "track 2us7On27I6E95TqzMa8FWK ['Queen']\n", "track 7FkKmQO5VUkr0Uu85pdjOh ['Queen']\n", "track 3iEEZCWs3ETdPgDxDLTkOK ['Queen']\n", "track 4DPQvbgSM0IdX4O3HOACwL ['Radiohead']\n", "track 2YsJM80gRMAhCikUkNZT3G ['Radiohead']\n", "track 4edArG2VehvJdwOZfYOxtK ['The Beatles']\n", "track 150EAeMGWJRubuH8zyx7h8 ['The Beatles']\n", "track 1fVeHYkyMxrjbjRAD9uWsZ ['The Beatles']\n", "track 0GRplBEB2FWCKutwMmS6nY ['The Beatles']\n", "track 1eVymk74iroqhsZxm0Vy3g ['The Beatles']\n", "track 2p5a9gu6NECVSvBtGSU1vm ['The Beatles']\n", "track 1HyLh5cctOnP186CBi8bhm ['The Beatles']\n", "track 7fZEWm7TAL2oZDyiYrrgnk ['The Beatles']\n", "track 21nhooOxso7CCoHPE73w4L ['The Beatles']\n", "track 1alcPfZWUHh01l4Fnoo5Jt ['The Beatles']\n", "track 24gUDXSQysdnTaRpbWtYlK ['The Beatles']\n", "track 2VmFFbXSJzYxzEJSAeI0lM ['The Beatles']\n", "track 6b8lhQ86u5MddlmXulslpD ['The Beatles']\n", "track 1oKfZ5MTCSrv07hsHqJ0JS ['The Beatles']\n", "track 04gBqA2mubcTgFqL9Domlj ['The Beatles']\n", "track 79QDgDoBbS7pCrOjIH7ByA ['The Beatles']\n", "track 1yV2I5c6efVSqSiuv9H2AD ['The Beatles']\n", "track 5JT7CoUSGNk7mMNkHMQjqr ['The Beatles']\n", "track 2Q2Gu7Bv8iLenuygtBgDUw ['The Beatles']\n", "track 2Fk411Ix3qnMG8t8Qa74ZX ['The Beatles']\n", "track 4DRBaZ760gyk7LWnaJFqsJ ['The Beatles']\n", "track 7pQAq14Z73YUFMtxCyt0bG ['The Beatles']\n", "track 0mNQUZEATk2uItMUtiLWK5 ['The Beatles']\n", "track 0Gm34HBxrXlaAf1jdJMjx2 ['The Beatles']\n", "track 3nhJDVdUrm6DnDW4iBfpKz ['The Beatles']\n", "track 6pkjW5srxjzRSKKMrl7et8 ['The Beatles']\n", "track 1dfuJYDSIc41cw5RPsaCF1 ['The Beatles']\n", "track 63uskN0xLezVg4281wzeQn ['The Beatles']\n", "track 0vXGSlE4ft3n5JHZMHHSIj ['The Beatles']\n", "track 0Lckblu9CJUXOeMV0XY3b9 ['The Beatles']\n", "track 4VFYrwy5mEuZeBywCplc2j ['The Beatles']\n", "track 727YRTVI7pKH1uCnXnyZul ['The Beatles']\n", "track 0TRkjwb4uY3CHb5zhr9bBd ['The Beatles']\n", "track 5Kw6fC8wyRgMYfBDtEklYM ['The Beatles']\n", "track 56rXurvdpjoSIVggfd5ANS ['The Beatles']\n", "track 0wFW5NQJdNDJPcZyfYSExx ['The Beatles']\n", "track 3yf4uaeB2ibXSIPbfUYC2k ['The Beatles']\n", "track 3H7sv3Krffn15BufUuXzf3 ['The Beatles']\n", "track 4ajbplh2IXiJkXjQiq5aqq ['The Beatles', 'Billy Preston']\n", "track 69zeDbyVmHDSH4GKZD1fv5 ['The Beatles']\n", "track 6Y6UBWhifUnkJIO2mdy0S3 ['The Beatles']\n", "track 7iABnSNZciNepqGtjMQxxd ['The Beatles']\n", "track 22QadBPe0QCuqraFVAr1m3 ['The Beatles']\n", "track 0Oroc0HXQaxs8ONgI7dLnw ['The Beatles']\n", "track 57n1teNb2tkcfiYagPmUWr ['The Beatles']\n", "track 3eMeNJhwxiecXnSYy2NhfY ['The Beatles']\n", "track 72Ob0wrObCXgvGYhFs8vip ['The Beatles']\n", "track 0i4BFZcByXtcTFOafH5ebS ['The Beatles']\n", "track 5GDVGBs8qW1Xl3Qi0vsxue ['The Beatles']\n", "track 5V1AHQugSTASVez5ffJtFo ['The Beatles']\n", "track 2r3re0TzVmdbHeOmjcFI4D ['The Beatles']\n", "track 03v6sgKUUFliGse1h04ecC ['The Beatles']\n", "track 4311wT21Et0q3vepFwXjTu ['The Beatles']\n", "track 2rG2c14sIgzyIRdbw3edaL ['The Beatles']\n", "track 0cJ053ljI4BuP5P8tJnK5j ['The Beatles']\n", "track 3JzL2n8ofVRV6pZXAMGQ93 ['The Beatles']\n", "track 0MKqeOVdZcUFGJvWpGCKbG ['The Beatles']\n", "track 7oSUp4yZ0FbuSvVmCxH2ty ['The Beatles']\n", "track 5sCAPvnUDnxHduLLhM5agY ['The Beatles']\n", "track 59CLXQLZKxRPzMW8S8Gt9N ['The Beatles']\n", "track 254ujtd5Avf5mwBET7FASI ['The Beatles']\n", "track 6gLmFcRwyQCQT23Df2Re9G ['The Beatles']\n", "track 45yEy5WJywhJ3sDI28ajTm ['The Beatles']\n", "track 4cLoL5KPfE1hAwfsO84FX7 ['The Beatles']\n", "track 71Ij3VBYQWMrng61Ae4tBu ['The Beatles']\n", "track 3jPXnX4SskFgAcC4YBKOwN ['The Beatles']\n", "track 67jL5ZAf8hNsRZrfBHNuBT ['The Beatles']\n", "track 6AOQOmjAsINEjkz6OurncN ['The Beatles']\n", "track 0QJj3NyRskXDlyVnhe9O5U ['The Beatles']\n", "track 1llzkEveIzvSXmqqyh7AiB ['The Beatles']\n", "track 5sUtmdstrI4FFOoiUACnEC ['The Beatles']\n", "track 0SAqxgrtLO0GzXBeilxHQs ['The Beatles']\n", "track 5H9q6ctIlamkqukdTrNt3k ['The Beatles']\n", "track 6NqtddM4j4X9dG75yOmy0S ['The Beatles']\n", "track 0htnXrZwJvLllryAQU22JT ['The Beatles']\n", "track 12g8bqkQd8y1UuVPb4yFYe ['The Beatles']\n", "track 3TEbDhNDU4NDXq0h86nGZ7 ['The Beatles']\n", "track 4gUUfLOH38XYU5Q3b2K4Go ['The Beatles']\n", "track 2u8yti7fZtXMbwqex7M0DZ ['The Beatles']\n", "track 3wr146ap95fc6vq3dbqtpJ ['The Beatles']\n", "track 1yHA33jt0HwbcH3GdOcuiQ ['The Beatles']\n", "track 0cnV4ZVEMIXwWYADBGr2Yk ['The Beatles']\n", "track 3fuEJBCK3kWnJHFTODR4cb ['The Beatles']\n", "track 0jTAtlJmLO1gG3PS29p3EK ['The Beatles']\n", "track 4J4gApJKSC0himDViFotdy ['The Beatles']\n", "track 4o6QTTyoZR2e2ZlOrtqQc9 ['The Beatles']\n", "track 0NlD4MFKZMGZVLTFw1Hdgv ['The Beatles']\n", "track 3VgxeWOGdUYvtX1j8C9VyV ['The Beatles']\n", "track 4Z92RMiyJpUrApZi3LtpJ6 ['The Beatles']\n", "track 1Sph7JUAUEdvHnNya4d4Ie ['The Beatles']\n", "track 1YiZT6aStA8QJqQxaMbDeu ['The Beatles']\n", "track 3OSi8ehmSWLTD5KatlzX8r ['The Beatles']\n", "track 4zExFATo8xg8qFfR4H1ZAn ['The Beatles']\n", "track 0fRiIPNbwivbP2SbLOTuaI ['The Beatles']\n", "track 6FZdFkP2IjF99eDahDT8SH ['The Beatles']\n", "track 4KIXWIzNcKzorNDgvMQwmD ['The Beatles']\n", "track 20FakhyrAqDOqnmN5CkCoy ['The Beatles']\n", "track 2JTTmUDAzSXPvUsVyg5Ksh ['The Beatles']\n", "track 0fDmdWRuV1mWwfn1NaoE67 ['The Beatles']\n", "track 6h6T33dxAMoeJpWB66FAxg ['The Beatles']\n", "track 5MF8YFuVlKhMgzUe21zm0R ['The Beatles']\n", "track 27YZJHyTTDIurMqDu1v2ef ['The Beatles']\n", "track 3A5CjTCkgn9pjdta5pOdlP ['The Beatles']\n", "track 4agf1lFrfWD9FtgYQWS534 ['The Beatles']\n", "track 51Mij9xdfMpVnMDDqZqDce ['The Beatles']\n", "track 7fdPjjnUY9gmYqScFYSSPp ['The Beatles']\n", "track 6ZrPbHp9kRmQj1tGLvna8U ['The Beatles']\n", "track 2tf8ljpWPmXNIFgRVhEuJg ['The Beatles']\n", "track 7GeZEzG1QEjqRzuWVlrBFt ['The Beatles']\n", "track 3RhBkGg4edWdwcuGdHcl28 ['The Beatles']\n", "track 0ttMfoND7IQqFSMVOPkELC ['The Beatles']\n", "track 61iJ2np62qzaMdEcGvjICc ['The Beatles']\n", "track 4qmvOVUt7U8szKXspAoLVy ['The Beatles']\n", "track 7c76SiAfT7JkMiCm8BBCcP ['The Beatles']\n", "track 5EuraV2jbqB15ihd3d2Hex ['The Beatles']\n", "track 5RStjc42UAYI2NMY3cYpgz ['The Beatles']\n", "track 7ncH66qOYWLn3Bdw4OjoFi ['The Beatles']\n", "track 3xMSaDC9TU6AQJIsxQB7MK ['The Beatles']\n", "track 2v0fKNEQwzUuol9VImFuOu ['The Beatles']\n", "track 0TKiASulg0H5ZKkkqZNTdm ['The Beatles']\n", "track 3FCnUhO6ao6hFRgCLPkSUE ['The Beatles']\n", "track 5e8uc7f0v5jpY5SF1emxHl ['The Beatles']\n", "track 3KL3p03M3EV7rGROFeXCnM ['The Beatles']\n", "track 1Ipl1kvks5s6GKn6oqgzeY ['The Beatles']\n", "track 59pHZGDsoullvuO7LUQmpA ['The Beatles']\n", "track 5uxGUVN5odlMcPKriOXuPv ['The Beatles']\n", "track 4f4j8gR6Ae4FZSpthverm8 ['The Beatles']\n", "track 3Fy0E4ABM3eWKFROMYiegs ['The Beatles']\n", "track 1oZi9oP0zXAfSzIjYRXsES ['The Beatles']\n", "track 68zCBdA54X87mH90ZdyOCP ['The Beatles']\n", "track 3ZFBeIyP41HhnALjxWy1pR ['The Beatles']\n", "track 37ySfQ411eeAGzzjd6zsrT ['The Beatles']\n", "track 77f3aNeabAbOaSB32Sd5QE ['The Beatles']\n", "track 3wAOX1N5M0ta3QNsokmhJV ['The Beatles']\n", "track 4meU26wATqPVl2nkxe0hT0 ['The Beatles']\n", "track 1dCGa0fzXpCWvQbpuoe28D ['The Beatles']\n", "track 0Dk6z7iOJzFYywJvxjNltW ['The Beatles']\n", "track 172a84PLYeceAzBoQN8Las ['The Beatles']\n", "track 4F3AOkGrVXF70PBEaRxm3u ['The Beatles']\n", "track 6RdvhWyzCULNTHcMbAXwXK ['The Beatles']\n", "track 19aATlcb67bbIdjcMA0rOa ['The Beatles']\n", "track 4V6b5uSPeD9gOHIuTlMunV ['The Beatles']\n", "track 3D2CmYxPJaJOUlbXulRfs8 ['The Beatles']\n", "track 2qcQSnkcOivjyAAVZoQDVh ['The Beatles']\n", "track 0agoaPIy92gPZ6zRhqXarE ['The Beatles']\n", "track 02wfEb4PyvM4XvsqDNtqVm ['The Beatles']\n", "track 4DE42oDol0KHxympBsaiYu ['The Beatles']\n", "track 3QbhVaulXxTyuAxHY3Pa5N ['The Beatles']\n", "track 1OpY6W5UY8xkfrnl3hlMJy ['The Beatles']\n", "track 1edvptWUXAV2EKAZ8RNiMz ['The Beatles']\n", "track 0n67BsXsRpWzajcqPTrgke ['The Beatles']\n", "track 0yZEKwCNhkyaqk1ZyCZU7A ['The Beatles']\n", "track 7i3x0lqdj6LdkWCE33MBon ['The Beatles']\n", "track 19lAT1lAVe4HzFkVNFHGen ['The Beatles']\n", "track 6BzNvvSyF2Fe0BqsOcL8LS ['The Beatles']\n", "track 5QqdvVeYLL1xvZ1ndUjxnO ['The Beatles']\n", "track 3JCpW3mYXVvJ9wqkhGoJ60 ['The Beatles']\n", "track 4zW6e0BWJxk69mpa0KohDt ['The Beatles']\n", "track 3QXSxAD6tIvpHd6qnLMmzI ['The Beatles']\n", "track 5ou2BiQ9FxIYkxsYvYHpAT ['The Beatles']\n", "track 1oVjQKKMX03zXynAyHThvc ['The Beatles']\n", "track 6pTIIBntNSvDeUdZS3E8vz ['The Beatles']\n", "track 5AcM8eAOtusLByGW7XbRA6 ['The Beatles']\n", "track 0f7i3Kkr1B0OPLxezI2vnX ['The Beatles']\n", "track 05v14cMIEHtm9EFC65cLYq ['The Beatles']\n", "track 2zO5cQdHLBOPlnQqWeNCFM ['The Beatles']\n", "track 67tvBtAhsfHBFpuqJ13ZUq ['The Beatles']\n", "track 6pu7pKlmq3hkMQ9PnJnaGt ['The Beatles']\n", "track 1k9tpndMDRwLkNt67Dlg02 ['The Beatles']\n", "track 39CsmkPyOelsOAzLlevnk9 ['The Beatles']\n", "track 67VdmhC89bZ6yK2XRys0lA ['The Beatles']\n", "track 1e0hllQ23AG0QGFgezgLOq ['The Beatles']\n", "track 1sLPsKZTCvSmzXzE5dExFt ['The Beatles']\n", "track 009oOX7tpCPLzRL9AFiBS8 ['The Beatles']\n", "track 5zs8tSd7ZvwBgr4NUmF5zM ['The Beatles']\n", "track 3mKtIanz0poYgLnRxZrfBO ['The Beatles']\n", "track 1Bx4cgnLSOTS5heoB2sIrb ['The Beatles']\n", "track 5f8TozGCJHwR82EOCajZjU ['The Beatles']\n", "track 3PN3P7lojpgZDomn0E5lRM ['The Beatles']\n", "track 2B3ArhTa6DRox1W4CJZ1dM ['The Beatles']\n", "track 0ciN57sh0lG9SjeN4CiU0E ['The Beatles']\n", "track 0iqtHpZbpcS8L1ghzYjSYn ['The Beatles']\n", "track 1g8AvTv3wYRMWtbyWnkSMn ['The Beatles']\n", "track 33BGv6xzxHh5E7v3r1hJLL ['The Beatles']\n", "track 2YHzfuuDFXzoELxJnqM4at ['The Beatles']\n", "track 3EbGioQyKyf4dycuiPOg3k ['The Beatles']\n", "track 69d54YOS8TOQiUYjX57XeA ['The Beatles']\n", "track 49lytSpI9xviTrHs0OhYIo ['The Beatles']\n", "track 7pd4f00gq8Rsg9PBkq8dhD ['The Beatles']\n", "track 7eBMMJUzfdXjWnHgmYmlPw ['The Beatles']\n", "track 6mZGglJLWfy0HxbVL8i9BL ['The Beatles']\n", "track 4G5YzDD1nCUPwt5y1LQovF ['The Beatles']\n", "track 7KmRz1oKEwgj9qpfn72OfO ['The Beatles']\n", "track 26gegNjlqkUrvwIlOHDfmw ['The Beatles']\n", "track 3Aqo28W4LLAolYpN3duVJl ['The Beatles']\n", "track 41OmMzncZxO3J2YlYK96i6 ['The Beatles']\n", "track 2nHjBzRfW9cZpYumI3sEsD ['The Beatles']\n", "track 4dyALlslhDEzwSEr7GteXa ['The Beatles']\n", "track 5wDeBT033SeEW9qY9yNU9i ['The Beatles']\n", "track 6tLALP9mi7VbNC7s16iBRK ['Radiohead']\n", "track 3wxmJSQ3Z1HfAuxeHQoZcE ['Radiohead']\n", "track 4tCwsdqqG4jASHhbsMHCx0 ['Radiohead']\n", "track 1amSa5xo79zINsgrpNlNge ['Radiohead']\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "track 4sLGaMl33I6mcsk7u4xHAU ['Radiohead']\n", "track 4OrGm3fBdhlXuHtRBoLUMW ['Radiohead']\n", "track 2rA36OZNb3LkvqcNro1ugK ['Radiohead']\n", "track 5tNjuWwp6FxuWCrKQAMBTj ['The Beatles']\n", "track 1JPTCjLHEtqofOFmHsfiAH ['The Beatles']\n", "track 7cPPyMrSAQY7A686Cn9eUP ['The Beatles']\n", "track 0lLeGCsQlAbEjQBPQQxQ1b ['The Beatles']\n", "track 55nE9EppLFdb0I1HBg2O2m ['The Beatles']\n", "track 4w52uloVZcKSDRXB73Pi66 ['The Beatles']\n", "track 5IIBY9M2GxHcVja6DA6wsF ['The Beatles']\n", "track 5cRyBkxNi0EWEY6fZyPWnh ['The Beatles']\n", "track 6xJSJpO6HJwHhu7UaIc8qR ['The Beatles']\n", "track 08BCg1JcswBkQVgEkcAM97 ['The Beatles']\n", "track 2aibmsfQ8WFl2AfCkNi5RG ['The Beatles']\n", "track 3Ltllbv2lbpjP6NgPMNiFg ['The Beatles']\n", "track 5VsIn7QQqcacePIb0vO0ow ['The Beatles']\n", "track 16aAwvjzWhM4Cgg5RYz2fA ['The Beatles']\n", "track 63nTBScSLXWwyeizXi9Rmi ['The Beatles']\n", "track 33OXG0RTtw0ycGza22tnF6 ['The Beatles']\n", "track 1hYuXMeJUOfoJFq0wBhzWV ['The Beatles']\n", "track 2MVBUeCC1IqPt4rTm3WTMH ['The Beatles']\n", "track 43feVCF6QfqIt9LnLs9BAH ['The Beatles']\n", "track 3NwEPV9MDr1z3KcHiAuz9d ['The Beatles']\n", "track 2Iccm3cKBQHWt5yk0yX9nh ['The Beatles']\n", "track 2OLMjGIhCNI6j34ysPscbp ['The Beatles']\n", "track 01n20rdBC5czKAhxmGREkr ['The Beatles']\n", "track 5gnrZoSS7nbDYtHp32RFiI ['The Beatles']\n", "track 5FBxWhG0nbBAF6lWgJFklM ['The Beatles']\n", "track 6tEwCsVtZ5tI8uHNJSHQ3b ['The Beatles']\n", "track 50jq8RgbDfmNNd0NiRnl4L ['The Beatles']\n", "track 4Z1fbYp0HuxLBje4MOZcSD ['The Beatles']\n", "track 3pcCifdPTc2BbqmWpEhtUd ['Radiohead']\n", "track 1uRxyAup7OYrlh2SHJb80N ['Radiohead']\n", "track 5rIhBK9aaVMck0W2YtOwci ['Radiohead']\n", "track 1kBGeOp1CDUHVdbK4ergqo ['Radiohead']\n", "track 4CzTgOmc3Sdm4EgKQWzjQl ['Radiohead']\n", "track 0eZN5WsQfmNFICHuw59Zfz ['Radiohead']\n", "track 3LhtqibvTtjOUrzKs7Vsz1 ['Radiohead']\n", "track 6f6pEjgfTtuRROmJ4a7Gf3 ['Radiohead']\n", "track 4eruRiSfDY1jdT03hjyi0i ['Radiohead']\n", "track 3cual6JOG286qZJmCxKRAT ['Radiohead']\n", "track 01ZpFhrMMqKPVCwyqXneVp ['Radiohead']\n", "track 6dsq7Nt5mIFzvm5kIYNORy ['Radiohead']\n", "track 4m0Vgr48VFaMYw0Sp1ozJu ['Radiohead']\n", "track 5k7VKj1Xwy5DjO4B0PdAOb ['Radiohead']\n", "track 4Iyo50UoYhuuYORMLrGDci ['Radiohead']\n", "track 51ygW389BW4Dut3B69pSwc ['Radiohead']\n", "track 5SdmtFbNOD7Qej6jFCHkOM ['Radiohead']\n", "track 56Z7hbyMrndw1naxb6I5Oi ['Radiohead']\n", "track 3Jc6X15OZCCyhGSHBF4hwB ['Radiohead']\n", "track 15ea10YpJIl3mJq75yzqsD ['Radiohead']\n", "track 3uxhyRdWVXp7GQvERQl6fA ['Radiohead']\n", "track 6CNt7GXfOOS5Hkxu8e4vav ['Radiohead']\n", "track 4gq2bc2770XvbJdEtfUbmw ['Radiohead']\n", "track 7Ceo3Rpq33Vc5WcOb3tUbT ['Radiohead']\n", "track 5sdo1jKC0mpRxamLAuuPOS ['Radiohead']\n", "track 2mAWzzAi9pdKwteyg0lNqj ['Radiohead']\n", "track 1w8QCSDH4QobcQeT4uMKLm ['Radiohead']\n", "track 6P67UTTr5qN7XYSSlj0n6X ['Radiohead']\n", "track 3STByesnbcQatiGHgwi1Tv ['Radiohead']\n", "track 3mnPJGncE0FBsilRLvgII4 ['Radiohead']\n", "track 37kUGdEJJ7NaMl5LFW4EA4 ['Radiohead']\n", "track 3wPLVTqp66miOokxN1cLbm ['Radiohead']\n", "track 5olWalQH1oVza5D6xJg4oX ['Radiohead']\n", "track 6CVdTDYoDbwYj4xn8u5Gha ['Radiohead']\n", "track 6TdGeb9e2KL6RZG0VxoTMd ['Radiohead']\n", "track 5X3uhutgZktlUWmzIOE3NG ['Radiohead']\n", "track 53RYTfkLiyZuUZHwJC3Wmm ['Radiohead']\n", "track 2q4zYomFf4ZVrEOr1aXj6l ['Radiohead']\n", "track 77SPrxY5gn6VPrKPGrfLnM ['Radiohead']\n", "track 28VoI90xDBoKe5sP3sP5jW ['Radiohead']\n", "track 2LfUYXF8jfrHCfwYyf2pRj ['Radiohead']\n", "track 38WL6GlG9NHFiQS6JxV84r ['Radiohead']\n", "track 467FBnBDRfL8Hz9ktUUybj ['Radiohead']\n", "track 66cuLvkHsW7dNkfNk6gQP9 ['Radiohead']\n", "track 7he52OqF36BVF6dSVKKQPq ['Radiohead']\n", "track 3A9vIxzGBjEfqmDK7H9exS ['Radiohead']\n", "track 4doFWLhPChHDgs89rHs5nr ['Radiohead']\n", "track 6UFvGJalSngqprmUJd59Eo ['Radiohead']\n", "track 0JhpYE9xA3UpSFrmXTZyIF ['Radiohead']\n", "track 2xbrMtkxp399aSiCJ8EAON ['Radiohead']\n", "track 3jaA0iP323UuDVVDA9sfSl ['Radiohead']\n", "track 1qVP3GP1pUhJxogteiIi78 ['Radiohead']\n", "track 29yXMFKIrY1fFY4DYBVZCu ['Radiohead']\n", "track 5AiNZnMDCWwujIENPj9PV9 ['Radiohead']\n", "track 4x7XJOE2ml2P3o3i77466j ['Radiohead']\n", "track 01UstUPbzPgq2MNp6h0tVo ['Radiohead']\n", "track 69pwmeyvQMuHMtkCmpEWhQ ['Radiohead']\n", "track 4DE6Wkt9fW7R5e9gJGWQim ['Radiohead']\n", "track 1NgvIjkEjkhcIR1pp5Qsir ['Radiohead']\n", "track 7xqeIdLJSf3bgmZ7vUvHrE ['Radiohead']\n", "track 1HQYo8C5L0qd1p5f1anXPS ['Radiohead']\n", "track 0COiZ7ncho2yi4HotbzgPv ['Radiohead']\n", "track 3OsUjkcv1C1v5udFhgRSFg ['Radiohead']\n", "track 2nTsKOXIVGDf2iPeVQO2Gm ['Radiohead']\n", "track 19yGmm9FjEZdZc5j98WDe4 ['Radiohead']\n", "track 4Na0siMtWOW9pJoWJ1Ponv ['Radiohead']\n", "track 4aOAzvRdOsZSwZIgwcdeL0 ['Radiohead']\n", "track 3SVAN3BRByDmHOhKyIDxfC ['Radiohead']\n", "track 53aFGAl0Vebwp2bo8wtdWR ['Radiohead']\n", "track 6PBHfI3G8MlQ8qdItoVoxL ['Radiohead']\n", "track 0R332cdlS9LyE0Ge2PSlVC ['Radiohead']\n", "track 1bSpwPhAxZwlR2enJJsv7U ['Radiohead']\n", "track 6n7GUf2h8D2Ad2wUy5s7nE ['Radiohead']\n", "track 75YUnz58ajMo2VIIuUFvOV ['Radiohead']\n", "track 05evePUsIT1cmIURp1hgu6 ['Radiohead']\n", "track 3aDUSpF3LexOr1lFKvPV2h ['Radiohead']\n", "track 5jafMI8FLibnjkYTZ33m0c ['Radiohead']\n", "track 045sp2JToyTaaKyXkGejPy ['Radiohead']\n", "track 0OT4Rhd9cw1yajN9ZxL6qL ['Radiohead']\n", "track 4QbQ55kHcRNho6XLaPctT1 ['Radiohead']\n", "track 4SE81CrzH0qPA8KHqM9Syz ['Radiohead']\n", "track 4dPKQxaraW6CG1rTBzV6DW ['Radiohead']\n", "track 7wB2VenWR6rchtLwawreIg ['Radiohead']\n", "track 6JzzI3YxHCcjZ7MCQS2YS1 ['Radiohead']\n", "track 4HtPAkZnSyGtNvBnfDc2nw ['Radiohead']\n", "track 5gz38AxRkD6Ywxd4fr2pLj ['Radiohead']\n", "track 1MyqLTRhgyWPw7v107BEuI ['Radiohead']\n", "track 6b2oQwSGFkzsMtQruIWm2p ['Radiohead']\n", "track 71wIOoaoVMUwskK5yCXZL4 ['Radiohead']\n", "track 2zYmvi3w2T8a9Ckrv21bvW ['Radiohead']\n", "track 3ovbSnT5NNhl1gzMcw1NRZ ['Radiohead']\n", "track 4NUc1M0CS7b6zvWoyvibju ['Radiohead']\n", "track 4nklmaiY4gfQI3SB1sLGsd ['Radiohead']\n", "track 11qDTSr3Dj4TkPnBcIOqEJ ['Radiohead']\n", "track 4D6ZExVvYLZxhcAvifX5px ['Radiohead']\n", "track 48IEDejXX5LH8TAC3VIGpc ['Radiohead']\n", "track 2B5P22cfUadACK7jLQegU6 ['Radiohead']\n", "track 6qttbImnJ5wuA8AtDKEy18 ['Radiohead']\n", "track 1n2pCKUiJW7hxFUpbsjuUZ ['The Rolling Stones']\n", "track 0Za26pWVLQpKfXmb9FX10S ['The Rolling Stones']\n", "track 6295nz7PVXm49Ihqwm39Ew ['The Rolling Stones']\n", "track 0832Tptls5YicHPGgw7ssP ['The Rolling Stones']\n", "track 6yq33zsqWCd8cYXQdtAFZ9 ['The Rolling Stones']\n", "track 5pTWpY8l7B1XcQnijEFGFj ['The Rolling Stones']\n", "track 4E8qFhiuYAWEYYAsYIf4dW ['The Rolling Stones']\n", "track 7sDQlyQACyT7mNHFwwEMI7 ['The Rolling Stones']\n", "track 48bJ1sWhJKdB8M43uqi924 ['The Rolling Stones']\n", "track 6362zAWHGgbrQaoeCFZpuO ['The Rolling Stones']\n", "track 4RlD0KvoqPZy5n9Zi76X9l ['The Rolling Stones']\n", "track 33PXyHrkIHxp6PBVPlQGx7 ['The Rolling Stones']\n", "track 7vsPbFinz35mfQO5d6oL0l ['The Rolling Stones']\n", "track 7pfVe0VrMK5QhTaAYzkuYn ['The Rolling Stones']\n", "track 2giRM7RrP6utWLAb8jnFFk ['The Rolling Stones']\n", "track 1V25DJ3ghDJs8m58jbVMbf ['The Rolling Stones']\n", "track 3rNTjyvxae83nJCLMxoVSW ['The Rolling Stones']\n", "track 5oAcuuY504M7eDCln5Xq89 ['The Rolling Stones']\n", "track 1ZBnd9Z80QPQ58BaL5OWlP ['The Rolling Stones']\n", "track 624njB7Ny3mlA46QokEin9 ['The Rolling Stones']\n", "track 0WpZfMNsNhiEJ8RSLyjElp ['The Rolling Stones']\n", "track 0Baq94uZKy4pPvnc40xjPX ['The Rolling Stones']\n", "track 4oOU3GgiZblheOI9JUmM1f ['The Rolling Stones']\n", "track 4LW3JaAze7gF8DpPBb2zzl ['The Rolling Stones']\n", "track 4LSyTg4sm3N99Pcckw9zjf ['The Rolling Stones']\n", "track 7DgRvvPcJlxks2lNpudsuT ['The Rolling Stones']\n", "track 0TWa6TQFWHSG5QdSWuTMve ['The Rolling Stones']\n", "track 3lKwPLtK26yNnG7HEFEnQz ['The Rolling Stones']\n", "track 6vsa5VAgkTDejUpTSd6KCS ['The Rolling Stones']\n", "track 2cnmXP2AI7jCYjNpo4hwY3 ['The Rolling Stones']\n", "track 01ZSZlso5XO3Bbw2V1Mefj ['The Rolling Stones']\n", "track 1VGLqqiUExKQTBkSWi4BHt ['The Rolling Stones']\n", "track 1Hh06wkzjk8c5QzmbOXrN9 ['The Rolling Stones']\n", "track 5NdA5OJM9vCXJw7Hgvj9O9 ['The Rolling Stones']\n", "track 1GeNzr7YxuWdez7T8kDzkT ['The Rolling Stones']\n", "track 5hmAmukTLOW6cqxuLznTKX ['The Rolling Stones', 'Jack White']\n", "track 7iamWmLLWvYxmbA0tbysUS ['The Rolling Stones']\n", "track 4zoTd8tJcfjddh9uKv3lHo ['The Rolling Stones']\n", "track 4PNzP8riN8adoqhMMt1vQV ['The Rolling Stones', 'Buddy Guy']\n", "track 4euXPKAekj16XbFfoxiBDC ['The Rolling Stones']\n", "track 4JnLQ9Lbo8Jl0PefOOle7g ['The Rolling Stones']\n", "track 5nMXKzcyxgKc3p9oIOoUaF ['The Rolling Stones']\n", "track 5fNQ9Fq3scvqTN0V9VZ1IG ['The Rolling Stones']\n", "track 5Qjk4RBJLflnrSvhszQ9ZZ ['The Rolling Stones', 'Christina Aguilera']\n", "track 06sZJEgz5Vk08EFStnq2Xg ['The Rolling Stones']\n", "track 7gXGYTFGvmxclyfq8VtuDj ['The Rolling Stones']\n", "track 5TqdY6AK4ragLSozD3ibH5 ['The Rolling Stones']\n", "track 4GkUhkssxvu9ANn2NJLYVN ['The Rolling Stones']\n", "track 5A3wUXM9mfbsj4QBV79fsd ['The Rolling Stones']\n", "track 3Yo1wDGAP50bc8AzSV9mek ['The Rolling Stones']\n", "track 3XZoEJs6tCa8q9GILV3tyF ['The Rolling Stones']\n", "track 0Vrnsj8WhetrOT1girPH4o ['The Rolling Stones']\n", "track 5ILzY5BXik28sbi2RsB3Dt ['The Rolling Stones']\n", "track 4ax2XKMmj9RYuEiVWgCXRK ['The Rolling Stones']\n", "track 4OJ8gZmB6afc5QuhhBrcm1 ['The Rolling Stones']\n", "track 6gREYs62TIZQPQaQJHip3s ['The Rolling Stones']\n", "track 4sLirGgpkyL3RSdr13q3wd ['The Rolling Stones']\n", "track 39egYvAqcgjiw5ZEL8DBPz ['The Rolling Stones']\n", "track 4Qmn1BzPPQw5LStjCNxv6R ['The Rolling Stones']\n", "track 4EBRAPYAcIczjUA4Z0BdhQ ['The Rolling Stones']\n", "track 2fpd611EMHmKINsg2zxJI7 ['The Rolling Stones']\n", "track 3m1Psiln0cpEOpRbh1ljGh ['The Rolling Stones']\n", "track 6yi0HXAtFkE2V652x6Y5ha ['The Rolling Stones']\n", "track 2L5stllrpcxflppsrTKG2c ['The Rolling Stones']\n", "track 6vIFKD5PjN3za4EiG2feOG ['The Rolling Stones']\n", "track 4BNxKhcv9z9yXhajJrzild ['The Rolling Stones']\n", "track 20eJRZyvdYZ5Bx7nHs570i ['The Rolling Stones']\n", "track 5LKP7Qk2gsSP5IvufDeNYC ['The Rolling Stones']\n", "track 55XOZpymv9A70smv1fL5zr ['The Rolling Stones']\n", "track 2Spqd2an8ZMUV3a3P0F1zm ['The Rolling Stones']\n", "track 7eU0i2y6nlH8QnJs7K4ADE ['The Rolling Stones']\n", "track 3nowDiIT6OOTXFPnbxQgBB ['The Rolling Stones']\n", "track 6rnjOgeCRP8DEEXBl8UBxi ['The Rolling Stones']\n", "track 07U5DnoRtB0DSlonXx2jym ['The Rolling Stones']\n", "track 4mjYisvBXXz9CWeTylISlR ['The Rolling Stones']\n", "track 39Y8NZr1c02cRS6xjNQsyf ['The Rolling Stones']\n", "track 1GM5mbS3FwvbQX18KYEMax ['The Rolling Stones']\n", "track 07HQyzxsGis1aZrKgXvVcV ['The Rolling Stones', 'Solomon Burke']\n", "track 3OGQSzQaBmxrTVIbeEQNmZ ['The Rolling Stones']\n", "track 79etUS7LGTYLlfhGt77ZAK ['The Rolling Stones']\n", "track 18ipKRlvZetfs3KCMbJbOS ['The Rolling Stones']\n", "track 7gOx9OJTcEdOWykAd5xD6d ['The Rolling Stones']\n", "track 6L4zeJMobhT5L47Z18r8yV ['The Rolling Stones']\n", "track 4pqpJ2nZCQdNf3KO0aKMVy ['The Rolling Stones']\n", "track 4bVeIOiHrcHP0i8oN5vuOv ['The Rolling Stones', 'Sheryl Crow']\n", "track 43p7h092fy2S90yUisOSmI ['The Rolling Stones']\n", "track 2ysP3XOHnrgQqqKBsBFCeE ['The Rolling Stones']\n", "track 7yUbj0oSJwb57vdq44Lx6T ['The Rolling Stones']\n", "track 6YOe7VTldaK472pbVpArCE ['The Rolling Stones']\n", "track 6TEUwkJ3zLMKUSTnUAO1GY ['The Rolling Stones']\n", "track 6ssauxyGjN4gJW5TsK5ZPg ['The Rolling Stones']\n", "track 7tWJEqPI5Jpie3NhtbWks6 ['The Rolling Stones']\n", "track 4FO3uSAxnWP9v4MONLG3f3 ['The Rolling Stones']\n", "track 7fJ1QhCso6CG5RIv3S4rAj ['The Rolling Stones']\n", "track 5rRB1hnYeRsvD5QNlCEWEg ['The Rolling Stones']\n", "track 441zMwl3NgwbztAIPCWvch ['The Rolling Stones']\n", "track 3yjwnm2KrWHfL5aBNDT48S ['The Rolling Stones']\n", "track 1Wfdb6cNBPdpoZYniHfL7o ['The Rolling Stones']\n", "track 0nVkfGoh7oF2pN7YytOFdj ['The Rolling Stones']\n", "track 4uPXiYeeThkmkgi1HY3tZQ ['The Rolling Stones']\n", "track 1qEGxs60ntxuenj27BnRkF ['The Rolling Stones']\n", "track 2GZCnRHdgrvXPzzY0nfoBh ['The Rolling Stones']\n", "track 5L7WSVsP8C7oU0Nx7drvVt ['The Rolling Stones']\n", "track 4g9KfIW09EJnXXRY8vR69q ['The Rolling Stones']\n", "track 6tTsAatJxcogjAoWHrC7VP ['The Rolling Stones']\n", "track 4G7YCRrhk2cwqthaW9p3Hc ['The Rolling Stones']\n", "track 71QzJtIca1YaKyQlviskK7 ['The Rolling Stones']\n", "track 7uF4MX9BEA8E7Di2I1kdij ['The Rolling Stones']\n", "track 4UQ5iAIKVWAsTkU4a3bb8N ['The Rolling Stones']\n", "track 5WSV4JHW417yqNPyRb30OK ['The Rolling Stones']\n", "track 0ehEIfzEXmpvovATHfBeta ['The Rolling Stones']\n", "track 3e68iE8akd6nxBZ0PpAQGG ['The Rolling Stones']\n", "track 0VQrZbcyUa3wxEiuWJX8cy ['The Rolling Stones']\n", "track 4RjB8WiD6zLjB3RCr45MU5 ['The Rolling Stones']\n", "track 2tnnth9oBVquymWNQkNbIR ['The Rolling Stones']\n", "track 1FMQd25wsXU14lg323zyNa ['The Rolling Stones']\n", "track 6QPaiM2qBKKAYNd8WiSR7u ['The Rolling Stones']\n", "track 6jizoz5rLvPBScBccMKtwE ['The Rolling Stones']\n", "track 1sP2yR0Sq5NhqTqQp1riuo ['The Rolling Stones']\n", "track 1dKh2ANXYu7SfnT41uGtw1 ['The Rolling Stones']\n", "track 1dTX9ivyAhFJLR1f2pk9Kv ['The Rolling Stones']\n", "track 6qnNOQ7dW0UotwEvkyojNT ['The Rolling Stones']\n", "track 3XKmLkVuYPVfuv7V4CKQy3 ['The Rolling Stones']\n", "track 7ztLfFos5GWW3ov9eQkO3n ['The Rolling Stones']\n", "track 3h4Fk8jpriNvvHUReaLiAw ['The Rolling Stones']\n", "track 5AtcwcDMC942XrYtBm1dEn ['The Rolling Stones']\n", "track 3Bz8qzOdHrXlo9ySAqHy97 ['The Rolling Stones']\n", "track 6wo8Eid3jXbaScSEpv0IQO ['The Rolling Stones']\n", "track 0Pm9eYltE97zx0tBjWiGOs ['The Rolling Stones']\n", "track 6j3En9AD8FEAQQhhtkKBR9 ['The Rolling Stones']\n", "track 42IxonQwYoTR6LpxGeCZFc ['The Rolling Stones']\n", "track 4kkcwdx6zAnXxbKlHQrHxm ['The Rolling Stones']\n", "track 2nZYZMxzaWvbjQEVM4G0LF ['The Rolling Stones']\n", "track 60r3xvRZOBSopZmLGzaYoC ['The Rolling Stones']\n", "track 6kXwsfQMqru57LtSz9UkqZ ['The Rolling Stones']\n", "track 5uDR4WhcUD331UouwbR0A2 ['The Rolling Stones']\n", "track 6uygkwrQBA36z2U2pla4KU ['The Rolling Stones']\n", "track 6KUcn9JF3DAdscZttGUFTZ ['The Rolling Stones']\n", "track 7MT7BGfpuDqf5evP0QO5R8 ['The Rolling Stones']\n", "track 0UKOuD790dW7MG7KSL36ti ['The Rolling Stones']\n", "track 4JIqpYtJUXFBkD43S95XWe ['The Rolling Stones']\n", "track 2TKLzAtvY9CdHR0FRiMpD2 ['The Rolling Stones']\n", "track 0xJnJz4NrvLQ4qoX0Q60oN ['The Rolling Stones']\n", "track 6L17PnZLvdMxMRveRw4xRt ['The Rolling Stones']\n", "track 3Q1y0EaOKD8ECxzSnpcLsc ['The Rolling Stones']\n", "track 3toJIBlDhZ7BfqqOahtbe5 ['The Rolling Stones']\n", "track 1Q2ssIBl53Jg2feUEXYfqF ['The Rolling Stones']\n", "track 5a6MdeIQcIFFKMBS2YqfgY ['The Rolling Stones']\n", "track 4MdQghfBQc8qgNqYBCgfnz ['The Rolling Stones']\n", "track 6gZ8IDmALmyQMgfDKVxWUn ['The Rolling Stones']\n", "track 3e7tyCzRijFAb0IGh9cMQK ['The Beatles']\n", "track 6DwVfITR9VP2hybiTkGWBc ['Muddy Waters', 'The Rolling Stones']\n", "track 68WvRRgVhGBYmc8OCEvNA1 ['Muddy Waters', 'The Rolling Stones']\n", "track 2cXHVXOz40gZN7sJX64aFF ['Muddy Waters', 'The Rolling Stones']\n", "track 3wME62QEnLA3Rw0FyoCrtW ['ABBA']\n", "track 2vcM63yjNzmCFeQY0GoKpB ['ABBA']\n", "track 1jD9o6FcboH4s9I9zqB74K ['Led Zeppelin']\n", "track 3H4iyihEybZnIuXCglL65U ['Led Zeppelin']\n", "track 5fhZbvqqaYgQ0KrXygL4if ['Queen']\n", "track 38FfvUR7lfvxltBw3nM0OC ['Queen']\n", "track 6LMNYkSx9ynH2KiLietD8S ['Queen']\n", "track 0Od7IBvKNhJmEyoEdhaxTj ['Queen']\n", "track 227arYqhH1XUPi7n7Wxzhk ['Queen']\n", "track 68EYgloxK55efaR61qhEqJ ['Queen']\n", "track 5WEB7zww6JXJhtOfzhlaa0 ['Queen']\n", "track 29cLneupABLaNY46NScqVt ['Queen']\n", "track 3cT0In2dvrovdM67V2OkqG ['Queen']\n", "track 5wnFSk5PftNqSANJ2NSCIb ['Queen']\n", "track 1t9eW9KM1QdEwI6n2rJByS ['Queen']\n", "track 5ginMi09yrNMiWo7LFyiwK ['Queen', 'Paul Rodgers']\n", "track 0LhqNSF2lKyClA4LsrWOTM ['Queen', 'Paul Rodgers']\n", "track 6IvHjKkAAx2YImuceKK9qF ['Queen', 'Paul Rodgers']\n", "track 6MqFkEAQLQBeZiatubcfez ['Queen', 'Paul Rodgers']\n", "track 6DxPhadRS7Oo7wFXkisBNl ['Queen', 'Paul Rodgers']\n", "track 0RVHU0fI1P2HzTFAKQ9RjG ['Queen', 'Paul Rodgers']\n", "track 58yf6DjFNl8hJXGc30hO9h ['Queen', 'Paul Rodgers']\n", "track 3q8FnAzHrsQDNg5lo1dldS ['Queen', 'Paul Rodgers']\n", "track 2z6pOkdTFUUSWJIeJdHStp ['Queen', 'Paul Rodgers']\n", "track 0mkbZsjgHsCWxiGZbxO9QW ['Queen', 'Paul Rodgers']\n", "track 3QmNJxZUS4dsASHjdK7Fqa ['Queen', 'Paul Rodgers']\n", "track 2NCKFPU6KeXHC7mbrnRfo6 ['Queen', 'Paul Rodgers']\n", "track 7zB8ZyUP9hTmZ3veSznNEh ['Queen', 'Paul Rodgers']\n", "track 2xMzXlytzdAmOq7yIobTJV ['Queen', 'Paul Rodgers']\n", "track 18TBt201LtpWSyT4yMyDOm ['Queen']\n", "track 1uBuaR3QKbUXNwyDiq5ZIB ['Queen']\n", "track 07ti6sDGsoE2VJ3UdNOVmi ['Queen']\n", "track 5q7LeSoqZfK1grLMISg1g8 ['Queen']\n", "track 6400buWbi5KM2NWQBrNMvT ['Queen']\n", "track 4s8uq8KoQcIm2KT7xOW3t5 ['Queen']\n", "track 7gVobR8LJS5SYbrMH4iWmQ ['Queen']\n", "track 1JMNZ1omuOncrVb2s0bEHe ['Queen']\n", "track 3nELrL7HmStgRfflmrGFtU ['Queen']\n", "track 6NPkwkSg59aLMdEnwdRNeP ['Queen']\n", "track 6p9LCQgo3FLbST476iiKWc ['Queen']\n", "track 6oV1bU7K5v4ybYTbB29ArG ['The Rolling Stones']\n", "track 48lFkUIe1GBEWWtAsckBzS ['The Rolling Stones']\n", "track 1cYaiJpydNUcLC4PcMELF6 ['The Rolling Stones']\n", "track 2FCr3sDR9wtUhZd1QLtBp2 ['The Rolling Stones']\n", "track 6llzO1SvdCHZe10G7O9FE8 ['The Rolling Stones']\n", "track 1tUp0V5SQ60coniXG3Qgsl ['The Rolling Stones']\n", "track 3vFPL9nJClSPJ3o23nyZFQ ['The Rolling Stones']\n", "track 5QMOnFOCZ3jD2HbG8aY0tf ['The Rolling Stones']\n", "track 5KOVxb4tOeZsqf4e8zWxb7 ['The Rolling Stones']\n", "track 4yyMh2hj6N2q55kGCbJmiT ['The Rolling Stones']\n", "track 2wjVMs3D9Mu9HCafdqriJC ['The Rolling Stones']\n", "track 2JKq6jqn8cQu7003WoUv9E ['The Rolling Stones']\n", "track 7i7AtjVpqhwqaxSZ5E2l0N ['The Rolling Stones']\n", "track 2DQ3bIdLuZnZxC7grIGSaU ['The Rolling Stones']\n", "track 3FcQ8PX4CNRwlU1MfSTOle ['The Rolling Stones']\n", "track 7piD9FSRRPOjQh4FyIcTxV ['The Rolling Stones']\n", "track 7B6vYrNAnMZA9Ne1WPcdxU ['The Rolling Stones']\n", "track 5C5HxdCDp6RQUOlsS8qoUo ['The Rolling Stones']\n", "track 6ncZ7LP1NY4IOp2zQLPOPX ['The Rolling Stones']\n", "track 5oomUe9UlekZkeTItGqXet ['The Rolling Stones']\n", "track 5kBPRiekYkdeSMCHvKmZuO ['The Rolling Stones']\n", "track 5b8LAkfAKbuakf9xqRMTQR ['The Rolling Stones']\n", "track 2GPWjsRZFo5QWxGDIdWrXi ['The Rolling Stones']\n", "track 5v0bKShtYSljDHv3HOExdZ ['The Rolling Stones']\n", "track 2wBMSC6qmlxKBjuNIivh7h ['The Rolling Stones']\n", "track 1i0YC1kaRPnl8DtpAlbW6y ['The Rolling Stones']\n", "track 4XSxlFiAQPeOwwtzN2vjij ['The Rolling Stones']\n", "track 6DgqroIXRnsTa5Y3Gj0iMI ['The Rolling Stones']\n", "track 3eE947Xw6qPE1TqBMbUDgS ['The Rolling Stones']\n", "track 0ZCobesCP5H68TKcFEMzrJ ['The Rolling Stones']\n", "track 4FHhq0QWpLSS6WZnkJnZp1 ['The Rolling Stones']\n", "track 7wDEg2XB8t3aXU4KKNxJb3 ['The Rolling Stones']\n", "track 5cQPrwEqJ9xg6DEiDF91mY ['The Rolling Stones']\n", "track 1oKzy7O0OFZ3hyYm7CnFGQ ['The Rolling Stones']\n", "track 0B4Uybr8d7O5WTRRTroVL6 ['The Rolling Stones']\n", "track 6cgTyJKazEF37fY1g8C23Z ['The Rolling Stones']\n", "track 0iuUNJDrQYorhVdQFZiN4l ['The Rolling Stones']\n", "track 2OrZxNdJAHJcC0OinatLG4 ['The Rolling Stones']\n", "track 6KfP8KsoS4I7aSpOvG0ZxE ['The Rolling Stones']\n", "track 3yQPtQpwJKPYVyg8s6ms3l ['The Rolling Stones']\n", "track 0Ydg7c3RMHJVbYUARgZ6EY ['The Rolling Stones']\n", "track 28QysoWu9XDU81RTYaa5BL ['The Rolling Stones']\n", "track 3nbvK5Ma2mRQ2PhwPJ4eLn ['The Rolling Stones']\n", "track 1Ctpqc6HcTs4hPKmeTojr7 ['The Rolling Stones']\n", "track 1tKwoT5Oom6iih1Ru5hX7m ['The Rolling Stones']\n", "track 6ml6iL8HUdQKgtMaehAZc8 ['The Rolling Stones']\n", "track 45qDksEJzeg5yHjHb81N89 ['The Rolling Stones', 'Bob Clearmountain']\n", "track 0xoYN2alNDaN0RuM8mjUqy ['The Rolling Stones']\n", "track 3DG3HqCI9SZ1iTUBtH2Tqj ['The Rolling Stones', 'Bob Clearmountain']\n", "track 2NJl6DPqHnD5f3mShjFSF8 ['The Rolling Stones', 'Bob Clearmountain']\n", "track 7cT82dppW9lRJs5B0sO3PE ['The Rolling Stones', 'Bob Clearmountain']\n", "track 0z4o8TMSswtKc4I5hntpEE ['The Rolling Stones', 'Bob Clearmountain']\n", "track 0OA9xod1fnFecSQPb165D6 ['The Rolling Stones', 'Bob Clearmountain']\n", "track 3Uk6CB11aVvZNQTljhASKJ ['The Rolling Stones']\n", "track 4Q75gU2hFVL4oxqFpTiT3c ['The Rolling Stones']\n", "track 2PhgCEkXWHrZdpPJAhv5EI ['The Rolling Stones']\n", "track 4wVH4Ks2arfcVaEXjBEXIF ['The Rolling Stones']\n", "track 0AUTwTKqSdMLTEO2LgIzLy ['The Rolling Stones']\n", "track 7dgx7UNa43Ybacl2HpNspS ['The Rolling Stones']\n", "track 6I8F4oyfP4TSPDHwuI7DES ['The Rolling Stones']\n", "track 0zRWbwS1cmt0Upi8EsQMyX ['The Rolling Stones']\n", "track 39JeQtFwdxYK8RHmb3qB1d ['The Rolling Stones']\n", "track 4lJXLFf148gjn1qECYS5xt ['The Rolling Stones']\n", "track 6sGPIigp4vW4m11zvMADfx ['The Rolling Stones']\n", "track 5LcD4BvRlJOn8inQGT2RUY ['The Rolling Stones']\n", "track 2ToG7X1S8asYJT91KIKVgT ['The Rolling Stones']\n", "track 5ZesVHq9Nox8YjOR1kCpbN ['The Rolling Stones']\n", "track 6hLpp90qMxG3TMvMzwJsiQ ['The Rolling Stones']\n", "track 3WqR7lRoHEvG0ExkAqBkPj ['The Rolling Stones']\n", "track 06PEXSCNl8Xwf2633TdNnx ['The Rolling Stones']\n", "track 74ALEpcm5uMnV8uffpPtzu ['The Rolling Stones']\n", "track 13LWcDBucg2I6RB70sRQ78 ['The Rolling Stones']\n", "track 1J5ZenaZCJLsiEjgoGkoPh ['The Rolling Stones']\n", "track 12qXniM3tXwJoF2CHjIWIj ['The Rolling Stones']\n", "track 568dw40zJKLBZe2vkzBupr ['The Rolling Stones']\n", "track 4lzwvEOsDWdJ9qWpa83pnS ['The Rolling Stones']\n", "track 6uxjaNfPbqQYUHuDSAPjpd ['The Rolling Stones']\n", "track 0C3UtVvd3qtMQc78owsxpR ['The Rolling Stones']\n", "track 3MCwtvDkRYE7Milw64h7Pp ['The Rolling Stones']\n", "track 7G6Z0sDe39MFjTaA0XfCtw ['The Rolling Stones']\n", "track 1cYA4Q6BzIB5SzGvMYJDf6 ['The Rolling Stones']\n", "track 0CK00SEA9yG0pEka9rQYiy ['The Rolling Stones']\n", "track 1i7Sfshf9oXz8XuuNsvEL4 ['The Rolling Stones']\n", "track 1aN3JW2C3MTdYmAvTIOlje ['The Rolling Stones']\n", "track 3ZyYpu0DKTqZ3b15J285mN ['The Rolling Stones']\n", "track 7tejfCpAogzmgBCLhKHbdB ['The Rolling Stones']\n", "track 0kiGaB9XRxuQ4TTZAUuTES ['The Rolling Stones']\n", "track 6wzvFKXyQ4UeeWgujBlNUm ['The Rolling Stones']\n", "track 20VZlagcTVx91p2XBmIFcm ['The Rolling Stones']\n", "track 1ynBOTlEBMlpIZq88WvCgO ['The Rolling Stones']\n", "track 0Zvu2yR1AYPSyT03zbr2KF ['The Rolling Stones']\n", "track 0jvx8zPYRkX1wbZ3BIdjFB ['The Rolling Stones']\n", "track 2hsngmu9BV1gve6r0gRLw6 ['The Rolling Stones']\n", "track 3KywmC2h0A1Q7imC6XPdjd ['The Rolling Stones']\n", "track 4kIpxddCXCpaYK6vaAwzCG ['The Rolling Stones']\n", "track 2O2qR6mXLeFiCZgNOQjZ7Q ['The Rolling Stones']\n", "track 0y2gwbLt4rT57AqVWanxrS ['The Rolling Stones']\n", "track 61IKhUU0ZJ9Ba4GpjlDPju ['The Rolling Stones']\n", "track 5pR8UH7jCUF9y3rJxDYX3i ['The Rolling Stones']\n", "track 6vZfVcild1NPkygdsudJfQ ['The Rolling Stones']\n", "track 6hxgHNJjadmCHAJPXw6AYL ['The Rolling Stones']\n", "track 2BxO4VLPjzrApKTHZjpz9G ['The Rolling Stones']\n", "track 6L7tmFIPKy98Js8ytCB1pT ['The Rolling Stones']\n", "track 2gB58ki3GMqyNsdsPpDECH ['The Rolling Stones']\n", "track 6C0au9ut1avz4zhryYHudG ['The Rolling Stones']\n", "track 1NvBOki5VmSSVelycoMo96 ['The Rolling Stones']\n", "track 31KuT5lcyp6NlDBjp3EVTp ['The Rolling Stones']\n", "track 3u0cZhyEPYIe9qDKPEeS4g ['The Rolling Stones']\n", "track 6gVXeA52q3FbLANm6gW0Ma ['The Rolling Stones']\n", "track 2rNBqTve7unpL01DuTyX3P ['The Rolling Stones']\n", "track 3Ey71ndsJ2GDMgT0hVJlPs ['The Rolling Stones']\n", "track 3u06WsJ1KtvEqmmmZqy76J ['The Rolling Stones']\n", "track 1lLK53LFXWvPzPYtlJIvt0 ['The Rolling Stones']\n", "track 4HKaTAMIXT88muGU1JN9lI ['The Rolling Stones']\n", "track 281J4XFm5DLfVt1nKNBsPn ['The Rolling Stones']\n", "track 3R9J771v8umuPsdKttvrmI ['The Rolling Stones']\n", "track 6enjRsW81z7K8zk7XIGIiz ['The Rolling Stones']\n", "track 388ll2SEjDO9LZIXXyKtjh ['The Rolling Stones']\n", "track 6jVVliHbEW8AlEjl43HchU ['The Rolling Stones']\n", "track 74tlMxJ8wF0sNp93GBEPdK ['The Rolling Stones']\n", "track 0B5CEdw4WBs91yn444ZP27 ['The Rolling Stones']\n", "track 3jhHx1k3hweq3lunTHp79w ['The Rolling Stones']\n", "track 6UEvhb8YDoZlre9W5pKlYT ['The Rolling Stones']\n", "track 4qvUEj5bJlVDsCoIoe6lkW ['The Rolling Stones']\n", "track 500eFUaDWS8lMDEeZioDUX ['The Rolling Stones']\n", "track 24YgZ1n1sDC37dbDWEhYJh ['The Rolling Stones']\n", "track 6b2oPTD7iwZ8u0GSiQ9KjB ['Muddy Waters', 'The Rolling Stones']\n", "track 1SOU2BrRM88ykKxPxUBCeL ['Muddy Waters', 'The Rolling Stones']\n", "track 5fdp64tlkhSRvxQRhDb90C ['Muddy Waters', 'The Rolling Stones']\n", "track 0lNv4CSgoSPd5w6H1ACpQq ['Muddy Waters', 'The Rolling Stones']\n", "track 1G7MgWxeUZ2Xq1tMAHobrV ['Muddy Waters', 'The Rolling Stones']\n", "track 26SBBavAHnSEZVHQ7OCqEY ['Muddy Waters', 'The Rolling Stones']\n", "track 5AmdUA5aj3BKXBHqMcwpDL ['Muddy Waters', 'The Rolling Stones']\n", "track 1eIRZEohfewV7H1zGxZy0L ['Muddy Waters', 'The Rolling Stones']\n", "track 7m6dBGKuagWUryeevcBrE0 ['Muddy Waters', 'The Rolling Stones']\n", "track 6yjQRBe4nt7KznxYqh7qfK ['Muddy Waters', 'The Rolling Stones']\n", "track 10eM8qubZ9IBU0v6LNLjNM ['Muddy Waters', 'The Rolling Stones']\n", "track 4kYnrUr98AZARciXJGjjzH ['Muddy Waters', 'The Rolling Stones']\n", "track 15RgKpCJ1rxwbNMpoA503m ['Muddy Waters', 'The Rolling Stones']\n", "track 1yFFTCqtFerayfTq46m0P0 ['Muddy Waters', 'The Rolling Stones']\n", "track 402iDzjasfYVYx1LT5gNFS ['Muddy Waters', 'The Rolling Stones']\n", "track 0L8sAIZr2OcE45cGZ3qbb7 ['Muddy Waters', 'The Rolling Stones']\n", "track 2ZBmWii9Yt5EVO32P6oDXM ['The Rolling Stones']\n", "track 7aJbjVaPvyaqjW47rDYijL ['The Rolling Stones']\n", "track 2PPqIlfmipTSfx79FvSvep ['The Rolling Stones']\n", "track 5XQ2enmXsgp66RvyolR8qC ['The Rolling Stones']\n", "track 4LPtVRXWYSJw0TmszHFivc ['The Rolling Stones']\n", "track 2dF1AaEhFCgS2e78JqmkOu ['The Rolling Stones']\n", "track 5SvY6KFdltqwqFR7ClMz7y ['The Rolling Stones']\n", "track 6ZNw9Cnc85OeHZrjMAZJfY ['Spice Girls']\n", "track 6pRNcjqlPnjnF5mupD83la ['The Beatles']\n", "track 4dAhr61ItX6cK881nlW8aB ['The Beatles']\n", "track 6C8XySjle4RX0CWIwGbizW ['The Beatles']\n", "track 7ePIrsvnd7XobJKRKOaQHf ['The Beatles']\n", "track 7izSn5tJgisBSdCQdyePcI ['The Beatles']\n", "track 766Skoghn3BUAVGrUpJ7n9 ['The Beatles']\n", "track 1Mkt1BqBK9D02g1iMmRkqq ['The Beatles']\n", "track 6B89krM9fveE6RqAWmonK9 ['The Beatles']\n", "track 1Spno7RVP9d3wszxojPJXZ ['The Beatles']\n", "track 6u3rpuWJCZv9wcYpjcxoOW ['The Beatles']\n", "track 2OtFl6ryjvaH3dGiTUUeh9 ['The Rolling Stones']\n", "track 2KnrkqQ5apWUvZ9CVSDmmR ['The Rolling Stones']\n", "track 5WgAOu93i40wRL7517is4R ['The Rolling Stones']\n", "track 4vfCh9kio2tM8KyzYjPIG1 ['The Rolling Stones']\n", "track 4OXnLDjN5SClCcqTqPVMBy ['The Rolling Stones']\n", "track 5yh4NXEJYJSoqlEJO4E80R ['The Rolling Stones']\n", "track 6W9Fl2liAiL3N6lnSHfq5T ['The Rolling Stones']\n", "track 1YSw5TDTLGLvRHDaHB46Hz ['The Rolling Stones']\n", "track 7mlrLRnwq3HC2Yp2WUVVy0 ['The Rolling Stones']\n", "track 6ZFlGszAyzdQH6SVoapmxe ['The Rolling Stones']\n", "track 2tBmA66b4cxYm7o2iPz0bO ['The Rolling Stones']\n", "track 6n5YjAmrraN5ACm65LCtIC ['The Rolling Stones']\n", "track 70FASC94Ywd9wyeGujNdTK ['The Rolling Stones']\n", "track 5xMueuERyALqinkeOXEW0a ['The Rolling Stones']\n", "track 5mBKqJGQ45TPcmGR1WAc7f ['The Rolling Stones']\n", "track 6BSEEgjM75s1YRsLQgP5Y2 ['The Rolling Stones']\n", "track 7BXXoKFvPcYaATlfBT7zuM ['The Rolling Stones']\n", "track 70U2cmNSEoKwkU6Wz9m3Fi ['The Rolling Stones']\n", "track 55lElC5ScFprXpv2iaPf97 ['The Rolling Stones']\n", "track 04DHEtSfmSseOFbkjYASJd ['The Rolling Stones']\n", "track 4bQ8fqPRiMsAsC18hfwAng ['The Rolling Stones']\n", "track 2Eyv27n7ECU1TTmrD2hhMc ['The Rolling Stones']\n", "track 0VpHQIzxruwK61HgIkN4bs ['The Rolling Stones']\n", "track 5zkQRYB9g4rvqNFtbYjul5 ['The Rolling Stones']\n", "track 2iOhH8AWpAN3HiLcaqapK7 ['The Rolling Stones']\n", "track 1fhjrbgaFD6Em5jih9tZJR ['The Rolling Stones']\n", "track 7whU5DaMEtXWqGuDrCiMvS ['The Rolling Stones']\n", "track 0YTqcrcpMFZZlH3T91ljsy ['The Rolling Stones']\n", "track 4XWjar9hPmrXlaHSDBaTAG ['The Rolling Stones']\n", "track 0Ceca20fqfNJMthxWr21X4 ['The Rolling Stones', 'Bob Clearmountain']\n", "track 2Tc9ZA3YjkenxjQfSiL0Mv ['The Rolling Stones', 'Bob Clearmountain']\n", "track 1QP7LrHUWR0LAglxdjAufD ['The Rolling Stones', 'Bob Clearmountain']\n", "track 3RYXjy8HMrp9IV29Vlugkd ['The Rolling Stones', 'Bob Clearmountain']\n", "track 4LSSZbf6jb9iJkDg5WgMGY ['The Rolling Stones', 'Bob Clearmountain']\n", "track 6hz3FoUQakWunNkles60bE ['The Rolling Stones', 'Bob Clearmountain']\n", "track 4i8ZAszepLzVIwmdvgD3jw ['The Rolling Stones', 'Bob Clearmountain']\n", "track 1jk4WaIif3J1zEXjMP8ZcD ['The Rolling Stones', 'Bob Clearmountain']\n", "track 7irq6dGW2z37J18rnjSo8K ['The Rolling Stones', 'Bob Clearmountain']\n", "track 73MgBR8k2EsPszWy8ZphAF ['The Rolling Stones', 'Bob Clearmountain']\n", "track 3VMoD8OuJ7t1gsFkWgqo1h ['The Rolling Stones', 'Bob Clearmountain']\n", "track 4e9TWBLsP2aeshY1SAMWOA ['The Rolling Stones', 'Bob Clearmountain']\n", "track 1H5W8Xhv0rloLJuuE3ADvi ['The Rolling Stones', 'Bob Clearmountain']\n", "track 4O8XKEmjlfoQL0maIJoYED ['The Rolling Stones', 'Bob Clearmountain']\n", "track 1CEZV1nYaEeqhWz73HKF3g ['The Rolling Stones']\n", "track 7alkUvNsfJP474OVZwWCtJ ['The Rolling Stones']\n", "track 4NccLOSGgOlWPB96yN7wL9 ['The Rolling Stones']\n", "track 2yuxHqMAv5SuxYbSIaaKl7 ['The Rolling Stones']\n", "track 2ja6DzY2TNTpL2lOFBK6qn ['The Rolling Stones']\n", "track 5bUCESmtrNkemWq6moWm16 ['The Rolling Stones']\n", "track 5emiakcIYQHdSKQSXrllaB ['The Rolling Stones']\n", "track 2lZVp9STeCABnaIkp4hqvA ['The Rolling Stones']\n", "track 37K6dlZivVPT94pWO6UP57 ['The Rolling Stones']\n", "track 1A2hLmnwBt2ZhU7WDbwLfO ['The Rolling Stones']\n", "track 5yqaAONDJoMjr0eVklREAP ['The Rolling Stones']\n", "track 2lYY8C8pZwN7J9cWGYhg9v ['The Rolling Stones']\n", "track 4JjQiVegB5NOzzTP0JlHTu ['The Rolling Stones']\n", "track 3Bp0blfzOCfgnUPb9tnON6 ['The Rolling Stones']\n", "track 72pSoUJ0CTyL6JeSsrZJIB ['The Rolling Stones']\n", "track 1YcSdDPDmMLA1TfHnr54v8 ['The Rolling Stones']\n", "track 7dGT9qeXXXhJU1FskoNn3h ['The Rolling Stones']\n", "track 20xlkuMUP3mxUVfIOZSocq ['The Rolling Stones']\n", "track 6Cx6O4YJeRe6RvwDs8mxwi ['The Rolling Stones']\n", "track 7pQj2ECATHMRNQRgv76Qxa ['The Rolling Stones']\n", "track 5ponxk3cOQPFaV1LZnMrCF ['The Rolling Stones']\n", "track 4QFWsfX7wwjtEhat2MHbej ['The Rolling Stones']\n", "track 24J8UCpkO7KtCgtFc0bQq8 ['The Rolling Stones']\n", "track 5gaagFjMNBrSzqESsAAwYZ ['The Rolling Stones']\n", "track 7avIppWb717adwpgfFJQEA ['The Rolling Stones']\n", "track 0g7goiNd7RuGtYYe4Qw1Ey ['The Rolling Stones']\n", "track 6XjZJ1o8mVwfx5EUCg7MM3 ['The Rolling Stones']\n", "track 26P4xxB9TqJBS4Fz8IrRBS ['The Rolling Stones']\n", "track 44b96vdwaZxjlKShNx5DJD ['The Rolling Stones']\n", "track 1aIdkhSx5fbf9KMFnQD6D2 ['The Rolling Stones']\n", "track 0YKljAXvWTivNH80sQVKCw ['The Rolling Stones']\n", "track 2K18YR393jIHVdQNFh1e8m ['The Rolling Stones']\n", "track 0dVWLgSMPe1k3wMS5r3IYo ['The Rolling Stones']\n", "track 1Q3Zsj16Q6Vp1oXkcAL8sA ['The Rolling Stones']\n", "track 6ywlFYpzYwakuOuemm8Z4C ['The Rolling Stones']\n", "track 6Nn2zLBv2nIHrO2RNmL4fL ['The Rolling Stones']\n", "track 2sUPEzUKB7YvyeSO43xTxl ['The Rolling Stones']\n", "track 2jxVmvGjPLreK6kJMIiS1J ['The Rolling Stones']\n", "track 3n6T9dzMlLpBKWMCOJ3yuA ['The Rolling Stones']\n", "track 3PEJV8vB2cy06ZjZ1Q3hPv ['The Rolling Stones']\n", "track 7nb58FtSDPcWita3j8apjs ['The Rolling Stones']\n", "track 4nJLF8vDkWWKEXUaoAE4Az ['The Rolling Stones']\n", "track 7b3J6Qd1Cf3zKLsC5dOqNx ['The Rolling Stones']\n", "track 20AK6SpqAq9naDPylmJOzT ['The Rolling Stones']\n", "track 0BjxNDsQEiH5Vma0OeFdAy ['The Rolling Stones']\n", "track 4T6mepCGHVkHDMrqzbCZO7 ['The Rolling Stones']\n", "track 1F1PEkQFxFhw5LB7ZGUIWK ['The Rolling Stones']\n", "track 0q26ITWa4vXhoV5jvRCZXZ ['The Rolling Stones']\n", "track 62gc3aHzrJyyPNArcJtivk ['The Rolling Stones']\n", "track 6vzKcbSHbDV393fid8PjTR ['The Rolling Stones']\n", "track 3dyVJ7xlvOH5XHVe8pI7uF ['The Rolling Stones']\n", "track 6C9cuFxKvwAOrAgi6ND1Bs ['The Rolling Stones']\n", "track 3X6rzvOThLuLR3Zunykl4T ['The Rolling Stones']\n", "track 7LJo42gutawN5sQoQC6hJX ['The Rolling Stones']\n", "track 2FSKDYa1KeU4KjGtmTbBCa ['The Rolling Stones']\n", "track 1LXm3D90qWU5pJV5SNjy5s ['The Rolling Stones']\n", "track 5jmZu4cg4J6wjQrMVVvMc5 ['The Rolling Stones']\n", "track 03Kf8F3UyFqP5t60aPOgwA ['The Rolling Stones']\n", "track 4HjKfesqhmkthgJg738g3A ['The Rolling Stones']\n", "track 5JU7rWIYwAQD9EDPSFPwj3 ['The Rolling Stones']\n", "track 0jjDSLFdS0b0ltCGTk3pvv ['The Rolling Stones']\n", "track 5qCwm1FTNGIkwag82lbkr7 ['The Rolling Stones']\n", "track 0yk2Ib31RPmz6NR5NiAcwS ['The Rolling Stones']\n", "track 0PaQXnVk0mkWhwdOMO2XJC ['The Rolling Stones']\n", "track 2EesCA9Vu5KchkVUtquZcp ['The Rolling Stones']\n", "track 4ZyMiTpMeLYpPORaSdwc7p ['The Rolling Stones']\n", "track 6i5nkWMFg71YebvfNUbb2w ['The Rolling Stones']\n", "track 1JZKBtBVhP5HmZLzMCcXFX ['The Rolling Stones']\n", "track 7tXuNR6xy9wGBXatDfqFEj ['The Rolling Stones']\n", "track 3nGR1fpxsAfDdZc9wwm16u ['The Rolling Stones']\n", "track 4Uq4cdVjNDZFtiuzTopRac ['The Rolling Stones']\n", "track 7i0HwPhGd77HqpGliF8hWC ['The Rolling Stones']\n", "track 7ccGJ2vLgjqUDmfn9m66ob ['The Rolling Stones']\n", "track 57H3scKLSd9UOWzjfxa8Ct ['The Rolling Stones']\n", "track 1EbQh7chvRR334rsoxp0U6 ['The Rolling Stones']\n", "track 3ovO4GmtWckNKeFItjPDVP ['The Rolling Stones']\n", "track 2jaOxamwOcyjN1E4ut6CK1 ['The Rolling Stones']\n", "track 6zL5bMJTpJKrf2xkU85b0j ['The Rolling Stones']\n", "track 6WKiTv7SJ486taXpKIMANr ['The Rolling Stones']\n", "track 0v4MSSHsVfsog0miOeNCDM ['The Rolling Stones']\n", "track 4Eh4q5GJegCgMQU1E7rRl7 ['The Rolling Stones']\n", "track 0DK2fsv7gaw2q4P41wtW94 ['The Rolling Stones']\n", "track 1mnDusx7zn2yzmr42hUksE ['The Rolling Stones']\n", "track 5lWzRBoBzcfr1oNYNhR5ac ['The Rolling Stones']\n", "track 5Q1WEhoKBER2RLxl9MvLFK ['The Rolling Stones']\n", "track 4EllMMamxvLvwvOQLsyc9W ['The Rolling Stones']\n", "track 5ZEyPmJCrWE0pSXmMlIwuh ['Muddy Waters']\n", "track 1F69leTp8WQHMFVQ5gOtIS ['Muddy Waters', 'The Rolling Stones']\n", "track 3nc2vvots8KXJIssvtJvh6 ['Muddy Waters', 'The Rolling Stones']\n", "track 0cNyluZzzBVbsk2UY7Spca ['The Rolling Stones']\n", "track 6dx6G9OexgRFCulfKI4sPN ['The Rolling Stones']\n", "track 6fZKfyDrl9Nph0ifIGvOxs ['The Rolling Stones']\n", "track 660iobQYqexXXNfRomqz3o ['The Rolling Stones']\n", "track 6AX8HMe53fbGdNNAnC8LSz ['The Rolling Stones']\n", "track 16FlhqpxLT6WTfiLVEZ7Vv ['The Rolling Stones']\n", "track 5UXwp4rKvtXtKJpe0iIctM ['The Rolling Stones']\n", "track 6bxyTE0a0SFneMeIxXDCm7 ['The Beatles']\n", "track 4sOAk2nNTildSyJSLSlXuG ['The Beatles']\n", "track 7jqsBIOx7CGhtNPNYxBWIj ['The Beatles']\n", "track 7FgFsmFqGDWduAW4vdgya1 ['The Beatles']\n", "track 4qYGe6lTon2cHuTQF45xov ['The Beatles']\n", "track 55kc3bnwWdGFCqthgjqR9l ['The Beatles']\n", "track 1Yk5EOxuBEClupjWcUX0Ti ['The Beatles']\n", "track 2UGZC7jvYr11WFSd6xvbk9 ['The Beatles']\n", "track 59dYBIJ4cOrjtgkuwUnqQq ['The Beatles']\n", "track 3pY5chBSUotRa6RoIfwJjc ['The Beatles']\n", "track 5ToEv4nDN51OyAjK65A9YS ['The Beatles']\n", "track 3ZFPe2aiLQuEfDxSqQstZp ['The Beatles']\n", "track 2BOawXVznHmi2KJzRFstBN ['The Beatles']\n", "track 1alxZZpi5dBLcmV3WkYIzN ['The Beatles']\n", "track 1k1kJBeaL3FCUG2vOJ1z0g ['The Beatles']\n", "track 42uZOBjvKNv4QKnBmjOwb0 ['The Beatles']\n", "track 5JnPM6eKhHJtkWfS6ymUMF ['The Beatles']\n", "track 3HEC6nzAo3U5z7blaCNBcF ['The Beatles']\n", "track 3qchAN1uJ1KiF8yxmqb3Ov ['The Beatles']\n", "track 0eECFDnWy0RdjMmJ8NOeAL ['Radiohead']\n", "track 1tiyUANzZamsPZlHhZBbOd ['The Rolling Stones']\n", "track 1NwDWbpg9dPH12xBd2ibrv ['Spice Girls']\n", "track 2vnY8xDhRSW1Cc0xPpUMXc ['Spice Girls']\n", "track 2O8kqbUJS1vkL3x9mF7WzM ['Spice Girls']\n", "track 7xzDDFO7L1o5ANyzOYbbWZ ['Spice Girls']\n", "track 1SDaGaHrcH7hDdZwzXHslN ['Spice Girls']\n", "track 3FteycP8CaXS1MhjcXekVT ['Spice Girls']\n", "track 1RQnYh2xw2BPpnzQFbO5r5 ['Spice Girls']\n", "track 3M83cWfWcFXtkavdM8NuEZ ['Spice Girls']\n", "track 6RQnRYot6B3TPZsMbbSJ20 ['Spice Girls']\n", "track 3P50dC4GwZYiToIXQGWIAC ['Spice Girls']\n", "track 4oB9UvwZUkic3nWWZKULqs ['Spice Girls']\n", "track 3RTHY1WOLAkXoDW9oh5Cgb ['Spice Girls']\n", "track 6BPDPcnbDMDf58srVzbfX9 ['Spice Girls']\n", "track 0l7H48aO4jEa7Ee37h1rX4 ['Spice Girls']\n", "track 1Je1IMUlBXcx1Fz0WE7oPT ['Spice Girls']\n", "track 36AWdhZIGLUTkWpJDhe7va ['Spice Girls']\n", "track 61PwiYyJhF1HLi0OXomzQE ['Spice Girls']\n", "track 5SAGopoaraFmLS08bNjLxB ['Spice Girls']\n", "track 3dNv3OuX6ol9si6PZ9KSAh ['Spice Girls']\n", "track 1jI1aLmm5HTwiMtvsbwDJw ['Spice Girls']\n", "track 6qL8tweXFMqztcMwNB4r7y ['Spice Girls']\n", "track 2QMa85sq03n0NhDAjQe5eQ ['Spice Girls']\n", "track 6bh25NILjNfJnIvGRT2emC ['Spice Girls']\n", "track 5EE1Uzg0JvtBhs6TRs33R0 ['Spice Girls']\n", "track 0r5d5LmhLQwJVEw0kTEExp ['Spice Girls']\n", "track 4wJpBVD7r9WAOpmmMXqSL3 ['Spice Girls']\n", "track 1tMHxkwWMUfh0HyMiRAY4I ['Spice Girls']\n", "track 5qGwqO0lkbBXw4xNfzT7SF ['Spice Girls']\n", "track 1qmAvaC7Zo3VSCQ3tTx4kq ['Spice Girls']\n", "track 1yTQ39my3MoNROlFw3RDNy ['Spice Girls']\n", "track 34EcUMpHIZz6EQxJl7rBi4 ['ABBA']\n", "track 4pUGIy32b8UIlowpR1XfPd ['ABBA']\n", "track 2cqE4FVKPQ2S82mveeuPh2 ['ABBA']\n", "track 3Puoopnuj7cQFiDofMQm3E ['ABBA']\n", "track 5C0WMwtKboZr9OD5SkTRzv ['ABBA']\n", "track 5TWwqrZlBOZp7t4T8ltCxl ['ABBA']\n", "track 43E14mwW1FPcbRUXRquiGC ['ABBA']\n", "track 0C0wma9fC4Pm5gogVfXps2 ['ABBA']\n", "track 3rKWMFHcwE4xqHJFB5XS8z ['ABBA']\n", "track 18ouB48dboNuBGlqascpiB ['ABBA']\n", "track 5BmXTjmt7FlFLxYBuslmrn ['ABBA']\n", "track 4mn0VaAQ7NY4ZiJFDS7xqc ['ABBA']\n", "track 0mp4YjQgmzO6OLIKPkuX2R ['ABBA']\n", "track 5kBZR12AntJUTo9UeAsKqP ['ABBA']\n", "track 01VnMhCmzbDIlvaX7tC2jb ['ABBA']\n", "track 0UJuCMaUwkG0kDAV27vWR2 ['ABBA']\n", "track 4iSIGryrjjkKCTKERmO9rU ['ABBA']\n", "track 4oUfwAQJZGPufJHHzUNByB ['ABBA']\n", "track 74C9DcqBBeIoadl3MZR6NU ['ABBA']\n", "track 0ZeL4YyhmnFtKnU0BIktmM ['ABBA']\n", "track 3LIaJyHeA9lxmskbFaez44 ['ABBA']\n", "track 4imAdu3bJxfinSnmwlvipT ['ABBA']\n", "track 1OvYyu6DkLZ1mlkheGNcdU ['ABBA']\n", "track 1iY7Axxe2N019zRiVp4TsL ['ABBA']\n", "track 1K6YVvlrHhYzhYQMK80cCS ['ABBA']\n", "track 2NmpePwcU5msK7cYZBWiBt ['ABBA']\n", "track 6h1YTiy8pJGygnsrK54Igr ['ABBA']\n", "track 4qjg9uk0V4fsKRirslmwpu ['ABBA']\n", "track 2VsVI2mOkZ5s0eEA9MQLN4 ['ABBA']\n", "track 3rMR6J50Ol1apTWME50G11 ['ABBA']\n", "track 5j7T9ThNlDKXxTMX2pGcns ['ABBA']\n", "track 0pqw5LqwcmJxj8xHcxQzeG ['ABBA']\n", "track 7g3Jekv3IYFY9QkXdTUsrj ['ABBA']\n", "track 3vgYvODjYXbXAwUPapppor ['ABBA']\n", "track 0nUNEQEamKbyaIqRv512jD ['ABBA']\n", "track 7r5bS08R8d0jZuDZutVeHQ ['ABBA']\n", "track 5mzkii1zXauXpAXePfIGIj ['ABBA']\n", "track 4bykJp7dORR4GoLCZiQbU0 ['ABBA']\n", "track 4uRErRTfvUBgIJzqXgO3Br ['ABBA']\n", "track 4MD2SWeKfSBMDzrUaK22KS ['ABBA']\n", "track 5ElzcSjjFHh22jIszFaiBz ['ABBA']\n", "track 4vcclfPYyWZsFvFJWUBC2o ['ABBA']\n", "track 5V1iZlie4j13QP5Rbk1MsO ['ABBA']\n", "track 7azkrTHwZMEgfaYd7YT18O ['ABBA']\n", "track 2tmWQIoUc9TSIj9AIOwelP ['ABBA']\n", "track 6GNZIK2yxKa0gVnOPn5exV ['ABBA']\n", "track 4HPRGZtc9R7tVwCVNHas38 ['ABBA']\n", "track 01iyCAUm8EvOFqVWYJ3dVX ['ABBA']\n", "track 6x4H8BEjM79mGklUKF1DuJ ['ABBA']\n", "track 7Ev6oE1PGImJAQeNkXiNFU ['ABBA']\n", "track 6f2aeNom37eesQnUUPUqLd ['ABBA']\n", "track 0hpYclJ5fdzxrPCoF1INVo ['ABBA']\n", "track 4kAnvhawTqM9qs6LfRs1dC ['ABBA']\n", "track 6bTXZtNjSwYdyLdOPbRvcJ ['ABBA']\n", "track 0ROi63zAXtmxm0VHEHgyGf ['ABBA']\n", "track 6zeWfgymg7GMKRaKbpi0PX ['ABBA']\n", "track 7wXxE9N5bglywk9BxWlhJt ['ABBA']\n", "track 5ztQHTm1YQqcTkQmgDEU4n ['ABBA']\n", "track 3ZD6yWKBTI6U9mHEFw6UMp ['ABBA']\n", "track 1AVevxeYs9MW2NMseFziye ['ABBA']\n", "track 2c6BNK8IQjsFdUznUBDe4N ['ABBA']\n", "track 6ImAcp10BI7ZYV64UQY97A ['ABBA']\n", "track 4cUlsJa5fLvsSnByfE2Pcp ['ABBA']\n", "track 5tpjzKkNw6xg1FA2EEx38C ['ABBA']\n", "track 23JlidWzri3ZtlHpM72OwS ['ABBA']\n", "track 5Lvyq5cc2hhUKce06Jfy8K ['ABBA']\n", "track 7EoZWWFJP3LQNmki6NPOwf ['ABBA']\n", "track 7lKI8neNl1qgxgp4s0ctiV ['ABBA']\n", "track 7bEkrL2QaTPgD1rbAlXKpf ['ABBA']\n", "track 4yJNJjUASPQznIZiQl0gel ['ABBA']\n", "track 6NpKlVyV3x08WUJa0nT7tq ['ABBA']\n", "track 0dJOXJG5EIfBNFZiRmmdmc ['ABBA']\n", "track 3jdfFwrEng4yEoGeFwJ4qy ['ABBA']\n", "track 5G8l4JNjNOnji5Ez9bCwMa ['ABBA']\n", "track 0L2YRsQOIsnZ0JKKDsaxj1 ['ABBA']\n", "track 5BcKg8w2gCDmXUgFXgmY1v ['ABBA']\n", "track 7b7JkscdFJ9MhA9B5fXypg ['ABBA']\n", "track 4wgVTS5VceWxGnsvKDBHd2 ['ABBA']\n", "track 46sqmCFLdwDn98WRQyzUsV ['ABBA']\n", "track 7sPezc5i7tTva18QNRpUus ['ABBA']\n", "track 3cXlAPlLDulygPoelBfozD ['ABBA']\n", "track 0OahzLVe9XVbOOeaqEYJjp ['ABBA']\n", "track 0vsBBqCQcWNNmde1jWMHWP ['ABBA']\n", "track 0XpSKY52QJyUo096Oma8tQ ['ABBA']\n", "track 549GXgAxlO6aYxov7cAxE4 ['ABBA']\n", "track 10fRfvMo6WCO9Gaawxy2U9 ['ABBA']\n", "track 2FM7AOQVZE7c8NLD5yr595 ['ABBA']\n", "track 47Lh772lyWJRTDPXg56JmY ['ABBA']\n", "track 67toCtS2CI4YVvFyJaXo1j ['ABBA']\n", "track 54Z6En8XdWWmQ6HX1ylCjb ['ABBA']\n", "track 5iTEYfn2BXDFkTZnz1cOoO ['ABBA']\n", "track 4NocfOpCK2K9Zw45ETtfso ['ABBA']\n", "track 5H0vzEbSDQQznbgGxPwVAA ['ABBA']\n", "track 6GpWgXyhKgsrLb87WItKbS ['ABBA']\n", "track 3TYw5O66GiB5es5cE9Fvmx ['ABBA']\n", "track 0QV0h92mlWkvS42rrtQbyQ ['ABBA']\n", "track 1ZQQAgSGoZxlgzotBDyPbq ['ABBA']\n", "track 0yUuFRkVsQ9PnTp2Ni5xVL ['ABBA']\n", "track 63QPJDVVmyZnZCeNLOevGc ['ABBA']\n", "track 5juoQ4Xp4V3xDTvN6ROZMu ['ABBA']\n", "track 3TeNOarkcDjqsCoJ3Uyehd ['ABBA']\n", "track 07wctg7bkx8IdtWq4o92y8 ['ABBA']\n", "track 2OPpzqTjan2JUw1WqeE8eX ['ABBA']\n", "track 0SjBa52nFyjO8Q2IHaZAuB ['ABBA']\n", "track 7dWwPFDzhDg6JyfDCGmP80 ['ABBA']\n", "track 4eJxwzbh662WagvwWGKK0D ['ABBA']\n", "track 7AiR3YJonoS9EC4zXBFi5O ['ABBA']\n", "track 58BK016V2Sk8buiTTDw8ky ['ABBA']\n", "track 1EWFdVI2WNSBAkp4FNx7gu ['ABBA']\n", "track 1GEIB5fFxhhK8JdOnEhmhP ['ABBA']\n", "track 6CPkNPhuF0E6zZEYEuGSGx ['ABBA']\n", "track 7qk87bCmfdEou1JATTf0rj ['ABBA']\n", "track 2rVKZNxccKd2HfchI6nEGQ ['ABBA']\n", "track 6WqgtVtL2QSPEAhgIwc8mE ['ABBA']\n", "track 0KhZvTshmGxI7xfoOd3zLK ['ABBA']\n", "track 4hQI9TDgpWO4kY1qgNYvyi ['ABBA']\n", "track 3gGxFWmTFrKPWJWS0qPeNe ['ABBA']\n", "track 1QhjejNvKghlG2UwV5Z9ac ['ABBA']\n", "track 5ILbY3cRwIvsSZIZkSIaok ['ABBA']\n", "track 25wEnZaYcPcNxnZadBSn6k ['ABBA']\n", "track 44q30IXpOZmBRjSttk9xQr ['ABBA']\n", "track 3CkwYre0iOSZci1vfcXjU1 ['ABBA']\n", "track 1y9XODjRY1EmP5mg9xGXr3 ['ABBA']\n", "track 5sdH5ijUC8AADaU8BHHS3D ['ABBA']\n", "track 0jPLRJFIKHwsQlCMuUdX5b ['ABBA']\n", "track 4s2i7q0fjIDE7Zzh6XpATL ['ABBA']\n", "track 47jMK22lqzwpHA6rOQaJ2F ['ABBA']\n", "track 5fc6VBWKqT8Q4zjtRysp5X ['ABBA']\n", "track 1LfXw8tYiCSnVgT5T6Fvhi ['ABBA']\n", "track 1boBmDxiUGddjbPeHna0nH ['ABBA']\n", "track 78FoZQFqnYkPtLJddLDOYJ ['ABBA']\n", "track 0uVXeXRsQ4Y3DaOOL3zLE5 ['ABBA']\n", "track 1n7qDYlqCTyr7Ra4hZOOzs ['ABBA']\n", "track 5UcoZl2PCSurHo74eQt5q2 ['ABBA']\n", "track 3VuxijNYhCBNazMf813Ek4 ['ABBA']\n", "track 2xahRAFmusWsihMrurKtim ['ABBA']\n", "track 7B7Rxo8WbvWbDXCVpkPdFO ['ABBA']\n", "track 7rz7Tm5IRtQSjyY89REvc9 ['ABBA']\n", "track 0RIO72LIEdsXHravAPFROB ['ABBA']\n", "track 41PEXgKR6dEN8ZBdZoahfh ['ABBA']\n", "track 3RQlQoZJt86Pg8Nyu0nJVJ ['ABBA']\n", "track 2mYMyKGZW1YHkF9OEFu29N ['ABBA']\n", "track 0eNdeyC4udHDfgpVb3pawB ['ABBA']\n", "track 23laZwrPxmdRq6NODFUluS ['ABBA']\n", "track 1U5NJIag7XcWBISaQDkvdw ['ABBA']\n", "track 6IyG7P3AX3msqwIwFWlimm ['ABBA']\n", "track 2LDKiKMLE6jpJPJqOAeJ3Q ['ABBA']\n", "track 2UmD1bQ1LxWfCKsgnmlM9A ['ABBA']\n", "track 25GMBsl8ZnGvn2SszmBdz3 ['ABBA']\n", "track 3U7Fz2f4ii92c7SomkYP7S ['ABBA']\n", "track 2xlsgIyevpAtXcVXEk3PY5 ['ABBA']\n", "track 0kLSZq7eCsNTymH80N4LYo ['ABBA']\n", "track 4A0LoiKVGpbnEWQvBwpwl3 ['ABBA']\n", "track 19Gf68A2MZPr6fYlxLhmU7 ['ABBA']\n", "track 4fQ5YHVAtvY71q2gETPPli ['ABBA']\n", "track 38lOHYvkVTieYZovbZvVLR ['ABBA']\n", "track 5xqkUSmzGsqKKwvCBEK89Q ['ABBA']\n", "track 5YX2N5OwBZBcsdHuK2mKyD ['ABBA']\n", "track 6BsYbSRLRroP8FTZ9AxWTm ['ABBA']\n", "track 1GIH43Iy0VhhJ7a00wRy25 ['ABBA']\n", "track 4C7Om6Ucgg0ReCwzfWMq71 ['ABBA']\n", "track 3TQJ75S8EOINzp0lHUT5MD ['ABBA']\n", "track 0YGAiW1bOJPfMd69DWtmQX ['ABBA']\n", "track 3NHR4rVd31G2wZ2m6JNM3D ['ABBA']\n", "track 6pVTUfVTtDcsfuSBoqo1w8 ['ABBA']\n", "track 4a2YfaJ3wzrbOq1b5o8CDq ['ABBA']\n", "track 4QNUfkpMSHdllq9lsVeyRg ['ABBA']\n", "track 7AMnWNkwYPxaVDgkwmEEKj ['ABBA']\n", "track 48PrL49eJ5P15yTxjK0oW6 ['Foo Fighters']\n", "track 4JWRyetq4ALHAXm9ByOOEg ['Foo Fighters']\n", "track 2ceA7CWWx6yIHdzppN8nLF ['Foo Fighters']\n", "track 5UWwZ5lm5PKu6eKsHAGxOk ['Foo Fighters']\n", "track 7pS2OVdIWviLpz5GOtJLzz ['Foo Fighters']\n", "track 5EwyzrFLXlcnPenrPQ9DlO ['Foo Fighters']\n", "track 2HI7NJhgxsxMVWtLNAmkxh ['Foo Fighters']\n", "track 5pZvElOhhC7VGEBMys5hEc ['Foo Fighters']\n", "track 59qQW1tOhDxbkHKMPB3vwJ ['Foo Fighters']\n", "track 1pbYEdmXxMMQgliPdTK7fX ['Foo Fighters', 'deadmau5']\n", "track 7x8dCjCr0x6x2lXKujYD34 ['Foo Fighters']\n", "track 2XvrMHbSO077Ajg7QTTNdY ['Foo Fighters']\n", "track 5t142J9jQl1aaajsbxGjwg ['Foo Fighters']\n", "track 0bORa4VpL8NzyMXEI6UFGK ['Foo Fighters']\n", "track 4P4s2KHOw0uISbLI3zkHtD ['Foo Fighters']\n", "track 7zaZlzl0XhthNwH3GQcyZ0 ['Foo Fighters']\n", "track 5w4s2ccJcpiNlajHVGtHDg ['Foo Fighters']\n", "track 0cA5yQFQAfKjf64QHbPqss ['Foo Fighters']\n", "track 2OSFREMR9mE2kiByPL3g71 ['Foo Fighters']\n", "track 4SMbJ6BAY9LdudY8v7HJpH ['Foo Fighters']\n", "track 2fDVMNQmFuMORDD3dP7GkN ['Foo Fighters']\n", "track 5i5juPvTbxb6PVSuAFOsnQ ['Foo Fighters']\n", "track 579jpmKfLZfk1gwL7s2lXO ['Foo Fighters']\n", "track 2M89czls4iL4UaGx9Sh4So ['Foo Fighters']\n", "track 2NgGZLoYcPfE4WWrJ1uSor ['Foo Fighters']\n", "track 5oCMnpuRd3rUL9clNWbjr0 ['Foo Fighters']\n", "track 1TQ9HF8LMlOTAIJeX472hk ['Foo Fighters']\n", "track 7LebjXLsIxOnS05G8rYIAl ['Foo Fighters']\n", "track 6CZyezhfB1LTc3m4bS9VfD ['Foo Fighters']\n", "track 21mnIcLP1cDTmAZdUiSeYp ['Foo Fighters']\n", "track 5OsCYPDUDPyoaVobsCwMnt ['Foo Fighters']\n", "track 7ag6djt26GrEb5nqxHro6U ['Foo Fighters']\n", "track 7gggcq4riT0xZCfxBd5cNG ['Foo Fighters']\n", "track 6qORTBt1D4E31vVvwGOMWD ['Foo Fighters']\n", "track 4JfhB9Kr0y2Gu0VNL79Dz1 ['Foo Fighters']\n", "track 4MOHOrZFnYeNcSGSl6UyPn ['Foo Fighters']\n", "track 0gXZYvZfmmCLz4Wl1rnSs9 ['Foo Fighters']\n", "track 6BDF9S8M9qU4jOd5IjxoFo ['Foo Fighters']\n", "track 47j1q4BTpQghINXlf5gTDH ['Foo Fighters']\n", "track 4VdSBrdM55T8QXdjrOAXvD ['Foo Fighters']\n", "track 3ev3JkW4mCru1pwO3g4N8d ['Foo Fighters']\n", "track 0GE8sVpRYoMamNcfLGObxY ['Foo Fighters']\n", "track 1Kr0tmA5iWITCQljsOT32t ['Foo Fighters']\n", "track 35ZHzUnfmKA01F2GmEx6T5 ['Foo Fighters']\n", "track 1yYYdQ94FEyWAt1XtldifW ['Foo Fighters']\n", "track 4uTi7sKEUmvVhSAqXJC5Kg ['Foo Fighters']\n", "track 6klzQUk22YkppyrWlf5NIt ['Foo Fighters']\n", "track 4yz18uIDy2g7gGH4wSfJTc ['Foo Fighters']\n", "track 06s6aloy62vytl3MnT6gfl ['Foo Fighters']\n", "track 2YVYq26E3XpUHjllzXHj8z ['Foo Fighters']\n", "track 1152S957C8U9O5oFJxEQ8I ['Foo Fighters']\n", "track 35OjTv3e5arNbGoCgfJ73Z ['Foo Fighters']\n", "track 06LzBUkKZpPAWiEwB6iVri ['Foo Fighters']\n", "track 2MKEQhvPb2VaJXjx5X8Yg6 ['Foo Fighters']\n", "track 5FZxsHWIvUsmSK1IAvm2pp ['Foo Fighters']\n", "track 1QZFn6QUNHfCp8s06C91hw ['Foo Fighters']\n", "track 7xT9J7vWvVEx7AfrNZBcZR ['Foo Fighters']\n", "track 10gtVK2wMCv1HzjhHKnFnw ['Foo Fighters']\n", "track 6OuwrRwl7q5VVpPREsx4j7 ['Foo Fighters']\n", "track 6Nt5aSBZC3Rs97mQeNzICw ['Foo Fighters']\n", "track 7nO47INYJ98touXCXOM1ui ['Foo Fighters']\n", "track 223Iqe4eRgg7ReO6JFCx8P ['Foo Fighters']\n", "track 2wvfMTbZDPzpZhOt7z6tVo ['Foo Fighters']\n", "track 3trcjkAjWu8qK60f4lKkGS ['Foo Fighters']\n", "track 48ktarzxsErc0CbMysLGDw ['Foo Fighters']\n", "track 7IznnRqG5qJihAFZFPOq5l ['Foo Fighters']\n", "track 7cxAyJ1UcrkejC7fTTZcUV ['Foo Fighters']\n", "track 1ct1ICmKoBb5zsU4zc53bd ['Foo Fighters']\n", "track 39kHMfF3dBMZMbOtoit1XF ['Foo Fighters']\n", "track 2Ei5auE9kCmwKB2JZtKPKO ['Foo Fighters']\n", "track 02O71P5xudugRmFCFsQe9E ['Foo Fighters']\n", "track 3G6xjB96azqSKV3uU44Bmt ['Foo Fighters']\n", "track 3j8ja2Hq824OaRqIENJPTH ['Foo Fighters']\n", "track 5f8vUklSZ6EoaqA4aZyeMj ['Foo Fighters']\n", "track 67vYdAAM3oGsEImCRfbtsF ['Foo Fighters']\n", "track 3pFKhFvx9oVQMd0OOQ5Sqt ['Foo Fighters']\n", "track 4RH87gcPiBZneI200rM6C5 ['Foo Fighters']\n", "track 2j2XkrTVjq7i9GViOQPROS ['Foo Fighters']\n", "track 4NPI2n6mINvcgNejPefpoY ['Foo Fighters']\n", "track 5kxa7byBuZ5MuY7RrIyRL6 ['Foo Fighters']\n", "track 4fYaRsv3SeLuwbqImVvxJt ['Foo Fighters']\n", "track 6FIJGWyovgbmDkjMp6a5x7 ['Foo Fighters']\n", "track 1Q0KFOFDJLAhtlzWWXtC44 ['Foo Fighters']\n", "track 7CusfLU24r4xtaOccowvXb ['Foo Fighters']\n", "track 0TxxdiZgO92Q6L7M19PVWe ['Foo Fighters']\n", "track 4IHPDCQEhk52UcJJFpdy5f ['Foo Fighters']\n", "track 2HjXmTHd2UsGvwhuRzN1Ll ['Foo Fighters']\n", "track 0HHqPzcuK9902hbw9eF1RH ['Foo Fighters']\n", "track 40Gxnw5Vc8hnhGFknXHe3R ['Foo Fighters']\n", "track 01ERgmlDJjGYFXkBLgRTFp ['Foo Fighters']\n", "track 0nmg2Tp6qMZbFPpflMaESf ['Foo Fighters']\n", "track 2ql32BJPN3hnyboml4JfER ['Foo Fighters']\n", "track 5f3EwgtQJ67K0ppuUSiMz1 ['Foo Fighters']\n", "track 11UCYTNMwm8tCj5Rbssfk8 ['Foo Fighters']\n", "track 6AkiI0eJFnJFAGcGNTq4m1 ['Foo Fighters']\n", "track 03FOfjgslRY2218D6gmTYN ['Foo Fighters']\n", "track 2e4Gxa6HHJ3W0URlEs4csF ['Foo Fighters']\n", "track 2H3lCrE5vBA8206RgjtFc1 ['Foo Fighters']\n", "track 158nFMptPuI3UphKPg4UJo ['Foo Fighters']\n", "track 6MngsvtGry5gsOeL1BQG41 ['Foo Fighters']\n", "track 4Lmnjli42FXWzcRMnyflDt ['Foo Fighters']\n", "track 1N90Eb3uBO6sloLqlPVNHQ ['Foo Fighters']\n", "track 4Nbgrgycir03NHi29bQdji ['Foo Fighters']\n", "track 22ZPiXDpAnTe4YLkUCtOqI ['Foo Fighters']\n", "track 5VQA0ccXFNlAJnqc8CwNOi ['Foo Fighters']\n", "track 6BwcHXNSwca4mgvuxdd0UN ['Foo Fighters']\n", "track 2t8SChpFedMXG9IoQ3kGbU ['Foo Fighters']\n", "track 4l3fesCQbpExU9qpZmdvv1 ['Foo Fighters']\n", "track 2znVZZnuximsRf1amFYLGJ ['Foo Fighters']\n", "track 1vziI0NCJKrqKiG94COHBa ['Foo Fighters']\n", "track 2kh0u2d2YKQ7BCqeLPdHk6 ['Foo Fighters']\n", "track 5OQsiBsky2k2kDKy2bX2eT ['Foo Fighters']\n", "track 3zgFz1o1N0hMHDzXS0fpIp ['Foo Fighters']\n", "track 592nTDJAy8AucV4KKIDCmA ['Foo Fighters']\n", "track 7dIh8FF0EzYKS8STv3v4F4 ['Foo Fighters']\n", "track 6olSqj5lSv0Fy8iB0MUU5c ['Foo Fighters']\n", "track 1WwWjG2FGbBK6IkBBTknao ['Foo Fighters']\n", "track 4yFrDbYg7uxKKn31CojuxG ['Foo Fighters']\n", "track 2ifYUfvMNbXQDPJEyk68rP ['Foo Fighters']\n", "track 7kxTnvOsp5h9KlHxKNud0r ['Foo Fighters']\n", "track 2KvhVhBR7MIMZUQNRBiY2k ['Foo Fighters']\n", "track 44wXefe8WB9Fd6xwtmAwbR ['Foo Fighters']\n", "track 0M5xRyxGpFFDfzN2x0wdpH ['Foo Fighters']\n", "track 3yIUusX4NApzRSAkxZFrJg ['Foo Fighters']\n", "track 6f7WmE0VZFkHpOBHtYsIRd ['Queen']\n", "track 4jtYkaxeQg2yjPRZQttd9I ['Queen']\n", "track 2NLieQnR7jDbbdkNo5XCcE ['Queen']\n", "track 5SUtHh5zmFAHNwLweqSbeO ['Queen']\n", "track 56ucsSaTrjiQaokbbDASOR ['Foo Fighters']\n", "track 05TcC5ZN9rp8Glx8A9C2Nd ['Foo Fighters']\n", "track 4dVbhS6OiYvFikshyaQaCN ['Foo Fighters']\n", "track 44yHNmayqe7dI9fHjAYPCl ['Foo Fighters']\n", "track 4ZnD7qmpP3NWA1ctUzeUIw ['Foo Fighters']\n", "track 2wO8aOvN1ogLy1N8XT1WJE ['Foo Fighters']\n", "track 4LGKzrdEeBwR9UHCGlDT0W ['Foo Fighters']\n", "track 6pb5BBnIM5IM7R1cqag6rE ['Foo Fighters']\n", "track 5XUpAb2zC8G404RPkwb09H ['Foo Fighters']\n", "track 2styBKRBhlZwPl5geag8KJ ['Foo Fighters']\n", "track 5tULmRxZrbnzh32H3ZIghu ['Foo Fighters']\n", "track 5FafTKnxl219ZUWFzaufRQ ['Foo Fighters']\n", "track 1Oy0vCHc4rUCOphROBbPSd ['Foo Fighters']\n", "track 6CbeOOrDFQuY1tXYscKqZQ ['Foo Fighters']\n", "track 7rKm5BfLqxYko007wiamnm ['Foo Fighters']\n", "track 7lMGc58V3S7lD2SLNRdOKx ['Foo Fighters']\n", "track 3OG5wVO27N3HtdtxPLpPFt ['Foo Fighters']\n", "track 1wLQwg0mloy3yXjL0jPE0N ['Foo Fighters']\n", "track 33OVwHAdsrJELptAp74TqW ['Foo Fighters']\n", "track 3kdMzXOcrDIdSWLdONHNK5 ['Foo Fighters']\n", "track 0MfVTButkC0WU7aUcIskU6 ['Foo Fighters']\n", "track 5lnsL7pCg0fQKcWnlkD1F0 ['Foo Fighters']\n", "track 6JSryEdVJTZq6YBn3wK2sn ['Foo Fighters']\n", "track 5jwCEcnS7IXWhD4KuunEDE ['Foo Fighters']\n", "track 1tDM9ElAIOimEPBEnkXqe2 ['Foo Fighters']\n", "track 7hlLPJo0pxh1jQUERqf5O2 ['Foo Fighters']\n", "track 5Y1A4C3ojxHCadg0wMFlJ0 ['Foo Fighters']\n", "track 6REiraH7Pe3akd0mkFA4l9 ['Foo Fighters']\n", "track 1M4Wy6jRce1x17qyE7yQAB ['Foo Fighters']\n", "track 40cLVGkjzcZ5FJ3vHkXB0e ['Foo Fighters']\n", "track 1cVRidDVfNJ61dlXhCagOT ['Foo Fighters']\n", "track 5BfbdJLRp9gUyyxeGJUECL ['Foo Fighters']\n", "track 0MXosG7BdA9uukm88V7zAD ['Foo Fighters']\n", "track 3O2de2JdIqnVVb5SBpg6wm ['Foo Fighters']\n", "track 1jH0OiLvqyyhUOEUu61XPI ['Foo Fighters']\n", "track 0bHD1nLe7Nhw55ZGJ92332 ['Foo Fighters']\n", "track 7v0mtl6oInUtHOmTk2b0gC ['Foo Fighters']\n", "track 6HeFCUg1F1v0bnE3JFTlxz ['Foo Fighters']\n", "track 57dem1V7wz8owejklpELCh ['Foo Fighters']\n", "track 5TOYgNohZAFEPOtnchPhZS ['Foo Fighters']\n", "track 2kN05N1AQQplsgFweFAqYb ['Foo Fighters']\n", "track 0xMgRt36DpWa7QKNYZy0e4 ['Foo Fighters']\n", "track 46GHi1UJz1yEumZcMkbJN9 ['Foo Fighters']\n", "track 2u5OWZVjfuS85zTX3t4lbe ['Foo Fighters']\n", "track 042RaY48TNY9aesv8fqYTf ['Foo Fighters']\n", "track 76Je5Wklky23mVoxiRszcN ['Foo Fighters']\n", "track 2soQIPoX1OkseT47iOftr2 ['Foo Fighters']\n", "track 54hKdgpetDyrGQEAQwrnPQ ['Foo Fighters']\n", "track 2LvUuLo5KB3UB5CZMJxnwG ['Foo Fighters']\n", "track 1QVfTBfHPlNrwTkhrESUix ['Foo Fighters']\n", "track 5J5JyV2QG9msOTrOibyCLt ['Foo Fighters']\n", "track 0qZrIzJYvGba1xfzDbNeyf ['Foo Fighters']\n", "track 7g0bEBVTVpN8nBxYQ2IQjG ['Foo Fighters']\n", "track 2RAtTMH6XtCefJP3A5fCkj ['Foo Fighters']\n", "track 6tsojOQ5wHaIjKqIryLZK6 ['Foo Fighters']\n", "track 6TILMYN7gaJNzKLYhF1eGP ['Foo Fighters']\n", "track 1HNJU5jqp2LlIHqsdrjVUo ['Led Zeppelin']\n", "track 3QtvRZRFvXokE3FXmTwZxH ['Led Zeppelin']\n", "track 1JgmEZPHFMYaM7qZS2tFDZ ['Led Zeppelin']\n", "track 2tpwq7jIxPMrte2PmDdOI9 ['Led Zeppelin']\n", "track 4lZjT7PLaWPIcm2InIDU2k ['Led Zeppelin']\n", "track 0hA8maRb2nNNJBMk5VZyvw ['Led Zeppelin']\n", "track 0IxtJOcnoS2DPmBfV2HDfW ['Led Zeppelin']\n", "track 0h2gzJQBt6duqZD6kWiz4s ['Led Zeppelin']\n", "track 2W76zIzxrSLb5dqLz6s2tJ ['Led Zeppelin']\n", "track 4uxti0X0LKCVhrWDoJs9HK ['Led Zeppelin']\n", "track 0jgCqv5kHcXaa5E6pplkIf ['Led Zeppelin']\n", "track 4VoyZbJU4S0qFDr0PmjOqL ['Led Zeppelin']\n", "track 6AhZVsDudTq5KdJ5LbE32f ['Led Zeppelin']\n", "track 6rmEV2YtvWkigxPZocINO3 ['Led Zeppelin']\n", "track 2e61kmae4HhbuS9hYONQ0A ['Led Zeppelin']\n", "track 39HPNIdWUse9mLDio9dxwK ['Led Zeppelin']\n", "track 69lH8EQMuHWx9f8QKpiddJ ['Led Zeppelin']\n", "track 1S1vypzJvsPQD3yriNFNdu ['Led Zeppelin']\n", "track 6nx1JCehhu4N9j5qNALyTu ['Led Zeppelin']\n", "track 4YsNkF22bkppExAF3kOTYv ['Led Zeppelin']\n", "track 4ItljeeAXtHsnsnnQojaO2 ['Led Zeppelin']\n", "track 5166PYRq6DboQxf7XiXuJ2 ['Led Zeppelin']\n", "track 4KM9TyVRbsLENiuai9aqup ['Led Zeppelin']\n", "track 0LGbi3gWKwIV8pwT7MOaZR ['Led Zeppelin']\n", "track 0QiwAGQxilwf02QhnEuMLd ['Led Zeppelin']\n", "track 0N1qwteKuXxAIKUo9FW10v ['Led Zeppelin']\n", "track 4VBNcgHRiBZT55hdvRRRbA ['Led Zeppelin']\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "track 6pFGE31glbYE6OQMaSHisz ['Led Zeppelin']\n", "track 0lybbSQhxgrHj7OsXoBT4h ['Led Zeppelin']\n", "track 6QZnIJMzKGdkUd3AGcHwkv ['Led Zeppelin']\n", "track 0vqy9wH3X3RjgrnmGaHfIW ['Led Zeppelin']\n", "track 51fBpLsMRfOqQX1rWLXHgD ['Led Zeppelin']\n", "track 3eZcV1AcZQqGryhQFsfECx ['Led Zeppelin']\n", "track 7eFmDRDdqsgo7uCqPBi7iA ['Led Zeppelin']\n", "track 5Eq3PrZaSdBq5byckJMZfm ['Led Zeppelin']\n", "track 1ibHApXtb0pgplmNDRLHrJ ['Led Zeppelin']\n", "track 6ly5DBm7QhjU8RQWl2neJg ['Led Zeppelin']\n", "track 0AOnpRWH1YSIjOP8g5fFLw ['Led Zeppelin']\n", "track 1NV6sCADgcLSW7DG7zSWlq ['Led Zeppelin']\n", "track 5EA85PEatJC4WCAN0c0U5j ['Led Zeppelin']\n", "track 2256UUbtBrQJSrbzYpDviT ['Led Zeppelin']\n", "track 28PMkoSk7yRzC5u8ujbWmZ ['Led Zeppelin']\n", "track 7kMMTfdIkDJpmrkxBlVwEf ['Led Zeppelin']\n", "track 49u4hT2jJx1l4u5UeUFMZs ['Led Zeppelin']\n", "track 4IrVIRySTJwlsx99TRsu81 ['Led Zeppelin']\n", "track 7CqltAb6kPnOM7ydR3nk5a ['Led Zeppelin']\n", "track 092ztyofpThkR0vAOEJNtc ['Led Zeppelin']\n", "track 0xOYmjOSboHaeDTmGqJtz2 ['Led Zeppelin']\n", "track 4gUwPRXZYTyQy9qKVFJORT ['Led Zeppelin']\n", "track 1MmxrJ35NzNxHjPdyKDhut ['Led Zeppelin']\n", "track 7bfGPuAmV6iCnB0BU9RmtJ ['Led Zeppelin']\n", "track 7N3Y4E7PAHdnsTsU9QeXMg ['Led Zeppelin']\n", "track 7cvd4t90We2jgQKK1gYSbu ['Led Zeppelin']\n", "track 2zN2AP9VYhmYkNMP67ts69 ['Led Zeppelin']\n", "track 4wnTYOZtkC9rPqz3SuEEDE ['Led Zeppelin']\n", "track 0qLlsV6ifpyzW2wCWgbHpy ['Led Zeppelin']\n", "track 34BFHgkbQ6rtryMdEPhIjM ['Led Zeppelin']\n", "track 1NsfPeswtqCPegdM8Ub43y ['Led Zeppelin']\n", "track 5HlLgmHL8qafp46jMtlxZJ ['Led Zeppelin']\n", "track 4r8AQvzullpWTDpgv70KxD ['Led Zeppelin']\n", "track 4EUe6BsZm5wZLxOTaV3kDX ['Led Zeppelin']\n", "track 0d0Z9qFbTIgDSZtImluTAy ['Led Zeppelin']\n", "track 4lPJoKw24HizeIcDLqaWeE ['Led Zeppelin']\n", "track 6Vjk8MNXpQpi0F4BefdTyq ['Led Zeppelin']\n", "track 343ctUuXfw3vnE2eN7cURN ['Led Zeppelin']\n", "track 5NfzVueIjM2uwu7UWTvZAU ['Led Zeppelin']\n", "track 6M5m8gfTj3rhYEPDzLmdL4 ['Led Zeppelin']\n", "track 0lrTkq310F22Eyv7yolL87 ['Led Zeppelin']\n", "track 5tLacvgGxftjiWhddXuUn5 ['Led Zeppelin']\n", "track 26yQ7ty7PQBHxqSFGoaORp ['Led Zeppelin']\n", "track 6IBn2H6Axqg4mc4PZW6jRz ['Led Zeppelin']\n", "track 2wV6F22JUYYhVidQZgcWrH ['Led Zeppelin']\n", "track 5YJzW4mHvrhUk3owAvNlU8 ['Led Zeppelin']\n", "track 61g5yH0ig62XhtQ161kEED ['Led Zeppelin']\n", "track 2Kka8ruBg8jCabrZyAVEHS ['Led Zeppelin']\n", "track 0OYT5PxZXFBMXGjI8OlP4A ['Led Zeppelin']\n", "track 3r9B2UasogxeNIu1ketFNl ['Led Zeppelin']\n", "track 5lHlPa1RZXElMkqnGs3Kp6 ['Led Zeppelin']\n", "track 5eY0U7Xoyszegss3OQ0DLr ['Led Zeppelin']\n", "track 3hwRLIop9mHDDhKF4IIdx0 ['Led Zeppelin']\n", "track 5LAR2sW7fNWoSOci6i25Bv ['Led Zeppelin']\n", "track 3KCT8vm2H2OEUeS99ID6W1 ['Led Zeppelin']\n", "track 41V50mCQUR8JJmbZ66Mnv5 ['Led Zeppelin']\n", "track 13Wv5Sx8gm5fEkFSIauM5o ['Led Zeppelin']\n", "track 4k4tFDl5rmRAA7L7gIjBTI ['Led Zeppelin']\n", "track 61p7OkY6r9uwHJcqZW5utf ['Led Zeppelin']\n", "track 3DSkrxetK6Xigh53HhzZiY ['Led Zeppelin']\n", "track 3tcaltthSz9s6awB6koVRo ['Led Zeppelin']\n", "track 6GXlXAfXR7C6u1VjR3VMsm ['Led Zeppelin']\n", "track 1RIsAtnYOlo8zGMycNFioq ['Led Zeppelin']\n", "track 0ducHx1R45CnEloZ6tUVuC ['Led Zeppelin']\n", "track 1uBMgVAUYLnzVL5uQT88FP ['Led Zeppelin']\n", "track 3Qjm0halGOZZGIS1tNaXlI ['Led Zeppelin']\n", "track 3I7a9joX0lJnK9XzE38GnD ['Led Zeppelin']\n", "track 2uuMXKKmdXrY2XxsqTsGp0 ['Led Zeppelin']\n", "track 3Wunwn44wcWRNB4zb03AvA ['Led Zeppelin']\n", "track 7HQrFPtLEpgTJaEVujH8OO ['Led Zeppelin']\n", "track 3nsUVlntPIksDvhHdZZhiu ['Led Zeppelin']\n", "track 3BGwxsmbbOe2jmZfh5CUAO ['Led Zeppelin']\n", "track 12wlYeErSUNGg1B5d64077 ['Led Zeppelin']\n", "track 6gQOsok1o9YY6vU1W5ZzWX ['Led Zeppelin']\n", "track 35XlkvHy9WHPI4Tf9eax4t ['Led Zeppelin']\n", "track 5iNr7y6iWNkwVvVeOXSLT5 ['Led Zeppelin']\n", "track 55ZL7fjGAWfClmpnsK6Xon ['Led Zeppelin']\n", "track 6mkBbzyfK0EpywDk17taBg ['Led Zeppelin']\n", "track 5kxqPQ5Gasw1jXyBDCPDkN ['Led Zeppelin']\n", "track 5v2vkoTamoisazJFanHJjk ['Led Zeppelin']\n", "track 4KF1kzyeyPrgafyVm2UgQg ['Led Zeppelin']\n", "track 4wCMKxkE3eMOTtlAx0NFEM ['Led Zeppelin']\n", "track 7uBnSdqm07uMBrp7nBmMu9 ['Led Zeppelin']\n", "track 5UdShl12E6eHEgS8lQ1bPr ['Led Zeppelin']\n", "track 67Lz08zMENfQzIM89q0fHb ['Led Zeppelin']\n", "track 49IBb6WzrczGYkBjLvaE47 ['Led Zeppelin']\n", "track 7Bu9aGUlSbz6TkhWu5Ak11 ['Led Zeppelin']\n", "track 1xmGbzA3USytTWDpc1J9uY ['Led Zeppelin']\n", "track 3JbDFbqBCJ8eqg5e4afOPE ['Led Zeppelin']\n", "track 1rVObR1gsN5yNhqPjIxCH9 ['Led Zeppelin']\n", "track 0fxYJx2oPA7M9WuGrAO5jV ['Led Zeppelin']\n", "track 3KJfKsJFkO7tIqj4G1Gpur ['Led Zeppelin']\n", "track 0dF6YJZPOUCo0xwsNXfxbu ['Led Zeppelin']\n", "track 5TxAcTRX8KeHfyt7jH3p4U ['Led Zeppelin']\n", "track 6gKinzbtSrPWjlG5vxgYAM ['Led Zeppelin']\n", "track 4SroOfTLJpETPyE0dcCEfc ['Led Zeppelin']\n", "track 2A427Peq0qn5XTwg1g3jz4 ['Led Zeppelin']\n", "track 5YIGjwbAdKqlAFvtdQXc03 ['Led Zeppelin']\n", "track 49gK7IgvdjZDcei0HJ8yYu ['Led Zeppelin']\n", "track 1vv0T4icyIPhEgzeVmQG7E ['Led Zeppelin']\n", "track 3rJ3RO0egiDxdPJ8uXfZYQ ['Led Zeppelin']\n", "track 3PlLcWK6LIJcrHe2OOR9z9 ['Led Zeppelin']\n", "track 22xTwPtwubGTYwTbwAJIeD ['Led Zeppelin']\n", "track 78WaBhq9Mf60WbZDDKWato ['Led Zeppelin']\n", "track 68vnSbB07XyvL115UJ7j1v ['Led Zeppelin']\n", "track 2WWaTlRUhwOOMtd1yaQISN ['Led Zeppelin']\n", "track 16VhHtoaOjTU4AJBNSBNQ1 ['Led Zeppelin']\n", "track 50B4cVWKkqpSTxWG9xhMXo ['Led Zeppelin']\n", "track 6oqciM0WBIxBmRPoOL4iNF ['Led Zeppelin']\n", "track 596s59vwvjBLQ6OAQc9TQR ['Led Zeppelin']\n", "track 3ELgDnRctxyKerclUQTr7K ['Led Zeppelin']\n", "track 5qxk29klthBlLT42dzimO7 ['Led Zeppelin']\n", "track 4UbfGyhLsp4blVMSX49mWD ['Led Zeppelin']\n", "track 4hNsBELiuvPHDgEQvKJqsA ['Led Zeppelin']\n", "track 5h32ElaHxUjVCyMRb5snh2 ['Led Zeppelin']\n", "track 1TdeOVizQgzr4ul5BxfTlc ['Led Zeppelin']\n", "track 7lDUgEhAtLsPpnWxtGqDes ['Led Zeppelin']\n", "track 4KTsBb2UxDF6xXRUDaAOPS ['Led Zeppelin']\n", "track 3KRsqkuB9NrjYRhIRirRWT ['Led Zeppelin']\n", "track 5wukyNccQJlVbIz1yluAtY ['Led Zeppelin']\n", "track 50Q8UxVcylDM1XMxjgXQ2m ['Led Zeppelin']\n", "track 0mFvyXWpsxhewV0s8zSB3w ['Led Zeppelin']\n", "track 7fUMMlG7qYfpIzi5YnsSpi ['Led Zeppelin']\n", "track 5iJCAZlmEXMG24BcZYV9j5 ['Led Zeppelin']\n", "track 7z5g7lORw5cqAmzvTgJyvm ['Led Zeppelin']\n", "track 2WNvfN4GJl0mCkLZviK48P ['Led Zeppelin']\n", "track 7FvEP1wqocKmOL0mSzi2BV ['Led Zeppelin']\n", "track 18Dk8jvMPHXQPUdfREma2P ['Led Zeppelin']\n", "track 5OGPjlTOXvKFhnCy9zSdpv ['Led Zeppelin']\n", "track 23FeHDJaegIZF0dpH4x1Tf ['Led Zeppelin']\n", "track 3i25w2HOWoafnTIiWJCL71 ['Led Zeppelin']\n", "track 5K2yYEoc9ljOlzoMnhQSgm ['Led Zeppelin']\n", "track 0YZKbKo9i91i7LD0m1KASq ['Led Zeppelin']\n", "track 5hhVpGIBlqAU5yJEOmrk5o ['Led Zeppelin']\n", "track 1k0GJSTI0xaP8TIvCbyUkh ['Led Zeppelin']\n", "track 2fvLQe9ZlRaEJ5o4sG3TbM ['Led Zeppelin']\n", "track 7v3l2PEaxnex3NylNusT4Y ['Led Zeppelin']\n", "track 62p6fF2r4NY6pwZbxxvmr8 ['Led Zeppelin']\n", "track 3dK54dSsNcIUcYKzNh5FgI ['Led Zeppelin']\n", "track 4qFBpsSVqmwf8QmaVXFRXP ['Led Zeppelin']\n", "track 6lrh9jZ1xoMwoErgPSj2rY ['Led Zeppelin']\n", "track 5wl6K8IW1DsZNIC9ktVE7B ['Led Zeppelin']\n", "track 77uEMfkWunpOQLBipwd7tA ['Led Zeppelin']\n", "track 1RbudPCfWPWKs1ogiNnUOT ['Led Zeppelin']\n", "track 43eKzcAM0h6xGVaEyCcpZW ['Led Zeppelin']\n", "track 055bKlvn6NJwdkvLBejaAj ['Led Zeppelin']\n", "track 5uUCkI3gFqiFvbw9FCX2nl ['Led Zeppelin']\n", "track 1zbVEZybiQnchziPqhTqPP ['Led Zeppelin']\n", "track 4hyefxqChxglauxJhbCIgz ['Led Zeppelin']\n", "track 5XBSCl1JMBeJiLMRzWnJ6u ['Led Zeppelin']\n", "track 40FflFy3FGPax5bbGWOU5Z ['Led Zeppelin']\n", "track 0if9el1gAypHIJ2S7zGUQP ['Led Zeppelin']\n", "track 3mrGHoeLDWSEMnVr8bs6y0 ['Led Zeppelin']\n", "track 70EBSRM3wSyxVY5Pini77a ['Led Zeppelin']\n", "track 0BochXUxV1vjmkGIfVRXpi ['Led Zeppelin']\n", "track 5zTX9sl93oTNuUiOmgq5Cc ['Led Zeppelin']\n", "track 6unmtLYQ2LQ1Cg4IdAiU9g ['Led Zeppelin']\n", "track 4i09E6a5vOsIIHb7wpyftz ['Led Zeppelin']\n", "track 3t9Gt4luM1yDfKIljQdiFb ['Led Zeppelin']\n", "track 5gwign6hATXgMHxYrRix9L ['Led Zeppelin']\n", "track 2hXhzBwIcrfQQUdelpLZXH ['Led Zeppelin']\n", "track 2wjONj1QX8czcIpjwxyKHA ['Led Zeppelin']\n", "track 2mYpbsbzCM3dqrM2XjgSjh ['Led Zeppelin']\n", "track 1PpSenBXeetCWotWWrtYgg ['Led Zeppelin']\n", "track 3SeGamJ7Wnazlhe8ukbY86 ['Led Zeppelin']\n", "track 5cgL1YdlGWR5KfncpAGFQk ['Led Zeppelin']\n", "track 4hLQfgtzEyxme6w5GiwAEy ['Led Zeppelin']\n", "track 5g9VOUgrn7ozYE3ZQm8w41 ['Led Zeppelin']\n", "track 4es5wreov9D4Y4fXLGZkuB ['Led Zeppelin']\n", "track 2g7iUTiLRue30KAXnesFgt ['Led Zeppelin']\n", "track 2nVHqZbOGkKWzlcy1aMbE7 ['Led Zeppelin']\n", "track 3Ch9zofxkeb5Dh1poeEhF8 ['Led Zeppelin']\n", "track 4AIJz1t4ysqOT1c5BLSRQQ ['Led Zeppelin']\n", "track 5QRD5sNh0aaWMyjTzQ0QIn ['Led Zeppelin']\n", "track 0RR8wuHHc5NqSFxhPDDBNV ['Led Zeppelin']\n", "track 3vDA1z8UmHtVLQV7McvhEj ['Led Zeppelin']\n", "track 7ecVrUYlhj6OrKTAK0oDzo ['Led Zeppelin']\n", "track 7oI0UewzZ7PS0ljPxDqh5g ['Led Zeppelin']\n", "track 2MoEFJIvt1huvOB16ggVVV ['Led Zeppelin']\n", "track 5cWIRgigrzjTjDBNXQxhAR ['Led Zeppelin']\n", "track 03ybzRUwX9zWK69fSAAROH ['Led Zeppelin']\n", "track 4AX9BMMXAZmXKRmfLSYFVD ['Led Zeppelin']\n", "track 2mxCbflovI7X3GJqodNmQW ['Led Zeppelin']\n", "track 2gJFReyGxkjBSGH7hTMMBW ['Led Zeppelin']\n", "track 593pmTrKexLeNCihWPLV4G ['Led Zeppelin']\n", "track 01E0FRixFbsbB98fg4x6ev ['Led Zeppelin']\n", "track 5X95UM2l8CHywHaYRDJPQs ['Led Zeppelin']\n", "track 6QfmPnJkxdiF74BA17sADx ['Led Zeppelin']\n", "track 3ztOzed3fKKnQhjlSlt8zC ['Led Zeppelin']\n", "track 1WjcnUqyx9Y3g6qkqQYUv8 ['Led Zeppelin']\n", "track 6n7AvsSb4TzPMHVger0qHw ['Led Zeppelin']\n", "track 5eDGkltiw0sZbi1LRhxb8j ['Led Zeppelin']\n", "track 7KfIcdv3NrWdomDqZWVnU3 ['Led Zeppelin']\n", "track 4U3jBsqRSepwtuxDXnUadz ['Led Zeppelin']\n", "track 18W1RpWFGPD2wrobPz2SXX ['Led Zeppelin']\n", "track 6tuK0GEmQvC1pLIvk9HLaw ['Led Zeppelin']\n", "track 4OLYHNc5o3yZRVfJXtwpXC ['Led Zeppelin']\n", "track 2IW9BqnMx8S4Dt75l69Js0 ['Led Zeppelin']\n", "track 35PLOzghSxoafuqZtN2o6i ['Led Zeppelin']\n", "track 3FxBYHESXWpyAsNvqBNBoV ['Led Zeppelin']\n", "track 5yCdJ5dHefpBzP6jKm5zEb ['Led Zeppelin']\n", "track 7FRe9xGRvw7Rg7cEMo8xeP ['Led Zeppelin']\n", "track 0w6iHwbB6lNUiciodxp27F ['Led Zeppelin']\n", "track 7wGaViRu4g24CDqUcnJrGp ['Led Zeppelin']\n", "track 1kOfZShwvYeN4b4UocSGMm ['Led Zeppelin']\n", "track 5xAWsRDWBaEv0aFsAAqJBD ['Led Zeppelin']\n", "track 4usCLaZPkOxZUwcbtfKivq ['Led Zeppelin']\n", "track 5RJizstczPZMmGryJVDYWO ['Led Zeppelin']\n", "track 3JLrri1xSCui3bzITDJbkk ['Led Zeppelin']\n", "track 2eDdFHgqNJltzlvlZFVDWd ['Led Zeppelin']\n", "track 7IgBLFklu75pp8Y1vphChS ['Led Zeppelin']\n", "track 43doj2cumGe9W3p5ucxaoH ['Led Zeppelin']\n", "track 5uUhS7XDkyycNa5FaNfPGT ['Led Zeppelin']\n", "track 0GRBFjza23Im7Xb16c9AaK ['Led Zeppelin']\n", "track 0AqjkVFqa1ujle4Lb1k9wR ['Led Zeppelin']\n", "track 59hhEeGGOgoPBVBNp3wxCd ['Led Zeppelin']\n", "track 2X0wYy6mbVh2GpFEYIvCp6 ['Led Zeppelin']\n", "track 5KXdflxoxCcE9m5F2QoAUY ['Led Zeppelin']\n", "track 4Tgu3ZndKjciMXUBd4Hx57 ['Led Zeppelin']\n", "track 0HBoBMAZ473sqqFP5USbt1 ['Led Zeppelin']\n", "track 6UCb3me83cyCV19sjvucte ['Led Zeppelin']\n", "track 2fQ2iALVbAZ7MkH6PaaIJ6 ['Led Zeppelin']\n", "track 3K2KSafiK1to517id5CoPr ['Led Zeppelin']\n", "track 3qT4bUD1MaWpGrTwcvguhb ['Led Zeppelin']\n", "track 4PRGxHpCpF2yoOHYKQIEwD ['Led Zeppelin']\n", "track 6MSoJM9UIFHozmBCduQRje ['Led Zeppelin']\n", "track 5CQ30WqJwcep0pYcV4AMNc ['Led Zeppelin']\n", "track 5NnZ4JJxWiqqhYNu3rwmFj ['Led Zeppelin']\n", "track 4Sc5qEOSFI5rfS9IDyu0GO ['Led Zeppelin']\n", "track 70gbuMqwNBE2Y5rkQJE9By ['Led Zeppelin']\n", "track 05f8Hg3RSfiPSCBQOtxl3i ['Led Zeppelin']\n", "track 59Zl5fFDhkGhFv0TGeyqbv ['Led Zeppelin']\n", "track 35a7EjRYYLLyH4prB1zExl ['Led Zeppelin']\n", "track 3gyroWpKKzkVkOhLJ57Tv5 ['Led Zeppelin']\n", "track 7llNWna9CEKr88Ng4vAwiI ['Led Zeppelin']\n", "track 05BTaDBhGylMDjupCczCwC ['Led Zeppelin']\n", "track 4Y4xWuvM7MKGKxECXfnKtV ['Led Zeppelin']\n", "track 7s2HYAN8PSba9OGqgTL7mo ['Led Zeppelin']\n", "track 1zLAyTaKUdiZSmOifuu2kv ['Led Zeppelin']\n", "track 0D58ERdLBDRgT86BPnH8ps ['Led Zeppelin']\n", "track 7dWfTdoKjUip1fAW7cdcIX ['Led Zeppelin']\n", "track 6KCjY5kHvgWaWcAV6BBzxO ['Led Zeppelin']\n", "track 0RO9W1xJoUEpq5MEelddFb ['Led Zeppelin']\n", "track 3frf3zTgzt3YIx9ylpUoqU ['Led Zeppelin']\n", "track 2kVhHxpxXhWr5OuuBtMLME ['Led Zeppelin']\n", "track 1YVc2NJBwOtAebQiSUbt5T ['Led Zeppelin']\n", "track 7psfcbjfnXwYIezHstNa1a ['Led Zeppelin']\n", "track 2G7woUgHMt6QBU7esQ5rsL ['Led Zeppelin']\n", "track 4hNtYwdxoigaMuPbfo3qkL ['Led Zeppelin']\n", "track 2gz5zUs2ah7IkHbbb9yOUN ['Led Zeppelin']\n", "track 5B3Zj2prDQT1VrYxXCzQg3 ['Led Zeppelin']\n", "track 3VsNds657xlzgFrbmp4Up9 ['Led Zeppelin']\n", "track 3QxkFuTanJK5c5xWOAg9yu ['Led Zeppelin']\n", "track 3NH2FJUSV3HGXZRtOc3Uwj ['Led Zeppelin']\n", "track 3UsvZGhlJrBTX2OWXh2BvC ['Led Zeppelin']\n", "track 387OSDmYALGglTMG22cvG2 ['Led Zeppelin']\n", "track 6loU3J22nyqnGkPvqxSUPo ['Led Zeppelin']\n", "track 6LMQeGaCMAbU7nlQkDdh5n ['Led Zeppelin']\n", "track 58XsfDKmNZTNG2lLqM1zkQ ['Led Zeppelin']\n", "track 2ukj6LJD9be1xklQlXmahK ['Led Zeppelin']\n", "track 0PatJrLeGt9PN2cAUG7FiL ['Led Zeppelin']\n", "track 2MuXrNoKbts2O5FZktCTx6 ['Led Zeppelin']\n", "track 0BdrS85U2cuh8a1PIaua7V ['Led Zeppelin']\n", "track 78lgmZwycJ3nzsdgmPPGNx ['Led Zeppelin']\n", "track 7jP44G0vKQLkfJ3x19pqPn ['Led Zeppelin']\n", "track 78MXICbE7bD4cuPKFh1EFO ['Led Zeppelin']\n", "track 1SDiiE3v2z89VxC3aVRKHQ ['Led Zeppelin']\n", "track 6fxcpQMUoX0ofnbIHVnVWN ['Led Zeppelin']\n", "track 4S2QZuPFZ9qeHW2sonMJS1 ['Led Zeppelin']\n", "track 4ywWJqYKOwaVVh9xXARWUS ['Led Zeppelin']\n", "track 1ZUv3ISx2nFaz0JimVdcoT ['Led Zeppelin']\n", "track 1dK6cNOMYjEP3QGYOfwP6t ['Led Zeppelin']\n", "track 63jSSgwKQtEdOVRuj85GX7 ['Led Zeppelin']\n", "track 49Y7HyMsxQegZqry19Ev9N ['Led Zeppelin']\n", "track 3jeXQBg0hRn4H1vI8PDGnI ['Led Zeppelin']\n", "track 44SYcVMbUwgSe8xx6qvzew ['Led Zeppelin']\n", "track 3oT6aHD66EiGD5SALrKfHV ['Led Zeppelin']\n", "track 1Rdf1DO8NvgdkTAxBYKPSM ['Led Zeppelin']\n", "track 726FgclkT72fRnkuz6bmD2 ['Led Zeppelin']\n", "track 4WTk7vle9ubGFvRUkaGUBd ['Led Zeppelin']\n", "track 7sN2xvLngIWaFTGsMfCUPX ['Led Zeppelin']\n", "track 6z0eyTNBYnPBCUEiVTCvF2 ['Led Zeppelin']\n", "track 6eOVtyKUlEO6osSI6weaFC ['Led Zeppelin']\n", "track 3CsCDn4DaGWMtn7DLBRckO ['Led Zeppelin']\n", "track 53oDiRnrC69QkGIqXjJJat ['Led Zeppelin']\n", "track 6neIDWAADpSxDLPSEvzGTT ['Led Zeppelin']\n", "track 2XTjwij3ZZ0l6vO97X42FD ['Led Zeppelin']\n", "track 3OuMIIFP5TxM8tLXMWYPGV ['Led Zeppelin']\n", "track 3g3LzkOMh3lx2FmCgb40bj ['Led Zeppelin']\n", "track 6Qjc36CLNJHkWwSNIPbghM ['Led Zeppelin']\n", "track 4pW4DF1119GLHiuWE7Jcb4 ['Led Zeppelin']\n", "track 3buvRn4CDX86EO9LHTITGn ['Led Zeppelin']\n", "track 49C6EGQhCUSgyADHYvJ7ez ['Led Zeppelin']\n", "track 1oCOp1kVAgNlXX9Tx9mvzq ['Led Zeppelin']\n", "track 1rxD34LAtkafrMUHqHIV76 ['Led Zeppelin']\n", "track 0hCB0YR03f6AmQaHbwWDe8 ['Led Zeppelin']\n", "track 5G7uLHtoEW140QOcBpJlfz ['Led Zeppelin']\n", "track 5qbVkwfy0RYGFA6hAiIL90 ['Led Zeppelin']\n", "track 4ZkhFcoS3apzze9w2yI9NO ['Led Zeppelin']\n", "track 6WE7jSshLCuVKoCmobVKVf ['Led Zeppelin']\n", "track 4CWaV1xRCEJQj0QJJif60x ['Led Zeppelin']\n", "track 3MODES4TNtygekLl146Dxd ['Led Zeppelin']\n", "track 7t5P7lGYdWMR7k0c2vjdfo ['Led Zeppelin']\n", "track 6sMGNw1E4q79DoAFGDCYuD ['Led Zeppelin']\n", "track 1Y6xEUUKAVWO060yJRCces ['Led Zeppelin']\n", "track 2Y1HhOfvtzms7urVKFY67n ['Led Zeppelin']\n", "track 2WbfcArcwBvsbnikIQdBN9 ['Led Zeppelin']\n", "track 0by20SqfRktdZ6hdd0byjt ['Led Zeppelin']\n", "track 2whQxHDxButA5STZ32FYme ['Led Zeppelin']\n", "track 4OQjzsqsnSy4YPB9yaRh0f ['Led Zeppelin']\n", "track 2SznNPgrjsmxXKhqeAN7WK ['Led Zeppelin']\n", "track 3cp4kK4ZWCWXLWaCUvS3Fj ['Led Zeppelin']\n", "track 6DkkbyKCPkm55r4XU13elv ['Led Zeppelin']\n", "track 76HR8Ox6ApIoipqrXDheZ3 ['Led Zeppelin']\n", "track 1Z1PlpV2k3JHs7aoy0X5bf ['Led Zeppelin']\n", "track 4OLkBKMl6SDfjulpumMOZ4 ['Led Zeppelin']\n", "track 0kfjZ0JCXU9sSg99gbQpbJ ['Led Zeppelin']\n", "track 38KeSzb6FZYSogDXpc7xz8 ['Led Zeppelin']\n", "track 4HIunZLibo5KfbYIQRrHSu ['Led Zeppelin']\n", "track 5MWfv4F84sJhScYq18yqbN ['Led Zeppelin']\n", "track 5RPiBNQVmuEm7YlVVotrLa ['Led Zeppelin']\n", "track 2E64SWjM9rQmAshItmdbcw ['Led Zeppelin']\n", "track 2idijP1bI3eqkU0gbVMdjU ['Led Zeppelin']\n", "track 2aQd3uZDUKXwzZXvJ1oa0P ['Led Zeppelin']\n", "track 0QwZfbw26QeUoIy82Z2jYp ['Led Zeppelin']\n", "track 4OMu5a8sFpcRCPCcsoEaov ['Led Zeppelin']\n", "track 0CrseEjTnYoB625tKoUowp ['Led Zeppelin']\n", "track 6hu1f1cXSw7OAqhpSQ2zDy ['Led Zeppelin']\n", "track 3Zr81qUZEhR4vPeUFUsBB0 ['Led Zeppelin']\n", "track 0yVs7eSL8mPnIu2CGKHpUQ ['Led Zeppelin']\n", "track 62QInSlXQI11BR9ycVWjd6 ['Led Zeppelin']\n", "track 5VBzIn9cBH4BNa1c6Zilba ['Led Zeppelin']\n", "track 3XnTMZcTlzWeVlBgv7H39f ['Led Zeppelin']\n", "track 3VYEHEaUE4Zh38xSQtXCwU ['Led Zeppelin']\n", "track 6QLmvRTcw7lID3vsOQmROy ['Led Zeppelin']\n", "track 74eeAaPoGPuaMKpFria6Ff ['Queen']\n", "track 1OBNxuT3jiwCoZUQC6BOxB ['Queen']\n", "track 5yCc7rZJqIf0S0ocdbdiks ['Queen']\n", "track 2UmxDvAuojcNhRExLB0Vtn ['Queen']\n", "track 0ahOr0WCdsxiXQaMl2WzHr ['Queen']\n", "track 42NZJXderi4k6OcTmo4yFl ['Queen']\n", "track 3BPe2ZIj2uMGL2k0UGAvlw ['Queen']\n", "track 2POORnjTVsU2PsGtjyOCs4 ['Queen']\n", "track 36ps082aeOkbv4FdU4r9BJ ['Queen']\n", "track 4HS73LXQjMzoBo18jw3o47 ['Queen']\n", "track 2rwEPHOai3k4O9C4ccsG0P ['Queen']\n", "track 472dZ5pFJU8HKHWWcgIt49 ['Queen']\n", "track 6PJxLgEyS8rFWYEhDVj4vo ['Queen']\n", "track 3T39E1qdNDLQWGEEwz6OOD ['Queen']\n", "track 0gM8aSal7JJhaY8uc7nqUb ['Queen']\n", "track 44yKxwbohCaMTREw0yFJiQ ['Queen']\n", "track 0jc7vXN4Wkq4m4MyW47Hxt ['Queen']\n", "track 2mhapLOReKm1DYoaQWOYjd ['Queen']\n", "track 0DNx4zzQSjmYp8FwcfgBQb ['Queen']\n", "track 1QkkNOU7querG2IwAXDED5 ['Queen']\n", "track 4UmQ5TjHfrldvFvts8sjp3 ['Queen']\n", "track 4DbyUIUv772HZinXJOnkZQ ['Queen']\n", "track 5e1ChflY7qpMxkhuc1ZHmX ['Queen']\n", "track 55DkO4Weza29g64sqnjAcD ['Queen']\n", "track 6GFaM5xxetzzM3u0cQ0W8A ['Queen']\n", "track 7gN8XRkWKby2pavYVxlop3 ['Queen']\n", "track 12xodeYdTeEer5sh1MS4yR ['Queen']\n", "track 6Fu1FoCYs5fY6DSJhdiidr ['Queen']\n", "track 7ldeOTFYTDPg3AAlnOvfz7 ['Queen']\n", "track 4PsupPWetl51f6VOwh9Wtr ['Queen']\n", "track 0FVRd4hfGPeXulM36htcmx ['Queen']\n", "track 7wfD3Lp6APcdGjW1gdu3ZO ['Queen']\n", "track 0KIsbLa8tynh80RVbdRYcx ['Queen']\n", "track 1okwzK6Jbb8ZEUQoxIKuyH ['Queen']\n", "track 7wz5lPuMU8WLRKwELTWO6R ['Queen']\n", "track 3ygqz8zfDlOZ2dXLWa8c3u ['Queen']\n", "track 02WHYPA26ZEr43eZ68yuo4 ['Queen']\n", "track 2GFc91rDsZsSVZihosUa4K ['Queen']\n", "track 5QJhJByPk2LgEsBfhqX9Sa ['Queen']\n", "track 30ZsRQRQzviXx1g2XKK5gO ['Queen']\n", "track 3XylfxgZaabApvKxwZjVux ['Queen']\n", "track 5OFg3YorD8JoWFmzMNCYOT ['Queen']\n", "track 0a3O6y0ASHxTeh1YLKPcqU ['Queen']\n", "track 0eDyduWnDNbUqlW9tCgaNF ['Queen']\n", "track 1MgAkGDpwt6C5VhkWMWXG6 ['Queen']\n", "track 0fqhXhWWibF6hciM4dwBE2 ['Queen']\n", "track 2TiWmVP2KnUkUjmKNN0c6r ['Queen']\n", "track 2v1OcoUztBiIxTYDN8lqAg ['Queen']\n", "track 7ucf3Laa1L3Ouamp6VvyAN ['Queen']\n", "track 2WHlaINTlpbQRJ5lQxM9Y3 ['Queen']\n", "track 2L4B6kysGAXSJD8FSJQwen ['Queen']\n", "track 0EXpxtcQYF87uEoECRprQX ['Queen']\n", "track 4SB2TmRhEmZqwK3UVaCBhV ['Queen']\n", "track 3Ntnl28CNOifAtvcgAoZj2 ['Queen']\n", "track 5r3gVTPqJR3zfpH9j3NzH5 ['Queen']\n", "track 5PBry0AKEvvh4AbOZ7tc08 ['Queen']\n", "track 33cELjikdPha8QUrz2xRQf ['Queen']\n", "track 4D1BmEcT7yYkS5WGxnS2Iu ['Queen']\n", "track 1DPgQLnBirGx4QCUee6aEi ['Queen']\n", "track 6Y43mLi4lYnZMuLvwTliIT ['Queen']\n", "track 4hdRuA4aAx0k4Dvhl5z4IE ['Queen']\n", "track 75HVEm9ESGxhvtvcG8pUus ['Queen']\n", "track 2zhSNalgkquKNGQQoixb8s ['Queen']\n", "track 75FjIapdrBaCNLCSwBLXAn ['Queen']\n", "track 2L1AxGoyGeRNzIbDW2q0Rm ['Queen']\n", "track 7scsjrWTqq8MsKs4wDidG4 ['Queen']\n", "track 7Ir16OTGhpdQbcPSMjo9c4 ['Queen']\n", "track 5glac8BiWSvB1ZVlfgfd7A ['Queen']\n", "track 0jt8op5qEolHsoQ4r6Lgnh ['Queen']\n", "track 0rhoF8mFhbRf7GIapkSzAR ['Queen']\n", "track 0OdZ2cRDCLWTUhkWGSsUqo ['Queen']\n", "track 4eTHAePsFUOR2IXg8O1Ea6 ['Queen']\n", "track 67mwkw5WIunlyZmNAHZpkO ['Queen']\n", "track 6LiXJWsnqe79OG14Wel2BD ['Queen']\n", "track 5bESDtHnS2YBHeYNKilvkQ ['Queen']\n", "track 0Sl9pxMfB6uICvHLrptO68 ['Queen']\n", "track 2cM9pL0u4WigVzqb9U9V2u ['Queen']\n", "track 0kGmacLj3SCrfN5TpogUMr ['Queen']\n", "track 6J0vcdJQFr4iukuBvnmXcf ['Queen']\n", "track 1XMEuw4gvrpgRSDLxOpHgu ['Queen']\n", "track 3zeXgXvMleb0d6EHhrva07 ['Queen']\n", "track 7KoyNgGP3wiWi6myrVFYYT ['Queen']\n", "track 5BaAp6exSFwX3UVNPLcRSW ['Queen']\n", "track 5x9Uh5UeRTBAbE4SnEu7BX ['Queen']\n", "track 2pdXGfqJqGdVghOeHHk5DT ['Queen']\n", "track 21D3uyzEMxGgVOh1Ifk7di ['Queen']\n", "track 7o6z7JfsiHPzEILQlINTJc ['Queen']\n", "track 3gArrZwEb0itj922x8gYxA ['Queen']\n", "track 2qJNFBIA2GLYQyrwicZYqV ['Queen']\n", "track 1LlIP3vthhEQTjzXeDizDF ['Queen']\n", "track 5gWZ9CknEr8fwL8sHmAsNB ['Queen']\n", "track 5OknKyLskTCdY0CIJZcTkF ['Queen']\n", "track 7ky0YmYzyfh8TMdPPSuoEu ['Queen']\n", "track 4FCJr5A2hevqlngwDMmcJ5 ['Queen']\n", "track 0QuOtSLXgO3C7POuJQqsgO ['Queen']\n", "track 4QXUtOtIpltDue5I6Ns45Y ['Queen']\n", "track 7AHA0SfSyf7u2BfgfINLdv ['Queen']\n", "track 0EkQdXNXNFDg6t7P7Tv4ci ['Queen']\n", "track 3k2qIAfXH1NdDuxksRtOqA ['Queen']\n", "track 6eS1nNtY7dbUzOXH33jRGX ['Queen']\n", "track 3wmcr9z7oBaBoomDcIKchs ['Queen']\n", "track 1D7CFK6547iY3MVCoUnuW4 ['Queen']\n", "track 32WOKUZ4BGAGIGRyZvdZXX ['Queen']\n", "track 10wxi791hJtQh0ntAHojyr ['Queen']\n", "track 0iggYezUmlTFjEogK3Tn4c ['Queen']\n", "track 3vqfjZ5gGb8SLvSQSYkvBO ['Queen']\n", "track 3TO97WKkYS8lUSQXNOE7Oe ['Queen']\n", "track 6vGh4gDJIMF08cF006G3PA ['Queen']\n", "track 0tepevQd1AtpuxKm4ayBSU ['Queen']\n", "track 6fzd8c1Rc9eSqVRC0P4EkI ['Queen']\n", "track 6LCj7hoE3zk6ouU70yIdjs ['Queen']\n", "track 1xp03KHQMHMuI59IntVcZr ['Queen']\n", "track 7lXSclzYv5qzvJiGYZX5my ['Queen']\n", "track 4KDbLXe2e1XBAfxklX2RmB ['Queen']\n", "track 1vePSSc7zu6kNsJoAXDSLI ['Queen']\n", "track 2XiGPCZrZMJcBhBBGEwWCT ['Queen']\n", "track 1n05nkGnCml2gbZKw1wIEp ['Queen']\n", "track 644RV4CFzX9CseC76YFFbL ['Queen']\n", "track 2XGA6jTQyfwDhk9klmszBo ['Queen']\n", "track 3uwHbEp8uIlnxIcLyTh0Ik ['Queen']\n", "track 4yBsKFDacDTa4UuvtrTmpK ['Queen']\n", "track 3EGlnkJGcwz73rT0oE0X1X ['Queen']\n", "track 41kCFJBcaLSt7Ruk5zO3Vr ['Queen']\n", "track 2L1yuPvbfQGgYFu4OPf1cR ['Queen']\n", "track 5NsOm4xBDedPNka2Tf7dSf ['Queen']\n", "track 0Uy8lcDHiPDicBQ7rnDgcK ['Queen']\n", "track 2ubfwU154cvyo2WC2EdhED ['Queen']\n", "track 2toFtEYSfsOeynIEfVF0dh ['Queen']\n", "track 7MMpkKoCvYhi9ZIZXVaEWR ['Queen']\n", "track 5juaJ4s9kO1JBlyT4GGPah ['Queen']\n", "track 5tp738e7ECXSNYFvdIU0D3 ['Queen']\n", "track 4BVjayNw443bMT4cIXHeUu ['Queen']\n", "track 36DsYUSiuWuRtvklWfjMmx ['Queen']\n", "track 37WZMPel8viAHeexEeOJ9e ['Queen']\n", "track 7IX6Fa9bG7VenV93PtPLas ['Queen']\n", "track 4EvWx2C2yIXloD0hgGCd4v ['Queen']\n", "track 698HsRVis7o2j6zz3YZ5Jc ['Queen']\n", "track 0ygLHKQsaia1qY1p21Lk7t ['Queen']\n", "track 6fdnfaizhyruh1BdRSvXM8 ['Queen']\n", "track 4WQa9jWQVp5FWPzeqS9Hys ['Queen']\n", "track 5iCatYaba9RIiBFQIqqcHx ['Queen']\n", "track 64Zu1yXbkNGWrUiTVTOtLa ['Queen']\n", "track 1nQRg9q9uwALGzouOX5OyQ ['Queen']\n", "track 5pNxycmDYd8wSlSO5y47ai ['Queen']\n", "track 34MoKBRdC9JDjcL4b4X1Ic ['Queen']\n", "track 6ZUUTe35o5Q1autiNyj9MW ['Queen']\n", "track 0hSSAkmhJWealZ3PABqJmX ['Queen']\n", "track 1MsBRSbt5dqJSw3RxXtvCM ['Queen']\n", "track 4cKnOBKniYNOEaSd9O41Pk ['Queen']\n", "track 7Im5F8fliiF16D2te5rYNv ['Queen']\n", "track 78BjB6GC1JPt4LgA8O0sys ['Queen']\n", "track 30cjrAb2I858LOMhwGcrjd ['Queen']\n", "track 5RNdlGcyVfdQwZolZWh2OL ['Queen']\n", "track 33KN2ijDtHrakMtxqBe1R3 ['Queen']\n", "track 1CZDtIHFg5sSvkS9qdZFCK ['Queen']\n", "track 4ipfmSINnZ16YEk1PgK9rT ['Queen']\n", "track 7r8Yc8CBLuk18OJ89u5ou8 ['Queen']\n", "track 02Ov1yWkRvutvevboBjxt0 ['Queen']\n", "track 4g24DyL1MrhpQTG3VLaYWr ['Queen']\n", "track 5XijHuT3krGCci0Srjkle3 ['Queen']\n", "track 7FxQTrSkAqhNEj7egR5czx ['Queen']\n", "track 3Au6174rC3JSzZN5BhCl3D ['Queen']\n", "track 0IPW3WUA6zMNSZRU9rP2cQ ['Queen']\n", "track 2bzBE9cMKPbwabLqtuP73p ['Queen']\n", "track 27li3oEEWxgVtydYtpe7G1 ['Queen']\n", "track 05X6aMCQR09E6smUmw9qms ['Queen']\n", "track 3S1RgaEOY4JxjIIS0kt5Nu ['Queen']\n", "track 4ejjjAuVya6bapdTjZE9Lx ['Queen']\n", "track 14YQ2SSnv07HZjPP4Ud9mX ['Queen']\n", "track 26FJA5apYWeehOGnZdUPob ['Queen']\n", "track 6nnH5zeFZOH3HMpEOG5DLg ['Queen']\n", "track 30vbOgHRjyUbUZ1KWOY11C ['Queen']\n", "track 6xYHezItSIXOpxMvrVRJTb ['Queen']\n", "track 47KKOdexdhKL2jgX673WrW ['Queen']\n", "track 3QfLERjG54GUIAS9w86kul ['Queen']\n", "track 7nhWtCc3v6Vem80gYPlppQ ['Queen']\n", "track 2fuCquhmrzHpu5xcA1ci9x ['Queen', 'David Bowie']\n", "track 7HIkKTu5yuCo0gN9abPZwk ['Queen']\n", "track 5MT1Vsp5qqdHWaDFhkcObK ['Queen']\n", "track 2ELbAOs0asLW1OVIEhW32g ['Queen']\n", "track 3w5ZTvQdAO6lrrSx6GgnCw ['Queen']\n", "track 001fJI2daMOO4qmKuMaUYf ['Queen']\n", "track 0rP9QQL0FoqH6k0eMmFQeL ['Queen']\n", "track 1NtALqzUDUCDifcqlqc8jh ['Queen']\n", "track 48rNjiqSiBTWS2oN8zNn6n ['Queen']\n", "track 3tENvYgGNDlKeAI3NWPitt ['Queen']\n", "track 07E6XzTt5B2HtRNEorH7dj ['Queen']\n", "track 5siBhoh232tTCTDBrdZtSV ['Queen', 'David Bowie']\n", "track 1ZLllnz70id9aZ5xWbZ6Fo ['Queen']\n", "track 1JWikfFAybYLnsCANmfDrD ['Queen']\n", "track 60A9vs3iysxGjwpIa5VxAm ['Queen']\n", "track 5a27xK3eeJsbVxGJZfUiMi ['Queen']\n", "track 2SN5tfClIg9YMasJNr4GEo ['Queen']\n", "track 3Z4poAx8XqlR2xm7eFwQ37 ['Queen']\n", "track 17ocuMUNjkbGj81MSMZ2G3 ['Queen']\n", "track 1kcsmxEal6ZbVF2N0FAVeT ['Queen']\n", "track 5QTRYLNQY4eIiMCAwAUYpz ['Queen']\n", "track 0trapw2LwL4kvMbVgKOLEF ['Queen']\n", "track 59PWxmvXoANsFk76Q2Z3Xa ['Queen']\n", "track 5EhUncBbxhp117MVVkH5zw ['Queen']\n", "track 6cx90IjWuiHauRrGpsxg3U ['Queen']\n", "track 3ZSpIpV0WZH8yGYg4wXTuX ['Queen']\n", "track 76nonU5KLNawCssAiENgGW ['Queen']\n", "track 3KyQAMhwdk8zBQRhHgi9eI ['Queen']\n", "track 5uJ6QwBbCSwomH4uUvG4Hp ['Queen']\n", "track 7drDzVbBVM9sIVnve2HCaJ ['Queen']\n", "track 29cvimDnaTP15HdKWmH8At ['Queen']\n", "track 0wpKb004KKhynMY812630n ['Queen']\n", "track 1D15BpOHazXAgbQwGbIdl3 ['Queen']\n", "track 0gdZVon1sEfFNVVrB0MzxQ ['Queen']\n", "track 0hJw0cL25GXFUlm9WtiJNz ['Queen']\n", "track 3XLpDGLAniVIrQmvSxEgwU ['Queen']\n", "track 4TNluZ5bArZltwlPKkVlCE ['Queen']\n", "track 3LDhAN2AkULsWeuZUTR07P ['Queen']\n", "track 7nhw543SZmHL1hTqVkAMGY ['Queen']\n", "track 3WfSxufH9f6qe6TaxAltwR ['Queen']\n", "track 5vK77NlxH3Mq4LyyT8Rcah ['Queen']\n", "track 3yGriRsNghTAtC2toACmyn ['Queen']\n", "track 6ucJW7T9V8ZkpVQRnRghOe ['Queen']\n", "track 6eFYwkdj04H9xCpeGiMaU1 ['Queen']\n", "track 0grAPRfcs9sTmg2jok4Woz ['Queen']\n", "track 3FAIYhOpqyiq4p4O0aEDQT ['Queen']\n", "track 2rOXeQOMHmDhBX3ZCK7IyA ['Queen']\n", "track 7x8An23GTwAkX1DJ1M3Xh7 ['Queen']\n", "track 2y0lx1erJUXTwDMp3boixK ['Queen']\n", "track 7H8wytBFtZYLltaEv5RgYv ['Queen']\n", "track 5DzfaVDzxNx05TE1LtSMq3 ['Queen']\n", "track 5Bc0k63RxFBkson2SBp5Y5 ['Queen']\n", "track 1gMksKfyOUcLqDbvuFIclH ['Queen']\n", "track 1RFirgIssk9uTubwA40SFs ['Queen']\n", "track 7p6g0MO6jUG5yL9llryq5l ['Queen']\n", "track 6vCfMsox2vfVo0IWTfztcf ['Queen']\n", "track 7KWqxSq8rjAkNt2bIGPisL ['Queen']\n", "track 05jKEHsBd71uf641fRSzRd ['Queen']\n", "track 7hjP4H9hVQoEotKCWfILqH ['Queen']\n", "track 5p6xhgQCwzX0G9PadMU9GA ['Queen']\n", "track 32wghPySDJ1mNdqhwW9YMh ['Queen']\n", "track 5vdp5UmvTsnMEMESIF2Ym7 ['Queen']\n", "track 3vVSwkIqE7j6AaIxsxXzNA ['Queen']\n", "track 6xdLJrVj4vIXwhuG8TMopk ['Queen']\n", "track 4w09y5LHv5vJDZO4hWS846 ['Queen']\n", "track 0V7AVcMTaQqLKzxVloxWHj ['Queen']\n", "track 4tmERaVkzL7X64Oku4vDo0 ['Queen']\n", "track 4xSDpJJNXAUis65Ogl7f7i ['Queen']\n", "track 1pBFEy8cz0Fq4Pru0c4awd ['Queen']\n", "track 5hhXBS9O4FT1VmKjsgrrEV ['Queen']\n", "track 3U5Wd0Od6885VT3gsBSHKd ['Queen']\n", "track 0A63MgkTSVv7yF947dtgM5 ['Queen']\n", "track 2i7QbdFtFoV3IbExJ02yLl ['Queen']\n", "track 2guEcnmuY0fKEFCkCUvd0R ['Queen']\n", "track 30O2ide6zIReF3lrdx3jT5 ['Queen']\n", "track 7wlBA7Z60Lk7CkM1ekOnd2 ['Queen']\n", "track 6CprdLYymIAasgOBsxdGUy ['Queen']\n", "track 21PQR5EfetgYwyt0HsupNM ['Queen']\n", "track 3qbg9WeVhYGE7pCy3CwBJH ['Queen']\n", "track 1f5eGaw2daP033Hk93B1Mg ['Queen']\n", "track 4wJ5cTtCojUF7DZcUK9yzD ['Queen']\n", "track 4Pu8RqVNvs5JvO1sasmIKl ['Queen']\n", "track 5ZbXs3uwtNmFzy2yROHTe9 ['Queen']\n", "track 5KyoOQOPlguX3xcpPJUCj9 ['Queen']\n", "track 07QjQWPqSwlcFwMg4BahVr ['Queen']\n", "track 63M6ZPilvmW2oSA2dEZpAC ['Queen']\n", "track 2dLqK3Y94t7sXQLf0exWcd ['Queen']\n", "track 4UArDeIi3ACYE4jZvGkx3g ['Queen']\n", "track 06fuPCln9X1NRTsaYQ9ubM ['Queen']\n", "track 2txOJg8tJGZ1XfrJ6mZR71 ['Queen']\n", "track 6AAta6Pj625ti3VlUajvGF ['Queen']\n", "track 2zJQGbg4s3vhgPBlYrN2No ['Queen']\n", "track 2QCbv7udWN0Z3jldqerUQe ['Queen']\n", "track 16QLNG8cvyblZ2lEczuP4J ['Queen']\n", "track 6HsHLz6OGD82eUpOL3AFJR ['Queen']\n", "track 1a2s1bYbQ7U65nLplzU9i2 ['Queen']\n", "track 2lCZ8t5RErHD5nnKVMNyui ['Queen']\n", "track 5924F4dtwz1VZC5KnrSRoV ['Queen']\n", "track 1nb96ekMEEwPHvtvuCqpU1 ['Queen']\n", "track 5hc5UDWy0tqAAJXzyR4RGu ['Queen']\n", "track 0ukv3U1ui6tntT21ON0fsK ['Queen']\n", "track 6VUiu0Rraww71ChsavlzSL ['Queen']\n", "track 0k07dVYoaRNIU3RFWf3GHY ['Queen']\n", "track 6GEY1RuXqOUxYIQegtCbVZ ['Queen']\n", "track 2YZ3wCADFhd5DuMBTRstQg ['Queen']\n", "track 2Ni7uPbBzKf3x0GYqoNYKe ['Queen']\n", "track 3uaVLkgDqlYy153yFBUVtl ['Queen']\n", "track 6IAVxNFi1W88UhDeyvOsdo ['Queen']\n", "track 6VH7sh6fC6YPi297UC2Fkg ['Queen']\n", "track 5CTAcf8aS0a0sIsDwQRF9C ['Queen']\n", "track 5HJiNvg6s7ovq5kPrztHKp ['Queen']\n", "track 00ITtxUozN0vifE2uYvtqn ['Queen']\n", "track 3OCQ5ybKASY4EIb4i9hsd7 ['Queen']\n", "track 06UXtRLTF6kdMSM3uaVCCU ['Queen']\n", "track 0TpWjIOuNMnpuRjriPbGiF ['Queen']\n", "track 6jtctBYvybxCAmlg7nT6CS ['Queen']\n", "track 16aW2zHbbpDDoSy0HCA8xc ['Queen']\n", "track 5T8EDUDqKcs6OSOwEsfqG7 ['Queen']\n", "track 2YrfSHux2BaTXQs1535EHC ['Queen']\n", "track 72b2hBlCyXYv0rBjzVMTqQ ['Queen']\n", "track 0G9LfUiYqWiQrwnpjQb5Kn ['Queen']\n", "track 0DurBSqGS5C05wKpqNXFXr ['Queen']\n", "track 3AikgLgc6bhKOEAXyfmODE ['Queen']\n", "track 1evVkVPoxhYsdJh0RJVkzv ['Queen']\n", "track 01iu1jYMRg8BCYI3ZEsNkA ['Queen']\n", "track 13TCSuIfDasqYyx1jWlra7 ['Queen']\n", "track 6XoRcG5ZIiASNsALWLPyTl ['Queen']\n", "track 0SvtIM6TKuBWdSA1wnBz4K ['Queen']\n", "track 7F3pcogy2E5WJIKW5RPcH4 ['Queen']\n", "track 1PeHgggONI6QnpgvDaOZip ['Queen']\n", "track 4T7gU5bNUq6e3iFZv69ykc ['Queen']\n", "track 7rWufTGCrQ5NzKL8cm0uAi ['Queen']\n", "track 39l2iImiZnBIUxllPxXvxj ['Queen']\n", "track 6tAZ4FiA1l6fJoK9xLaFX6 ['Queen']\n", "track 1PBKa5nXuvgvv1igmNlnIJ ['Queen']\n", "track 53TxJcSMbsae0WfSlDdeAK ['Queen']\n", "track 3CLGT14Tf3GmlVczEe8UYQ ['Queen']\n", "track 4pbJqGIASGPr0ZpGpnWkDn ['Queen']\n", "track 1lCRw5FEZ1gPDNPzy1K4zW ['Queen']\n", "track 4WLcEC8RoscRuzmNf2EeXf ['Queen']\n", "track 6SvRYfsIeNSVV2EAH7I9P0 ['Queen']\n", "track 0nUCaKwNqO5whVAhEX1A1R ['Queen']\n", "track 1pQQRiL4O3weDAqk85hrYN ['Queen']\n", "track 4omLxn4XuiHhpwTpO9Yj68 ['Queen']\n", "track 2N5mE30V04xDvsX2caDLlj ['Queen']\n", "track 02lvTeAFIIsOd0wVNoRkQ5 ['Queen']\n", "track 7pgv0D1HCBAFbGHNqHmegV ['Queen']\n", "track 1WttHhgIl0N0vXZYrOxF0C ['Queen']\n", "track 5Ooo2rBbnxKPZe29GEddLJ ['Queen']\n", "track 7khEhULdJDLBgp1UbwxNBX ['Queen']\n", "track 5bMeUqcwugcA1auikUgG1x ['Queen']\n", "track 1jl8pMxQqsDHaGB2tyYOON ['Queen']\n", "track 26So0I1HPNAvZZqgJu0nLE ['Queen']\n", "track 3XlqWfLdNa8LFIRYbP1asb ['Queen']\n", "track 1fTYOUrCccOedbtcDIFPyX ['Queen']\n", "track 19qv9uArlkZVNaLPatzJDB ['Queen']\n", "track 66NvOCS7jP0jIzewNh1YgK ['Queen']\n", "track 5RjqAQssqqiVt9dnANZTLM ['Queen']\n", "track 59bWw6UvfPkQ1jHYFqkzmq ['Queen']\n", "track 1apZ20X8M0LDFKgzjUj6RL ['Queen']\n", "track 5F1Rb6KiVbDyuyVR13tJE3 ['Queen']\n", "track 54M07Nc9bWjBZpQplGlcs0 ['Queen']\n", "track 61A12lhYD26I44HlOiihqr ['Queen']\n", "track 1eXQ2zrbQ1b69H94m1FlPh ['Queen']\n", "track 48K4MhE5ax5brZjUBImrsu ['Queen']\n", "track 0UPKmGo6qsZxjDT4xWyxKM ['Queen']\n", "track 4PQFK8ote0HcLxoFr9h7Xn ['Queen']\n", "track 6hVKkQYFt2ejyk5gkvmTAX ['Queen']\n", "track 02hSfn4xqMr6wqHkB9KUyn ['Queen']\n", "track 3vCHmbyOgc6pgwLUWfU4pF ['Queen']\n", "track 3uEgHZJzBqK4Co4gGUhgd7 ['Queen']\n", "track 61lj5cHhOifNzSMXuWg54Z ['Queen']\n", "track 5LpOZAn839di0cJKuEQlu4 ['Queen']\n", "track 0P9OkOInPTCQdkHeCqSYOX ['Queen']\n", "track 4fBQAxZR2GeRG6CIKEWsFS ['Queen']\n", "track 3wmkGxHelABbthkSUCcgWV ['Queen']\n", "track 6Osj28mC3hBl3h9w47EQsk ['Queen']\n", "track 2E0TC9EEVrqSegNifwmYxW ['Queen']\n", "track 193RZ36Jdlc61XTDQmFNwM ['Queen']\n", "track 4RpSnz7bmzI8fFNnLSiNB7 ['Queen']\n", "track 7m005k7ZTDV8ByUKeDwSDx ['Queen']\n", "track 7gjCKyhyIFNbl6ZmTxIflv ['Queen']\n", "track 2OtyhHoGY0ICuBUNoz0dc9 ['Queen']\n", "track 5q5XCOU7WcoGPYhGhUFenu ['Queen']\n", "track 4DeTNrlYbxtszg6LXjssEG ['Queen']\n", "track 7om3VB2n4R0JsOZQnPAQX3 ['Queen']\n", "track 6gskrEmv8lrorfuXyBxkcl ['Queen']\n", "track 1W995UIocrhGpfcGTf00wf ['Queen']\n", "track 6rD5AJFDt6aMyUwA4bmCOo ['Queen']\n", "track 2Cc4xF0pwkk3G3VE1YofUu ['Queen']\n", "track 1x6Ux7wVJmeCMjj3NJiyxk ['Queen']\n", "track 5MKmykXnrQEhvcD4B2rrdR ['Queen']\n", "track 5YtxOL4iUchhynLL9nEBwQ ['Queen']\n", "track 2UeF4tKmMSUiPOuGLmH1h6 ['Queen']\n", "track 5tCtsFhDjH1tChzyx9fY1Y ['Queen']\n", "track 0scVuKbKVaGg5vgqJVloc2 ['Queen']\n", "track 6FJB62PaC7UWP8B8FNjFT0 ['Queen']\n", "track 1luVGXHe7oimtkPScdsKBe ['Queen']\n", "track 3874iSkPeAh5GOeHSwBO5F ['Queen']\n", "track 1AhDOtG9vPSOmsWgNW0BEY ['Queen']\n", "track 6pgUa0uAlpzjMwf6DWlli8 ['Queen']\n", "track 4GpMYU4CjxVcZAo6mYKaKB ['Queen']\n", "track 1CnN9udhDokm7lARZjMji2 ['Queen']\n", "track 2mPU4ppzJCJbjcjBZZMD3Q ['Queen']\n", "track 43sVnIfmZ68YSM3HZRL89C ['Queen']\n", "track 3nHFAvn7SIxj4Jp9n4cL9i ['Queen']\n", "track 38QrbjZX8XG1vYFIWDYPrQ ['Queen']\n", "track 1lUehDCmF5C22aGEKFLrIT ['Queen']\n", "track 7Dk2q3NMtkiHNAA4DuHIGF ['Queen']\n", "track 45IKIEEEvYy0jqxlBXiGzH ['Queen']\n", "track 0JBASGNN1XyiJApypLIvi8 ['Queen']\n", "track 5DltjQr6IAfFEIb3IxFLTs ['Queen']\n", "track 2tgrmhDmawcx6ANFvuI1PC ['Queen']\n", "track 108kfVFwZfPi7tCZAyYQwn ['Queen']\n", "track 0w7lKfhxW190u1ckXi45E9 ['Queen']\n", "track 4cIPLtg1avt2Jm3ne9S1zy ['Queen']\n", "track 0MdVn1L2orxB6sNAeiurEA ['Queen']\n", "track 70aoIbrVKkhdILNZTjseEt ['Queen']\n", "track 0jJ0n1M9gtDMRDx08UJCAT ['Queen']\n", "track 5v1osKVFv3rXWb1VJDO9pW ['Queen']\n", "track 1mtKZiteOlpbJaJFmJD1cE ['Queen']\n", "track 6d2UQWWWZj3k4BE6WcN4IT ['Queen']\n", "track 2P2DVfvkVlh317i9PhFQqF ['Queen']\n", "track 1tLJMLavxD9KmeLTYeqnM8 ['Queen']\n", "track 5jQGIcVqaRqpaNkkFt4P8H ['Queen']\n", "track 3Zqcy8M3poaABGmOkbFSAA ['Queen']\n", "track 1aaBQH69S1J7x0r1e7ja6U ['Queen']\n", "track 3Nhjsn9HBPc2q7DOudNss6 ['Queen']\n", "track 53LpqAiZj3EhtwMicNC157 ['Queen']\n", "track 29ppFwnBuhalr2lf8oNssF ['Queen']\n", "track 48VfXnnIPMBAGaWYoYLrfo ['Queen']\n", "track 3DmoFLqKHGN19HDpNkBeIl ['Queen']\n", "track 2OJTHYZ0H54bQ6nlga0eFb ['Queen']\n", "track 2EPr6Qn40O2eP9sSJ3XGNb ['Queen']\n", "track 60ZltR0ozZG8UQTMWJUZ3N ['Queen']\n", "track 1qieOfMi7zdF8PAEfP4Bf6 ['Queen']\n", "track 1M92XvoIYkryjEIF1AkMvw ['Queen']\n", "track 5XgP1zWqfEZGpJmkiQioeL ['Queen']\n", "track 4qchtDVdEdtyPpvnTGRECQ ['Queen']\n", "track 6Qe3ywoctL3oZqhUqVEMt4 ['Queen']\n", "track 50nfWAbObRbHNSFoTrx5CV ['Queen']\n", "track 53Z6U9s3VFRZNr2viONAb8 ['Queen']\n", "track 15YZ80shvljAv8n6tqrIot ['Queen']\n", "track 43irj8tIvGbqfoHVNT0OUS ['Queen']\n", "track 2LnANe1yg7W8WBnAN7q9xd ['Queen']\n", "track 1z6gIEOUMvc7atlYd1IxQX ['Queen']\n", "track 73ALEi8elnPie6NwjTPHvg ['Queen']\n", "track 6Vnctb3SiGt7MHfHMPok0x ['Queen']\n", "track 0XtUegsu3ILQxeQU9c0Ci9 ['Queen']\n", "track 2oEKT3Ph7tE9vlufW6Xr2I ['Queen']\n", "track 0UmYue7MXtUxfuCSPf1T9V ['Queen']\n", "track 4HC9C4g8oYVQFbgw2mwZkS ['Queen']\n", "track 5XOO1SHulrIp1VylFod7b7 ['Queen']\n", "track 4WYYmEaGbZy3YCVWwDvIMR ['Queen']\n", "track 6zExf5TOEG2mXsn7eIPSIH ['Queen']\n", "track 6CtbflnI0tt5vPaFspM6bA ['Queen']\n", "track 4QxclyZSGtSF0wp9ccuLUM ['Queen']\n", "track 6moib7trvlHzw2yB4rsGk9 ['Queen']\n", "track 68CcQckln9GNiESxUg4ZjI ['Queen']\n", "track 3sEoqiXNA1sjcY42cZKm6M ['Queen']\n", "track 54YSVrKWYrCcGKWHDTFQRf ['Queen']\n", "track 5Ibn77JWpFlWcbLbimZfrb ['Queen']\n", "track 72H6t1yf69iIYl7Ndr9A1h ['Queen']\n", "track 1eFHqf4FBRhSyb0W0JvBVz ['Queen']\n", "track 2dvyQZ04ai4hFRlU3WbTZN ['Queen']\n", "track 5tmDz0PLw4BmWZJscHARMo ['Queen']\n", "track 3jcUWALAgoE8E0mY3txrDO ['Queen']\n", "track 3Mzw6WJkn4G9q3vWs5SiVs ['Queen']\n", "track 6V3vCShqRYELbKLuDxuGtI ['Queen']\n", "track 0oTI4Aqtev35ooM7KY930l ['Queen']\n", "track 7LCX6CXCieo7KrNNVVphIh ['Queen']\n", "track 5Qp5D7Gdi5hphr9MEZJiVo ['Queen']\n", "track 6q1rrY7FBYuODpP0OCOitf ['Queen']\n", "track 1esdOqLn4DYSnoqujLs7IA ['Queen']\n", "track 0uw3IybTZdspd55UwZIx1J ['Queen']\n", "track 4SLYZBk205QMJeOf3I4JuI ['Queen']\n", "track 6bIA8Y5TnQmnApC5R6oOQ3 ['Queen']\n", "track 2u0zaP27DuxKyU0IHMFnuF ['Queen']\n", "track 710rymKyaC6XjY7CBpjYpb ['Queen']\n", "track 5cWV61fOUtcesIrA9vVfGT ['Queen']\n", "track 3mCG3P9mDbiPKvWD8956CY ['Queen']\n", "track 09bBW3fG0rNj6CUTsQKEFa ['Queen']\n", "track 25innbpSX3VMnfI8tRwzMx ['Queen']\n", "track 46gP62DVmyvT8Yt3XMt9qo ['Queen']\n", "track 2PNGzkYgkFD50qJy4mTvxb ['Queen']\n" ] } ], "source": [ "for t in tracks.find({}, ['artists']):\n", " print('track', t['_id'], [ar['name'] for ar in t['artists']])\n", " for a in t['artists']:\n", " if a['id'] in [this_artist_id]:\n", " tracks.update_one({'_id': t['_id']}, \n", " {'$set': {'artist_name': a['name'],\n", " 'artist_id': a['id']}})" ] }, { "cell_type": "code", "execution_count": 396, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'_id': '6Kik662VPYcP28O0AgDOyo',\n", " 'acousticness': 0.765,\n", " 'album': {'album_type': 'album',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/0LcJLqbBmaGUft1e9Mm8HV'},\n", " 'href': 'https://api.spotify.com/v1/artists/0LcJLqbBmaGUft1e9Mm8HV',\n", " 'id': '0LcJLqbBmaGUft1e9Mm8HV',\n", " 'name': 'ABBA',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0LcJLqbBmaGUft1e9Mm8HV'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'external_urls': {'spotify': 'https://open.spotify.com/album/5RwHHhuFTbbiznBtE3VATV'},\n", " 'href': 'https://api.spotify.com/v1/albums/5RwHHhuFTbbiznBtE3VATV',\n", " 'id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'images': [{'height': 640,\n", " 'url': 'https://i.scdn.co/image/b0aa268b5997f182b7ac52aff03011a74ab3ea42',\n", " 'width': 640},\n", " {'height': 300,\n", " 'url': 'https://i.scdn.co/image/4547f40a391882f06e1998b1f044be67e6bd765e',\n", " 'width': 300},\n", " {'height': 64,\n", " 'url': 'https://i.scdn.co/image/c6537d9759994417dfb7aa1bcfde400842595898',\n", " 'width': 64}],\n", " 'name': 'Ring Ring (Deluxe Edition)',\n", " 'type': 'album',\n", " 'uri': 'spotify:album:5RwHHhuFTbbiznBtE3VATV'},\n", " 'album_id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/6Kik662VPYcP28O0AgDOyo',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/2lVPicgpjjlbROFIzwGm8V'},\n", " 'href': 'https://api.spotify.com/v1/artists/2lVPicgpjjlbROFIzwGm8V',\n", " 'id': '2lVPicgpjjlbROFIzwGm8V',\n", " 'name': 'Björn Ulvaeus',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:2lVPicgpjjlbROFIzwGm8V'},\n", " {'external_urls': {'spotify': 'https://open.spotify.com/artist/0kV0e99xlTJcLKSu8KrLyp'},\n", " 'href': 'https://api.spotify.com/v1/artists/0kV0e99xlTJcLKSu8KrLyp',\n", " 'id': '0kV0e99xlTJcLKSu8KrLyp',\n", " 'name': 'Benny Andersson',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0kV0e99xlTJcLKSu8KrLyp'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'danceability': 0.532,\n", " 'disc_number': 1,\n", " 'duration_ms': 200547,\n", " 'energy': 0.269,\n", " 'explicit': False,\n", " 'external_ids': {'isrc': 'SEAYD7015150'},\n", " 'external_urls': {'spotify': 'https://open.spotify.com/track/6Kik662VPYcP28O0AgDOyo'},\n", " 'href': 'https://api.spotify.com/v1/tracks/6Kik662VPYcP28O0AgDOyo',\n", " 'id': '6Kik662VPYcP28O0AgDOyo',\n", " 'instrumentalness': 0,\n", " 'key': 7,\n", " 'liveness': 0.355,\n", " 'loudness': -14.2,\n", " 'mode': 1,\n", " 'name': 'Hej gamle man',\n", " 'popularity': 12,\n", " 'preview_url': None,\n", " 'speechiness': 0.0357,\n", " 'tempo': 114.924,\n", " 'time_signature': 4,\n", " 'track_href': 'https://api.spotify.com/v1/tracks/6Kik662VPYcP28O0AgDOyo',\n", " 'track_number': 20,\n", " 'type': 'audio_features',\n", " 'uri': 'spotify:track:6Kik662VPYcP28O0AgDOyo',\n", " 'valence': 0.696},\n", " {'_id': '098jRmhqBvHf28Cm4oGMAh',\n", " 'acousticness': 0.161,\n", " 'album': {'album_type': 'album',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/0LcJLqbBmaGUft1e9Mm8HV'},\n", " 'href': 'https://api.spotify.com/v1/artists/0LcJLqbBmaGUft1e9Mm8HV',\n", " 'id': '0LcJLqbBmaGUft1e9Mm8HV',\n", " 'name': 'ABBA',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0LcJLqbBmaGUft1e9Mm8HV'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'external_urls': {'spotify': 'https://open.spotify.com/album/5RwHHhuFTbbiznBtE3VATV'},\n", " 'href': 'https://api.spotify.com/v1/albums/5RwHHhuFTbbiznBtE3VATV',\n", " 'id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'images': [{'height': 640,\n", " 'url': 'https://i.scdn.co/image/b0aa268b5997f182b7ac52aff03011a74ab3ea42',\n", " 'width': 640},\n", " {'height': 300,\n", " 'url': 'https://i.scdn.co/image/4547f40a391882f06e1998b1f044be67e6bd765e',\n", " 'width': 300},\n", " {'height': 64,\n", " 'url': 'https://i.scdn.co/image/c6537d9759994417dfb7aa1bcfde400842595898',\n", " 'width': 64}],\n", " 'name': 'Ring Ring (Deluxe Edition)',\n", " 'type': 'album',\n", " 'uri': 'spotify:album:5RwHHhuFTbbiznBtE3VATV'},\n", " 'album_id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/098jRmhqBvHf28Cm4oGMAh',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4NTZJHsDLmsbhjbFBVaAiu'},\n", " 'href': 'https://api.spotify.com/v1/artists/4NTZJHsDLmsbhjbFBVaAiu',\n", " 'id': '4NTZJHsDLmsbhjbFBVaAiu',\n", " 'name': 'Billy G-son',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4NTZJHsDLmsbhjbFBVaAiu'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'danceability': 0.489,\n", " 'disc_number': 1,\n", " 'duration_ms': 163533,\n", " 'energy': 0.656,\n", " 'explicit': False,\n", " 'external_ids': {'isrc': 'SEUM71301820'},\n", " 'external_urls': {'spotify': 'https://open.spotify.com/track/098jRmhqBvHf28Cm4oGMAh'},\n", " 'href': 'https://api.spotify.com/v1/tracks/098jRmhqBvHf28Cm4oGMAh',\n", " 'id': '098jRmhqBvHf28Cm4oGMAh',\n", " 'instrumentalness': 0.0105,\n", " 'key': 11,\n", " 'liveness': 0.217,\n", " 'loudness': -11.014,\n", " 'mode': 1,\n", " 'name': 'There’s A Little Man',\n", " 'popularity': 10,\n", " 'preview_url': None,\n", " 'speechiness': 0.032,\n", " 'tempo': 131.677,\n", " 'time_signature': 4,\n", " 'track_href': 'https://api.spotify.com/v1/tracks/098jRmhqBvHf28Cm4oGMAh',\n", " 'track_number': 21,\n", " 'type': 'audio_features',\n", " 'uri': 'spotify:track:098jRmhqBvHf28Cm4oGMAh',\n", " 'valence': 0.602},\n", " {'_id': '7AcHel101DYYntiEkRcIVj',\n", " 'acousticness': 0.133,\n", " 'album': {'album_type': 'album',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/0LcJLqbBmaGUft1e9Mm8HV'},\n", " 'href': 'https://api.spotify.com/v1/artists/0LcJLqbBmaGUft1e9Mm8HV',\n", " 'id': '0LcJLqbBmaGUft1e9Mm8HV',\n", " 'name': 'ABBA',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0LcJLqbBmaGUft1e9Mm8HV'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'external_urls': {'spotify': 'https://open.spotify.com/album/5RwHHhuFTbbiznBtE3VATV'},\n", " 'href': 'https://api.spotify.com/v1/albums/5RwHHhuFTbbiznBtE3VATV',\n", " 'id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'images': [{'height': 640,\n", " 'url': 'https://i.scdn.co/image/b0aa268b5997f182b7ac52aff03011a74ab3ea42',\n", " 'width': 640},\n", " {'height': 300,\n", " 'url': 'https://i.scdn.co/image/4547f40a391882f06e1998b1f044be67e6bd765e',\n", " 'width': 300},\n", " {'height': 64,\n", " 'url': 'https://i.scdn.co/image/c6537d9759994417dfb7aa1bcfde400842595898',\n", " 'width': 64}],\n", " 'name': 'Ring Ring (Deluxe Edition)',\n", " 'type': 'album',\n", " 'uri': 'spotify:album:5RwHHhuFTbbiznBtE3VATV'},\n", " 'album_id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/7AcHel101DYYntiEkRcIVj',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/4NTZJHsDLmsbhjbFBVaAiu'},\n", " 'href': 'https://api.spotify.com/v1/artists/4NTZJHsDLmsbhjbFBVaAiu',\n", " 'id': '4NTZJHsDLmsbhjbFBVaAiu',\n", " 'name': 'Billy G-son',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:4NTZJHsDLmsbhjbFBVaAiu'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'danceability': 0.457,\n", " 'disc_number': 1,\n", " 'duration_ms': 138867,\n", " 'energy': 0.461,\n", " 'explicit': False,\n", " 'external_ids': {'isrc': 'SEUM71301819'},\n", " 'external_urls': {'spotify': 'https://open.spotify.com/track/7AcHel101DYYntiEkRcIVj'},\n", " 'href': 'https://api.spotify.com/v1/tracks/7AcHel101DYYntiEkRcIVj',\n", " 'id': '7AcHel101DYYntiEkRcIVj',\n", " 'instrumentalness': 0.00342,\n", " 'key': 7,\n", " 'liveness': 0.154,\n", " 'loudness': -10.27,\n", " 'mode': 1,\n", " 'name': 'I Saw It In The Mirror',\n", " 'popularity': 10,\n", " 'preview_url': None,\n", " 'speechiness': 0.0662,\n", " 'tempo': 78.341,\n", " 'time_signature': 4,\n", " 'track_href': 'https://api.spotify.com/v1/tracks/7AcHel101DYYntiEkRcIVj',\n", " 'track_number': 22,\n", " 'type': 'audio_features',\n", " 'uri': 'spotify:track:7AcHel101DYYntiEkRcIVj',\n", " 'valence': 0.339},\n", " {'_id': '6TwCpgROskwotNBbgHV7HI',\n", " 'acousticness': 0.846,\n", " 'album': {'album_type': 'album',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/0LcJLqbBmaGUft1e9Mm8HV'},\n", " 'href': 'https://api.spotify.com/v1/artists/0LcJLqbBmaGUft1e9Mm8HV',\n", " 'id': '0LcJLqbBmaGUft1e9Mm8HV',\n", " 'name': 'ABBA',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0LcJLqbBmaGUft1e9Mm8HV'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'external_urls': {'spotify': 'https://open.spotify.com/album/5RwHHhuFTbbiznBtE3VATV'},\n", " 'href': 'https://api.spotify.com/v1/albums/5RwHHhuFTbbiznBtE3VATV',\n", " 'id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'images': [{'height': 640,\n", " 'url': 'https://i.scdn.co/image/b0aa268b5997f182b7ac52aff03011a74ab3ea42',\n", " 'width': 640},\n", " {'height': 300,\n", " 'url': 'https://i.scdn.co/image/4547f40a391882f06e1998b1f044be67e6bd765e',\n", " 'width': 300},\n", " {'height': 64,\n", " 'url': 'https://i.scdn.co/image/c6537d9759994417dfb7aa1bcfde400842595898',\n", " 'width': 64}],\n", " 'name': 'Ring Ring (Deluxe Edition)',\n", " 'type': 'album',\n", " 'uri': 'spotify:album:5RwHHhuFTbbiznBtE3VATV'},\n", " 'album_id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/6TwCpgROskwotNBbgHV7HI',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/0hKn16bO6B1EKezikYo9lF'},\n", " 'href': 'https://api.spotify.com/v1/artists/0hKn16bO6B1EKezikYo9lF',\n", " 'id': '0hKn16bO6B1EKezikYo9lF',\n", " 'name': 'Jarl Kulle',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0hKn16bO6B1EKezikYo9lF'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'danceability': 0.534,\n", " 'disc_number': 1,\n", " 'duration_ms': 182107,\n", " 'energy': 0.254,\n", " 'explicit': False,\n", " 'external_ids': {'isrc': 'SEUM71301821'},\n", " 'external_urls': {'spotify': 'https://open.spotify.com/track/6TwCpgROskwotNBbgHV7HI'},\n", " 'href': 'https://api.spotify.com/v1/tracks/6TwCpgROskwotNBbgHV7HI',\n", " 'id': '6TwCpgROskwotNBbgHV7HI',\n", " 'instrumentalness': 1.78e-05,\n", " 'key': 4,\n", " 'liveness': 0.236,\n", " 'loudness': -14.709,\n", " 'mode': 1,\n", " 'name': 'Jag är blott en man',\n", " 'popularity': 11,\n", " 'preview_url': None,\n", " 'speechiness': 0.0307,\n", " 'tempo': 99.512,\n", " 'time_signature': 4,\n", " 'track_href': 'https://api.spotify.com/v1/tracks/6TwCpgROskwotNBbgHV7HI',\n", " 'track_number': 23,\n", " 'type': 'audio_features',\n", " 'uri': 'spotify:track:6TwCpgROskwotNBbgHV7HI',\n", " 'valence': 0.362},\n", " {'_id': '31CC3PStZNwMt3ltOnxH1e',\n", " 'acousticness': 0.234,\n", " 'album': {'album_type': 'album',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/0LcJLqbBmaGUft1e9Mm8HV'},\n", " 'href': 'https://api.spotify.com/v1/artists/0LcJLqbBmaGUft1e9Mm8HV',\n", " 'id': '0LcJLqbBmaGUft1e9Mm8HV',\n", " 'name': 'ABBA',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0LcJLqbBmaGUft1e9Mm8HV'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'external_urls': {'spotify': 'https://open.spotify.com/album/5RwHHhuFTbbiznBtE3VATV'},\n", " 'href': 'https://api.spotify.com/v1/albums/5RwHHhuFTbbiznBtE3VATV',\n", " 'id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'images': [{'height': 640,\n", " 'url': 'https://i.scdn.co/image/b0aa268b5997f182b7ac52aff03011a74ab3ea42',\n", " 'width': 640},\n", " {'height': 300,\n", " 'url': 'https://i.scdn.co/image/4547f40a391882f06e1998b1f044be67e6bd765e',\n", " 'width': 300},\n", " {'height': 64,\n", " 'url': 'https://i.scdn.co/image/c6537d9759994417dfb7aa1bcfde400842595898',\n", " 'width': 64}],\n", " 'name': 'Ring Ring (Deluxe Edition)',\n", " 'type': 'album',\n", " 'uri': 'spotify:album:5RwHHhuFTbbiznBtE3VATV'},\n", " 'album_id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/31CC3PStZNwMt3ltOnxH1e',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/5uOVb4hLSQVbHbVVt27tV1'},\n", " 'href': 'https://api.spotify.com/v1/artists/5uOVb4hLSQVbHbVVt27tV1',\n", " 'id': '5uOVb4hLSQVbHbVVt27tV1',\n", " 'name': 'Frida',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:5uOVb4hLSQVbHbVVt27tV1'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'danceability': 0.504,\n", " 'disc_number': 1,\n", " 'duration_ms': 172000,\n", " 'energy': 0.405,\n", " 'explicit': False,\n", " 'external_ids': {'isrc': 'SEAYD7215140'},\n", " 'external_urls': {'spotify': 'https://open.spotify.com/track/31CC3PStZNwMt3ltOnxH1e'},\n", " 'href': 'https://api.spotify.com/v1/tracks/31CC3PStZNwMt3ltOnxH1e',\n", " 'id': '31CC3PStZNwMt3ltOnxH1e',\n", " 'instrumentalness': 0,\n", " 'key': 8,\n", " 'liveness': 0.0564,\n", " 'loudness': -10.12,\n", " 'mode': 1,\n", " 'name': 'Man vill ju leva lite dessemellan',\n", " 'popularity': 11,\n", " 'preview_url': None,\n", " 'speechiness': 0.0338,\n", " 'tempo': 180.346,\n", " 'time_signature': 4,\n", " 'track_href': 'https://api.spotify.com/v1/tracks/31CC3PStZNwMt3ltOnxH1e',\n", " 'track_number': 24,\n", " 'type': 'audio_features',\n", " 'uri': 'spotify:track:31CC3PStZNwMt3ltOnxH1e',\n", " 'valence': 0.671},\n", " {'_id': '6TqO2UhOT1iHsljoZ3Lxok',\n", " 'acousticness': 0.715,\n", " 'album': {'album_type': 'album',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/0LcJLqbBmaGUft1e9Mm8HV'},\n", " 'href': 'https://api.spotify.com/v1/artists/0LcJLqbBmaGUft1e9Mm8HV',\n", " 'id': '0LcJLqbBmaGUft1e9Mm8HV',\n", " 'name': 'ABBA',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:0LcJLqbBmaGUft1e9Mm8HV'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'external_urls': {'spotify': 'https://open.spotify.com/album/5RwHHhuFTbbiznBtE3VATV'},\n", " 'href': 'https://api.spotify.com/v1/albums/5RwHHhuFTbbiznBtE3VATV',\n", " 'id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'images': [{'height': 640,\n", " 'url': 'https://i.scdn.co/image/b0aa268b5997f182b7ac52aff03011a74ab3ea42',\n", " 'width': 640},\n", " {'height': 300,\n", " 'url': 'https://i.scdn.co/image/4547f40a391882f06e1998b1f044be67e6bd765e',\n", " 'width': 300},\n", " {'height': 64,\n", " 'url': 'https://i.scdn.co/image/c6537d9759994417dfb7aa1bcfde400842595898',\n", " 'width': 64}],\n", " 'name': 'Ring Ring (Deluxe Edition)',\n", " 'type': 'album',\n", " 'uri': 'spotify:album:5RwHHhuFTbbiznBtE3VATV'},\n", " 'album_id': '5RwHHhuFTbbiznBtE3VATV',\n", " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/6TqO2UhOT1iHsljoZ3Lxok',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1YlYLkI3GlVDFSQGjMXWbt'},\n", " 'href': 'https://api.spotify.com/v1/artists/1YlYLkI3GlVDFSQGjMXWbt',\n", " 'id': '1YlYLkI3GlVDFSQGjMXWbt',\n", " 'name': 'Lill-Babs',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1YlYLkI3GlVDFSQGjMXWbt'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'danceability': 0.685,\n", " 'disc_number': 1,\n", " 'duration_ms': 198560,\n", " 'energy': 0.437,\n", " 'explicit': False,\n", " 'external_ids': {'isrc': 'SEAZA7118190'},\n", " 'external_urls': {'spotify': 'https://open.spotify.com/track/6TqO2UhOT1iHsljoZ3Lxok'},\n", " 'href': 'https://api.spotify.com/v1/tracks/6TqO2UhOT1iHsljoZ3Lxok',\n", " 'id': '6TqO2UhOT1iHsljoZ3Lxok',\n", " 'instrumentalness': 0,\n", " 'key': 9,\n", " 'liveness': 0.109,\n", " 'loudness': -8.43,\n", " 'mode': 1,\n", " 'name': 'Välkommen till världen',\n", " 'popularity': 12,\n", " 'preview_url': None,\n", " 'speechiness': 0.0317,\n", " 'tempo': 84.808,\n", " 'time_signature': 4,\n", " 'track_href': 'https://api.spotify.com/v1/tracks/6TqO2UhOT1iHsljoZ3Lxok',\n", " 'track_number': 25,\n", " 'type': 'audio_features',\n", " 'uri': 'spotify:track:6TqO2UhOT1iHsljoZ3Lxok',\n", " 'valence': 0.513}]" ] }, "execution_count": 396, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(tracks.find({'artist_name': {'$exists': False}}))" ] }, { "cell_type": "code", "execution_count": 397, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'ABBA',\n", " 'Duke Ellington',\n", " 'Foo Fighters',\n", " 'George Martin',\n", " 'Jimi Hendrix',\n", " 'Led Zeppelin',\n", " 'Muddy Waters',\n", " 'Queen',\n", " 'Radiohead',\n", " 'Spice Girls',\n", " 'The Beatles',\n", " 'The Rolling Stones'}" ] }, "execution_count": 397, "metadata": {}, "output_type": "execute_result" } ], "source": [ "set(t['artist_name'] for t in tracks.find({'artist_name': {'$exists': True}}))" ] }, { "cell_type": "code", "execution_count": 316, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
album_idalbum_nameartist_nametrack_idtrack_name
06VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin4AIJz1t4ysqOT1c5BLSRQQYou Shook Me - 23/3/69 Top Gear
16VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin5QRD5sNh0aaWMyjTzQ0QInI Can't Quit You Baby - 23/3/69 Top Gear
26VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin0RR8wuHHc5NqSFxhPDDBNVCommunication Breakdown - 22/6/69 Pop Sundae
36VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin3vDA1z8UmHtVLQV7McvhEjDazed And Confused - 23/3/69 Top Gear
46VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin7ecVrUYlhj6OrKTAK0oDzoThe Girl I Love She Got Long Black Wavy Hair -...
56VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin7oI0UewzZ7PS0ljPxDqh5gWhat Is And What Should Never Be - 29/6/69 Top...
66VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin2MoEFJIvt1huvOB16ggVVVCommunication Breakdown - 29/6/69 Top Gear
76VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin5cWIRgigrzjTjDBNXQxhARTravelling Riverside Blues - 29/6/69 Top Gear
86VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin03ybzRUwX9zWK69fSAAROHWhole Lotta Love - 29/6/69 Top Gear
96VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin4AX9BMMXAZmXKRmfLSYFVDSomethin' Else - 22/6/69 Pop Sundae
106VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin2mxCbflovI7X3GJqodNmQWCommunication Breakdown - 10/8/69 Playhouse Th...
116VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin2gJFReyGxkjBSGH7hTMMBWI Can't Quit You Baby - 10/8/69 Playhouse Theatre
126VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin593pmTrKexLeNCihWPLV4GYou Shook Me - 10/8/69 Playhouse Theatre
136VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin01E0FRixFbsbB98fg4x6evHow Many More Times - 10/8/69 Playhouse Theatre
146VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin5X95UM2l8CHywHaYRDJPQsImmigrant Song - 1/4/71 Paris Theatre
156VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin6QfmPnJkxdiF74BA17sADxHeartbreaker - 1/4/71 Paris Theatre
166VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin3ztOzed3fKKnQhjlSlt8zCSince I've Been Loving You - 1/4/71 Paris Theatre
176VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin1WjcnUqyx9Y3g6qkqQYUv8Black Dog - 1/4/71 Paris Theatre
186VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin6n7AvsSb4TzPMHVger0qHwDazed And Confused - 1/4/71 Paris Theatre
196VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin5eDGkltiw0sZbi1LRhxb8jStairway To Heaven - 1/4/71 Paris Theatre
206VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin7KfIcdv3NrWdomDqZWVnU3Going To California - 1/4/71 Paris Theatre
216VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin4U3jBsqRSepwtuxDXnUadzThat's The Way - 1/4/71 Paris Theatre
226VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin1jD9o6FcboH4s9I9zqB74KWhole Lotta Love (Medley) - 1/4/71 Paris Theatre
236VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin18W1RpWFGPD2wrobPz2SXXThank You - 1/4/71 Paris Theatre
246VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin6tuK0GEmQvC1pLIvk9HLawCommunication Breakdown - 23/3/69 Top Gear
256VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin4OLYHNc5o3yZRVfJXtwpXCWhat Is And What Should Never Be - 22/6/69 Pop...
266VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin2IW9BqnMx8S4Dt75l69Js0Dazed And Confused - 10/8/69 Playhouse Theatre
276VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin3H4iyihEybZnIuXCglL65UWhite Summer - 10/8/69 Playhouse Theatre
286VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin35PLOzghSxoafuqZtN2o6iWhat Is And What Should Never Be - 1/4/71 Pari...
296VH2op0GKIl3WNTbZmmcmIThe Complete BBC SessionsLed Zeppelin3FxBYHESXWpyAsNvqBNBoVCommunication Breakdown - 1/4/71 Paris Theatre
..................
37522BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin2W76zIzxrSLb5dqLz6s2tJBlack Mountain Side
37622BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin2whQxHDxButA5STZ32FYmeCommunication Breakdown
37722BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin4OQjzsqsnSy4YPB9yaRh0fI Can't Quit You Baby
37822BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin2SznNPgrjsmxXKhqeAN7WKHow Many More Times
37922BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin4uxti0X0LKCVhrWDoJs9HKGood Times Bad Times/Communication Breakdown -...
38022BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin3cp4kK4ZWCWXLWaCUvS3FjI Can't Quit You Baby - Live in Paris, 1969
38122BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin6DkkbyKCPkm55r4XU13elvHeartbreaker - Live in Paris, 1969
38222BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin76HR8Ox6ApIoipqrXDheZ3Dazed And Confused - Live in Paris, 1969
38322BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin0jgCqv5kHcXaa5E6pplkIfWhite Summer/Black Mountain Side - Live in Par...
38422BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin1Z1PlpV2k3JHs7aoy0X5bfYou Shook Me - Live in Paris, 1969
38522BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin4VoyZbJU4S0qFDr0PmjOqLMoby Dick - Live in Paris, 1969
38622BzOOZKYZ2jYYKLpOlnETLed Zeppelin (Remastered Deluxe Edition)Led Zeppelin4OLkBKMl6SDfjulpumMOZ4How Many More Times - Live in Paris, 1969
3871J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin0kfjZ0JCXU9sSg99gbQpbJGood Times Bad Times
3881J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin38KeSzb6FZYSogDXpc7xz8Babe I'm Gonna Leave You
3891J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin4HIunZLibo5KfbYIQRrHSuYou Shook Me
3901J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin5MWfv4F84sJhScYq18yqbNDazed And Confused
3911J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin5RPiBNQVmuEm7YlVVotrLaYour Time Is Gonna Come
3921J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin6AhZVsDudTq5KdJ5LbE32fBlack Mountain Side
3931J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin2E64SWjM9rQmAshItmdbcwCommunication Breakdown
3941J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin2idijP1bI3eqkU0gbVMdjUI Can't Quit You Baby
3951J8QW9qsMLx3staWaHpQmULed Zeppelin (Remastered)Led Zeppelin2aQd3uZDUKXwzZXvJ1oa0PHow Many More Times
3963ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin0QwZfbw26QeUoIy82Z2jYpGood Times Bad Times
3973ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin4OMu5a8sFpcRCPCcsoEaovBabe I'm Gonna Leave You
3983ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin0CrseEjTnYoB625tKoUowpYou Shook Me
3993ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin6hu1f1cXSw7OAqhpSQ2zDyDazed And Confused
4003ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin3Zr81qUZEhR4vPeUFUsBB0Your Time Is Gonna Come
4013ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin6rmEV2YtvWkigxPZocINO3Black Mountain Side
4023ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin0yVs7eSL8mPnIu2CGKHpUQCommunication Breakdown
4033ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin62QInSlXQI11BR9ycVWjd6I Can't Quit You Baby
4043ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin5VBzIn9cBH4BNa1c6ZilbaHow Many More Times
\n", "

405 rows × 5 columns

\n", "
" ], "text/plain": [ " album_id album_name \\\n", "0 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "1 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "2 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "3 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "4 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "5 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "6 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "7 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "8 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "9 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "10 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "11 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "12 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "13 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "14 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "15 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "16 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "17 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "18 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "19 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "20 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "21 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "22 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "23 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "24 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "25 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "26 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "27 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "28 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", "29 6VH2op0GKIl3WNTbZmmcmI The Complete BBC Sessions \n", ".. ... ... \n", "375 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "376 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "377 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "378 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "379 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "380 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "381 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "382 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "383 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "384 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "385 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "386 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin (Remastered Deluxe Edition) \n", "387 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "388 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "389 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "390 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "391 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "392 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "393 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "394 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "395 1J8QW9qsMLx3staWaHpQmU Led Zeppelin (Remastered) \n", "396 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "397 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "398 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "399 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "400 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "401 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "402 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "403 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "404 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "\n", " artist_name track_id \\\n", "0 Led Zeppelin 4AIJz1t4ysqOT1c5BLSRQQ \n", "1 Led Zeppelin 5QRD5sNh0aaWMyjTzQ0QIn \n", "2 Led Zeppelin 0RR8wuHHc5NqSFxhPDDBNV \n", "3 Led Zeppelin 3vDA1z8UmHtVLQV7McvhEj \n", "4 Led Zeppelin 7ecVrUYlhj6OrKTAK0oDzo \n", "5 Led Zeppelin 7oI0UewzZ7PS0ljPxDqh5g \n", "6 Led Zeppelin 2MoEFJIvt1huvOB16ggVVV \n", "7 Led Zeppelin 5cWIRgigrzjTjDBNXQxhAR \n", "8 Led Zeppelin 03ybzRUwX9zWK69fSAAROH \n", "9 Led Zeppelin 4AX9BMMXAZmXKRmfLSYFVD \n", "10 Led Zeppelin 2mxCbflovI7X3GJqodNmQW \n", "11 Led Zeppelin 2gJFReyGxkjBSGH7hTMMBW \n", "12 Led Zeppelin 593pmTrKexLeNCihWPLV4G \n", "13 Led Zeppelin 01E0FRixFbsbB98fg4x6ev \n", "14 Led Zeppelin 5X95UM2l8CHywHaYRDJPQs \n", "15 Led Zeppelin 6QfmPnJkxdiF74BA17sADx \n", "16 Led Zeppelin 3ztOzed3fKKnQhjlSlt8zC \n", "17 Led Zeppelin 1WjcnUqyx9Y3g6qkqQYUv8 \n", "18 Led Zeppelin 6n7AvsSb4TzPMHVger0qHw \n", "19 Led Zeppelin 5eDGkltiw0sZbi1LRhxb8j \n", "20 Led Zeppelin 7KfIcdv3NrWdomDqZWVnU3 \n", "21 Led Zeppelin 4U3jBsqRSepwtuxDXnUadz \n", "22 Led Zeppelin 1jD9o6FcboH4s9I9zqB74K \n", "23 Led Zeppelin 18W1RpWFGPD2wrobPz2SXX \n", "24 Led Zeppelin 6tuK0GEmQvC1pLIvk9HLaw \n", "25 Led Zeppelin 4OLYHNc5o3yZRVfJXtwpXC \n", "26 Led Zeppelin 2IW9BqnMx8S4Dt75l69Js0 \n", "27 Led Zeppelin 3H4iyihEybZnIuXCglL65U \n", "28 Led Zeppelin 35PLOzghSxoafuqZtN2o6i \n", "29 Led Zeppelin 3FxBYHESXWpyAsNvqBNBoV \n", ".. ... ... \n", "375 Led Zeppelin 2W76zIzxrSLb5dqLz6s2tJ \n", "376 Led Zeppelin 2whQxHDxButA5STZ32FYme \n", "377 Led Zeppelin 4OQjzsqsnSy4YPB9yaRh0f \n", "378 Led Zeppelin 2SznNPgrjsmxXKhqeAN7WK \n", "379 Led Zeppelin 4uxti0X0LKCVhrWDoJs9HK \n", "380 Led Zeppelin 3cp4kK4ZWCWXLWaCUvS3Fj \n", "381 Led Zeppelin 6DkkbyKCPkm55r4XU13elv \n", "382 Led Zeppelin 76HR8Ox6ApIoipqrXDheZ3 \n", "383 Led Zeppelin 0jgCqv5kHcXaa5E6pplkIf \n", "384 Led Zeppelin 1Z1PlpV2k3JHs7aoy0X5bf \n", "385 Led Zeppelin 4VoyZbJU4S0qFDr0PmjOqL \n", "386 Led Zeppelin 4OLkBKMl6SDfjulpumMOZ4 \n", "387 Led Zeppelin 0kfjZ0JCXU9sSg99gbQpbJ \n", "388 Led Zeppelin 38KeSzb6FZYSogDXpc7xz8 \n", "389 Led Zeppelin 4HIunZLibo5KfbYIQRrHSu \n", "390 Led Zeppelin 5MWfv4F84sJhScYq18yqbN \n", "391 Led Zeppelin 5RPiBNQVmuEm7YlVVotrLa \n", "392 Led Zeppelin 6AhZVsDudTq5KdJ5LbE32f \n", "393 Led Zeppelin 2E64SWjM9rQmAshItmdbcw \n", "394 Led Zeppelin 2idijP1bI3eqkU0gbVMdjU \n", "395 Led Zeppelin 2aQd3uZDUKXwzZXvJ1oa0P \n", "396 Led Zeppelin 0QwZfbw26QeUoIy82Z2jYp \n", "397 Led Zeppelin 4OMu5a8sFpcRCPCcsoEaov \n", "398 Led Zeppelin 0CrseEjTnYoB625tKoUowp \n", "399 Led Zeppelin 6hu1f1cXSw7OAqhpSQ2zDy \n", "400 Led Zeppelin 3Zr81qUZEhR4vPeUFUsBB0 \n", "401 Led Zeppelin 6rmEV2YtvWkigxPZocINO3 \n", "402 Led Zeppelin 0yVs7eSL8mPnIu2CGKHpUQ \n", "403 Led Zeppelin 62QInSlXQI11BR9ycVWjd6 \n", "404 Led Zeppelin 5VBzIn9cBH4BNa1c6Zilba \n", "\n", " track_name \n", "0 You Shook Me - 23/3/69 Top Gear \n", "1 I Can't Quit You Baby - 23/3/69 Top Gear \n", "2 Communication Breakdown - 22/6/69 Pop Sundae \n", "3 Dazed And Confused - 23/3/69 Top Gear \n", "4 The Girl I Love She Got Long Black Wavy Hair -... \n", "5 What Is And What Should Never Be - 29/6/69 Top... \n", "6 Communication Breakdown - 29/6/69 Top Gear \n", "7 Travelling Riverside Blues - 29/6/69 Top Gear \n", "8 Whole Lotta Love - 29/6/69 Top Gear \n", "9 Somethin' Else - 22/6/69 Pop Sundae \n", "10 Communication Breakdown - 10/8/69 Playhouse Th... \n", "11 I Can't Quit You Baby - 10/8/69 Playhouse Theatre \n", "12 You Shook Me - 10/8/69 Playhouse Theatre \n", "13 How Many More Times - 10/8/69 Playhouse Theatre \n", "14 Immigrant Song - 1/4/71 Paris Theatre \n", "15 Heartbreaker - 1/4/71 Paris Theatre \n", "16 Since I've Been Loving You - 1/4/71 Paris Theatre \n", "17 Black Dog - 1/4/71 Paris Theatre \n", "18 Dazed And Confused - 1/4/71 Paris Theatre \n", "19 Stairway To Heaven - 1/4/71 Paris Theatre \n", "20 Going To California - 1/4/71 Paris Theatre \n", "21 That's The Way - 1/4/71 Paris Theatre \n", "22 Whole Lotta Love (Medley) - 1/4/71 Paris Theatre \n", "23 Thank You - 1/4/71 Paris Theatre \n", "24 Communication Breakdown - 23/3/69 Top Gear \n", "25 What Is And What Should Never Be - 22/6/69 Pop... \n", "26 Dazed And Confused - 10/8/69 Playhouse Theatre \n", "27 White Summer - 10/8/69 Playhouse Theatre \n", "28 What Is And What Should Never Be - 1/4/71 Pari... \n", "29 Communication Breakdown - 1/4/71 Paris Theatre \n", ".. ... \n", "375 Black Mountain Side \n", "376 Communication Breakdown \n", "377 I Can't Quit You Baby \n", "378 How Many More Times \n", "379 Good Times Bad Times/Communication Breakdown -... \n", "380 I Can't Quit You Baby - Live in Paris, 1969 \n", "381 Heartbreaker - Live in Paris, 1969 \n", "382 Dazed And Confused - Live in Paris, 1969 \n", "383 White Summer/Black Mountain Side - Live in Par... \n", "384 You Shook Me - Live in Paris, 1969 \n", "385 Moby Dick - Live in Paris, 1969 \n", "386 How Many More Times - Live in Paris, 1969 \n", "387 Good Times Bad Times \n", "388 Babe I'm Gonna Leave You \n", "389 You Shook Me \n", "390 Dazed And Confused \n", "391 Your Time Is Gonna Come \n", "392 Black Mountain Side \n", "393 Communication Breakdown \n", "394 I Can't Quit You Baby \n", "395 How Many More Times \n", "396 Good Times Bad Times \n", "397 Babe I'm Gonna Leave You \n", "398 You Shook Me \n", "399 Dazed And Confused \n", "400 Your Time Is Gonna Come \n", "401 Black Mountain Side \n", "402 Communication Breakdown \n", "403 I Can't Quit You Baby \n", "404 How Many More Times \n", "\n", "[405 rows x 5 columns]" ] }, "execution_count": 316, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame([{'album_id': a['id'], \n", " 'album_name': a['name'],\n", " 'track_id': t['id'],\n", " 'track_name': t['name'],\n", " 'artist_name': t['artist_name']}\n", " for a in albums.find({'artist_id': this_artist_id})\n", " for tid in a['tracks']['items']\n", " for t in tracks.find({'_id': tid['id'], 'artist_name': {'$exists': True}})])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Get full track data\n", "The full audio analysis requires an API token to get the data. We use the client token to retreive an authorisation token, which will last for about ten minutes.\n", "\n", "* [Top](#top)" ] }, { "cell_type": "code", "execution_count": 317, "metadata": {}, "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", " \n", " for _ in range(10):\n", " try:\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})\n", " break\n", " except urllib.error.HTTPError as e:\n", " print(\"Rate limited. Pausing for\", e.info()['Retry-After'])\n", " time.sleep(int(e.info()['Retry-After']) + 0.5)\n", " continue " ] }, { "cell_type": "code", "execution_count": 398, "metadata": {}, "outputs": [], "source": [ "a_type, a_token = get_spotify_auth_token()\n", "for a in albums.find({}, []):\n", " track_ids = [t['_id'] for t in tracks.find({'album.id': a['_id']}, [])]\n", " get_audio_features(track_ids, a_type, a_token)" ] }, { "cell_type": "code", "execution_count": 399, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0123456789...679680681682683684685686687688
_id1SvX2R7kPc0JsGnJaJVzZO0539iqYPTBADCOErdzreVt336FWwFS99OzxnCaXcx0gt3ldtMr0AMzoMd1xGR5aAYz7z1JYjP1HnbGMJLqCVm1eC021qUf6DWC3VJYipCvvApm5rbGVn7WkOw2whbwso1dBX7Gjz9hnR8IlQvptOxZzygX2QQ41S2czs8Pvo4p2o5LAk7apJhSwq7A7pAe706UTWTW...4SLYZBk205QMJeOf3I4JuI6bIA8Y5TnQmnApC5R6oOQ32u0zaP27DuxKyU0IHMFnuF710rymKyaC6XjY7CBpjYpb5cWV61fOUtcesIrA9vVfGT3mCG3P9mDbiPKvWD8956CY09bBW3fG0rNj6CUTsQKEFa25innbpSX3VMnfI8tRwzMx46gP62DVmyvT8Yt3XMt9qo2PNGzkYgkFD50qJy4mTvxb
acousticness0.2670.1880.06140.1250.03840.04910.2060.02490.02880.113...0.05610.130.1370.7180.3210.7190.1920.5950.07070.347
album{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ......{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...{'type': 'album', 'available_markets': ['AD', ...
album_id0pEfDPZko6TnNOgrZMe5nn1HmWxU8jJ27zCs3thz4yX51HmWxU8jJ27zCs3thz4yX51HmWxU8jJ27zCs3thz4yX51HmWxU8jJ27zCs3thz4yX51HmWxU8jJ27zCs3thz4yX51HmWxU8jJ27zCs3thz4yX51HmWxU8jJ27zCs3thz4yX51HmWxU8jJ27zCs3thz4yX51HmWxU8jJ27zCs3thz4yX5...6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh6YwX6crCLDQTE8ZbtdzFUh
analysis_urlhttps://api.spotify.com/v1/audio-analysis/1SvX...https://api.spotify.com/v1/audio-analysis/0539...https://api.spotify.com/v1/audio-analysis/336F...https://api.spotify.com/v1/audio-analysis/3ldt...https://api.spotify.com/v1/audio-analysis/7z1J...https://api.spotify.com/v1/audio-analysis/021q...https://api.spotify.com/v1/audio-analysis/5rbG...https://api.spotify.com/v1/audio-analysis/7Gjz...https://api.spotify.com/v1/audio-analysis/2QQ4...https://api.spotify.com/v1/audio-analysis/7apJ......https://api.spotify.com/v1/audio-analysis/4SLY...https://api.spotify.com/v1/audio-analysis/6bIA...https://api.spotify.com/v1/audio-analysis/2u0z...https://api.spotify.com/v1/audio-analysis/710r...https://api.spotify.com/v1/audio-analysis/5cWV...https://api.spotify.com/v1/audio-analysis/3mCG...https://api.spotify.com/v1/audio-analysis/09bB...https://api.spotify.com/v1/audio-analysis/25in...https://api.spotify.com/v1/audio-analysis/46gP...https://api.spotify.com/v1/audio-analysis/2PNG...
artist_id1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d...1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d1dfeR4HaWDbWqFHLkxsg1d
artist_nameQueenQueenQueenQueenQueenQueenQueenQueenQueenQueen...QueenQueenQueenQueenQueenQueenQueenQueenQueenQueen
artists[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs......[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...[{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs...
available_markets[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C......[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...[AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C...
danceability0.5560.7040.5690.730.6380.790.160.4060.7360.546...0.4690.3280.3670.2450.4630.3710.3370.230.2640.611
disc_number1111111222...1111222222
duration_ms267480237680248387263293282920202800347800242093302480226587...10817319953322417376573230173262560367680304733472227202653
energy0.3630.7920.8640.7910.8040.4170.8660.8470.5050.765...0.9350.7230.7470.4580.8860.5560.8880.7170.8870.731
explicitFalseFalseFalseFalseFalseFalseFalseFalseFalseFalse...FalseFalseFalseFalseFalseFalseFalseFalseFalseFalse
external_ids{'isrc': 'GBUM71106191'}{'isrc': 'GBUM71029633'}{'isrc': 'GBUM71029628'}{'isrc': 'GBUM71106208'}{'isrc': 'GBUM71106209'}{'isrc': 'GBUM71106210'}{'isrc': 'GBUM71106211'}{'isrc': 'GBUM71029624'}{'isrc': 'GBUM71106897'}{'isrc': 'GBUM71106632'}...{'isrc': 'GBUM71100447'}{'isrc': 'GBUM71100451'}{'isrc': 'GBUM71100444'}{'isrc': 'GBUM71100450'}{'isrc': 'GBUM71100887'}{'isrc': 'GBUM71100888'}{'isrc': 'GBUM71100889'}{'isrc': 'GBUM71100890'}{'isrc': 'GBUM71100891'}{'isrc': 'GBUM71100893'}
external_urls{'spotify': 'https://open.spotify.com/track/1S...{'spotify': 'https://open.spotify.com/track/05...{'spotify': 'https://open.spotify.com/track/33...{'spotify': 'https://open.spotify.com/track/3l...{'spotify': 'https://open.spotify.com/track/7z...{'spotify': 'https://open.spotify.com/track/02...{'spotify': 'https://open.spotify.com/track/5r...{'spotify': 'https://open.spotify.com/track/7G...{'spotify': 'https://open.spotify.com/track/2Q...{'spotify': 'https://open.spotify.com/track/7a......{'spotify': 'https://open.spotify.com/track/4S...{'spotify': 'https://open.spotify.com/track/6b...{'spotify': 'https://open.spotify.com/track/2u...{'spotify': 'https://open.spotify.com/track/71...{'spotify': 'https://open.spotify.com/track/5c...{'spotify': 'https://open.spotify.com/track/3m...{'spotify': 'https://open.spotify.com/track/09...{'spotify': 'https://open.spotify.com/track/25...{'spotify': 'https://open.spotify.com/track/46...{'spotify': 'https://open.spotify.com/track/2P...
hrefhttps://api.spotify.com/v1/tracks/1SvX2R7kPc0J...https://api.spotify.com/v1/tracks/0539iqYPTBAD...https://api.spotify.com/v1/tracks/336FWwFS99Oz...https://api.spotify.com/v1/tracks/3ldtMr0AMzoM...https://api.spotify.com/v1/tracks/7z1JYjP1HnbG...https://api.spotify.com/v1/tracks/021qUf6DWC3V...https://api.spotify.com/v1/tracks/5rbGVn7WkOw2...https://api.spotify.com/v1/tracks/7Gjz9hnR8IlQ...https://api.spotify.com/v1/tracks/2QQ41S2czs8P...https://api.spotify.com/v1/tracks/7apJhSwq7A7p......https://api.spotify.com/v1/tracks/4SLYZBk205QM...https://api.spotify.com/v1/tracks/6bIA8Y5TnQmn...https://api.spotify.com/v1/tracks/2u0zaP27DuxK...https://api.spotify.com/v1/tracks/710rymKyaC6X...https://api.spotify.com/v1/tracks/5cWV61fOUtce...https://api.spotify.com/v1/tracks/3mCG3P9mDbiP...https://api.spotify.com/v1/tracks/09bBW3fG0rNj...https://api.spotify.com/v1/tracks/25innbpSX3VM...https://api.spotify.com/v1/tracks/46gP62DVmyvT...https://api.spotify.com/v1/tracks/2PNGzkYgkFD5...
id1SvX2R7kPc0JsGnJaJVzZO0539iqYPTBADCOErdzreVt336FWwFS99OzxnCaXcx0gt3ldtMr0AMzoMd1xGR5aAYz7z1JYjP1HnbGMJLqCVm1eC021qUf6DWC3VJYipCvvApm5rbGVn7WkOw2whbwso1dBX7Gjz9hnR8IlQvptOxZzygX2QQ41S2czs8Pvo4p2o5LAk7apJhSwq7A7pAe706UTWTW...4SLYZBk205QMJeOf3I4JuI6bIA8Y5TnQmnApC5R6oOQ32u0zaP27DuxKyU0IHMFnuF710rymKyaC6XjY7CBpjYpb5cWV61fOUtcesIrA9vVfGT3mCG3P9mDbiPKvWD8956CY09bBW3fG0rNj6CUTsQKEFa25innbpSX3VMnfI8tRwzMx46gP62DVmyvT8Yt3XMt9qo2PNGzkYgkFD50qJy4mTvxb
instrumentalness0.0005570.01550.009550.0004150.00230.01234.32e-053.01e-060.440.000251...6.96e-050.08571.49e-060.9631.98e-053.84e-050.0001379.51e-050.02250
key1105941911102...4292944921
liveness0.350.3280.3530.06550.3120.04490.08940.3750.120.0936...0.8310.3690.1810.1540.4220.3710.130.2230.5950.123
loudness-8.542-6.94-5.697-6.692-5.961-10.828-5.277-5.705-9.58-7.194...-9.151-7.842-7.065-13.372-9.063-10.476-8.608-7.953-9.082-9.07
mode0110010001...0111100111
nameOne Year Of Love - Remastered 2011The Invisible Man - Remastered 2011Breakthru - Remastered 2011Rain Must Fall - Remastered 2011Scandal - Remastered 2011My Baby Does Me - Remastered 2011Was It All Worth It - Remastered 2011I Want It All - Single VersionThe Invisible Man - DemoHang On In There - B-Side...Modern Times Rock 'N Roll - Remastered 2011Son And Daughter - Remastered 2011Jesus - Remastered 2011Seven Seas Of Rhye - Remastered 2011Keep Yourself Alive - De Lane Lea Demo / Decem...The Night Comes Down - De Lane Lea Demo / Dece...Great King Rat - De Lane Lea Demo / December 1971Jesus - De Lane Lea Demo / December 1971Liar - De Lane Lea Demo / December 1971Mad The Swine
popularity40293124272324492221...23232324212023191921
preview_urlNoneNoneNoneNoneNoneNoneNoneNoneNoneNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNone
speechiness0.02610.04220.08620.04020.03190.05130.08830.04820.05340.0434...0.07340.04340.1720.04090.1710.05280.1030.06290.07620.13
tempo111.035119.99490.08112.016103.4690.955179.75192.245119.195122.345...115.75144.832115.0864.517133.829143.199131.385201.793143.464138.569
time_signature3444444444...4444444344
track_hrefhttps://api.spotify.com/v1/tracks/1SvX2R7kPc0J...https://api.spotify.com/v1/tracks/0539iqYPTBAD...https://api.spotify.com/v1/tracks/336FWwFS99Oz...https://api.spotify.com/v1/tracks/3ldtMr0AMzoM...https://api.spotify.com/v1/tracks/7z1JYjP1HnbG...https://api.spotify.com/v1/tracks/021qUf6DWC3V...https://api.spotify.com/v1/tracks/5rbGVn7WkOw2...https://api.spotify.com/v1/tracks/7Gjz9hnR8IlQ...https://api.spotify.com/v1/tracks/2QQ41S2czs8P...https://api.spotify.com/v1/tracks/7apJhSwq7A7p......https://api.spotify.com/v1/tracks/4SLYZBk205QM...https://api.spotify.com/v1/tracks/6bIA8Y5TnQmn...https://api.spotify.com/v1/tracks/2u0zaP27DuxK...https://api.spotify.com/v1/tracks/710rymKyaC6X...https://api.spotify.com/v1/tracks/5cWV61fOUtce...https://api.spotify.com/v1/tracks/3mCG3P9mDbiP...https://api.spotify.com/v1/tracks/09bBW3fG0rNj...https://api.spotify.com/v1/tracks/25innbpSX3VM...https://api.spotify.com/v1/tracks/46gP62DVmyvT...https://api.spotify.com/v1/tracks/2PNGzkYgkFD5...
track_number35678910123...78910123456
typeaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_features...audio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_featuresaudio_features
urispotify:track:1SvX2R7kPc0JsGnJaJVzZOspotify:track:0539iqYPTBADCOErdzreVtspotify:track:336FWwFS99OzxnCaXcx0gtspotify:track:3ldtMr0AMzoMd1xGR5aAYzspotify:track:7z1JYjP1HnbGMJLqCVm1eCspotify:track:021qUf6DWC3VJYipCvvApmspotify:track:5rbGVn7WkOw2whbwso1dBXspotify:track:7Gjz9hnR8IlQvptOxZzygXspotify:track:2QQ41S2czs8Pvo4p2o5LAkspotify:track:7apJhSwq7A7pAe706UTWTW...spotify:track:4SLYZBk205QMJeOf3I4JuIspotify:track:6bIA8Y5TnQmnApC5R6oOQ3spotify:track:2u0zaP27DuxKyU0IHMFnuFspotify:track:710rymKyaC6XjY7CBpjYpbspotify:track:5cWV61fOUtcesIrA9vVfGTspotify:track:3mCG3P9mDbiPKvWD8956CYspotify:track:09bBW3fG0rNj6CUTsQKEFaspotify:track:25innbpSX3VMnfI8tRwzMxspotify:track:46gP62DVmyvT8Yt3XMt9qospotify:track:2PNGzkYgkFD50qJy4mTvxb
valence0.1140.5630.3180.960.5070.7030.130.3790.3310.382...0.60.7490.5830.04470.3910.6290.5050.4810.4210.664
\n", "

34 rows × 689 columns

\n", "
" ], "text/plain": [ " 0 \\\n", "_id 1SvX2R7kPc0JsGnJaJVzZO \n", "acousticness 0.267 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 0pEfDPZko6TnNOgrZMe5nn \n", "analysis_url https://api.spotify.com/v1/audio-analysis/1SvX... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.556 \n", "disc_number 1 \n", "duration_ms 267480 \n", "energy 0.363 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71106191'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/1S... \n", "href https://api.spotify.com/v1/tracks/1SvX2R7kPc0J... \n", "id 1SvX2R7kPc0JsGnJaJVzZO \n", "instrumentalness 0.000557 \n", "key 11 \n", "liveness 0.35 \n", "loudness -8.542 \n", "mode 0 \n", "name One Year Of Love - Remastered 2011 \n", "popularity 40 \n", "preview_url None \n", "speechiness 0.0261 \n", "tempo 111.035 \n", "time_signature 3 \n", "track_href https://api.spotify.com/v1/tracks/1SvX2R7kPc0J... \n", "track_number 3 \n", "type audio_features \n", "uri spotify:track:1SvX2R7kPc0JsGnJaJVzZO \n", "valence 0.114 \n", "\n", " 1 \\\n", "_id 0539iqYPTBADCOErdzreVt \n", "acousticness 0.188 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/0539... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.704 \n", "disc_number 1 \n", "duration_ms 237680 \n", "energy 0.792 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71029633'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/05... \n", "href https://api.spotify.com/v1/tracks/0539iqYPTBAD... \n", "id 0539iqYPTBADCOErdzreVt \n", "instrumentalness 0.0155 \n", "key 0 \n", "liveness 0.328 \n", "loudness -6.94 \n", "mode 1 \n", "name The Invisible Man - Remastered 2011 \n", "popularity 29 \n", "preview_url None \n", "speechiness 0.0422 \n", "tempo 119.994 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/0539iqYPTBAD... \n", "track_number 5 \n", "type audio_features \n", "uri spotify:track:0539iqYPTBADCOErdzreVt \n", "valence 0.563 \n", "\n", " 2 \\\n", "_id 336FWwFS99OzxnCaXcx0gt \n", "acousticness 0.0614 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/336F... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.569 \n", "disc_number 1 \n", "duration_ms 248387 \n", "energy 0.864 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71029628'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/33... \n", "href https://api.spotify.com/v1/tracks/336FWwFS99Oz... \n", "id 336FWwFS99OzxnCaXcx0gt \n", "instrumentalness 0.00955 \n", "key 5 \n", "liveness 0.353 \n", "loudness -5.697 \n", "mode 1 \n", "name Breakthru - Remastered 2011 \n", "popularity 31 \n", "preview_url None \n", "speechiness 0.0862 \n", "tempo 90.08 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/336FWwFS99Oz... \n", "track_number 6 \n", "type audio_features \n", "uri spotify:track:336FWwFS99OzxnCaXcx0gt \n", "valence 0.318 \n", "\n", " 3 \\\n", "_id 3ldtMr0AMzoMd1xGR5aAYz \n", "acousticness 0.125 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/3ldt... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.73 \n", "disc_number 1 \n", "duration_ms 263293 \n", "energy 0.791 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71106208'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/3l... \n", "href https://api.spotify.com/v1/tracks/3ldtMr0AMzoM... \n", "id 3ldtMr0AMzoMd1xGR5aAYz \n", "instrumentalness 0.000415 \n", "key 9 \n", "liveness 0.0655 \n", "loudness -6.692 \n", "mode 0 \n", "name Rain Must Fall - Remastered 2011 \n", "popularity 24 \n", "preview_url None \n", "speechiness 0.0402 \n", "tempo 112.016 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/3ldtMr0AMzoM... \n", "track_number 7 \n", "type audio_features \n", "uri spotify:track:3ldtMr0AMzoMd1xGR5aAYz \n", "valence 0.96 \n", "\n", " 4 \\\n", "_id 7z1JYjP1HnbGMJLqCVm1eC \n", "acousticness 0.0384 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/7z1J... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.638 \n", "disc_number 1 \n", "duration_ms 282920 \n", "energy 0.804 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71106209'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/7z... \n", "href https://api.spotify.com/v1/tracks/7z1JYjP1HnbG... \n", "id 7z1JYjP1HnbGMJLqCVm1eC \n", "instrumentalness 0.0023 \n", "key 4 \n", "liveness 0.312 \n", "loudness -5.961 \n", "mode 0 \n", "name Scandal - Remastered 2011 \n", "popularity 27 \n", "preview_url None \n", "speechiness 0.0319 \n", "tempo 103.46 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/7z1JYjP1HnbG... \n", "track_number 8 \n", "type audio_features \n", "uri spotify:track:7z1JYjP1HnbGMJLqCVm1eC \n", "valence 0.507 \n", "\n", " 5 \\\n", "_id 021qUf6DWC3VJYipCvvApm \n", "acousticness 0.0491 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/021q... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.79 \n", "disc_number 1 \n", "duration_ms 202800 \n", "energy 0.417 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71106210'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/02... \n", "href https://api.spotify.com/v1/tracks/021qUf6DWC3V... \n", "id 021qUf6DWC3VJYipCvvApm \n", "instrumentalness 0.0123 \n", "key 1 \n", "liveness 0.0449 \n", "loudness -10.828 \n", "mode 1 \n", "name My Baby Does Me - Remastered 2011 \n", "popularity 23 \n", "preview_url None \n", "speechiness 0.0513 \n", "tempo 90.955 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/021qUf6DWC3V... \n", "track_number 9 \n", "type audio_features \n", "uri spotify:track:021qUf6DWC3VJYipCvvApm \n", "valence 0.703 \n", "\n", " 6 \\\n", "_id 5rbGVn7WkOw2whbwso1dBX \n", "acousticness 0.206 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/5rbG... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.16 \n", "disc_number 1 \n", "duration_ms 347800 \n", "energy 0.866 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71106211'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/5r... \n", "href https://api.spotify.com/v1/tracks/5rbGVn7WkOw2... \n", "id 5rbGVn7WkOw2whbwso1dBX \n", "instrumentalness 4.32e-05 \n", "key 9 \n", "liveness 0.0894 \n", "loudness -5.277 \n", "mode 0 \n", "name Was It All Worth It - Remastered 2011 \n", "popularity 24 \n", "preview_url None \n", "speechiness 0.0883 \n", "tempo 179.751 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/5rbGVn7WkOw2... \n", "track_number 10 \n", "type audio_features \n", "uri spotify:track:5rbGVn7WkOw2whbwso1dBX \n", "valence 0.13 \n", "\n", " 7 \\\n", "_id 7Gjz9hnR8IlQvptOxZzygX \n", "acousticness 0.0249 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/7Gjz... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.406 \n", "disc_number 2 \n", "duration_ms 242093 \n", "energy 0.847 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71029624'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/7G... \n", "href https://api.spotify.com/v1/tracks/7Gjz9hnR8IlQ... \n", "id 7Gjz9hnR8IlQvptOxZzygX \n", "instrumentalness 3.01e-06 \n", "key 11 \n", "liveness 0.375 \n", "loudness -5.705 \n", "mode 0 \n", "name I Want It All - Single Version \n", "popularity 49 \n", "preview_url None \n", "speechiness 0.0482 \n", "tempo 92.245 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/7Gjz9hnR8IlQ... \n", "track_number 1 \n", "type audio_features \n", "uri spotify:track:7Gjz9hnR8IlQvptOxZzygX \n", "valence 0.379 \n", "\n", " 8 \\\n", "_id 2QQ41S2czs8Pvo4p2o5LAk \n", "acousticness 0.0288 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/2QQ4... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.736 \n", "disc_number 2 \n", "duration_ms 302480 \n", "energy 0.505 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71106897'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/2Q... \n", "href https://api.spotify.com/v1/tracks/2QQ41S2czs8P... \n", "id 2QQ41S2czs8Pvo4p2o5LAk \n", "instrumentalness 0.44 \n", "key 10 \n", "liveness 0.12 \n", "loudness -9.58 \n", "mode 0 \n", "name The Invisible Man - Demo \n", "popularity 22 \n", "preview_url None \n", "speechiness 0.0534 \n", "tempo 119.195 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/2QQ41S2czs8P... \n", "track_number 2 \n", "type audio_features \n", "uri spotify:track:2QQ41S2czs8Pvo4p2o5LAk \n", "valence 0.331 \n", "\n", " 9 \\\n", "_id 7apJhSwq7A7pAe706UTWTW \n", "acousticness 0.113 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 1HmWxU8jJ27zCs3thz4yX5 \n", "analysis_url https://api.spotify.com/v1/audio-analysis/7apJ... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.546 \n", "disc_number 2 \n", "duration_ms 226587 \n", "energy 0.765 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71106632'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/7a... \n", "href https://api.spotify.com/v1/tracks/7apJhSwq7A7p... \n", "id 7apJhSwq7A7pAe706UTWTW \n", "instrumentalness 0.000251 \n", "key 2 \n", "liveness 0.0936 \n", "loudness -7.194 \n", "mode 1 \n", "name Hang On In There - B-Side \n", "popularity 21 \n", "preview_url None \n", "speechiness 0.0434 \n", "tempo 122.345 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/7apJhSwq7A7p... \n", "track_number 3 \n", "type audio_features \n", "uri spotify:track:7apJhSwq7A7pAe706UTWTW \n", "valence 0.382 \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", "tempo ... \n", "time_signature ... \n", "track_href ... \n", "track_number ... \n", "type ... \n", "uri ... \n", "valence ... \n", "\n", " 679 \\\n", "_id 4SLYZBk205QMJeOf3I4JuI \n", "acousticness 0.0561 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/4SLY... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.469 \n", "disc_number 1 \n", "duration_ms 108173 \n", "energy 0.935 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100447'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/4S... \n", "href https://api.spotify.com/v1/tracks/4SLYZBk205QM... \n", "id 4SLYZBk205QMJeOf3I4JuI \n", "instrumentalness 6.96e-05 \n", "key 4 \n", "liveness 0.831 \n", "loudness -9.151 \n", "mode 0 \n", "name Modern Times Rock 'N Roll - Remastered 2011 \n", "popularity 23 \n", "preview_url None \n", "speechiness 0.0734 \n", "tempo 115.75 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/4SLYZBk205QM... \n", "track_number 7 \n", "type audio_features \n", "uri spotify:track:4SLYZBk205QMJeOf3I4JuI \n", "valence 0.6 \n", "\n", " 680 \\\n", "_id 6bIA8Y5TnQmnApC5R6oOQ3 \n", "acousticness 0.13 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/6bIA... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.328 \n", "disc_number 1 \n", "duration_ms 199533 \n", "energy 0.723 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100451'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/6b... \n", "href https://api.spotify.com/v1/tracks/6bIA8Y5TnQmn... \n", "id 6bIA8Y5TnQmnApC5R6oOQ3 \n", "instrumentalness 0.0857 \n", "key 2 \n", "liveness 0.369 \n", "loudness -7.842 \n", "mode 1 \n", "name Son And Daughter - Remastered 2011 \n", "popularity 23 \n", "preview_url None \n", "speechiness 0.0434 \n", "tempo 144.832 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/6bIA8Y5TnQmn... \n", "track_number 8 \n", "type audio_features \n", "uri spotify:track:6bIA8Y5TnQmnApC5R6oOQ3 \n", "valence 0.749 \n", "\n", " 681 \\\n", "_id 2u0zaP27DuxKyU0IHMFnuF \n", "acousticness 0.137 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/2u0z... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.367 \n", "disc_number 1 \n", "duration_ms 224173 \n", "energy 0.747 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100444'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/2u... \n", "href https://api.spotify.com/v1/tracks/2u0zaP27DuxK... \n", "id 2u0zaP27DuxKyU0IHMFnuF \n", "instrumentalness 1.49e-06 \n", "key 9 \n", "liveness 0.181 \n", "loudness -7.065 \n", "mode 1 \n", "name Jesus - Remastered 2011 \n", "popularity 23 \n", "preview_url None \n", "speechiness 0.172 \n", "tempo 115.08 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/2u0zaP27DuxK... \n", "track_number 9 \n", "type audio_features \n", "uri spotify:track:2u0zaP27DuxKyU0IHMFnuF \n", "valence 0.583 \n", "\n", " 682 \\\n", "_id 710rymKyaC6XjY7CBpjYpb \n", "acousticness 0.718 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/710r... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.245 \n", "disc_number 1 \n", "duration_ms 76573 \n", "energy 0.458 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100450'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/71... \n", "href https://api.spotify.com/v1/tracks/710rymKyaC6X... \n", "id 710rymKyaC6XjY7CBpjYpb \n", "instrumentalness 0.963 \n", "key 2 \n", "liveness 0.154 \n", "loudness -13.372 \n", "mode 1 \n", "name Seven Seas Of Rhye - Remastered 2011 \n", "popularity 24 \n", "preview_url None \n", "speechiness 0.0409 \n", "tempo 64.517 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/710rymKyaC6X... \n", "track_number 10 \n", "type audio_features \n", "uri spotify:track:710rymKyaC6XjY7CBpjYpb \n", "valence 0.0447 \n", "\n", " 683 \\\n", "_id 5cWV61fOUtcesIrA9vVfGT \n", "acousticness 0.321 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/5cWV... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.463 \n", "disc_number 2 \n", "duration_ms 230173 \n", "energy 0.886 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100887'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/5c... \n", "href https://api.spotify.com/v1/tracks/5cWV61fOUtce... \n", "id 5cWV61fOUtcesIrA9vVfGT \n", "instrumentalness 1.98e-05 \n", "key 9 \n", "liveness 0.422 \n", "loudness -9.063 \n", "mode 1 \n", "name Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "popularity 21 \n", "preview_url None \n", "speechiness 0.171 \n", "tempo 133.829 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/5cWV61fOUtce... \n", "track_number 1 \n", "type audio_features \n", "uri spotify:track:5cWV61fOUtcesIrA9vVfGT \n", "valence 0.391 \n", "\n", " 684 \\\n", "_id 3mCG3P9mDbiPKvWD8956CY \n", "acousticness 0.719 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/3mCG... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.371 \n", "disc_number 2 \n", "duration_ms 262560 \n", "energy 0.556 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100888'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/3m... \n", "href https://api.spotify.com/v1/tracks/3mCG3P9mDbiP... \n", "id 3mCG3P9mDbiPKvWD8956CY \n", "instrumentalness 3.84e-05 \n", "key 4 \n", "liveness 0.371 \n", "loudness -10.476 \n", "mode 0 \n", "name The Night Comes Down - De Lane Lea Demo / Dece... \n", "popularity 20 \n", "preview_url None \n", "speechiness 0.0528 \n", "tempo 143.199 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/3mCG3P9mDbiP... \n", "track_number 2 \n", "type audio_features \n", "uri spotify:track:3mCG3P9mDbiPKvWD8956CY \n", "valence 0.629 \n", "\n", " 685 \\\n", "_id 09bBW3fG0rNj6CUTsQKEFa \n", "acousticness 0.192 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/09bB... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.337 \n", "disc_number 2 \n", "duration_ms 367680 \n", "energy 0.888 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100889'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/09... \n", "href https://api.spotify.com/v1/tracks/09bBW3fG0rNj... \n", "id 09bBW3fG0rNj6CUTsQKEFa \n", "instrumentalness 0.000137 \n", "key 4 \n", "liveness 0.13 \n", "loudness -8.608 \n", "mode 0 \n", "name Great King Rat - De Lane Lea Demo / December 1971 \n", "popularity 23 \n", "preview_url None \n", "speechiness 0.103 \n", "tempo 131.385 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/09bBW3fG0rNj... \n", "track_number 3 \n", "type audio_features \n", "uri spotify:track:09bBW3fG0rNj6CUTsQKEFa \n", "valence 0.505 \n", "\n", " 686 \\\n", "_id 25innbpSX3VMnfI8tRwzMx \n", "acousticness 0.595 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/25in... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.23 \n", "disc_number 2 \n", "duration_ms 304733 \n", "energy 0.717 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100890'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/25... \n", "href https://api.spotify.com/v1/tracks/25innbpSX3VM... \n", "id 25innbpSX3VMnfI8tRwzMx \n", "instrumentalness 9.51e-05 \n", "key 9 \n", "liveness 0.223 \n", "loudness -7.953 \n", "mode 1 \n", "name Jesus - De Lane Lea Demo / December 1971 \n", "popularity 19 \n", "preview_url None \n", "speechiness 0.0629 \n", "tempo 201.793 \n", "time_signature 3 \n", "track_href https://api.spotify.com/v1/tracks/25innbpSX3VM... \n", "track_number 4 \n", "type audio_features \n", "uri spotify:track:25innbpSX3VMnfI8tRwzMx \n", "valence 0.481 \n", "\n", " 687 \\\n", "_id 46gP62DVmyvT8Yt3XMt9qo \n", "acousticness 0.0707 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/46gP... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.264 \n", "disc_number 2 \n", "duration_ms 472227 \n", "energy 0.887 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100891'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/46... \n", "href https://api.spotify.com/v1/tracks/46gP62DVmyvT... \n", "id 46gP62DVmyvT8Yt3XMt9qo \n", "instrumentalness 0.0225 \n", "key 2 \n", "liveness 0.595 \n", "loudness -9.082 \n", "mode 1 \n", "name Liar - De Lane Lea Demo / December 1971 \n", "popularity 19 \n", "preview_url None \n", "speechiness 0.0762 \n", "tempo 143.464 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/46gP62DVmyvT... \n", "track_number 5 \n", "type audio_features \n", "uri spotify:track:46gP62DVmyvT8Yt3XMt9qo \n", "valence 0.421 \n", "\n", " 688 \n", "_id 2PNGzkYgkFD50qJy4mTvxb \n", "acousticness 0.347 \n", "album {'type': 'album', 'available_markets': ['AD', ... \n", "album_id 6YwX6crCLDQTE8ZbtdzFUh \n", "analysis_url https://api.spotify.com/v1/audio-analysis/2PNG... \n", "artist_id 1dfeR4HaWDbWqFHLkxsg1d \n", "artist_name Queen \n", "artists [{'type': 'artist', 'id': '1dfeR4HaWDbWqFHLkxs... \n", "available_markets [AD, AR, AT, AU, BE, BG, BO, BR, CH, CL, CO, C... \n", "danceability 0.611 \n", "disc_number 2 \n", "duration_ms 202653 \n", "energy 0.731 \n", "explicit False \n", "external_ids {'isrc': 'GBUM71100893'} \n", "external_urls {'spotify': 'https://open.spotify.com/track/2P... \n", "href https://api.spotify.com/v1/tracks/2PNGzkYgkFD5... \n", "id 2PNGzkYgkFD50qJy4mTvxb \n", "instrumentalness 0 \n", "key 1 \n", "liveness 0.123 \n", "loudness -9.07 \n", "mode 1 \n", "name Mad The Swine \n", "popularity 21 \n", "preview_url None \n", "speechiness 0.13 \n", "tempo 138.569 \n", "time_signature 4 \n", "track_href https://api.spotify.com/v1/tracks/2PNGzkYgkFD5... \n", "track_number 6 \n", "type audio_features \n", "uri spotify:track:2PNGzkYgkFD50qJy4mTvxb \n", "valence 0.664 \n", "\n", "[34 rows x 689 columns]" ] }, "execution_count": 399, "metadata": {}, "output_type": "execute_result" } ], "source": [ "artist_tracks = pd.DataFrame(list(tracks.find({'artist_id': this_artist_id})))\n", "artist_tracks.T" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "How happy are the Beatles and Stones tracks?" ] }, { "cell_type": "code", "execution_count": 400, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 400, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXwAAAD8CAYAAAB0IB+mAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAEX5JREFUeJzt3X+MZXdZx/H3hy6F0sFuYXXSbKtTQzHWrol0QmpIcNYa\nrS1pm9hgSdUtadyIiEZWZZE/SjTEEi0EEX+stLJqZVoK2tWC2tSOjcatdkHZtoisZYFdt1207eoA\n/lh9/GNOdNLuMnfvuXfuznzfr2Sz555zvuc8z97Zz5z53nvPpKqQJK1/z5t0AZKk1WHgS1IjDHxJ\naoSBL0mNMPAlqREGviQ1wsCXpEYY+JLUCANfkhqxYdIFAGzatKlmZmaGGvulL32Js88+e7QFrSEt\n92/vbfYObfe/vPd9+/b9c1V97aBjT4vAn5mZ4eGHHx5q7MLCAnNzc6MtaA1puX97n5t0GRPTcv/L\ne0/yuVMZ65SOJDXCwJekRhj4ktQIA1+SGmHgS1IjDHxJaoSBL0mNWDHwk9ye5GiSR5at+8Ukf5/k\nk0l+P8nGZdvemuRAkk8n+Z5xFS5JOjWDXOF/ALjiWevuAy6pqm8F/gF4K0CSi4HrgW/pxvxqkjNG\nVq0kaWgrftK2qh5MMvOsdX+67OFe4Lpu+Rpgvqr+A/hskgPAK4G/Gkm1mriZnfdO5LwHb7lqIueV\n1pNU1co7LQX+H1XVJSfY9ofAnVX1u0l+BdhbVb/bbbsN+FhV3X2CcduB7QDT09OXzs/PD9XA4uIi\nU1NTQ41dD1a7//2Hj63auZbbsvmc56xr+blvuXdou//lvW/dunVfVc0OOrbXvXSSvA04DtxxqmOr\nahewC2B2draGvS9Gy/fUgNXv/8ZJXeHfMPecdS0/9y33Dm3336f3oQM/yY3Aa4DL6/9/TDgMXLBs\nt/O7dZKkCRvqbZlJrgB+Bri6qr68bNMe4PokL0hyIXAR8Nf9y5Qk9bXiFX6SDwJzwKYkh4CbWXpX\nzguA+5LA0rz9j1TVo0nuAh5jaarnjVX13+MqXpI0uEHepfO6E6y+7avs/w7gHX2KkiSNnp+0laRG\nGPiS1AgDX5IaYeBLUiMMfElqRK9P2moylt/PZseW4xP79KuktcXA72FSNxKTpGE4pSNJjTDwJakR\nBr4kNcLAl6RGGPiS1AgDX5IaYeBLUiMMfElqhIEvSY0w8CWpEQa+JDXCwJekRhj4ktQIA1+SGmHg\nS1IjDHxJaoSBL0mNMPAlqRErBn6S25McTfLIsnUvSXJfks90f5/brU+SX05yIMknk7xinMVLkgY3\nyBX+B4ArnrVuJ3B/VV0E3N89Bvhe4KLuz3bg10ZTpiSprxUDv6oeBJ561uprgN3d8m7g2mXrf7uW\n7AU2JjlvVMVKkoY37Bz+dFUd6ZafAKa75c3AF5btd6hbJ0masA19D1BVlaROdVyS7SxN+zA9Pc3C\nwsJQ519cXBx6bF87thyfyHmXmz7r9Khj3E70HE/yuZ+0lnuHtvvv0/uwgf9kkvOq6kg3ZXO0W38Y\nuGDZfud3656jqnYBuwBmZ2drbm5uqEIWFhYYdmxfN+68dyLnXW7HluPcur/39+3T3sEb5p6zbpLP\n/aS13Du03X+f3oed0tkDbOuWtwH3LFv/Q927dS4Dji2b+pEkTdCKl4ZJPgjMAZuSHAJuBm4B7kpy\nE/A54LXd7h8FrgQOAF8GXj+GmiVJQ1gx8KvqdSfZdPkJ9i3gjX2LkiSNnp+0laRGGPiS1AgDX5Ia\nYeBLUiMMfElqhIEvSY0w8CWpEQa+JDXCwJekRhj4ktQIA1+SGmHgS1IjDHxJasT6/80ZUk8zE/pF\nNwdvuWoi59X65RW+JDXCwJekRhj4ktQI5/C1JpxoHn3HluOnxS+Sl9YKr/AlqREGviQ1wsCXpEYY\n+JLUCANfkhph4EtSIwx8SWpEr8BP8pNJHk3ySJIPJnlhkguTPJTkQJI7k5w5qmIlScMbOvCTbAZ+\nHJitqkuAM4DrgXcC766qlwFPAzeNolBJUj99p3Q2AGcl2QC8CDgCfCdwd7d9N3Btz3NIkkZg6MCv\nqsPALwGfZynojwH7gGeq6ni32yFgc98iJUn9paqGG5icC3wY+H7gGeBDLF3Zv72bziHJBcDHuimf\nZ4/fDmwHmJ6evnR+fn6oOhYXF5mamhpqbF/7Dx+byHmXmz4LnvzKpKuYjPXe+5bN55x02yS/7k8H\nLfe/vPetW7fuq6rZQcf2uXnadwGfraovAiT5CPAqYGOSDd1V/vnA4RMNrqpdwC6A2dnZmpubG6qI\nhYUFhh3b1+lw464dW45z6/4274G33ns/eMPcSbdN8uv+dNBy/3167zOH/3ngsiQvShLgcuAx4AHg\num6fbcA9Pc4hSRqRPnP4D7E0hfNxYH93rF3AW4A3JzkAvBS4bQR1SpJ66vXzcFXdDNz8rNWPA6/s\nc1xJ0uj5SVtJaoSBL0mNMPAlqREGviQ1wsCXpEYY+JLUCANfkhph4EtSIwx8SWqEgS9JjTDwJakR\nBr4kNcLAl6RGGPiS1AgDX5IaYeBLUiMMfElqhIEvSY0w8CWpEQa+JDXCwJekRhj4ktQIA1+SGmHg\nS1IjDHxJakSvwE+yMcndSf4+yaeSfHuSlyS5L8lnur/PHVWxkqThbeg5/j3AH1fVdUnOBF4E/Cxw\nf1XdkmQnsBN4S8/znNT+w8e4cee94zq8JK0bQ1/hJzkHeDVwG0BV/WdVPQNcA+zudtsNXNu3SElS\nf32mdC4Evgj8VpJPJHl/krOB6ao60u3zBDDdt0hJUn+pquEGJrPAXuBVVfVQkvcA/wq8qao2Ltvv\n6ap6zjx+ku3AdoDp6elL5+fnh6rj6FPHePIrQw1dF6bPotn+13vvWzafc9Jti4uLTE1NrWI1p5eW\n+1/e+9atW/dV1eygY/vM4R8CDlXVQ93ju1mar38yyXlVdSTJecDREw2uql3ALoDZ2dmam5sbqoj3\n3nEPt+7v+1LE2rVjy/Fm+1/vvR+8Ye6k2xYWFhj2/8x60HL/fXofekqnqp4AvpDkm7pVlwOPAXuA\nbd26bcA9w55DkjQ6fS+P3gTc0b1D53Hg9Sx9E7kryU3A54DX9jyHJGkEegV+Vf0tcKL5o8v7HFeS\nNHp+0laSGmHgS1IjDHxJaoSBL0mNMPAlqREGviQ1wsCXpEYY+JLUCANfkhph4EtSIwx8SWqEgS9J\njTDwJakRBr4kNcLAl6RGGPiS1AgDX5IasX5/A7S0xs3svPek23ZsOc6NX2V7HwdvuWosx9XkeYUv\nSY0w8CWpEQa+JDXCwJekRhj4ktQIA1+SGmHgS1IjDHxJakTvwE9yRpJPJPmj7vGFSR5KciDJnUnO\n7F+mJKmvUVzh/wTwqWWP3wm8u6peBjwN3DSCc0iSeuoV+EnOB64C3t89DvCdwN3dLruBa/ucQ5I0\nGqmq4QcndwO/ALwY+CngRmBvd3VPkguAj1XVJScYux3YDjA9PX3p/Pz8UDUcfeoYT35lqKHrwvRZ\nNNu/vY/n2Fs2nzOeA4/Q4uIiU1NTky5jIpb3vnXr1n1VNTvo2KFvnpbkNcDRqtqXZO5Ux1fVLmAX\nwOzsbM3NnfIhAHjvHfdw6/527wG3Y8vxZvu39/H0fvCGubEcd5QWFhYYNjPWuj699/mKeRVwdZIr\ngRcCXwO8B9iYZENVHQfOBw73OIckaUSGnsOvqrdW1flVNQNcD/xZVd0APABc1+22Dbind5WSpN7G\n8T78twBvTnIAeClw2xjOIUk6RSOZBKyqBWChW34ceOUojitJGh0/aStJjTDwJakRBr4kNcLAl6RG\nGPiS1AgDX5IaYeBLUiMMfElqhIEvSY0w8CWpEQa+JDXCwJekRhj4ktQIA1+SGmHgS1IjDHxJaoSB\nL0mNMPAlqREj+RWHktaPmZ33TuzcB2+5amLnboFX+JLUCANfkhph4EtSIwx8SWqEgS9JjTDwJakR\nQwd+kguSPJDksSSPJvmJbv1LktyX5DPd3+eOrlxJ0rD6XOEfB3ZU1cXAZcAbk1wM7ATur6qLgPu7\nx5KkCRs68KvqSFV9vFv+N+BTwGbgGmB3t9tu4Nq+RUqS+hvJHH6SGeDbgIeA6ao60m16ApgexTkk\nSf2kqvodIJkC/hx4R1V9JMkzVbVx2fanq+o58/hJtgPbAaanpy+dn58f6vxHnzrGk18Zrvb1YPos\nmu3f3iddxeSMuv8tm88Z3cHGbHFxkampKQC2bt26r6pmBx3b6146SZ4PfBi4o6o+0q1+Msl5VXUk\nyXnA0RONrapdwC6A2dnZmpubG6qG995xD7fub/eWQDu2HG+2f3tvs3cYff8Hb5gb2bHGbWFhgWHz\nss+7dALcBnyqqt61bNMeYFu3vA24Z9hzSJJGp8+3yFcBPwjsT/K33bqfBW4B7kpyE/A54LX9SpQk\njcLQgV9VfwHkJJsvH/a4kqTx8JO2ktQIA1+SGmHgS1IjDHxJaoSBL0mNMPAlqREGviQ1wsCXpEYY\n+JLUCANfkhph4EtSIwx8SWpEuzfUlqTOzM57J3bug7dctWrn8gpfkhph4EtSIwx8SWqEgS9JjTDw\nJakRBr4kNcLAl6RGGPiS1AgDX5IaYeBLUiMMfElqhIEvSY0YW+AnuSLJp5McSLJzXOeRJA1mLIGf\n5AzgfcD3AhcDr0ty8TjOJUkazLiu8F8JHKiqx6vqP4F54JoxnUuSNIBxBf5m4AvLHh/q1kmSJmRi\nvwAlyXZge/dwMcmnhzzUJuCfR1PV2vPjDfdv7232Duur/7zzlIcs7/0bTmXguAL/MHDBssfnd+v+\nT1XtAnb1PVGSh6tqtu9x1qqW+7f3NnuHtvvv0/u4pnT+BrgoyYVJzgSuB/aM6VySpAGM5Qq/qo4n\n+THgT4AzgNur6tFxnEuSNJixzeFX1UeBj47r+Mv0nhZa41ru397b1XL/Q/eeqhplIZKk05S3VpCk\nRqyZwF/pVg1JXpDkzm77Q0lmVr/K8Rig9zcneSzJJ5Pcn+SU3qp1uhv0Nh1Jvi9JJVk3794YpPck\nr+2e/0eT/N5q1zhOA3ztf32SB5J8ovv6v3ISdY5aktuTHE3yyEm2J8kvd/8un0zyioEOXFWn/R+W\nXvj9R+AbgTOBvwMuftY+Pwr8erd8PXDnpOtexd63Ai/qlt+wXnoftP9uvxcDDwJ7gdlJ172Kz/1F\nwCeAc7vHXzfpule5/13AG7rli4GDk657RL2/GngF8MhJtl8JfAwIcBnw0CDHXStX+IPcquEaYHe3\nfDdweZKsYo3jsmLvVfVAVX25e7iXpc89rBeD3qbj54F3Av++msWN2SC9/zDwvqp6GqCqjq5yjeM0\nSP8FfE23fA7wT6tY39hU1YPAU19ll2uA364le4GNSc5b6bhrJfAHuVXD/+1TVceBY8BLV6W68TrV\n21TcxNJ3/vVixf67H2cvqKp7V7OwVTDIc/9y4OVJ/jLJ3iRXrFp14zdI/28HfiDJIZbeFfim1Slt\n4oa6fc3Ebq2g0UvyA8As8B2TrmW1JHke8C7gxgmXMikbWJrWmWPpJ7sHk2ypqmcmWtXqeR3wgaq6\nNcm3A7+T5JKq+p9JF3Y6WitX+CveqmH5Pkk2sPTj3b+sSnXjNUjvJPku4G3A1VX1H6tU22pYqf8X\nA5cAC0kOsjSfuWedvHA7yHN/CNhTVf9VVZ8F/oGlbwDrwSD93wTcBVBVfwW8kKV7zax3A+XCs62V\nwB/kVg17gG3d8nXAn1X36sYat2LvSb4N+A2Wwn49zeHCCv1X1bGq2lRVM1U1w9JrGFdX1cOTKXek\nBvm6/wOWru5JsomlKZ7HV7PIMRqk/88DlwMk+WaWAv+Lq1rlZOwBfqh7t85lwLGqOrLSoDUxpVMn\nuVVDkp8DHq6qPcBtLP04d4ClFzuun1zFozNg778ITAEf6l6n/nxVXT2xokdowP7XpQF7/xPgu5M8\nBvw38NNVtR5+sh20/x3Abyb5SZZewL1xPVzoJfkgS9/IN3WvT9wMPB+gqn6dpdcrrgQOAF8GXj/Q\ncdfBv40kaQBrZUpHktSTgS9JjTDwJakRBr4kNcLAl6RGGPiS1AgDX5IaYeBLUiP+F2eHBaU0wp9R\nAAAAAElFTkSuQmCC\n", "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "artist_tracks['valence'].hist()" ] }, { "cell_type": "code", "execution_count": 321, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "405" ] }, "execution_count": 321, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tracks.find({'artist_id': this_artist_id, 'valence': {'$exists': True}}).count()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Lyrics search\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": 49, "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": 401, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "([{'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 22,\n", " 'api_path': '/songs/496445',\n", " 'full_title': 'Trap Queen by\\xa0Fetty\\xa0Wap',\n", " 'header_image_thumbnail_url': 'https://images.rapgenius.com/694274eb49f35ea1ad1acc36ab99390e.300x300x1.jpg',\n", " 'header_image_url': 'https://images.rapgenius.com/694274eb49f35ea1ad1acc36ab99390e.640x640x1.jpg',\n", " 'id': 496445,\n", " 'lyrics_owner_id': 104344,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Fetty-wap-trap-queen-lyrics',\n", " 'primary_artist': {'api_path': '/artists/216609',\n", " 'header_image_url': 'https://images.genius.com/cfdf0e6082f7216c2483b34c15420f43.700x393x1.jpg',\n", " 'id': 216609,\n", " 'image_url': 'https://images.genius.com/4c7e86b750a1637b7a2d92f9d0ad558c.496x496x1.jpg',\n", " 'iq': 100,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Fetty Wap',\n", " 'url': 'https://genius.com/artists/Fetty-wap'},\n", " 'pyongs_count': 3151,\n", " 'song_art_image_thumbnail_url': 'https://images.rapgenius.com/694274eb49f35ea1ad1acc36ab99390e.300x300x1.jpg',\n", " 'stats': {'concurrents': 2,\n", " 'hot': False,\n", " 'pageviews': 5723582,\n", " 'unreviewed_annotations': 0},\n", " 'title': 'Trap Queen',\n", " 'title_with_featured': 'Trap Queen',\n", " 'url': 'https://genius.com/Fetty-wap-trap-queen-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 29,\n", " 'api_path': '/songs/622818',\n", " 'full_title': 'Truffle Butter by\\xa0Nicki\\xa0Minaj (Ft.\\xa0Drake & Lil\\xa0Wayne)',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/e6951472bdf7074eced144472c3b71c0.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/e6951472bdf7074eced144472c3b71c0.1000x1000x1.jpg',\n", " 'id': 622818,\n", " 'lyrics_owner_id': 284834,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Nicki-minaj-truffle-butter-lyrics',\n", " 'primary_artist': {'api_path': '/artists/92',\n", " 'header_image_url': 'https://images.genius.com/66032fb1fe42a0c546712d960086f578.740x234x1.png',\n", " 'id': 92,\n", " 'image_url': 'https://images.genius.com/79f030bf60f124defafc7a042b7a8c8f.387x387x1.jpg',\n", " 'iq': 1354,\n", " 'is_meme_verified': False,\n", " 'is_verified': True,\n", " 'name': 'Nicki Minaj',\n", " 'url': 'https://genius.com/artists/Nicki-minaj'},\n", " 'pyongs_count': 748,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/e6951472bdf7074eced144472c3b71c0.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 2102521, 'unreviewed_annotations': 0},\n", " 'title': 'Truffle Butter',\n", " 'title_with_featured': 'Truffle Butter (Ft.\\xa0Drake & Lil\\xa0Wayne)',\n", " 'url': 'https://genius.com/Nicki-minaj-truffle-butter-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 27,\n", " 'api_path': '/songs/1063',\n", " 'full_title': 'Bohemian Rhapsody by\\xa0Queen',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/3096dc65906800ba0e24fc8dd431fd56.300x296x1.png',\n", " 'header_image_url': 'https://images.genius.com/3096dc65906800ba0e24fc8dd431fd56.318x314x1.png',\n", " 'id': 1063,\n", " 'lyrics_owner_id': 3,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Queen-bohemian-rhapsody-lyrics',\n", " 'primary_artist': {'api_path': '/artists/563',\n", " 'header_image_url': 'https://images.genius.com/31ac19166d7332836b753d67550d75f5.590x290x1.jpg',\n", " 'id': 563,\n", " 'image_url': 'https://images.genius.com/781f51bb7041e6b7eeec820fbc413e75.1000x750x1.jpg',\n", " 'is_meme_verified': False,\n", " 'is_verified': False,\n", " 'name': 'Queen',\n", " 'url': 'https://genius.com/artists/Queen'},\n", " 'pyongs_count': 228,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/6f0804cbbce9b7e1380a8e98aac3de89.300x294x1.jpg',\n", " 'stats': {'concurrents': 10,\n", " 'hot': False,\n", " 'pageviews': 1340713,\n", " 'unreviewed_annotations': 0},\n", " 'title': 'Bohemian Rhapsody',\n", " 'title_with_featured': 'Bohemian Rhapsody',\n", " 'url': 'https://genius.com/Queen-bohemian-rhapsody-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 16,\n", " 'api_path': '/songs/325713',\n", " 'full_title': 'Boss Ass Bitch (Remix) by\\xa0Nicki\\xa0Minaj (Ft.\\xa0PTAF)',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/473015f3e66b12723dfc053e408b3718.300x300x1.png',\n", " 'header_image_url': 'https://images.genius.com/473015f3e66b12723dfc053e408b3718.600x600x1.png',\n", " 'id': 325713,\n", " 'lyrics_owner_id': 284422,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Nicki-minaj-boss-ass-bitch-remix-lyrics',\n", " 'primary_artist': {'api_path': '/artists/92',\n", " 'header_image_url': 'https://images.genius.com/66032fb1fe42a0c546712d960086f578.740x234x1.png',\n", " 'id': 92,\n", " 'image_url': 'https://images.genius.com/79f030bf60f124defafc7a042b7a8c8f.387x387x1.jpg',\n", " 'iq': 1354,\n", " 'is_meme_verified': False,\n", " 'is_verified': True,\n", " 'name': 'Nicki Minaj',\n", " 'url': 'https://genius.com/artists/Nicki-minaj'},\n", " 'pyongs_count': 275,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/473015f3e66b12723dfc053e408b3718.300x300x1.png',\n", " 'stats': {'hot': False, 'pageviews': 587403, 'unreviewed_annotations': 2},\n", " 'title': 'Boss Ass Bitch (Remix)',\n", " 'title_with_featured': 'Boss Ass Bitch (Remix) (Ft.\\xa0PTAF)',\n", " 'url': 'https://genius.com/Nicki-minaj-boss-ass-bitch-remix-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 41,\n", " 'api_path': '/songs/2270213',\n", " 'full_title': \"Queen's Speech 4 by\\xa0Lady\\xa0Leshurr\",\n", " 'header_image_thumbnail_url': 'https://images.rapgenius.com/8a935027305beba468fab6f4e3a38890.300x300x1.jpg',\n", " 'header_image_url': 'https://images.rapgenius.com/8a935027305beba468fab6f4e3a38890.1000x1000x1.jpg',\n", " 'id': 2270213,\n", " 'lyrics_owner_id': 321196,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Lady-leshurr-queens-speech-4-lyrics',\n", " 'primary_artist': {'api_path': '/artists/14313',\n", " 'header_image_url': 'https://images.genius.com/ab6376d840de1696daaea08ecbad1e91.579x388x1.png',\n", " 'id': 14313,\n", " 'image_url': 'https://images.genius.com/ab6376d840de1696daaea08ecbad1e91.579x388x1.png',\n", " 'iq': 849,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Lady Leshurr',\n", " 'url': 'https://genius.com/artists/Lady-leshurr'},\n", " 'pyongs_count': 29,\n", " 'song_art_image_thumbnail_url': 'https://images.rapgenius.com/8a935027305beba468fab6f4e3a38890.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 526503, 'unreviewed_annotations': 0},\n", " 'title': \"Queen's Speech 4\",\n", " 'title_with_featured': \"Queen's Speech 4\",\n", " 'url': 'https://genius.com/Lady-leshurr-queens-speech-4-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 13,\n", " 'api_path': '/songs/3017995',\n", " 'full_title': 'Regret In Your Tears by\\xa0Nicki\\xa0Minaj',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/235c1644e8f1032cc6c16dcf9084e573.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/235c1644e8f1032cc6c16dcf9084e573.1000x1000x1.jpg',\n", " 'id': 3017995,\n", " 'lyrics_owner_id': 104344,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Nicki-minaj-regret-in-your-tears-lyrics',\n", " 'primary_artist': {'api_path': '/artists/92',\n", " 'header_image_url': 'https://images.genius.com/66032fb1fe42a0c546712d960086f578.740x234x1.png',\n", " 'id': 92,\n", " 'image_url': 'https://images.genius.com/79f030bf60f124defafc7a042b7a8c8f.387x387x1.jpg',\n", " 'iq': 1354,\n", " 'is_meme_verified': False,\n", " 'is_verified': True,\n", " 'name': 'Nicki Minaj',\n", " 'url': 'https://genius.com/artists/Nicki-minaj'},\n", " 'pyongs_count': 23,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/235c1644e8f1032cc6c16dcf9084e573.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 323632, 'unreviewed_annotations': 3},\n", " 'title': 'Regret In Your Tears',\n", " 'title_with_featured': 'Regret In Your Tears',\n", " 'url': 'https://genius.com/Nicki-minaj-regret-in-your-tears-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 57,\n", " 'api_path': '/songs/143598',\n", " 'full_title': 'Q.U.E.E.N. by\\xa0Janelle\\xa0Monáe (Ft.\\xa0Erykah\\xa0Badu)',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/35deef98dc92ebb6c4fd673191808f09.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/35deef98dc92ebb6c4fd673191808f09.640x640x1.jpg',\n", " 'id': 143598,\n", " 'lyrics_owner_id': 111827,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Janelle-monae-queen-lyrics',\n", " 'primary_artist': {'api_path': '/artists/783',\n", " 'header_image_url': 'https://images.genius.com/a3120a8888ba307e9d8d6a23f73ca695.1000x1000x1.jpg',\n", " 'id': 783,\n", " 'image_url': 'https://images.genius.com/8fabdfaa6d3295ec63ceef5f8e790dca.1000x1000x1.jpg',\n", " 'is_meme_verified': False,\n", " 'is_verified': False,\n", " 'name': 'Janelle Monáe',\n", " 'url': 'https://genius.com/artists/Janelle-monae'},\n", " 'pyongs_count': 20,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/35deef98dc92ebb6c4fd673191808f09.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 254495, 'unreviewed_annotations': 0},\n", " 'title': 'Q.U.E.E.N.',\n", " 'title_with_featured': 'Q.U.E.E.N. (Ft.\\xa0Erykah\\xa0Badu)',\n", " 'url': 'https://genius.com/Janelle-monae-queen-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 20,\n", " 'api_path': '/songs/3209339',\n", " 'full_title': 'Dark Queen by\\xa0Lil\\xa0Uzi Vert',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/b1e9887340b596fdf54be6be8d2ec3e1.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/b1e9887340b596fdf54be6be8d2ec3e1.1000x1000x1.jpg',\n", " 'id': 3209339,\n", " 'lyrics_owner_id': 2109143,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Lil-uzi-vert-dark-queen-lyrics',\n", " 'primary_artist': {'api_path': '/artists/217208',\n", " 'header_image_url': 'https://images.genius.com/4704dcd1eec0d38742d5df64b5817244.1000x667x1.jpg',\n", " 'id': 217208,\n", " 'image_url': 'https://images.genius.com/0380dff3c15ea3c997e35bbe41bc65f0.955x955x1.jpg',\n", " 'iq': 3067,\n", " 'is_meme_verified': False,\n", " 'is_verified': True,\n", " 'name': 'Lil Uzi Vert',\n", " 'url': 'https://genius.com/artists/Lil-uzi-vert'},\n", " 'pyongs_count': 16,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/b1e9887340b596fdf54be6be8d2ec3e1.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 198704, 'unreviewed_annotations': 12},\n", " 'title': 'Dark Queen',\n", " 'title_with_featured': 'Dark Queen',\n", " 'url': 'https://genius.com/Lil-uzi-vert-dark-queen-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 32,\n", " 'api_path': '/songs/1783001',\n", " 'full_title': \"Queen's Speech 3 by\\xa0Lady\\xa0Leshurr\",\n", " 'header_image_thumbnail_url': 'https://images.genius.com/b597f67b8a8fbb0c0b808abe9db83ff0.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/b597f67b8a8fbb0c0b808abe9db83ff0.800x800x1.jpg',\n", " 'id': 1783001,\n", " 'lyrics_owner_id': 216751,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Lady-leshurr-queens-speech-3-lyrics',\n", " 'primary_artist': {'api_path': '/artists/14313',\n", " 'header_image_url': 'https://images.genius.com/ab6376d840de1696daaea08ecbad1e91.579x388x1.png',\n", " 'id': 14313,\n", " 'image_url': 'https://images.genius.com/ab6376d840de1696daaea08ecbad1e91.579x388x1.png',\n", " 'iq': 849,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Lady Leshurr',\n", " 'url': 'https://genius.com/artists/Lady-leshurr'},\n", " 'pyongs_count': 13,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/b597f67b8a8fbb0c0b808abe9db83ff0.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 195511, 'unreviewed_annotations': 3},\n", " 'title': \"Queen's Speech 3\",\n", " 'title_with_featured': \"Queen's Speech 3\",\n", " 'url': 'https://genius.com/Lady-leshurr-queens-speech-3-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 20,\n", " 'api_path': '/songs/152350',\n", " 'full_title': 'Under Pressure by\\xa0Queen (Ft.\\xa0David\\xa0Bowie)',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/80db66a95c358ceab925248ab71e7a8d.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/80db66a95c358ceab925248ab71e7a8d.1000x1000x1.jpg',\n", " 'id': 152350,\n", " 'lyrics_owner_id': 208765,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Queen-under-pressure-lyrics',\n", " 'primary_artist': {'api_path': '/artists/563',\n", " 'header_image_url': 'https://images.genius.com/31ac19166d7332836b753d67550d75f5.590x290x1.jpg',\n", " 'id': 563,\n", " 'image_url': 'https://images.genius.com/781f51bb7041e6b7eeec820fbc413e75.1000x750x1.jpg',\n", " 'is_meme_verified': False,\n", " 'is_verified': False,\n", " 'name': 'Queen',\n", " 'url': 'https://genius.com/artists/Queen'},\n", " 'pyongs_count': 32,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/80db66a95c358ceab925248ab71e7a8d.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 225154, 'unreviewed_annotations': 0},\n", " 'title': 'Under Pressure',\n", " 'title_with_featured': 'Under Pressure (Ft.\\xa0David\\xa0Bowie)',\n", " 'url': 'https://genius.com/Queen-under-pressure-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 30,\n", " 'api_path': '/songs/715838',\n", " 'full_title': \"Queen's Speech 2 by\\xa0Lady\\xa0Leshurr\",\n", " 'header_image_thumbnail_url': 'https://images.genius.com/a70b34c83d3c2cd80bf6669a736eeb8b.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/a70b34c83d3c2cd80bf6669a736eeb8b.1000x1000x1.jpg',\n", " 'id': 715838,\n", " 'lyrics_owner_id': 321196,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Lady-leshurr-queens-speech-2-lyrics',\n", " 'primary_artist': {'api_path': '/artists/14313',\n", " 'header_image_url': 'https://images.genius.com/ab6376d840de1696daaea08ecbad1e91.579x388x1.png',\n", " 'id': 14313,\n", " 'image_url': 'https://images.genius.com/ab6376d840de1696daaea08ecbad1e91.579x388x1.png',\n", " 'iq': 849,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Lady Leshurr',\n", " 'url': 'https://genius.com/artists/Lady-leshurr'},\n", " 'pyongs_count': 27,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/a70b34c83d3c2cd80bf6669a736eeb8b.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 141881, 'unreviewed_annotations': 25},\n", " 'title': \"Queen's Speech 2\",\n", " 'title_with_featured': \"Queen's Speech 2\",\n", " 'url': 'https://genius.com/Lady-leshurr-queens-speech-2-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 15,\n", " 'api_path': '/songs/712113',\n", " 'full_title': 'Trap Queen (Remix) by\\xa0Montana\\xa0of 300 (Ft.\\xa0Jayln\\xa0Sanders)',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/93b16f538b49aa3a23b772fab9c86f77.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/93b16f538b49aa3a23b772fab9c86f77.640x640x1.jpg',\n", " 'id': 712113,\n", " 'lyrics_owner_id': 639491,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Montana-of-300-trap-queen-remix-lyrics',\n", " 'primary_artist': {'api_path': '/artists/35857',\n", " 'header_image_url': 'https://images.genius.com/208ffea465d2f7bf60db9c57dc4f9c45.1000x563x1.jpg',\n", " 'id': 35857,\n", " 'image_url': 'https://images.genius.com/208ffea465d2f7bf60db9c57dc4f9c45.1000x563x1.jpg',\n", " 'iq': 2598,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Montana of 300',\n", " 'url': 'https://genius.com/artists/Montana-of-300'},\n", " 'pyongs_count': 41,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/93b16f538b49aa3a23b772fab9c86f77.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 102817, 'unreviewed_annotations': 12},\n", " 'title': 'Trap Queen (Remix)',\n", " 'title_with_featured': 'Trap Queen (Remix) (Ft.\\xa0Jayln\\xa0Sanders)',\n", " 'url': 'https://genius.com/Montana-of-300-trap-queen-remix-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 36,\n", " 'api_path': '/songs/2130204',\n", " 'full_title': 'Trap Queen (Remix) by\\xa0Fetty\\xa0Wap (Ft.\\xa0Gradur)',\n", " 'header_image_thumbnail_url': 'https://images.rapgenius.com/ada6af2fb98746b6b7023728f8ebce6d.300x300x1.jpg',\n", " 'header_image_url': 'https://images.rapgenius.com/ada6af2fb98746b6b7023728f8ebce6d.1000x1000x1.jpg',\n", " 'id': 2130204,\n", " 'lyrics_owner_id': 419098,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Fetty-wap-trap-queen-remix-lyrics',\n", " 'primary_artist': {'api_path': '/artists/216609',\n", " 'header_image_url': 'https://images.genius.com/cfdf0e6082f7216c2483b34c15420f43.700x393x1.jpg',\n", " 'id': 216609,\n", " 'image_url': 'https://images.genius.com/4c7e86b750a1637b7a2d92f9d0ad558c.496x496x1.jpg',\n", " 'iq': 100,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Fetty Wap',\n", " 'url': 'https://genius.com/artists/Fetty-wap'},\n", " 'pyongs_count': 22,\n", " 'song_art_image_thumbnail_url': 'https://images.rapgenius.com/ada6af2fb98746b6b7023728f8ebce6d.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 103017, 'unreviewed_annotations': 0},\n", " 'title': 'Trap Queen (Remix)',\n", " 'title_with_featured': 'Trap Queen (Remix) (Ft.\\xa0Gradur)',\n", " 'url': 'https://genius.com/Fetty-wap-trap-queen-remix-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 12,\n", " 'api_path': '/songs/55045',\n", " 'full_title': 'We Will Rock You by\\xa0Queen',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/ce3ffa51ad61e5cb380d82cf69913334.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/ce3ffa51ad61e5cb380d82cf69913334.316x316x1.jpg',\n", " 'id': 55045,\n", " 'lyrics_owner_id': 8534,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Queen-we-will-rock-you-lyrics',\n", " 'primary_artist': {'api_path': '/artists/563',\n", " 'header_image_url': 'https://images.genius.com/31ac19166d7332836b753d67550d75f5.590x290x1.jpg',\n", " 'id': 563,\n", " 'image_url': 'https://images.genius.com/781f51bb7041e6b7eeec820fbc413e75.1000x750x1.jpg',\n", " 'is_meme_verified': False,\n", " 'is_verified': False,\n", " 'name': 'Queen',\n", " 'url': 'https://genius.com/artists/Queen'},\n", " 'pyongs_count': 32,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/ce3ffa51ad61e5cb380d82cf69913334.300x300x1.jpg',\n", " 'stats': {'concurrents': 3,\n", " 'hot': False,\n", " 'pageviews': 169239,\n", " 'unreviewed_annotations': 0},\n", " 'title': 'We Will Rock You',\n", " 'title_with_featured': 'We Will Rock You',\n", " 'url': 'https://genius.com/Queen-we-will-rock-you-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 36,\n", " 'api_path': '/songs/2398654',\n", " 'full_title': \"Queen's Speech 5 by\\xa0Lady\\xa0Leshurr\",\n", " 'header_image_thumbnail_url': 'https://images.genius.com/c2ea9e3f1e11f18819d5303fa737f448.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/c2ea9e3f1e11f18819d5303fa737f448.640x640x1.jpg',\n", " 'id': 2398654,\n", " 'lyrics_owner_id': 2668732,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Lady-leshurr-queens-speech-5-lyrics',\n", " 'primary_artist': {'api_path': '/artists/14313',\n", " 'header_image_url': 'https://images.genius.com/ab6376d840de1696daaea08ecbad1e91.579x388x1.png',\n", " 'id': 14313,\n", " 'image_url': 'https://images.genius.com/ab6376d840de1696daaea08ecbad1e91.579x388x1.png',\n", " 'iq': 849,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Lady Leshurr',\n", " 'url': 'https://genius.com/artists/Lady-leshurr'},\n", " 'pyongs_count': 6,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/c2ea9e3f1e11f18819d5303fa737f448.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 122992, 'unreviewed_annotations': 7},\n", " 'title': \"Queen's Speech 5\",\n", " 'title_with_featured': \"Queen's Speech 5\",\n", " 'url': 'https://genius.com/Lady-leshurr-queens-speech-5-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 18,\n", " 'api_path': '/songs/75243',\n", " 'full_title': 'Another One Bites the Dust by\\xa0Queen',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/46cbba7263b21d619ea3100dc807dd05.300x298x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/46cbba7263b21d619ea3100dc807dd05.302x300x1.jpg',\n", " 'id': 75243,\n", " 'lyrics_owner_id': 48951,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Queen-another-one-bites-the-dust-lyrics',\n", " 'primary_artist': {'api_path': '/artists/563',\n", " 'header_image_url': 'https://images.genius.com/31ac19166d7332836b753d67550d75f5.590x290x1.jpg',\n", " 'id': 563,\n", " 'image_url': 'https://images.genius.com/781f51bb7041e6b7eeec820fbc413e75.1000x750x1.jpg',\n", " 'is_meme_verified': False,\n", " 'is_verified': False,\n", " 'name': 'Queen',\n", " 'url': 'https://genius.com/artists/Queen'},\n", " 'pyongs_count': 28,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/69af8f7f0d9e52b993c1e01ffa2e6a1f.300x298x1.png',\n", " 'stats': {'hot': False, 'pageviews': 138773, 'unreviewed_annotations': 0},\n", " 'title': 'Another One Bites the Dust',\n", " 'title_with_featured': 'Another One Bites the Dust',\n", " 'url': 'https://genius.com/Queen-another-one-bites-the-dust-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 19,\n", " 'api_path': '/songs/152075',\n", " 'full_title': 'If I Had a Tail by\\xa0Queens\\xa0of the Stone Age',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/ff749c1e2a636f6026b7b5456629e200.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/ff749c1e2a636f6026b7b5456629e200.1000x1000x1.jpg',\n", " 'id': 152075,\n", " 'lyrics_owner_id': 1850,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Queens-of-the-stone-age-if-i-had-a-tail-lyrics',\n", " 'primary_artist': {'api_path': '/artists/25320',\n", " 'header_image_url': 'https://images.genius.com/c0d7493ad1d7dae2c3cfa1b6a0318119.350x196x44.gif',\n", " 'id': 25320,\n", " 'image_url': 'https://images.genius.com/e7331001c9b3287b8a21045b0e9fe52f.730x730x1.jpg',\n", " 'iq': 115,\n", " 'is_meme_verified': False,\n", " 'is_verified': True,\n", " 'name': 'Queens of the Stone Age',\n", " 'url': 'https://genius.com/artists/Queens-of-the-stone-age'},\n", " 'pyongs_count': 16,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/8baa4836add9f68d048316250be9078d.300x295x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 97476, 'unreviewed_annotations': 2},\n", " 'title': 'If I Had a Tail',\n", " 'title_with_featured': 'If I Had a Tail',\n", " 'url': 'https://genius.com/Queens-of-the-stone-age-if-i-had-a-tail-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 65,\n", " 'api_path': '/songs/78862',\n", " 'full_title': 'A Queens Story by\\xa0Nas',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/d77829b400779c24c98b27bec8d6bfda.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/d77829b400779c24c98b27bec8d6bfda.800x800x1.jpg',\n", " 'id': 78862,\n", " 'lyrics_owner_id': 3,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Nas-a-queens-story-lyrics',\n", " 'primary_artist': {'api_path': '/artists/56',\n", " 'header_image_url': 'https://images.genius.com/db014f5e4f9c6e873e7c6e8ec7d1a76b.1000x624x1.jpg',\n", " 'id': 56,\n", " 'image_url': 'https://images.genius.com/23061dd2dc7e863127db561906debd27.434x434x1.jpg',\n", " 'iq': 33086,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Nas',\n", " 'url': 'https://genius.com/artists/Nas'},\n", " 'pyongs_count': 12,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/d77829b400779c24c98b27bec8d6bfda.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 86867, 'unreviewed_annotations': 8},\n", " 'title': 'A Queens Story',\n", " 'title_with_featured': 'A Queens Story',\n", " 'url': 'https://genius.com/Nas-a-queens-story-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 13,\n", " 'api_path': '/songs/717351',\n", " 'full_title': 'Tilted by\\xa0Christine\\xa0and the Queens',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/ced52607822049f686183de842908596.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/ced52607822049f686183de842908596.1000x1000x1.jpg',\n", " 'id': 717351,\n", " 'lyrics_owner_id': 266331,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Christine-and-the-queens-tilted-lyrics',\n", " 'primary_artist': {'api_path': '/artists/327334',\n", " 'header_image_url': 'https://images.genius.com/f592299dcaf62bc6be0b551345946956.958x960x1.jpg',\n", " 'id': 327334,\n", " 'image_url': 'https://images.genius.com/f592299dcaf62bc6be0b551345946956.958x960x1.jpg',\n", " 'iq': 2839,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Christine and the Queens',\n", " 'url': 'https://genius.com/artists/Christine-and-the-queens'},\n", " 'pyongs_count': 4,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/ced52607822049f686183de842908596.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 89092, 'unreviewed_annotations': 5},\n", " 'title': 'Tilted',\n", " 'title_with_featured': 'Tilted',\n", " 'url': 'https://genius.com/Christine-and-the-queens-tilted-lyrics'},\n", " 'type': 'song'},\n", " {'highlights': [],\n", " 'index': 'song',\n", " 'result': {'annotation_count': 21,\n", " 'api_path': '/songs/370547',\n", " 'full_title': 'Lost Queen by\\xa0Pharrell\\xa0Williams',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/6c57278c7c492abc7afe7c66a11e432f.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/6c57278c7c492abc7afe7c66a11e432f.1000x1000x1.jpg',\n", " 'id': 370547,\n", " 'lyrics_owner_id': 104344,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Pharrell-williams-lost-queen-lyrics',\n", " 'primary_artist': {'api_path': '/artists/110',\n", " 'header_image_url': 'https://images.genius.com/6bb3ce5bd62c7acfc3a66798c4bbeb26.640x427x1.jpg',\n", " 'id': 110,\n", " 'image_url': 'https://images.genius.com/dbcaf900fdb060b4d8f2feb646a6912f.1000x1000x1.jpg',\n", " 'iq': 590,\n", " 'is_meme_verified': True,\n", " 'is_verified': True,\n", " 'name': 'Pharrell Williams',\n", " 'url': 'https://genius.com/artists/Pharrell-williams'},\n", " 'pyongs_count': 36,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/6c57278c7c492abc7afe7c66a11e432f.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 74500, 'unreviewed_annotations': 4},\n", " 'title': 'Lost Queen',\n", " 'title_with_featured': 'Lost Queen',\n", " 'url': 'https://genius.com/Pharrell-williams-lost-queen-lyrics'},\n", " 'type': 'song'}],\n", " 216609)" ] }, "execution_count": 401, "metadata": {}, "output_type": "execute_result" } ], "source": [ "response = genius_artist_search('Queen')\n", "hits = response['response']['hits']\n", "this_artist_genius_id = [hit['result']['primary_artist']['id'] \n", " for hit in response['response']['hits']][0]\n", "hits, this_artist_genius_id" ] }, { "cell_type": "code", "execution_count": 172, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'annotation_count': 45,\n", " 'api_path': '/songs/154468',\n", " 'full_title': 'Lit by\\xa0Bas (Ft.\\xa0J.\\xa0Cole & KQuick)',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/39c68731f53df590ac095e6694ceb1c8.300x300x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/39c68731f53df590ac095e6694ceb1c8.500x500x1.jpg',\n", " 'id': 154468,\n", " 'lyrics_owner_id': 197088,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Bas-lit-lyrics',\n", " 'primary_artist': {'api_path': '/artists/24472',\n", " 'header_image_url': 'https://images.genius.com/c65967fac5fcbbd7798adc18f2413e11.1000x563x1.jpg',\n", " 'id': 24472,\n", " 'image_url': 'https://images.genius.com/6f5338565e5f07aa4ee5c7f21ff0a167.500x500x1.jpg',\n", " 'iq': 2230,\n", " 'is_meme_verified': False,\n", " 'is_verified': True,\n", " 'name': 'Bas',\n", " 'url': 'https://genius.com/artists/Bas'},\n", " 'pyongs_count': 90,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/39c68731f53df590ac095e6694ceb1c8.300x300x1.jpg',\n", " 'stats': {'hot': False, 'pageviews': 297572, 'unreviewed_annotations': 2},\n", " 'title': 'Lit',\n", " 'title_with_featured': 'Lit (Ft.\\xa0J.\\xa0Cole & KQuick)',\n", " 'url': 'https://genius.com/Bas-lit-lyrics'}" ] }, "execution_count": 172, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hits[0]['result']" ] }, { "cell_type": "code", "execution_count": 402, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[(216609, 'Fetty Wap'),\n", " (92, 'Nicki Minaj'),\n", " (563, 'Queen'),\n", " (92, 'Nicki Minaj'),\n", " (14313, 'Lady Leshurr'),\n", " (92, 'Nicki Minaj'),\n", " (783, 'Janelle Monáe'),\n", " (217208, 'Lil Uzi Vert'),\n", " (14313, 'Lady Leshurr'),\n", " (563, 'Queen'),\n", " (14313, 'Lady Leshurr'),\n", " (35857, 'Montana of 300'),\n", " (216609, 'Fetty Wap'),\n", " (563, 'Queen'),\n", " (14313, 'Lady Leshurr'),\n", " (563, 'Queen'),\n", " (25320, 'Queens of the Stone Age'),\n", " (56, 'Nas'),\n", " (327334, 'Christine and the Queens'),\n", " (110, 'Pharrell Williams')]" ] }, "execution_count": 402, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[(h['result']['primary_artist']['id'], h['result']['primary_artist']['name']) for h in hits]" ] }, { "cell_type": "code", "execution_count": 324, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "562" ] }, "execution_count": 324, "metadata": {}, "output_type": "execute_result" } ], "source": [ "this_artist_genius_id" ] }, { "cell_type": "code", "execution_count": 403, "metadata": {}, "outputs": [], "source": [ "this_artist_genius_id = 563" ] }, { "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": 175, "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": 404, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "382" ] }, "execution_count": 404, "metadata": {}, "output_type": "execute_result" } ], "source": [ "genius_song_search(this_artist_genius_id)\n", "genius_tracks.find({'primary_artist.id': this_artist_genius_id}).count()" ] }, { "cell_type": "code", "execution_count": 405, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'_id': 1980324,\n", " 'annotation_count': 1,\n", " 'api_path': '/songs/1980324',\n", " 'full_title': 'Love of my life - live in sheffield / 2005 by\\xa0Queen',\n", " 'header_image_thumbnail_url': 'https://images.genius.com/781f51bb7041e6b7eeec820fbc413e75.300x225x1.jpg',\n", " 'header_image_url': 'https://images.genius.com/781f51bb7041e6b7eeec820fbc413e75.1000x750x1.jpg',\n", " 'id': 1980324,\n", " 'lyrics_owner_id': 1549345,\n", " 'lyrics_state': 'complete',\n", " 'path': '/Queen-love-of-my-life-live-in-sheffield-2005-lyrics',\n", " 'primary_artist': {'api_path': '/artists/563',\n", " 'header_image_url': 'https://images.genius.com/31ac19166d7332836b753d67550d75f5.590x290x1.jpg',\n", " 'id': 563,\n", " 'image_url': 'https://images.genius.com/781f51bb7041e6b7eeec820fbc413e75.1000x750x1.jpg',\n", " 'is_meme_verified': False,\n", " 'is_verified': False,\n", " 'name': 'Queen',\n", " 'url': 'https://genius.com/artists/Queen'},\n", " 'pyongs_count': None,\n", " 'song_art_image_thumbnail_url': 'https://images.genius.com/781f51bb7041e6b7eeec820fbc413e75.300x225x1.jpg',\n", " 'stats': {'hot': False, 'unreviewed_annotations': 0},\n", " 'title': 'Love of my life - live in sheffield / 2005',\n", " 'title_with_featured': 'Love of my life - live in sheffield / 2005',\n", " 'url': 'https://genius.com/Queen-love-of-my-life-live-in-sheffield-2005-lyrics'}" ] }, "execution_count": 405, "metadata": {}, "output_type": "execute_result" } ], "source": [ "genius_tracks.find_one({'primary_artist.id': this_artist_genius_id})" ] }, { "cell_type": "code", "execution_count": 406, "metadata": { "scrolled": false }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0123456789...372373374375376377378379380381
_id198032417461831957307197143975243308915153066130868420127212252949...19592612000772309013309673206229531018727667210528701980554308980
annotation_count11111811111...11171129112
api_path/songs/1980324/songs/1746183/songs/1957307/songs/1971439/songs/75243/songs/308915/songs/1530661/songs/308684/songs/2012721/songs/2252949.../songs/1959261/songs/2000772/songs/309013/songs/309673/songs/2062295/songs/310187/songs/276672/songs/1052870/songs/1980554/songs/308980
full_titleLove of my life - live in sheffield / 2005 by ...Love of My Live by QueenLove of my life - live at the montreal forum /...Love of my life - live in budapest / 1986 by Q...Another One Bites the Dust by QueenBig Bad Caused A Mighty Fine Sensation by QueenDeath On Two Legs by QueenDoing All Right by QueenFlash's Theme Reprise (Victory Celebrations) b...Flash to the Rescue by Queen...White Queen (As It Began) - Live At The Rainbo...White Queen (As It Began) - Live At The Rainbo...Who Needs You by QueenWho Wants to Live Forever by QueenWishing well (live) by QueenYou Don't Fool Me by QueenYou're My Best Friend by Queen(You're So Square) Baby I Don't Care by Queen(you're so square) baby i don't care - live at...You Take My Breath Away by Queen
header_image_thumbnail_urlhttps://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/46cbba7263b21d619ea3...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/ab165af76aefa2f95cca...https://images.genius.com/ea82e2b5daac0f84eb87...https://images.genius.com/507e9f4c13bbad63f080...https://images.genius.com/507e9f4c13bbad63f080......https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/587abcd3c795f89809a0...https://images.genius.com/c93df8c63d9c4efa2296...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/4831c4472c6f3745e394...https://images.genius.com/823b14934ef9a20a76aa...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/b9b62a530829bee8fd62...
header_image_urlhttps://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/46cbba7263b21d619ea3...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/ab165af76aefa2f95cca...https://images.genius.com/ea82e2b5daac0f84eb87...https://images.genius.com/507e9f4c13bbad63f080...https://images.genius.com/507e9f4c13bbad63f080......https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/587abcd3c795f89809a0...https://images.genius.com/c93df8c63d9c4efa2296...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/4831c4472c6f3745e394...https://images.genius.com/823b14934ef9a20a76aa...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/b9b62a530829bee8fd62...
id198032417461831957307197143975243308915153066130868420127212252949...19592612000772309013309673206229531018727667210528701980554308980
lyrics_owner_id154934515493451549345154934548951354608154934535460815493451549345...1549345154934535460835438115493455431972155315493451549345354608
lyrics_statecompletecompletecompletecompletecompletecompletecompletecompletecompletecomplete...completecompletecompletecompletecompletecompletecompletecompletecompletecomplete
path/Queen-love-of-my-life-live-in-sheffield-2005-.../Queen-love-of-my-live-lyrics/Queen-love-of-my-life-live-at-the-montreal-fo.../Queen-love-of-my-life-live-in-budapest-1986-l.../Queen-another-one-bites-the-dust-lyrics/Queen-big-bad-caused-a-mighty-fine-sensation-.../Queen-death-on-two-legs-lyrics/Queen-doing-all-right-lyrics/Queen-flashs-theme-reprise-victory-celebratio.../Queen-flash-to-the-rescue-lyrics.../Queen-white-queen-as-it-began-live-at-the-rai.../Queen-white-queen-as-it-began-live-at-the-rai.../Queen-who-needs-you-lyrics/Queen-who-wants-to-live-forever-lyrics/Queen-wishing-well-live-lyrics/Queen-you-dont-fool-me-lyrics/Queen-youre-my-best-friend-lyrics/Queen-youre-so-square-baby-i-dont-care-lyrics/Queen-youre-so-square-baby-i-dont-care-live-a.../Queen-you-take-my-breath-away-lyrics
primary_artist{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http......{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...{'id': 563, 'is_verified': False, 'url': 'http...
pyongs_countNaNNaNNaNNaN28NaNNaNNaNNaNNaN...NaNNaN25NaN112NaNNaN1
song_art_image_thumbnail_urlhttps://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/69af8f7f0d9e52b993c1...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/ab165af76aefa2f95cca...https://images.genius.com/ea82e2b5daac0f84eb87...https://images.genius.com/507e9f4c13bbad63f080...https://images.genius.com/507e9f4c13bbad63f080......https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/587abcd3c795f89809a0...https://images.genius.com/b80a9cb155bf55081715...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/4831c4472c6f3745e394...https://images.genius.com/823b14934ef9a20a76aa...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/781f51bb7041e6b7eeec...https://images.genius.com/b9b62a530829bee8fd62...
stats{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 0, 'p...{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 1}{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 0}...{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 1}{'hot': False, 'unreviewed_annotations': 6, 'p...{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 12}{'hot': False, 'unreviewed_annotations': 0, 'p...{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 0}{'hot': False, 'unreviewed_annotations': 2}
titleLove of my life - live in sheffield / 2005Love of My LiveLove of my life - live at the montreal forum /...Love of my life - live in budapest / 1986Another One Bites the DustBig Bad Caused A Mighty Fine SensationDeath On Two LegsDoing All RightFlash's Theme Reprise (Victory Celebrations)Flash to the Rescue...White Queen (As It Began) - Live At The Rainbo...White Queen (As It Began) - Live At The Rainbo...Who Needs YouWho Wants to Live ForeverWishing well (live)You Don't Fool MeYou're My Best Friend(You're So Square) Baby I Don't Care(you're so square) baby i don't care - live at...You Take My Breath Away
title_with_featuredLove of my life - live in sheffield / 2005Love of My LiveLove of my life - live at the montreal forum /...Love of my life - live in budapest / 1986Another One Bites the DustBig Bad Caused A Mighty Fine SensationDeath On Two LegsDoing All RightFlash's Theme Reprise (Victory Celebrations)Flash to the Rescue...White Queen (As It Began) - Live At The Rainbo...White Queen (As It Began) - Live At The Rainbo...Who Needs YouWho Wants to Live ForeverWishing well (live)You Don't Fool MeYou're My Best Friend(You're So Square) Baby I Don't Care(you're so square) baby i don't care - live at...You Take My Breath Away
urlhttps://genius.com/Queen-love-of-my-life-live-...https://genius.com/Queen-love-of-my-live-lyricshttps://genius.com/Queen-love-of-my-life-live-...https://genius.com/Queen-love-of-my-life-live-...https://genius.com/Queen-another-one-bites-the...https://genius.com/Queen-big-bad-caused-a-migh...https://genius.com/Queen-death-on-two-legs-lyricshttps://genius.com/Queen-doing-all-right-lyricshttps://genius.com/Queen-flashs-theme-reprise-...https://genius.com/Queen-flash-to-the-rescue-l......https://genius.com/Queen-white-queen-as-it-beg...https://genius.com/Queen-white-queen-as-it-beg...https://genius.com/Queen-who-needs-you-lyricshttps://genius.com/Queen-who-wants-to-live-for...https://genius.com/Queen-wishing-well-live-lyricshttps://genius.com/Queen-you-dont-fool-me-lyricshttps://genius.com/Queen-youre-my-best-friend-...https://genius.com/Queen-youre-so-square-baby-...https://genius.com/Queen-youre-so-square-baby-...https://genius.com/Queen-you-take-my-breath-aw...
\n", "

17 rows × 382 columns

\n", "
" ], "text/plain": [ " 0 \\\n", "_id 1980324 \n", "annotation_count 1 \n", "api_path /songs/1980324 \n", "full_title Love of my life - live in sheffield / 2005 by ... \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 1980324 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-love-of-my-life-live-in-sheffield-2005-... \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Love of my life - live in sheffield / 2005 \n", "title_with_featured Love of my life - live in sheffield / 2005 \n", "url https://genius.com/Queen-love-of-my-life-live-... \n", "\n", " 1 \\\n", "_id 1746183 \n", "annotation_count 1 \n", "api_path /songs/1746183 \n", "full_title Love of My Live by Queen \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 1746183 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-love-of-my-live-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Love of My Live \n", "title_with_featured Love of My Live \n", "url https://genius.com/Queen-love-of-my-live-lyrics \n", "\n", " 2 \\\n", "_id 1957307 \n", "annotation_count 1 \n", "api_path /songs/1957307 \n", "full_title Love of my life - live at the montreal forum /... \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 1957307 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-love-of-my-life-live-at-the-montreal-fo... \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Love of my life - live at the montreal forum /... \n", "title_with_featured Love of my life - live at the montreal forum /... \n", "url https://genius.com/Queen-love-of-my-life-live-... \n", "\n", " 3 \\\n", "_id 1971439 \n", "annotation_count 1 \n", "api_path /songs/1971439 \n", "full_title Love of my life - live in budapest / 1986 by Q... \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 1971439 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-love-of-my-life-live-in-budapest-1986-l... \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Love of my life - live in budapest / 1986 \n", "title_with_featured Love of my life - live in budapest / 1986 \n", "url https://genius.com/Queen-love-of-my-life-live-... \n", "\n", " 4 \\\n", "_id 75243 \n", "annotation_count 18 \n", "api_path /songs/75243 \n", "full_title Another One Bites the Dust by Queen \n", "header_image_thumbnail_url https://images.genius.com/46cbba7263b21d619ea3... \n", "header_image_url https://images.genius.com/46cbba7263b21d619ea3... \n", "id 75243 \n", "lyrics_owner_id 48951 \n", "lyrics_state complete \n", "path /Queen-another-one-bites-the-dust-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count 28 \n", "song_art_image_thumbnail_url https://images.genius.com/69af8f7f0d9e52b993c1... \n", "stats {'hot': False, 'unreviewed_annotations': 0, 'p... \n", "title Another One Bites the Dust \n", "title_with_featured Another One Bites the Dust \n", "url https://genius.com/Queen-another-one-bites-the... \n", "\n", " 5 \\\n", "_id 308915 \n", "annotation_count 1 \n", "api_path /songs/308915 \n", "full_title Big Bad Caused A Mighty Fine Sensation by Queen \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 308915 \n", "lyrics_owner_id 354608 \n", "lyrics_state complete \n", "path /Queen-big-bad-caused-a-mighty-fine-sensation-... \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Big Bad Caused A Mighty Fine Sensation \n", "title_with_featured Big Bad Caused A Mighty Fine Sensation \n", "url https://genius.com/Queen-big-bad-caused-a-migh... \n", "\n", " 6 \\\n", "_id 1530661 \n", "annotation_count 1 \n", "api_path /songs/1530661 \n", "full_title Death On Two Legs by Queen \n", "header_image_thumbnail_url https://images.genius.com/ab165af76aefa2f95cca... \n", "header_image_url https://images.genius.com/ab165af76aefa2f95cca... \n", "id 1530661 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-death-on-two-legs-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/ab165af76aefa2f95cca... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Death On Two Legs \n", "title_with_featured Death On Two Legs \n", "url https://genius.com/Queen-death-on-two-legs-lyrics \n", "\n", " 7 \\\n", "_id 308684 \n", "annotation_count 1 \n", "api_path /songs/308684 \n", "full_title Doing All Right by Queen \n", "header_image_thumbnail_url https://images.genius.com/ea82e2b5daac0f84eb87... \n", "header_image_url https://images.genius.com/ea82e2b5daac0f84eb87... \n", "id 308684 \n", "lyrics_owner_id 354608 \n", "lyrics_state complete \n", "path /Queen-doing-all-right-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/ea82e2b5daac0f84eb87... \n", "stats {'hot': False, 'unreviewed_annotations': 1} \n", "title Doing All Right \n", "title_with_featured Doing All Right \n", "url https://genius.com/Queen-doing-all-right-lyrics \n", "\n", " 8 \\\n", "_id 2012721 \n", "annotation_count 1 \n", "api_path /songs/2012721 \n", "full_title Flash's Theme Reprise (Victory Celebrations) b... \n", "header_image_thumbnail_url https://images.genius.com/507e9f4c13bbad63f080... \n", "header_image_url https://images.genius.com/507e9f4c13bbad63f080... \n", "id 2012721 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-flashs-theme-reprise-victory-celebratio... \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/507e9f4c13bbad63f080... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Flash's Theme Reprise (Victory Celebrations) \n", "title_with_featured Flash's Theme Reprise (Victory Celebrations) \n", "url https://genius.com/Queen-flashs-theme-reprise-... \n", "\n", " 9 \\\n", "_id 2252949 \n", "annotation_count 1 \n", "api_path /songs/2252949 \n", "full_title Flash to the Rescue by Queen \n", "header_image_thumbnail_url https://images.genius.com/507e9f4c13bbad63f080... \n", "header_image_url https://images.genius.com/507e9f4c13bbad63f080... \n", "id 2252949 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-flash-to-the-rescue-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/507e9f4c13bbad63f080... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Flash to the Rescue \n", "title_with_featured Flash to the Rescue \n", "url https://genius.com/Queen-flash-to-the-rescue-l... \n", "\n", " ... \\\n", "_id ... \n", "annotation_count ... \n", "api_path ... \n", "full_title ... \n", "header_image_thumbnail_url ... \n", "header_image_url ... \n", "id ... \n", "lyrics_owner_id ... \n", "lyrics_state ... \n", "path ... \n", "primary_artist ... \n", "pyongs_count ... \n", "song_art_image_thumbnail_url ... \n", "stats ... \n", "title ... \n", "title_with_featured ... \n", "url ... \n", "\n", " 372 \\\n", "_id 1959261 \n", "annotation_count 1 \n", "api_path /songs/1959261 \n", "full_title White Queen (As It Began) - Live At The Rainbo... \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 1959261 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-white-queen-as-it-began-live-at-the-rai... \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title White Queen (As It Began) - Live At The Rainbo... \n", "title_with_featured White Queen (As It Began) - Live At The Rainbo... \n", "url https://genius.com/Queen-white-queen-as-it-beg... \n", "\n", " 373 \\\n", "_id 2000772 \n", "annotation_count 1 \n", "api_path /songs/2000772 \n", "full_title White Queen (As It Began) - Live At The Rainbo... \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 2000772 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-white-queen-as-it-began-live-at-the-rai... \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title White Queen (As It Began) - Live At The Rainbo... \n", "title_with_featured White Queen (As It Began) - Live At The Rainbo... \n", "url https://genius.com/Queen-white-queen-as-it-beg... \n", "\n", " 374 \\\n", "_id 309013 \n", "annotation_count 1 \n", "api_path /songs/309013 \n", "full_title Who Needs You by Queen \n", "header_image_thumbnail_url https://images.genius.com/587abcd3c795f89809a0... \n", "header_image_url https://images.genius.com/587abcd3c795f89809a0... \n", "id 309013 \n", "lyrics_owner_id 354608 \n", "lyrics_state complete \n", "path /Queen-who-needs-you-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count 2 \n", "song_art_image_thumbnail_url https://images.genius.com/587abcd3c795f89809a0... \n", "stats {'hot': False, 'unreviewed_annotations': 1} \n", "title Who Needs You \n", "title_with_featured Who Needs You \n", "url https://genius.com/Queen-who-needs-you-lyrics \n", "\n", " 375 \\\n", "_id 309673 \n", "annotation_count 7 \n", "api_path /songs/309673 \n", "full_title Who Wants to Live Forever by Queen \n", "header_image_thumbnail_url https://images.genius.com/c93df8c63d9c4efa2296... \n", "header_image_url https://images.genius.com/c93df8c63d9c4efa2296... \n", "id 309673 \n", "lyrics_owner_id 354381 \n", "lyrics_state complete \n", "path /Queen-who-wants-to-live-forever-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count 5 \n", "song_art_image_thumbnail_url https://images.genius.com/b80a9cb155bf55081715... \n", "stats {'hot': False, 'unreviewed_annotations': 6, 'p... \n", "title Who Wants to Live Forever \n", "title_with_featured Who Wants to Live Forever \n", "url https://genius.com/Queen-who-wants-to-live-for... \n", "\n", " 376 \\\n", "_id 2062295 \n", "annotation_count 1 \n", "api_path /songs/2062295 \n", "full_title Wishing well (live) by Queen \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 2062295 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-wishing-well-live-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title Wishing well (live) \n", "title_with_featured Wishing well (live) \n", "url https://genius.com/Queen-wishing-well-live-lyrics \n", "\n", " 377 \\\n", "_id 310187 \n", "annotation_count 12 \n", "api_path /songs/310187 \n", "full_title You Don't Fool Me by Queen \n", "header_image_thumbnail_url https://images.genius.com/4831c4472c6f3745e394... \n", "header_image_url https://images.genius.com/4831c4472c6f3745e394... \n", "id 310187 \n", "lyrics_owner_id 5431972 \n", "lyrics_state complete \n", "path /Queen-you-dont-fool-me-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count 1 \n", "song_art_image_thumbnail_url https://images.genius.com/4831c4472c6f3745e394... \n", "stats {'hot': False, 'unreviewed_annotations': 12} \n", "title You Don't Fool Me \n", "title_with_featured You Don't Fool Me \n", "url https://genius.com/Queen-you-dont-fool-me-lyrics \n", "\n", " 378 \\\n", "_id 276672 \n", "annotation_count 9 \n", "api_path /songs/276672 \n", "full_title You're My Best Friend by Queen \n", "header_image_thumbnail_url https://images.genius.com/823b14934ef9a20a76aa... \n", "header_image_url https://images.genius.com/823b14934ef9a20a76aa... \n", "id 276672 \n", "lyrics_owner_id 1553 \n", "lyrics_state complete \n", "path /Queen-youre-my-best-friend-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count 12 \n", "song_art_image_thumbnail_url https://images.genius.com/823b14934ef9a20a76aa... \n", "stats {'hot': False, 'unreviewed_annotations': 0, 'p... \n", "title You're My Best Friend \n", "title_with_featured You're My Best Friend \n", "url https://genius.com/Queen-youre-my-best-friend-... \n", "\n", " 379 \\\n", "_id 1052870 \n", "annotation_count 1 \n", "api_path /songs/1052870 \n", "full_title (You're So Square) Baby I Don't Care by Queen \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 1052870 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-youre-so-square-baby-i-dont-care-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title (You're So Square) Baby I Don't Care \n", "title_with_featured (You're So Square) Baby I Don't Care \n", "url https://genius.com/Queen-youre-so-square-baby-... \n", "\n", " 380 \\\n", "_id 1980554 \n", "annotation_count 1 \n", "api_path /songs/1980554 \n", "full_title (you're so square) baby i don't care - live at... \n", "header_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "header_image_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "id 1980554 \n", "lyrics_owner_id 1549345 \n", "lyrics_state complete \n", "path /Queen-youre-so-square-baby-i-dont-care-live-a... \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count NaN \n", "song_art_image_thumbnail_url https://images.genius.com/781f51bb7041e6b7eeec... \n", "stats {'hot': False, 'unreviewed_annotations': 0} \n", "title (you're so square) baby i don't care - live at... \n", "title_with_featured (you're so square) baby i don't care - live at... \n", "url https://genius.com/Queen-youre-so-square-baby-... \n", "\n", " 381 \n", "_id 308980 \n", "annotation_count 2 \n", "api_path /songs/308980 \n", "full_title You Take My Breath Away by Queen \n", "header_image_thumbnail_url https://images.genius.com/b9b62a530829bee8fd62... \n", "header_image_url https://images.genius.com/b9b62a530829bee8fd62... \n", "id 308980 \n", "lyrics_owner_id 354608 \n", "lyrics_state complete \n", "path /Queen-you-take-my-breath-away-lyrics \n", "primary_artist {'id': 563, 'is_verified': False, 'url': 'http... \n", "pyongs_count 1 \n", "song_art_image_thumbnail_url https://images.genius.com/b9b62a530829bee8fd62... \n", "stats {'hot': False, 'unreviewed_annotations': 2} \n", "title You Take My Breath Away \n", "title_with_featured You Take My Breath Away \n", "url https://genius.com/Queen-you-take-my-breath-aw... \n", "\n", "[17 rows x 382 columns]" ] }, "execution_count": 406, "metadata": {}, "output_type": "execute_result" } ], "source": [ "gsongs = pd.DataFrame(list(genius_tracks.find({'primary_artist.id': this_artist_genius_id})))\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": 96, "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", "# return soup\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": 97, "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": 328, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 328, "metadata": {}, "output_type": "execute_result" } ], "source": [ "genius_tracks.update_many({'primary_artist.id': this_artist_genius_id}, {'$unset': {'lyrics': ''}})" ] }, { "cell_type": "code", "execution_count": 407, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'_id': 308915,\n", " 'lyrics': \"gone and got himself elected president (we want leroy for president) next time you got to hit a bitty baddy weather this time like a shimmy shimmy leather he's a big boy bad boy leroy i don't care where you get him from bring that big bad leroy back want him back\",\n", " 'original_lyrics': \"\\n\\n[Verse]\\nGone and got himself elected president\\n(We want Leroy for President)\\n\\nNext time, you got to hit a bitty baddy\\nWeather\\nThis time, like a shimmy, shimmy leather\\nHe's a big boy, bad boy, Leroy\\nI don't care where you get him from\\n\\nBring that big bad Leroy back\\nWant him back\\n\\n\",\n", " 'title': 'Big Bad Caused A Mighty Fine Sensation'}" ] }, "execution_count": 407, "metadata": {}, "output_type": "execute_result" } ], "source": [ "for gsong in genius_tracks.find({'primary_artist.id': this_artist_genius_id}):\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({'primary_artist.id': this_artist_genius_id}, ['title', 'lyrics', 'original_lyrics'])" ] }, { "cell_type": "code", "execution_count": 231, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'original_lyrics_text'" ] }, "execution_count": 231, "metadata": {}, "output_type": "execute_result" } ], "source": [ "genius_tracks.create_index([('original_lyrics', pymongo.TEXT)])" ] }, { "cell_type": "code", "execution_count": 232, "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\\nOne of these days the ground will drop out from beneath your feet\\nOne of these days your heart will stop and play its final beat\\nOne of these days the clocks will stop and time won't mean a thing\\nOne of these days their bombs will drop and silence everything\\n\\nBut it's alright\\nYeah, it's alright\\nI said it's alright\\n\\nEasy for you to say\\nYour heart has never been broken\\nYour pride has never been stolen\\nNot yet not yet\\n\\nOne of these days\\nI bet your heart'll be broken\\nI bet your pride'll be stolen\\nI bet I bet I bet I bet\\nOne of these days\\nOne of these days\\n\\nOne of these days your eyes will close and pain will disappear\\nOne of these days you will forget to hope and learn to fear\\n\\nBut it's alright\\nYeah, it's alright\\nI said it's alright\\n\\nEasy for you to say\\nYour heart has never been broken\\nYour pride has never been stolen\\nNot yet not yet\\n\\nOne of these days\\nI bet your heart'll be broken\\nI bet your pride'll be stolen\\nI bet I bet I bet I bet\\nOne of these days\\nOne of these days\\n\\nBut it's alright\\nYeah, it's alright\\nI said it's alright\\nYeah, it's alright\\nDon't say it's alright\\nDon't say it's alright\\nDon't say it's alright\\n\\nOne of these days your heart will stop and play its final beat\\nBut it's alright\\n\\n(Chorus)\\n\\nOne of these days\\nI bet your heart'll be broken\\nI bet your pride'll be stolen\\nI bet I bet I bet I bet\\n\\nOne of these days\\nOne of these days\\nOne of these days\\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\\nLet’s change the subject to someone else\\nYou know lately I've been subject to change\\nNormally I reel in the strange\\nHang over, I’m older\\n\\nYou’re one to talk the heart is a clock\\nJust like a bomb that keeps on tickin' away\\nCounting down to detonate\\nYou will need an army\\nDisarmin' me\\n\\nIt doesn't matter much to me if it doesn't matter much to you, ooh\\nIt doesn't matter much to me if it doesn't matter much to you\\n\\nIt’s just a matter of time, before, before\\nIt’s just a matter of time, before, before\\nAnd though I hate to rewind, before, before\\nIt’s just a matter of time\\n\\nMy past is getting us nowhere fast\\nI was never one for takin' things slow\\nNowhere seems like somewhere to go\\nCome over and over\\n\\nDoin' my time for line after line\\nWhen will I learn to sing these crimes to myself?\\nPrisoners to share a cell with\\nI’m holdin', still holdin'\\nHoldin' it well\\n\\n(Climb)\\n\\n(Chorus)\\n\\n(Where the hell were you, oooh)\\n(Where the hell were you, oooh)\\n(Where the hell were you)\\n\\nIt’s just a matter of time, before, before\\nIt’s just a matter of time, before, before\\nAnd though I hate to revise, before, before\\nIt’s just a matter of time\\n\\nWhat does it matter now?\\nWhat does it matter now?\\n\\nWhat does it matter now?\\nWhat does it matter now?\\nIt’s just a matter of time\\nTime\\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\\nOh, Oh\\nIf I had my way\\nIf I had to lose\\nWouldn't take back one thing\\nNever had much to choose\\n\\nThen it dawned on me\\nComin' down on you\\nLike a cold sky rainin' under a burnin' moon\\n\\nBeen waitin' all your life, your wish is comin' true\\nBless your heart for beatin', me right out of you\\n\\nMiss the misery\\nNeed a reason for a change\\nNeed a reason to explain\\nSo turn it on again\\n\\nDon't change your mind\\nYou're wastin' light\\nGet in and let's go, go\\n\\nWhat a nice long leash\\nWhat a nice tight noose\\nNever worked for me, but\\nSure would look good on you\\n\\n(Climb)\\n\\n(Chorus)\\n\\n(Refrain)\\n\\nMiss the misery\\nGive me reason for a change\\nMiss the misery\\nGive me reason to refrain\\n\\nMiss your misery today\\nMiss your misery today\\nCome on and turn it on for me!\\n\\nDon't change your mind\\nYou're wastin' light\\nDon't make this right\\nDon't make this right\\nGet in and let's go\\nGo, oh, oh, oh\\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]\\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\\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": 232, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[t['original_lyrics'] for t in genius_tracks.find({'$text': {'$search': 'chorus'}}, limit=10)]" ] }, { "cell_type": "code", "execution_count": 408, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "['I Want It All / We Will Rock You Mash-Up',\n", " 'My Strongest Suit',\n", " 'Looking Tired']" ] }, "execution_count": 408, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[t['title'] for t in genius_tracks.find({'$text': {'$search': 'we are not licensed to display'}})]" ] }, { "cell_type": "code", "execution_count": 409, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 409, "metadata": {}, "output_type": "execute_result" } ], "source": [ "genius_tracks.delete_many({'primary_artist.id': this_artist_genius_id, \n", " '$text': {'$search': 'licensed'}})" ] }, { "cell_type": "code", "execution_count": 410, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['White Man']" ] }, "execution_count": 410, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[t['title'] for t in genius_tracks.find({'primary_artist.id': this_artist_genius_id, \n", " '$text': {'$search': 'immigrant'}})]" ] }, { "cell_type": "code", "execution_count": 411, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['Big Bad Caused A Mighty Fine Sensation',\n", " \"Flash's Theme Reprise (Victory Celebrations)\",\n", " 'Flash to the Rescue',\n", " \"Looks Like It's Gonna Be A Good Night - Improv / Live In Budapest / 1986\",\n", " 'Big Spender',\n", " 'Bijou',\n", " 'Blag',\n", " 'Misfire',\n", " 'Nevermore',\n", " 'New York',\n", " 'Procession',\n", " 'Track 13',\n", " 'Yeah',\n", " 'A New Life Is Born',\n", " 'Arboria (Planet of the Tree Men)',\n", " 'Battle Theme',\n", " 'Blurred Vision',\n", " 'Chinese Torture',\n", " 'Crash Dive on Mingo City',\n", " 'Dear Friends',\n", " \"Doin' Alright\",\n", " 'Doing Alright',\n", " \"Don't Lose Your Head\",\n", " 'Drum And Tympani Solo - Live At The Montreal Forum / November 1981',\n", " 'Drum solo - live at the rainbow, london / november 1974',\n", " 'Escape from the Swamp',\n", " 'Execution of Flash',\n", " 'Football Fight',\n", " 'Forever (Piano Version)',\n", " \"Gimme Some Lovin'\",\n", " \"Gimme some lovin' - live at wembley stadium / july 1986\",\n", " 'God Save The Queen',\n", " 'Impromptu (Live)',\n", " 'In the Death Cell (Love Theme Reprise)',\n", " 'In The Lap Of The Gods',\n", " 'In the Space Capsule (The Love Theme)',\n", " \"It's a Beautiful Day\",\n", " \"It's a beautiful day [B-Side]\",\n", " \"It's A Beautiful Day (Queen)\",\n", " 'Let there be drums - live in sheffield / 2005',\n", " 'Marriage of Dale and Ming (And Flash Approaching)',\n", " \"Ming's Theme (In the Court of Ming the Merciless)\",\n", " 'My Secret Fantasy',\n", " 'News of the World - Album Art',\n", " 'Procession - live at the rainbow, london / march 1974',\n", " 'Procession - live at the rainbow, london / november 1974',\n", " 'Reaching Out',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011',\n", " 'Small reprise',\n", " 'Tavaszi Szel Vizet Araszt - Live In Budapest / 1986',\n", " 'The Kiss (Aura Resurrects Flash)',\n", " 'The Ring (Hypnotic Seduction of Dale)',\n", " \"Vultan's Theme (Attack of the Hawk Men)\",\n", " 'Love of my life - live in sheffield / 2005',\n", " 'Love of My Live',\n", " 'Love of my life - live at the montreal forum / november 1981',\n", " 'Love of my life - live in budapest / 1986',\n", " 'Another One Bites the Dust',\n", " 'Death On Two Legs',\n", " 'Doing All Right',\n", " 'Life is Real',\n", " 'Life Is Real (Song for Lennon)',\n", " 'Lily of the Valley',\n", " 'Lily Of The Valley (Mercury)',\n", " 'Living On My Own',\n", " 'Lost Opportunity',\n", " 'Love Kills (The Ballad)',\n", " 'Love of My Life',\n", " \"'39\",\n", " 'April Lady',\n", " 'Back Chat',\n", " 'Breakthru',\n", " 'Call Me',\n", " 'Coming Soon',\n", " 'Cool Cat',\n", " 'Dancer',\n", " 'Delilah',\n", " 'Drowse',\n", " 'Earth',\n", " 'Flash',\n", " 'Forever',\n", " 'Fun It',\n", " \"Goin' Back\",\n", " 'Going Back',\n", " 'Hangman',\n", " 'Headlong',\n", " 'I Go Crazy',\n", " 'Innuendo',\n", " \"It's Late\",\n", " 'Jealousy',\n", " 'Jesus',\n", " 'Killer',\n", " 'Liar',\n", " 'Long Away',\n", " 'Love Kills',\n", " 'Mr. Bad Guy',\n", " 'Party',\n", " 'Polar Bear',\n", " 'Prayer',\n", " 'Rock It',\n", " 'Route 66',\n", " 'Runaway',\n", " 'Save Me',\n", " 'Scandal',\n", " 'Small',\n", " \"Stealin'\",\n", " 'Step On Me',\n", " 'Sweet Lady',\n", " 'Tear It Up',\n", " 'The Hero',\n", " 'The Hitman',\n", " 'The Miracle',\n", " 'Time',\n", " 'Voodoo',\n", " 'Warboys',\n", " 'We Believe',\n", " 'White Man',\n", " 'White Queen',\n", " 'You and I',\n", " 'Action This Day',\n", " 'A Human body',\n", " 'A Kind of Magic',\n", " 'A Kind Of Magic - Highlander Version',\n", " 'A Kind Of Magic (Taylor)',\n", " 'All Dead, All Dead',\n", " \"All God's People\",\n", " \"A Winter's Tale\",\n", " \"Baby I Don't Care\",\n", " 'Back chat - single remix',\n", " 'Back To The Light',\n", " \"Bet Your Bottom Dollar Bill You're A Playboy\",\n", " 'Bicycle Race',\n", " 'Body Language',\n", " 'Bohemian Rhapsody',\n", " 'Brighton Rock',\n", " 'Brighton Rock Solo',\n", " 'Bring Back That Leroy Brown',\n", " 'Calling All Girls',\n", " 'Calling All Girls (Taylor)',\n", " 'C-lebrity',\n", " \"Cosmos Rockin'\",\n", " 'Crazy Little Thing Called Love',\n", " 'Crazy Little Thing Called Love by Queen',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981',\n", " 'Crazy little thing called love - live in sheffield / 2005',\n", " 'Dead On Time',\n", " 'Dead On Time (May)',\n", " 'Death on Two Legs (Dedicated to...)',\n", " 'Dog With A Bone',\n", " \"Don't Loose Your Head\",\n", " \"Don't Stop Me Now\",\n", " \"Don't Try So Hard\",\n", " \"Don't Try Suicide\",\n", " \"Don't Try Suicide (Mercury)\",\n", " 'Dragon Attack',\n", " \"Dreamer's Ball\",\n", " 'Fat Bottomed Girls',\n", " 'Fat Bottomed Girls (May)',\n", " 'Fat bottomed girls - single version',\n", " 'Father To Son',\n", " 'Feelings, Feelings',\n", " \"Feel Like Makin' Love\",\n", " 'Fight From The Inside',\n", " \"Flash's Theme\",\n", " 'Flick of the Wrist',\n", " 'Flick Of The Wrist (Mercury)',\n", " 'Friends Will Be Friends',\n", " 'Friends will be friends - live at wembley stadium / july 1986',\n", " 'Friends Will Be Friends Will Be Friends',\n", " 'Funny How Love Is',\n", " 'Get Down, Make Love',\n", " 'Gimme the Prize',\n", " \"Gimme The Prize (kurgan's Theme)\",\n", " 'Gimme The Prize (Kurgens Theme)',\n", " 'Good Company',\n", " 'Good Old-Fashioned Lover Boy',\n", " 'Great King Rat',\n", " 'Great King Rat (Mercury)',\n", " 'Guitar solo - live',\n", " 'Hammer to Fall',\n", " 'Hammer To Fall (May)',\n", " 'Hang On in There',\n", " 'Headlong - embryo with guide vocal',\n", " 'Heaven for Everyone',\n", " 'Heaven for everyone - edit',\n", " 'Heaven for Everyone (Single Version)',\n", " 'Hello Mary Lou',\n", " 'Hello Mary Lou (Goodbye Heart)',\n", " 'Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986',\n", " 'Hello Mary Lou (Goodbye Heart) - Live In Budapest / 1986',\n", " 'Hijack My Heart',\n", " 'Hijack my heart - b-side',\n", " 'How Can I Go',\n", " 'I Can Hear Music',\n", " \"I Can't Live With You\",\n", " \"I Can't Live With You - 1997 Rocks Retake\",\n", " \"If You Can't Beat 'em\",\n", " \"If You Can't Beat Them\",\n", " 'I go crazy - b-side',\n", " 'I Go Crazy (May)',\n", " 'I Guess Were Falling Out',\n", " 'Imagine (John Lennon cover)',\n", " \"I'm Going Slightly Mad\",\n", " \"I'm Going Slightly Mad - Mad Mix\",\n", " \"I'm In Love With My Car\",\n", " 'In My Defence',\n", " 'In Only Seven Days',\n", " 'In The Lap Of The Gods (Revisited)',\n", " 'In the lap of the gods...revisited - live at the rainbow, london / november 1974',\n", " 'In the lap of the gods... revisited - live in budapest / 1986',\n", " 'Is This The World We Created?',\n", " 'Is This The World We Created? (Mercury, May)',\n", " \"It's A Beautiful Day (Reprise)\",\n", " \"It's A Hard Life\",\n", " \"It's A Hard Life (Mercury)\",\n", " \"It's a kind of magic (highlander)\",\n", " 'I Want It All',\n", " 'I want it all - live in sheffield / 2005',\n", " 'I Want It All (Single Version)',\n", " 'I Want It All / We Will Rock You Mash-Up',\n", " 'I Want To Break Free',\n", " 'I Want To Break Free (Extended Version)',\n", " 'I Want To Break Free (Single Remix)',\n", " 'I want to break free - single version',\n", " 'I Was Born To Love You',\n", " 'I Was Born To Love You (Freddie Mercury)',\n", " 'Jailhouse Rock',\n", " 'Jailhouse rock - live at the montreal forum / november 1981',\n", " 'Jailhouse rock - live at the rainbow, london / november 1974',\n", " 'Keep Passing The Open Windows',\n", " 'Keep Yourself Alive',\n", " 'Keep Yourself Alive (May)',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974',\n", " \"Khashoggi's Ship\",\n", " 'Killer Queen',\n", " 'Las Palabras De Amor (The Words of Love)',\n", " 'Lazing on a Sunday Afternoon',\n", " \"Leaving Home Ain't Easy\",\n", " 'Let Me Entertain You',\n", " 'Let me entertain you - live at the montreal forum / november 1981',\n", " 'Let Me In Your Heart Again',\n", " 'Let me in your heart again - william orbit mix',\n", " 'Let Me Live',\n", " 'Let Me Live (Queen)',\n", " 'Liar - de lane lea demo / december 1971',\n", " 'Machines (Or Back To Humans)',\n", " 'Made In Heaven',\n", " 'Mad The Swine',\n", " 'Man On The Prowl',\n", " 'Man On The Prowl (Mercury)',\n", " \"Modern Times Rock 'N' Roll\",\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\",\n", " 'More Of That Jazz',\n", " 'Mother Love',\n", " 'Mustapha',\n", " 'My Babe Does Me',\n", " 'My Baby Does Me',\n", " 'My Fairy King',\n", " 'My Fairy King (Mercury)',\n", " 'My Life Has Been Saved',\n", " 'My Melancholy Blues',\n", " 'Need your Loving Tonight',\n", " 'No-One but You (Only the Good Die Young)',\n", " \"Now I'm Here\",\n", " \"Now I'm Here (May)\",\n", " \"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\",\n", " \"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\",\n", " 'Ogre Battle',\n", " 'Ogre battle - live at the rainbow, london / march 1974',\n", " 'Ogre battle - live at the rainbow, london / november 1974',\n", " 'One Vision',\n", " 'One Vision (Extended Version)',\n", " 'One vision - live in budapest / 1986',\n", " 'One Vision (Single Version)',\n", " 'One Year Of Live',\n", " 'One Year of Love',\n", " 'Pain Is So Close to Pleasure',\n", " 'Pain is so close to pleasure - single remix',\n", " 'Play The Game',\n", " 'Play the game - live at milton keynes bowl / june 1982',\n", " 'Princes of the Universe',\n", " 'Put Out The Fire',\n", " 'Put Out The Fire (May)',\n", " 'Radio Ga Ga',\n", " 'Rain must fall',\n", " 'Rain Must Fall (Queen)',\n", " 'Ride the Wild Wind',\n", " 'Ride the wild wind - early version with guide vocal',\n", " 'Ride The Wild Wind (Queen)',\n", " 'Rock in Rio Blues',\n", " 'Rock It (Prime Jive)',\n", " 'Sail Away Sweet Sister',\n", " \"Saturday Night's Alright (for Fighting)\",\n", " 'Save me - live at the montreal forum / november 1981',\n", " \"Say It's Not True\",\n", " 'Seaside Rendezvous',\n", " \"See What A Fool I've Been\",\n", " 'Selfish (Female Remix)',\n", " 'Self Made Man',\n", " 'Seven Seas Of Rhye',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974',\n", " 'Seven Seas Of Rhye (Remix)',\n", " 'She Blows Hot & Cold',\n", " 'Sheer Heart Attack',\n", " 'She Makes Me (Stormtrooper In Stilettoes)',\n", " 'She Makes Me (Stormtrooper in Stilettos)',\n", " 'Silver Salmon',\n", " 'Sleeping On The Sidewalk',\n", " 'Somebody to Love',\n", " 'Somebody To Love (Edit)',\n", " 'Somebody to love - live at the freddie mercury tribute concert for aids awareness, wembley / 1992',\n", " 'Some Day One Day',\n", " 'Some Things That Glitter',\n", " 'Son And Daughter',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Soul Brother',\n", " 'Soul brother - b-side',\n", " 'Spread Your Wings',\n", " 'Spread Your Wings (Deacon)',\n", " 'Staying Power',\n", " 'Staying power - live at milton keynes bowl / june 1982',\n", " \"Stealin' - b-side\",\n", " \"Still Burnin'\",\n", " 'Stone Cold Crazy',\n", " 'Stop All The Fighting',\n", " \"Surf's Up... School's Out!\",\n", " 'Tear it up - live in budapest / 1986',\n", " 'Tear It Up (May)',\n", " 'Tenement Funster',\n", " 'Tenement Funster (Taylor)',\n", " 'Teo Torriate',\n", " 'Teo Torriatte',\n", " 'Teo Torriatte (Let Us Cling Together)',\n", " 'Teo Torriatte (Let Us Cling Together) (delete)',\n", " \"Thank God It's Christmas\",\n", " \"The Fairy Feller's Master-Stroke\",\n", " \"The fairy feller's master-stroke - live at the rainbow, london / march 1974\",\n", " 'The Great Pretender',\n", " 'The Invisible Man',\n", " 'The Invisible Man (12\" version)',\n", " 'The Loser In The End',\n", " 'The March Of The Black Queen',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 'The Millionaire Waltz',\n", " 'The Night Comes Down',\n", " \"The Prophet's Song\",\n", " 'There Must Be More To Life Than This (William Orbit Mix)',\n", " 'These Are Days Of Our Lifes',\n", " 'These Are the Days of Our Lives',\n", " 'The Show Must Go On',\n", " 'The Wedding March',\n", " 'Through The Night',\n", " 'Tie Your Mother Down',\n", " 'Time To Shine',\n", " 'Too Much Love Will Kill You',\n", " 'Tutti Frutti',\n", " 'Tutti frutti - live in budapest / 1986',\n", " 'Under Pressure',\n", " 'Was It All Worth It',\n", " 'We Are The Champions',\n", " 'We Are The Champions (Mercury)',\n", " 'We Will Rock You',\n", " 'We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982',\n", " 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981',\n", " 'We Will Rock You (Fast Version)',\n", " 'We Will Rock You (Fast Version) - Live, European Tour / 1979',\n", " 'We Will Rock You - LP & JC Remix',\n", " 'White Queen (As It Began)',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'Who Needs You',\n", " 'Who Wants to Live Forever',\n", " 'Wishing well (live)',\n", " \"You Don't Fool Me\",\n", " \"You're My Best Friend\",\n", " \"(You're So Square) Baby I Don't Care\",\n", " \"(you're so square) baby i don't care - live at wembley stadium / july 1986\",\n", " 'You Take My Breath Away']" ] }, "execution_count": 411, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[t['title'] for t in genius_tracks.find({'primary_artist.id': this_artist_genius_id})]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Matching datasets\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": 102, "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": 103, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'a hard days night'" ] }, "execution_count": 103, "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": 412, "metadata": {}, "outputs": [], "source": [ "for t in tracks.find({'artist_id': this_artist_id}):\n", " tracks.update_one({'_id': t['_id']}, {'$set': {'ctitle': canonical_name(t['name'])}})\n", "for t in genius_tracks.find({'primary_artist.id': this_artist_genius_id}):\n", " genius_tracks.update_one({'_id': t['_id']}, {'$set': {'ctitle': canonical_name(t['title'])}})" ] }, { "cell_type": "code", "execution_count": 413, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('a winters tale',\n", " [\"A Winter's Tale\",\n", " \"A Winter's Tale\",\n", " \"A Winter's Tale - Cosy Fireside Mix / Remastered 2011\"]),\n", " ('fun it', ['Fun It - Remastered 2011', 'Fun It - Remastered 2011']),\n", " ('let me entertain you',\n", " ['Let Me Entertain You - Live At The Montreal Forum / November 1981',\n", " 'Let Me Entertain You - Live, European Tour / 1979',\n", " 'Let Me Entertain You - Remastered 2011',\n", " 'Let Me Entertain You - Remastered 2011',\n", " 'Let Me Entertain You - Live In Montreal / November 1981']),\n", " ('innuendo', ['Innuendo - Remastered 2011', 'Innuendo - Remastered 2011']),\n", " ('see what a fool ive been',\n", " [\"See What A Fool I've Been - BBC Session / July 25th 1973, Langham 1 Studio\",\n", " \"See What A Fool I've Been - Live At The Hammersmith Odeon, London / 1975\",\n", " \"See What A Fool I've Been - Live At The Rainbow, London / March 1974\",\n", " \"See What A Fool I've Been - Live BBC Session, London / July 1973 / 2011 Remix\",\n", " 'See What A Fool I’ve Been - B-Side Version / Remastered 2011']),\n", " ('jealousy', ['Jealousy - Remastered 2011', 'Jealousy - Remastered 2011']),\n", " ('pain is so close to pleasure',\n", " ['Pain Is So Close To Pleasure - Remastered 2011',\n", " 'Pain Is So Close To Pleasure - Remastered 2011',\n", " 'Pain Is So Close To Pleasure - Single Remix']),\n", " ('rain must fall',\n", " ['Rain Must Fall - Remastered 2011', 'Rain Must Fall - Remastered 2011']),\n", " ('fight from the inside',\n", " ['Fight From The Inside - Remastered 2011',\n", " 'Fight From The Inside - Remastered 2011']),\n", " ('stone cold crazy',\n", " ['Stone Cold Crazy - BBC Session / October 16th 1974, Maida Vale 4 Studio',\n", " 'Stone Cold Crazy - Live At The Rainbow, London / November 1974',\n", " 'Stone Cold Crazy - Live At The Rainbow, London / November 1974',\n", " 'Stone Cold Crazy - Remastered 2011',\n", " 'Stone Cold Crazy - Remastered 2011']),\n", " ('too much love will kill you',\n", " ['Too Much Love Will Kill You', 'Too Much Love Will Kill You']),\n", " ('sheer heart attack',\n", " ['Sheer Heart Attack - Live At The Montreal Forum / November 1981',\n", " 'Sheer Heart Attack - Live At Milton Keynes Bowl / June 1982',\n", " 'Sheer Heart Attack - Live, European Tour / 1979',\n", " 'Sheer Heart Attack - Remastered 2011',\n", " 'Sheer Heart Attack - Remastered 2011',\n", " 'Sheer Heart Attack - Live In Paris / February 1979']),\n", " ('coming soon',\n", " ['Coming Soon - Remastered 2011', 'Coming Soon - Remastered 2011']),\n", " ('made in heaven', ['Made In Heaven', 'Made In Heaven']),\n", " ('its a beautiful day',\n", " [\"It's A Beautiful Day - Remastered 2011\",\n", " \"It's A Beautiful Day - Remastered 2011\",\n", " \"It's A Beautiful Day - B-Side Version / Remastered 2011\",\n", " \"It's A Beautiful Day - Original Spontaneous Idea / April 1980\"]),\n", " ('i cant live with you',\n", " [\"I Can't Live With You - Remastered 2011\",\n", " \"I Can't Live With You - Remastered 2011\",\n", " \"I Can't Live With You - 1997 Rocks Retake\"]),\n", " ('nevermore',\n", " ['Nevermore - BBC Session / April 3rd 1974, Langham 1 Studio',\n", " 'Nevermore - Remastered 2011',\n", " 'Nevermore - Remastered 2011',\n", " 'Nevermore - Live BBC Session, London / April 1974']),\n", " ('some day one day',\n", " ['Some Day One Day - Remastered 2011',\n", " 'Some Day One Day - Remastered 2011']),\n", " ('good oldfashioned lover boy',\n", " ['Good Old-Fashioned Lover Boy - Remastered 2011',\n", " 'Good Old-Fashioned Lover Boy - Remastered 2011',\n", " 'Good Old-Fashioned Lover Boy - Live On BBC Top Of The Pops / July 1977']),\n", " ('its late',\n", " [\"It's Late - BBC Session / October 28th 1977, Maida Vale 4 Studio\",\n", " \"It's Late - Remastered 2011\",\n", " \"It's Late - Remastered 2011\"]),\n", " ('seven seas of rhye',\n", " ['Seven Seas Of Rhye - Live At Wembley Stadium / July 1986',\n", " 'Seven Seas Of Rhye - Live At The Hammersmith Odeon, London / 1975',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / March 1974',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974',\n", " 'Seven Seas Of Rhye - Live',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye - Remastered 2011']),\n", " ('the show must go on',\n", " ['The Show Must Go On - Remastered 2011',\n", " 'The Show Must Go On - Remastered 2011',\n", " 'The Show Must Go On - Live In Sheffield / 2005']),\n", " ('rock it prime jive',\n", " ['Rock It (Prime Jive) - Remastered 2011',\n", " 'Rock It (Prime Jive) - Remastered 2011']),\n", " ('who needs you',\n", " ['Who Needs You - Remastered 2011', 'Who Needs You - Remastered 2011']),\n", " ('untitled',\n", " ['Untitled - Remastered 2011', 'Untitled - Remastered 2011', 'Untitled']),\n", " ('long away', ['Long Away - Remastered 2011', 'Long Away - Remastered 2011']),\n", " ('dear friends',\n", " ['Dear Friends - Remastered 2011', 'Dear Friends - Remastered 2011']),\n", " ('save me',\n", " ['Save Me - Live At Milton Keynes Bowl / June 1982',\n", " 'Save Me - Live At The Montreal Forum / November 1981',\n", " 'Save Me - Remastered 2011',\n", " 'Save Me - Remastered 2011',\n", " 'Save Me - Live In Montreal / November 1981']),\n", " ('battle theme',\n", " ['Battle Theme - Remastered 2011', 'Battle Theme - Remastered 2011']),\n", " ('marriage of dale and ming and flash approaching',\n", " ['Marriage Of Dale And Ming (And Flash Approaching) - Remastered 2011',\n", " 'Marriage Of Dale And Ming (And Flash Approaching) - Remastered 2011']),\n", " ('football fight',\n", " ['Football Fight - Remastered 2011',\n", " 'Football Fight - Remastered 2011',\n", " 'Football Fight - Early Version / No Synths! / February 1980']),\n", " ('need your loving tonight',\n", " ['Need Your Loving Tonight - Remastered 2011',\n", " 'Need Your Loving Tonight - Remastered 2011']),\n", " ('bohemian rhapsody',\n", " ['Bohemian Rhapsody - Live At The Montreal Forum / November 1981',\n", " 'Bohemian Rhapsody - Live At Milton Keynes Bowl / June 1982',\n", " 'Bohemian Rhapsody - Live At Wembley Stadium / July 1986',\n", " 'Bohemian Rhapsody - Live',\n", " 'Bohemian Rhapsody - Live At The Hammersmith Odeon, London / 1975',\n", " 'Bohemian Rhapsody - Reprise / Live At The Hammersmith Odeon, London / 1975',\n", " 'Bohemian Rhapsody - Live, European Tour / 1979',\n", " 'Bohemian Rhapsody - Remastered 2011',\n", " 'Bohemian Rhapsody - Live In Sheffield / 2005']),\n", " ('lily of the valley',\n", " ['Lily Of The Valley - Remastered 2011',\n", " 'Lily Of The Valley - Remastered 2011']),\n", " ('fat bottomed girls',\n", " ['Fat Bottomed Girls - Live At Milton Keynes Bowl / June 1982',\n", " 'Fat Bottomed Girls - 2011 Remaster',\n", " 'Fat Bottomed Girls - 2011 Remaster',\n", " 'Fat Bottomed Girls - Single Version',\n", " 'Fat Bottomed Girls - Live In Sheffield / 2005']),\n", " ('youre so square baby i dont care',\n", " [\"(You're So Square) Baby I Don't Care - Live At Wembley Stadium / July 1986\",\n", " \"(You're So Square) Baby I Don't Care - Live\"]),\n", " ('procession',\n", " ['Procession - Live At The Rainbow, London / November 1974',\n", " 'Procession - Live At The Rainbow, London / March 1974',\n", " 'Procession - Live At The Rainbow, London / November 1974',\n", " 'Procession - Remastered 2011',\n", " 'Procession - Remastered 2011']),\n", " ('its a hard life',\n", " [\"It's A Hard Life - Remastered 2011\",\n", " \"It's A Hard Life - Remastered 2011\",\n", " \"It's A Hard Life - Live In Rio / January 1985\"]),\n", " ('god save the queen',\n", " ['God Save The Queen - Live At Wembley Stadium / July 1986',\n", " 'God Save The Queen - Live At The Montreal Forum / November 1981',\n", " 'God Save The Queen - Live At Milton Keynes Bowl / June 1982',\n", " 'God Save The Queen - Live',\n", " 'God Save The Queen - Live At The Hammersmith Odeon, London / 1975',\n", " 'God Save The Queen - Live At The Rainbow, London / November 1974',\n", " 'God Save The Queen - Live At The Rainbow, London / November 1974',\n", " 'God Save The Queen - Live, European Tour / 1979',\n", " 'God Save The Queen - Remastered 2011',\n", " 'God Save The Queen - Live In Sheffield / 2005']),\n", " ('execution of flash',\n", " ['Execution Of Flash - Remastered 2011',\n", " 'Execution Of Flash - Remastered 2011']),\n", " ('brighton rock',\n", " ['Brighton Rock - Live At The Hammersmith Odeon, London / 1975',\n", " 'Brighton Rock - Live, European Tour / 1979',\n", " 'Brighton Rock - Remastered 2011',\n", " 'Brighton Rock - Remastered 2011']),\n", " ('tear it up',\n", " ['Tear It Up - Live At Wembley Stadium / July 1986',\n", " 'Tear It Up - Live',\n", " 'Tear It Up - Remastered 2011',\n", " 'Tear It Up - Remastered 2011']),\n", " ('white man', ['White Man - Remastered 2011', 'White Man - Remastered 2011']),\n", " ('tie your mother down',\n", " ['Tie Your Mother Down - Live At The Montreal Forum / November 1981',\n", " 'Tie Your Mother Down - Live At Milton Keynes Bowl / June 1982',\n", " 'Tie Your Mother Down - Live At Wembley Stadium / July 1986',\n", " 'Tie Your Mother Down - Live',\n", " 'Tie Your Mother Down - Live, European Tour / 1979',\n", " 'Tie Your Mother Down - Remastered 2011',\n", " 'Tie Your Mother Down - Remastered 2011',\n", " 'Tie Your Mother Down - Backing Track Mix',\n", " 'Tie Your Mother Down - Live In Sheffield / 2005']),\n", " ('my melancholy blues',\n", " ['My Melancholy Blues - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 'My Melancholy Blues - Remastered 2011',\n", " 'My Melancholy Blues - Remastered 2011',\n", " 'My Melancholy Blues - Live BBC Session / October 1977']),\n", " ('dont try so hard', [\"Don't Try So Hard\", \"Don't Try So Hard\"]),\n", " ('life is real song for lennon',\n", " ['Life Is Real (Song For Lennon) - Remastered 2011',\n", " 'Life Is Real (Song For Lennon) - Remastered 2011']),\n", " ('arboria planet of the tree men',\n", " ['Arboria (Planet Of The Tree Men) - Remastered 2011',\n", " 'Arboria (Planet Of The Tree Men) - Remastered 2011']),\n", " ('heaven for everyone',\n", " ['Heaven For Everyone - Remastered 2011',\n", " 'Heaven For Everyone - Remastered 2011',\n", " 'Heaven For Everyone - Single Version']),\n", " ('another one bites the dust',\n", " ['Another One Bites The Dust - Live At The Montreal Forum / November 1981',\n", " 'Another One Bites The Dust - Live At Milton Keynes Bowl / June 1982',\n", " 'Another One Bites The Dust - Live At Wembley Stadium / July 1986',\n", " 'Another One Bites The Dust - Live',\n", " 'Another One Bites The Dust - Remastered 2011',\n", " 'Another One Bites The Dust - Remastered 2011',\n", " 'Another One Bites The Dust - Live In Sheffield / 2005']),\n", " ('machines or back to humans',\n", " ['Machines (Or Back To Humans) - Remastered 2011',\n", " 'Machines (Or Back To Humans) - Remastered 2011']),\n", " ('the night comes down',\n", " ['The Night Comes Down - Remastered 2011',\n", " 'The Night Comes Down - Remastered 2011',\n", " 'The Night Comes Down - De Lane Lea Demo / December 1971']),\n", " ('39',\n", " [\"'39 - Live In Sheffield / 2005\",\n", " \"'39 - Live, European Tour / 1979\",\n", " \"'39 - Remastered 2011\"]),\n", " ('one year of love',\n", " ['One Year Of Love - Remastered 2011',\n", " 'One Year Of Love - Remastered 2011']),\n", " ('dont try suicide',\n", " [\"Don't Try Suicide - Remastered 2011\",\n", " \"Don't Try Suicide - Remastered 2011\"]),\n", " ('breakthru', ['Breakthru - Remastered 2011', 'Breakthru - Remastered 2011']),\n", " ('delilah', ['Delilah - Remastered 2011', 'Delilah - Remastered 2011']),\n", " ('under pressure',\n", " ['Under Pressure - Live At The Montreal Forum / November 1981',\n", " 'Under Pressure - Live At Milton Keynes Bowl / June 1982',\n", " 'Under Pressure - Live At Wembley Stadium / July 1986',\n", " 'Under Pressure - Live',\n", " 'Under Pressure - Remastered 2011',\n", " 'Under Pressure - Remastered 2011']),\n", " ('dont stop me now',\n", " [\"Don't Stop Me Now - Live, European Tour / 1979\",\n", " \"Don't Stop Me Now - Remastered\",\n", " \"Don't Stop Me Now - Remastered\",\n", " \"Don't Stop Me Now - With Long-Lost Guitars\"]),\n", " ('dont lose your head',\n", " [\"Don't Lose Your Head - Remastered 2011\",\n", " \"Don't Lose Your Head - Remastered 2011\"]),\n", " ('calling all girls',\n", " ['Calling All Girls - Remastered 2011',\n", " 'Calling All Girls - Remastered 2011',\n", " 'Calling All Girls - Live In Tokyo / November 1982']),\n", " ('flashs theme reprise',\n", " [\"Flash's Theme Reprise - Remastered 2011\",\n", " \"Flash's Theme Reprise - Remastered 2011\"]),\n", " ('party', ['Party - Remastered 2011', 'Party - Remastered 2011']),\n", " ('youre my best friend',\n", " [\"You're My Best Friend - Live, European Tour / 1979\",\n", " \"You're My Best Friend - Remastered 2011\"]),\n", " ('sail away sweet sister',\n", " ['Sail Away Sweet Sister - Remastered 2011',\n", " 'Sail Away Sweet Sister - Remastered 2011',\n", " 'Sail Away Sweet Sister - Take 1 With Guide Vocal']),\n", " ('flick of the wrist',\n", " ['Flick Of The Wrist - BBC Session / October 16th 1974, Maida Vale 4 Studio',\n", " 'Flick Of The Wrist - Live At The Rainbow, London / November 1974',\n", " 'Flick Of The Wrist - Live At The Rainbow, London / November 1974',\n", " 'Flick Of The Wrist - Remastered 2011',\n", " 'Flick Of The Wrist - Remastered 2011',\n", " 'Flick Of The Wrist - Live BBC Session / October 1974']),\n", " ('let me live',\n", " ['Let Me Live - Remastered 2011', 'Let Me Live - Remastered 2011']),\n", " ('in only seven days',\n", " ['In Only Seven Days - Remastered 2011',\n", " 'In Only Seven Days - Remastered 2011']),\n", " ('bicycle race',\n", " ['Bicycle Race - Live, European Tour / 1979',\n", " 'Bicycle Race - Remastered 2011',\n", " 'Bicycle Race - Remastered 2011',\n", " 'Bicycle Race - Instrumental']),\n", " ('i want to break free',\n", " ['I Want To Break Free - Live At Wembley Stadium / July 1986',\n", " 'I Want To Break Free - Live',\n", " 'I Want To Break Free - Remastered 2011',\n", " 'I Want To Break Free - Remastered 2011',\n", " 'I Want To Break Free - Single Remix',\n", " 'I Want To Break Free - Live In Sheffield / 2005']),\n", " ('in the death cell love theme reprise',\n", " ['In The Death Cell (Love Theme Reprise) - Remastered 2011',\n", " 'In The Death Cell (Love Theme Reprise) - Remastered 2011']),\n", " ('i want it all',\n", " ['I Want It All - Single Version',\n", " 'I Want It All - Remastered 2011',\n", " 'I Want It All - Remastered 2011',\n", " 'I Want It All - Live In Sheffield / 2005']),\n", " ('bring back that leroy brown',\n", " ['Bring Back That Leroy Brown - Live At The Hammersmith Odeon, London / 1975',\n", " 'Bring Back That Leroy Brown - Live At The Rainbow, London / November 1974',\n", " 'Bring Back That Leroy Brown - Live At The Rainbow, London / November 1974',\n", " 'Bring Back That Leroy Brown - Remastered 2011',\n", " 'Bring Back That Leroy Brown - Remastered 2011',\n", " 'Bring Back That Leroy Brown - A Cappella Mix 2011']),\n", " ('we will rock you fast',\n", " ['We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982',\n", " 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981',\n", " 'We Will Rock You (Fast) - BBC Session / October 28th 1977, Maida Vale 4 Studio']),\n", " ('im going slightly mad',\n", " [\"I'm Going Slightly Mad - Remastered 2011\",\n", " \"I'm Going Slightly Mad - Remastered 2011\",\n", " \"I'm Going Slightly Mad - Mad Mix\"]),\n", " ('put out the fire',\n", " ['Put Out The Fire - Remastered 2011',\n", " 'Put Out The Fire - Remastered 2011']),\n", " ('you dont fool me',\n", " [\"You Don't Fool Me - Remastered 2011\",\n", " \"You Don't Fool Me - Remastered 2011\"]),\n", " ('friends will be friends',\n", " ['Friends Will Be Friends - Live At Wembley Stadium / July 1986',\n", " 'Friends Will Be Friends - Live',\n", " 'Friends Will Be Friends - Remastered 2011',\n", " 'Friends Will Be Friends - Remastered 2011']),\n", " ('escape from the swamp',\n", " ['Escape From The Swamp - Remastered 2011',\n", " 'Escape From The Swamp - Remastered 2011']),\n", " ('get down make love',\n", " ['Get Down Make Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Get Down, Make Love - Live At The Montreal Forum / November 1981',\n", " 'Get Down, Make Love - Live, European Tour / 1979',\n", " 'Get Down, Make Love - Remastered 2011',\n", " 'Get Down, Make Love - Remastered 2011']),\n", " ('khashoggis ship',\n", " [\"Khashoggi's Ship - Remastered 2011\",\n", " \"Khashoggi's Ship - Remastered 2011\"]),\n", " ('the fairy fellers masterstroke',\n", " [\"The Fairy Feller's Master-Stroke - Live At The Rainbow, London / March 1974\",\n", " \"The Fairy Feller's Master-Stroke - Remastered 2011\",\n", " \"The Fairy Feller's Master-Stroke - Remastered 2011\"]),\n", " ('crash dive on mingo city',\n", " ['Crash Dive On Mingo City - Remastered 2011',\n", " 'Crash Dive On Mingo City - Remastered 2011']),\n", " ('all gods people',\n", " [\"All God's People - Remastered 2011\",\n", " \"All God's People - Remastered 2011\"]),\n", " ('las palabras de amor the words of love',\n", " ['Las Palabras De Amor (The Words Of Love) - Remastered 2011',\n", " 'Las Palabras De Amor (The Words Of Love) - Remastered 2011']),\n", " ('teo torriatte let us cling together',\n", " ['Teo Torriatte (Let Us Cling Together) - Remastered 2011',\n", " 'Teo Torriatte (Let Us Cling Together) - Remastered 2011',\n", " 'Teo Torriatte (Let Us Cling Together) - Remastered 2011 / HD Mix']),\n", " ('flash to the rescue',\n", " ['Flash To The Rescue - Remastered 2011',\n", " 'Flash To The Rescue - Remastered 2011']),\n", " ('scandal', ['Scandal - Remastered 2011', 'Scandal - Remastered 2011']),\n", " ('play the game',\n", " ['Play The Game - Live At Milton Keynes Bowl / June 1982',\n", " 'Play The Game - Live At The Montreal Forum / November 1981',\n", " 'Play The Game - Remastered 2011',\n", " 'Play The Game - Remastered 2011']),\n", " ('tenement funster',\n", " ['Tenement Funster - BBC Session / October 16th 1974, Maida Vale 4 Studio',\n", " 'Tenement Funster - Remastered 2011',\n", " 'Tenement Funster - Remastered 2011',\n", " 'Tenement Funster - Live BBC Session / October 1974']),\n", " ('flashs theme',\n", " [\"Flash's Theme - Remastered 2011\", \"Flash's Theme - Remastered 2011\"]),\n", " ('you take my breath away',\n", " ['You Take My Breath Away - Remastered 2011',\n", " 'You Take My Breath Away - Remastered 2011',\n", " 'You Take My Breath Away - Live In Hyde Park / September 1976']),\n", " ('my life has been saved',\n", " ['My Life Has Been Saved - Remastered 2011',\n", " 'My Life Has Been Saved - Remastered 2011',\n", " 'My Life Has Been Saved - 1989 B-Side Version / Remastered 2011']),\n", " ('if you cant beat them',\n", " [\"If You Can't Beat Them - Remastered 2011\",\n", " \"If You Can't Beat Them - Remastered 2011\"]),\n", " ('radio ga ga',\n", " ['Radio Ga Ga - Live In Sheffield / 2005',\n", " 'Radio Ga Ga - Live At Wembley Stadium / July 1986',\n", " 'Radio Ga Ga - Live',\n", " 'Radio Ga Ga - Remastered 2011',\n", " 'Radio Ga Ga - Remastered 2011']),\n", " ('dreamers ball',\n", " [\"Dreamer's Ball - Live, European Tour / 1979\",\n", " \"Dreamer's Ball - Remastered 2011\",\n", " \"Dreamer's Ball - Remastered 2011\",\n", " \"Dreamer's Ball - Early Acoustic Take / August 1978\"]),\n", " ('bijou', ['Bijou', 'Bijou']),\n", " ('mother love', ['Mother Love', 'Mother Love']),\n", " ('in the space capsule the love theme',\n", " ['In The Space Capsule (The Love Theme) - Remastered 2011',\n", " 'In The Space Capsule (The Love Theme) - Remastered 2011']),\n", " ('mustapha', ['Mustapha - Remastered 2011', 'Mustapha - Remastered 2011']),\n", " ('jesus',\n", " ['Jesus - Remastered 2011',\n", " 'Jesus - Remastered 2011',\n", " 'Jesus - De Lane Lea Demo / December 1971']),\n", " ('we are the champions',\n", " ['We Are The Champions - Live At Wembley Stadium / July 1986',\n", " 'We Are The Champions - Live At The Montreal Forum / November 1981',\n", " 'We Are The Champions - Live At Milton Keynes Bowl / June 1982',\n", " 'We Are The Champions - Live',\n", " 'We Are The Champions - Live, European Tour / 1979',\n", " 'We Are The Champions - Remastered 2011',\n", " 'We Are The Champions - Remastered 2011',\n", " 'We Are The Champions - Live In Sheffield / 2005']),\n", " ('keep yourself alive reprise',\n", " ['Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974']),\n", " ('somebody to love',\n", " ['Somebody To Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Somebody To Love - Live At The Montreal Forum / November 1981',\n", " 'Somebody To Love - Remastered 2011',\n", " 'Somebody To Love - Remastered 2011',\n", " 'Somebody To Love - Live At Milton Keynes Bowl / June 1982']),\n", " ('cool cat', ['Cool Cat - Remastered 2011', 'Cool Cat - Remastered 2011']),\n", " ('love of my life',\n", " ['Love Of My Life - Live At The Montreal Forum / November 1981',\n", " 'Love Of My Life - Live At Milton Keynes Bowl / June 1982',\n", " 'Love Of My Life - Live At Wembley Stadium / July 1986',\n", " 'Love Of My Life - Live',\n", " 'Love Of My Life - Live, European Tour / 1979',\n", " 'Love Of My Life - Remastered 2011',\n", " 'Love Of My Life - Live In Sheffield / 2005']),\n", " ('misfire', ['Misfire - Remastered 2011', 'Misfire - Remastered 2011']),\n", " ('yeah', ['Yeah - Remastered 2011', 'Yeah - Remastered 2011']),\n", " ('a kind of magic',\n", " ['A Kind Of Magic - Remastered 2011',\n", " 'A Kind Of Magic - Live At Wembley Stadium / July 1986',\n", " 'A Kind Of Magic - Live',\n", " 'A Kind Of Magic - Remastered 2011',\n", " 'A Kind Of Magic - Highlander Version',\n", " 'A Kind Of Magic - Demo / August 1985',\n", " 'A Kind Of Magic - Live In Sheffield / 2005']),\n", " ('these are the days of our lives',\n", " ['These Are The Days Of Our Lives',\n", " 'These Are The Days Of Our Lives',\n", " 'These Are The Days Of Our Lives - Live In Sheffield / 2005']),\n", " ('the miracle',\n", " ['The Miracle - Remastered 2011', 'The Miracle - Remastered 2011']),\n", " ('the ring hypnotic seduction of dale',\n", " ['The Ring (Hypnotic Seduction Of Dale) - Remastered 2011',\n", " 'The Ring (Hypnotic Seduction Of Dale) - Remastered 2011']),\n", " ('guitar solo',\n", " ['Guitar Solo - Live At The Montreal Forum / November 1981',\n", " 'Guitar Solo - Live In Sheffield / 2005',\n", " 'Guitar Solo - Live At Milton Keynes Bowl / June 1982',\n", " 'Guitar Solo - Live At The Hammersmith Odeon, London / 1975',\n", " 'Guitar Solo - Live At The Rainbow, London / November 1974',\n", " 'Guitar Solo - Live At The Rainbow, London / March 1974',\n", " 'Guitar Solo - Live At The Rainbow, London / November 1974',\n", " 'Guitar Solo - Live']),\n", " ('its a beautiful day reprise',\n", " [\"It's A Beautiful Day (Reprise) - Remastered 2011\",\n", " \"It's A Beautiful Day (Reprise) - Remastered 2011\"]),\n", " ('great king rat',\n", " ['Great King Rat - BBC Session / December 3rd 1973, Langham 1 Studio',\n", " 'Great King Rat - Live At The Rainbow, London / March 1974',\n", " 'Great King Rat - Remastered 2011',\n", " 'Great King Rat - Remastered 2011',\n", " 'Great King Rat - De Lane Lea Demo / December 1971']),\n", " ('i was born to love you',\n", " ['I Was Born To Love You',\n", " 'I Was Born To Love You',\n", " 'I Was Born To Love You - Vocals & Piano Version / Remastered 2011']),\n", " ('spread your wings',\n", " ['Spread Your Wings - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 'Spread Your Wings - Live, European Tour / 1979',\n", " 'Spread Your Wings - Remastered 2011',\n", " 'Spread Your Wings - Remastered 2011',\n", " 'Spread Your Wings - Live BBC Session / October 1977']),\n", " ('body language',\n", " ['Body Language - Remastered 2011', 'Body Language - Remastered 2011']),\n", " ('action this day',\n", " ['Action This Day - Live At Milton Keynes Bowl / June 1982',\n", " 'Action This Day - Remastered 2011',\n", " 'Action This Day - Remastered 2011',\n", " 'Action This Day - Live In Tokyo / November 1982']),\n", " ('now im here reprise',\n", " [\"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\",\n", " \"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\"]),\n", " ('keep yourself alive',\n", " ['Keep Yourself Alive - Live At The Montreal Forum / November 1981',\n", " 'Keep Yourself Alive - BBC Session / February 5th 1973, Langham 1 Studio',\n", " 'Keep Yourself Alive - BBC Session / July 25th 1973, Langham 1 Studio',\n", " 'Keep Yourself Alive - Live At The Hammersmith Odeon, London / 1975',\n", " 'Keep Yourself Alive - Live At The Rainbow, London / November 1974',\n", " 'Keep Yourself Alive - Live At The Rainbow, London / March 1974',\n", " 'Keep Yourself Alive - Live At The Rainbow, London / November 1974',\n", " 'Keep Yourself Alive - Live, European Tour / 1979',\n", " 'Keep Yourself Alive - Remastered 2011',\n", " 'Keep Yourself Alive - Remastered 2011',\n", " 'Keep Yourself Alive - De Lane Lea Demo / December 1971']),\n", " ('say its not true',\n", " [\"Say It's Not True\", \"Say It's Not True - Live In Sheffield / 2005\"]),\n", " ('liar',\n", " ['Liar - BBC Session / February 5th 1973, Langham 1 Studio',\n", " 'Liar - BBC Session / July 25th 1973, Langham 1 Studio',\n", " 'Liar - Live At The Hammersmith Odeon, London / 1975',\n", " 'Liar - Live At The Rainbow, London / November 1974',\n", " 'Liar - Live At The Rainbow, London / March 1974',\n", " 'Liar - Live At The Rainbow, London / November 1974',\n", " 'Liar - Remastered 2011',\n", " 'Liar - Remastered 2011',\n", " 'Liar - De Lane Lea Demo / December 1971']),\n", " ('im in love with my car',\n", " [\"I'm In Love With My Car - Live At The Montreal Forum / November 1981\",\n", " \"I'm In Love With My Car - Live, European Tour / 1979\",\n", " \"I'm In Love With My Car - Remastered 2011\",\n", " \"I'm In Love With My Car - Live In Sheffield / 2005\"]),\n", " ('flash',\n", " ['Flash - Live At The Montreal Forum / November 1981',\n", " 'Flash - Live At Milton Keynes Bowl / June 1982',\n", " 'Flash - Single Version',\n", " 'Flash - Live In Montreal / November 1981']),\n", " ('tutti frutti',\n", " ['Tutti Frutti - Live At Wembley Stadium / July 1986',\n", " 'Tutti Frutti - Live']),\n", " ('jailhouse rock',\n", " ['Jailhouse Rock - Live At The Montreal Forum / November 1981',\n", " 'Jailhouse Rock - Live At The Rainbow, London / November 1974',\n", " 'Jailhouse Rock - Live At The Rainbow, London / November 1974']),\n", " ('dragon attack',\n", " ['Dragon Attack - Live At Milton Keynes Bowl / June 1982',\n", " 'Dragon Attack - Live At The Montreal Forum / November 1981',\n", " 'Dragon Attack - Remastered 2011',\n", " 'Dragon Attack - Remastered 2011',\n", " 'Dragon Attack - Live At Milton Keynes Bowl / June 1982']),\n", " ('who wants to live forever',\n", " ['Who Wants To Live Forever - Live At Wembley Stadium / July 1986',\n", " 'Who Wants To Live Forever - Live',\n", " 'Who Wants To Live Forever - Remastered 2011',\n", " 'Who Wants To Live Forever - Remastered 2011']),\n", " ('leaving home aint easy',\n", " [\"Leaving Home Ain't Easy - Remastered 2011\",\n", " \"Leaving Home Ain't Easy - Remastered 2011\"]),\n", " ('more of that jazz',\n", " ['More Of That Jazz - Remastered 2011',\n", " 'More Of That Jazz - Remastered 2011']),\n", " ('the march of the black queen',\n", " ['The March Of The Black Queen - Live At The Hammersmith Odeon, London / 1975',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 'The March Of The Black Queen - Remastered 2011',\n", " 'The March Of The Black Queen - Remastered 2011']),\n", " ('all dead all dead',\n", " ['All Dead, All Dead - Remastered 2011',\n", " 'All Dead, All Dead - Remastered 2011']),\n", " ('the kiss aura resurrects flash',\n", " ['The Kiss (Aura Resurrects Flash) - Remastered 2011',\n", " 'The Kiss (Aura Resurrects Flash) - Remastered 2011']),\n", " ('funny how love is',\n", " ['Funny How Love Is - Remastered 2011',\n", " 'Funny How Love Is - Remastered 2011']),\n", " ('we will rock you',\n", " ['We Will Rock You - Live At Wembley Stadium / July 1986',\n", " 'We Will Rock You - Live At The Montreal Forum / November 1981',\n", " 'We Will Rock You - Live At Milton Keynes Bowl / June 1982',\n", " 'We Will Rock You - Live',\n", " 'We Will Rock You - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 'We Will Rock You - Live, European Tour / 1979',\n", " 'We Will Rock You - Remastered',\n", " 'We Will Rock You - Remastered',\n", " 'We Will Rock You - Live In Tokyo / November 1982',\n", " 'We Will Rock You - Live In Sheffield / 2005']),\n", " ('the hero',\n", " ['The Hero - Live At The Montreal Forum / November 1981',\n", " 'The Hero - Live At Milton Keynes Bowl / June 1982',\n", " 'The Hero - Remastered 2011',\n", " 'The Hero - Remastered 2011',\n", " 'The Hero - October 1980... Revisited',\n", " 'The Hero - Live In Montreal / November 1981']),\n", " ('princes of the universe',\n", " ['Princes Of The Universe - Remastered 2011',\n", " 'Princes Of The Universe - Remastered 2011']),\n", " ('drowse', ['Drowse - Remastered 2011', 'Drowse - Remastered 2011']),\n", " ('keep passing the open windows',\n", " ['Keep Passing The Open Windows - Remastered 2011',\n", " 'Keep Passing The Open Windows - Remastered 2011']),\n", " ('sleeping on the sidewalk',\n", " ['Sleeping On The Sidewalk - Remastered 2011',\n", " 'Sleeping On The Sidewalk - Remastered 2011']),\n", " ('father to son',\n", " ['Father To Son - Live At The Rainbow, London / November 1974',\n", " 'Father To Son - Live At The Rainbow, London / March 1974',\n", " 'Father To Son - Live At The Rainbow, London / November 1974',\n", " 'Father To Son - Remastered 2011',\n", " 'Father To Son - Remastered 2011']),\n", " ('in the lap of the gods revisited',\n", " ['In The Lap Of The Gods... Revisited - Live',\n", " 'In The Lap Of The Gods... Revisited - Remastered 2011',\n", " 'In The Lap Of The Gods... Revisited - Remastered 2011',\n", " 'In The Lap Of The Gods… Revisited - Live At Wembley Stadium / July 1986']),\n", " ('man on the prowl',\n", " ['Man On The Prowl - Remastered 2011',\n", " 'Man On The Prowl - Remastered 2011']),\n", " ('modern times rock n roll',\n", " [\"Modern Times Rock 'n' Roll - BBC Session / December 3rd 1973, Langham 1 Studio\",\n", " \"Modern Times Rock 'n' Roll - BBC Session / April 3rd 1974, Langham 1 Studio\",\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\",\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / March 1974\",\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\",\n", " \"Modern Times Rock 'N Roll - Remastered 2011\",\n", " \"Modern Times Rock 'N Roll - Remastered 2011\"]),\n", " ('gimme the prize',\n", " ['Gimme The Prize - Remastered 2011', 'Gimme The Prize - Remastered 2011']),\n", " ('she makes me stormtrooper in stilettos',\n", " ['She Makes Me (Stormtrooper In Stilettos) - Remastered 2011',\n", " 'She Makes Me (Stormtrooper In Stilettos) - Remastered 2011']),\n", " ('mings theme in the court of ming the merciless',\n", " [\"Ming's Theme (In The Court Of Ming The Merciless) - Remastered 2011\",\n", " \"Ming's Theme (In The Court Of Ming The Merciless) - Remastered 2011\"]),\n", " ('crazy little thing called love',\n", " ['Crazy Little Thing Called Love - Live At The Montreal Forum / November 1981',\n", " 'Crazy Little Thing Called Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Crazy Little Thing Called Love - Live At Wembley Stadium / July 1986',\n", " 'Crazy Little Thing Called Love - Live',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy Little Thing Called Love - Live In Sheffield / 2005']),\n", " ('the wedding march',\n", " ['The Wedding March - Remastered 2011',\n", " 'The Wedding March - Remastered 2011']),\n", " ('drum solo',\n", " ['Drum Solo - Live At The Rainbow, London / November 1974',\n", " 'Drum Solo - Live At The Rainbow, London / March 1974',\n", " 'Drum Solo - Live At The Rainbow, London / November 1974']),\n", " ('son and daughter',\n", " ['Son And Daughter - BBC Session / July 25th 1973, Langham 1 Studio',\n", " 'Son And Daughter - BBC Session / December 3rd 1973, Langham 1 Studio',\n", " 'Son And Daughter - Live At The Hammersmith Odeon, London / 1975',\n", " 'Son And Daughter - Live At The Rainbow, London / November 1974',\n", " 'Son And Daughter - Live At The Rainbow, London / March 1974',\n", " 'Son And Daughter - Live At The Rainbow, London / November 1974',\n", " 'Son And Daughter - Remastered 2011',\n", " 'Son And Daughter - Remastered 2011']),\n", " ('my fairy king',\n", " ['My Fairy King - BBC Session / February 5th 1973, Langham 1 Studio',\n", " 'My Fairy King - Remastered 2011',\n", " 'My Fairy King - Remastered 2011']),\n", " ('dancer', ['Dancer - Remastered 2011', 'Dancer - Remastered 2011']),\n", " ('the invisible man',\n", " ['The Invisible Man - Remastered 2011',\n", " 'The Invisible Man - Demo',\n", " 'The Invisible Man - 12\" Version',\n", " 'The Invisible Man - Remastered 2011']),\n", " ('ride the wild wind',\n", " ['Ride The Wild Wind - Remastered 2011',\n", " 'Ride The Wild Wind - Remastered 2011',\n", " 'Ride The Wild Wind - Early Version With Guide Vocal']),\n", " ('vultans theme attack of the hawk men',\n", " [\"Vultan's Theme (Attack Of The Hawk Men) - Remastered 2011\",\n", " \"Vultan's Theme (Attack Of The Hawk Men) - Remastered 2011\"]),\n", " ('hello mary lou goodbye heart',\n", " ['Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986',\n", " 'Hello Mary Lou (Goodbye Heart) - Live']),\n", " ('was it all worth it',\n", " ['Was It All Worth It - Remastered 2011',\n", " 'Was It All Worth It - Remastered 2011']),\n", " ('dead on time',\n", " ['Dead On Time - Remastered 2011', 'Dead On Time - Remastered 2011']),\n", " ('in the lap of the godsrevisited',\n", " ['In The Lap Of The Gods...Revisited - Live At Wembley Stadium / July 1986',\n", " 'In The Lap Of The Gods...Revisited - Live At The Hammersmith Odeon, London / 1975',\n", " 'In The Lap Of The Gods...Revisited - Live At The Rainbow, London / November 1974',\n", " 'In The Lap Of The Gods...Revisited - Live At The Rainbow, London / November 1974']),\n", " ('the millionaire waltz',\n", " ['The Millionaire Waltz - Remastered 2011',\n", " 'The Millionaire Waltz - Remastered 2011']),\n", " ('staying power',\n", " ['Staying Power - Live At Milton Keynes Bowl / June 1982',\n", " 'Staying Power - Remastered 2011',\n", " 'Staying Power - Remastered 2011',\n", " 'Staying Power - Live At Milton Keynes Bowl / June 1982']),\n", " ('son and daughter reprise',\n", " ['Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974']),\n", " ('intro',\n", " ['Intro - Live At The Montreal Forum / November 1981', 'Intro - Live']),\n", " ('my baby does me',\n", " ['My Baby Does Me - Remastered 2011', 'My Baby Does Me - Remastered 2011']),\n", " ('back chat',\n", " ['Back Chat - Live At Milton Keynes Bowl / June 1982',\n", " 'Back Chat - Remastered 2011',\n", " 'Back Chat - Remastered 2011',\n", " 'Back Chat - Single Remix']),\n", " ('is this the world we created',\n", " ['Is This The World We Created? - Live At Wembley Stadium / July 1986',\n", " 'Is This The World We Created...? - Live',\n", " 'Is This The World We Created...? - Remastered 2011',\n", " 'Is This The World We Created...? - Remastered 2011',\n", " 'Is This The World We Created...? - Live In Rio / January 1985']),\n", " ('white queen as it began',\n", " ['White Queen (As It Began) - BBC Session / April 3rd 1974, Langham 1 Studio',\n", " 'White Queen (As It Began) - Live At The Hammersmith Odeon, London / 1975',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975']),\n", " ('the hitman',\n", " ['The Hitman - Remastered 2011', 'The Hitman - Remastered 2011']),\n", " ('ogre battle',\n", " ['Ogre Battle - BBC Session / December 3rd 1973, Langham 1 Studio',\n", " 'Ogre Battle - Live At The Hammersmith Odeon, London / 1975',\n", " 'Ogre Battle - Live At The Rainbow, London / November 1974',\n", " 'Ogre Battle - Live At The Rainbow, London / March 1974',\n", " 'Ogre Battle - Live At The Rainbow, London / November 1974',\n", " 'Ogre Battle - Remastered 2011',\n", " 'Ogre Battle - Remastered 2011']),\n", " ('killer queen',\n", " ['Killer Queen - Live At The Montreal Forum / November 1981',\n", " 'Killer Queen - Live At The Hammersmith Odeon, London / 1975',\n", " 'Killer Queen - Live At The Rainbow, London / November 1974',\n", " 'Killer Queen - Live At The Rainbow, London / November 1974',\n", " 'Killer Queen - Live, European Tour / 1979',\n", " 'Killer Queen - Remastered 2011',\n", " 'Killer Queen - Remastered 2011']),\n", " ('hammer to fall',\n", " ['Hammer To Fall - Live At Wembley Stadium / July 1986',\n", " 'Hammer To Fall - Live',\n", " 'Hammer To Fall - Remastered 2011',\n", " 'Hammer To Fall - Remastered 2011',\n", " \"Hammer To Fall - Headbanger's Mix\",\n", " 'Hammer To Fall - Live In Sheffield / 2005']),\n", " ('now im here',\n", " [\"Now I'm Here - Live At Milton Keynes Bowl / June 1982\",\n", " \"Now I'm Here - Live At Wembley Stadium / July 1986\",\n", " \"Now I'm Here - Live At The Montreal Forum / November 1981\",\n", " \"Now I'm Here - Live\",\n", " \"Now I'm Here - BBC Session / October 16th 1974, Maida Vale 4 Studio\",\n", " \"Now I'm Here - Live At The Hammersmith Odeon, London / 1975\",\n", " \"Now I'm Here - Live At The Rainbow, London / November 1974\",\n", " \"Now I'm Here - Live At The Rainbow, London / November 1974\",\n", " \"Now I'm Here - Live, European Tour / 1979\",\n", " \"Now I'm Here - Remastered 2011\",\n", " \"Now I'm Here - Remastered 2011\",\n", " 'Now I’m Here - Live At Hammersmith Odeon, London / December 1975']),\n", " ('doing alright',\n", " ['Doing Alright - Remastered 2011', 'Doing Alright - Remastered 2011']),\n", " ('you and i', ['You And I - Remastered 2011', 'You And I - Remastered 2011']),\n", " ('headlong',\n", " ['Headlong - Remastered 2011',\n", " 'Headlong - Remastered 2011',\n", " 'Headlong - Embryo With Guide Vocal']),\n", " ('big spender',\n", " ['Big Spender - Live At Wembley Stadium / July 1986',\n", " 'Big Spender - Live At The Hammersmith Odeon, London / 1975',\n", " 'Big Spender - Live At The Rainbow, London / November 1974',\n", " 'Big Spender - Live At The Rainbow, London / November 1974']),\n", " ('one vision',\n", " ['One Vision - Remastered 2011',\n", " 'One Vision - Live At Wembley Stadium / July 1986',\n", " 'One Vision - Live',\n", " 'One Vision - Remastered 2011',\n", " 'One Vision - Single Version',\n", " 'One Vision - Live At Wembley Stadium / Friday July 11th 1986']),\n", " ('in the lap of the gods',\n", " ['In The Lap Of The Gods - Live At The Rainbow, London / November 1974',\n", " 'In The Lap Of The Gods - Live At The Rainbow, London / November 1974',\n", " 'In The Lap Of The Gods - Remastered 2011',\n", " 'In The Lap Of The Gods - Remastered 2011']),\n", " ('the loser in the end',\n", " ['The Loser In The End - Remastered 2011',\n", " 'The Loser In The End - Remastered 2011'])]" ] }, "execution_count": 413, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ctitles = set([t['ctitle'] for t in tracks.find({'artist_id': this_artist_id})])\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": 414, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "[('a winters tale',\n", " [(\"A Winter's Tale\", 0.321),\n", " (\"A Winter's Tale\", 0.321),\n", " (\"A Winter's Tale - Cosy Fireside Mix / Remastered 2011\", 0.304)]),\n", " ('fun it',\n", " [('Fun It - Remastered 2011', 0.0808),\n", " ('Fun It - Remastered 2011', 0.0808)]),\n", " ('innuendo',\n", " [('Innuendo - Remastered 2011', 0.344),\n", " ('Innuendo - Remastered 2011', 0.344)]),\n", " ('see what a fool ive been',\n", " [(\"See What A Fool I've Been - BBC Session / July 25th 1973, Langham 1 Studio\",\n", " 0.609),\n", " (\"See What A Fool I've Been - Live BBC Session, London / July 1973 / 2011 Remix\",\n", " 0.233),\n", " ('See What A Fool I’ve Been - B-Side Version / Remastered 2011', 0.121)]),\n", " ('jealousy',\n", " [('Jealousy - Remastered 2011', 0.243),\n", " ('Jealousy - Remastered 2011', 0.243)]),\n", " ('pain is so close to pleasure',\n", " [('Pain Is So Close To Pleasure - Remastered 2011', 0.169),\n", " ('Pain Is So Close To Pleasure - Remastered 2011', 0.169),\n", " ('Pain Is So Close To Pleasure - Single Remix', 0.056)]),\n", " ('rain must fall',\n", " [('Rain Must Fall - Remastered 2011', 0.0655),\n", " ('Rain Must Fall - Remastered 2011', 0.0655)]),\n", " ('fight from the inside',\n", " [('Fight From The Inside - Remastered 2011', 0.613),\n", " ('Fight From The Inside - Remastered 2011', 0.613)]),\n", " ('stone cold crazy',\n", " [('Stone Cold Crazy - BBC Session / October 16th 1974, Maida Vale 4 Studio',\n", " 0.107),\n", " ('Stone Cold Crazy - Live At The Rainbow, London / November 1974', 0.459),\n", " ('Stone Cold Crazy - Live At The Rainbow, London / November 1974', 0.459),\n", " ('Stone Cold Crazy - Remastered 2011', 0.0954),\n", " ('Stone Cold Crazy - Remastered 2011', 0.0954)]),\n", " ('too much love will kill you',\n", " [('Too Much Love Will Kill You', 0.159),\n", " ('Too Much Love Will Kill You', 0.159)]),\n", " ('sheer heart attack',\n", " [('Sheer Heart Attack - Remastered 2011', 0.359),\n", " ('Sheer Heart Attack - Remastered 2011', 0.359)]),\n", " ('coming soon',\n", " [('Coming Soon - Remastered 2011', 0.156),\n", " ('Coming Soon - Remastered 2011', 0.156)]),\n", " ('made in heaven', [('Made In Heaven', 0.3), ('Made In Heaven', 0.3)]),\n", " ('its a beautiful day',\n", " [(\"It's A Beautiful Day - Remastered 2011\", 0.0844),\n", " (\"It's A Beautiful Day - Remastered 2011\", 0.0844),\n", " (\"It's A Beautiful Day - B-Side Version / Remastered 2011\", 0.0797),\n", " (\"It's A Beautiful Day - Original Spontaneous Idea / April 1980\", 0.128)]),\n", " ('i cant live with you',\n", " [(\"I Can't Live With You - Remastered 2011\", 0.213),\n", " (\"I Can't Live With You - Remastered 2011\", 0.213),\n", " (\"I Can't Live With You - 1997 Rocks Retake\", 0.563)]),\n", " ('nevermore',\n", " [('Nevermore - BBC Session / April 3rd 1974, Langham 1 Studio', 0.1),\n", " ('Nevermore - Remastered 2011', 0.13),\n", " ('Nevermore - Remastered 2011', 0.13),\n", " ('Nevermore - Live BBC Session, London / April 1974', 0.1)]),\n", " ('some day one day',\n", " [('Some Day One Day - Remastered 2011', 0.0792),\n", " ('Some Day One Day - Remastered 2011', 0.0792)]),\n", " ('good oldfashioned lover boy',\n", " [('Good Old-Fashioned Lover Boy - Remastered 2011', 0.0571),\n", " ('Good Old-Fashioned Lover Boy - Remastered 2011', 0.0571),\n", " ('Good Old-Fashioned Lover Boy - Live On BBC Top Of The Pops / July 1977',\n", " 0.298)]),\n", " ('its late',\n", " [(\"It's Late - BBC Session / October 28th 1977, Maida Vale 4 Studio\",\n", " 0.0658),\n", " (\"It's Late - Remastered 2011\", 0.0899),\n", " (\"It's Late - Remastered 2011\", 0.0899)]),\n", " ('seven seas of rhye',\n", " [('Seven Seas Of Rhye - Live At Wembley Stadium / July 1986', 0.632),\n", " ('Seven Seas Of Rhye - Live At The Hammersmith Odeon, London / 1975', 0.66),\n", " ('Seven Seas Of Rhye - Live At The Rainbow, London / March 1974', 0.366),\n", " ('Seven Seas Of Rhye - Live', 0.593),\n", " ('Seven Seas Of Rhye - Remastered 2011', 0.253),\n", " ('Seven Seas Of Rhye - Remastered 2011', 0.253),\n", " ('Seven Seas Of Rhye - Instrumental Mix 2011', 0.239),\n", " ('Seven Seas Of Rhye - Remastered 2011', 0.154),\n", " ('Seven Seas Of Rhye - Remastered 2011', 0.154)]),\n", " ('the show must go on',\n", " [('The Show Must Go On - Remastered 2011', 0.112),\n", " ('The Show Must Go On - Remastered 2011', 0.112)]),\n", " ('rock it prime jive',\n", " [('Rock It (Prime Jive) - Remastered 2011', 0.064),\n", " ('Rock It (Prime Jive) - Remastered 2011', 0.064)]),\n", " ('who needs you',\n", " [('Who Needs You - Remastered 2011', 0.202),\n", " ('Who Needs You - Remastered 2011', 0.202)]),\n", " ('untitled',\n", " [('Untitled - Remastered 2011', 0.0789),\n", " ('Untitled - Remastered 2011', 0.0789),\n", " ('Untitled', 0.106)]),\n", " ('long away',\n", " [('Long Away - Remastered 2011', 0.255),\n", " ('Long Away - Remastered 2011', 0.255)]),\n", " ('dear friends',\n", " [('Dear Friends - Remastered 2011', 0.172),\n", " ('Dear Friends - Remastered 2011', 0.172)]),\n", " ('save me',\n", " [('Save Me - Remastered 2011', 0.109),\n", " ('Save Me - Remastered 2011', 0.109)]),\n", " ('battle theme',\n", " [('Battle Theme - Remastered 2011', 0.107),\n", " ('Battle Theme - Remastered 2011', 0.107)]),\n", " ('football fight',\n", " [('Football Fight - Remastered 2011', 0.395),\n", " ('Football Fight - Remastered 2011', 0.395),\n", " ('Football Fight - Early Version / No Synths! / February 1980', 0.187)]),\n", " ('need your loving tonight',\n", " [('Need Your Loving Tonight - Remastered 2011', 0.242),\n", " ('Need Your Loving Tonight - Remastered 2011', 0.242)]),\n", " ('bohemian rhapsody',\n", " [('Bohemian Rhapsody - Live At The Hammersmith Odeon, London / 1975',\n", " 0.0973),\n", " ('Bohemian Rhapsody - Remastered 2011', 0.3)]),\n", " ('lily of the valley',\n", " [('Lily Of The Valley - Remastered 2011', 0.148),\n", " ('Lily Of The Valley - Remastered 2011', 0.148)]),\n", " ('fat bottomed girls',\n", " [('Fat Bottomed Girls - 2011 Remaster', 0.342),\n", " ('Fat Bottomed Girls - 2011 Remaster', 0.342),\n", " ('Fat Bottomed Girls - Single Version', 0.358)]),\n", " ('procession',\n", " [('Procession - Live At The Rainbow, London / November 1974', 0.372),\n", " ('Procession - Live At The Rainbow, London / November 1974', 0.372),\n", " ('Procession - Remastered 2011', 0.137),\n", " ('Procession - Remastered 2011', 0.137)]),\n", " ('its a hard life',\n", " [(\"It's A Hard Life - Remastered 2011\", 0.159),\n", " (\"It's A Hard Life - Remastered 2011\", 0.159)]),\n", " ('execution of flash',\n", " [('Execution Of Flash - Remastered 2011', 0.151),\n", " ('Execution Of Flash - Remastered 2011', 0.151)]),\n", " ('tear it up',\n", " [('Tear It Up - Live', 0.693),\n", " ('Tear It Up - Remastered 2011', 0.132),\n", " ('Tear It Up - Remastered 2011', 0.132)]),\n", " ('white man',\n", " [('White Man - Remastered 2011', 0.182),\n", " ('White Man - Remastered 2011', 0.182)]),\n", " ('tie your mother down',\n", " [('Tie Your Mother Down - Live', 0.675),\n", " ('Tie Your Mother Down - Remastered 2011', 0.373),\n", " ('Tie Your Mother Down - Remastered 2011', 0.373),\n", " ('Tie Your Mother Down - Backing Track Mix', 0.21)]),\n", " ('my melancholy blues',\n", " [('My Melancholy Blues - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 0.107),\n", " ('My Melancholy Blues - Remastered 2011', 0.193),\n", " ('My Melancholy Blues - Remastered 2011', 0.193),\n", " ('My Melancholy Blues - Live BBC Session / October 1977', 0.134)]),\n", " ('dont try so hard',\n", " [(\"Don't Try So Hard\", 0.234), (\"Don't Try So Hard\", 0.234)]),\n", " ('life is real song for lennon',\n", " [('Life Is Real (Song For Lennon) - Remastered 2011', 0.07),\n", " ('Life Is Real (Song For Lennon) - Remastered 2011', 0.07)]),\n", " ('arboria planet of the tree men',\n", " [('Arboria (Planet Of The Tree Men) - Remastered 2011', 0.236),\n", " ('Arboria (Planet Of The Tree Men) - Remastered 2011', 0.236)]),\n", " ('heaven for everyone',\n", " [('Heaven For Everyone - Remastered 2011', 0.167),\n", " ('Heaven For Everyone - Remastered 2011', 0.167),\n", " ('Heaven For Everyone - Single Version', 0.177)]),\n", " ('another one bites the dust',\n", " [('Another One Bites The Dust - Live At The Montreal Forum / November 1981',\n", " 0.27),\n", " ('Another One Bites The Dust - Remastered 2011', 0.163),\n", " ('Another One Bites The Dust - Remastered 2011', 0.163)]),\n", " ('machines or back to humans',\n", " [('Machines (Or Back To Humans) - Remastered 2011', 0.385),\n", " ('Machines (Or Back To Humans) - Remastered 2011', 0.385)]),\n", " ('the night comes down',\n", " [('The Night Comes Down - Remastered 2011', 0.396),\n", " ('The Night Comes Down - Remastered 2011', 0.396),\n", " ('The Night Comes Down - De Lane Lea Demo / December 1971', 0.371)]),\n", " ('one year of love',\n", " [('One Year Of Love - Remastered 2011', 0.35),\n", " ('One Year Of Love - Remastered 2011', 0.35)]),\n", " ('dont try suicide',\n", " [(\"Don't Try Suicide - Remastered 2011\", 0.0314),\n", " (\"Don't Try Suicide - Remastered 2011\", 0.0314)]),\n", " ('breakthru',\n", " [('Breakthru - Remastered 2011', 0.353),\n", " ('Breakthru - Remastered 2011', 0.353)]),\n", " ('delilah',\n", " [('Delilah - Remastered 2011', 0.12), ('Delilah - Remastered 2011', 0.12)]),\n", " ('under pressure',\n", " [('Under Pressure - Live', 0.462),\n", " ('Under Pressure - Remastered 2011', 0.103),\n", " ('Under Pressure - Remastered 2011', 0.103)]),\n", " ('dont lose your head',\n", " [(\"Don't Lose Your Head - Remastered 2011\", 0.252),\n", " (\"Don't Lose Your Head - Remastered 2011\", 0.252)]),\n", " ('calling all girls',\n", " [('Calling All Girls - Remastered 2011', 0.0661),\n", " ('Calling All Girls - Remastered 2011', 0.0661)]),\n", " ('party',\n", " [('Party - Remastered 2011', 0.603), ('Party - Remastered 2011', 0.603)]),\n", " ('sail away sweet sister',\n", " [('Sail Away Sweet Sister - Remastered 2011', 0.0907),\n", " ('Sail Away Sweet Sister - Remastered 2011', 0.0907),\n", " ('Sail Away Sweet Sister - Take 1 With Guide Vocal', 0.374)]),\n", " ('flick of the wrist',\n", " [('Flick Of The Wrist - BBC Session / October 16th 1974, Maida Vale 4 Studio',\n", " 0.322),\n", " ('Flick Of The Wrist - Remastered 2011', 0.227),\n", " ('Flick Of The Wrist - Remastered 2011', 0.227),\n", " ('Flick Of The Wrist - Live BBC Session / October 1974', 0.295)]),\n", " ('let me live',\n", " [('Let Me Live - Remastered 2011', 0.161),\n", " ('Let Me Live - Remastered 2011', 0.161)]),\n", " ('in only seven days',\n", " [('In Only Seven Days - Remastered 2011', 0.128),\n", " ('In Only Seven Days - Remastered 2011', 0.128)]),\n", " ('bicycle race',\n", " [('Bicycle Race - Live, European Tour / 1979', 0.431),\n", " ('Bicycle Race - Remastered 2011', 0.0947),\n", " ('Bicycle Race - Remastered 2011', 0.0947),\n", " ('Bicycle Race - Instrumental', 0.081)]),\n", " ('i want to break free',\n", " [('I Want To Break Free - Remastered 2011', 0.116),\n", " ('I Want To Break Free - Remastered 2011', 0.116),\n", " ('I Want To Break Free - Single Remix', 0.0763)]),\n", " ('in the death cell love theme reprise',\n", " [('In The Death Cell (Love Theme Reprise) - Remastered 2011', 0.4),\n", " ('In The Death Cell (Love Theme Reprise) - Remastered 2011', 0.4)]),\n", " ('i want it all',\n", " [('I Want It All - Single Version', 0.375),\n", " ('I Want It All - Remastered 2011', 0.287),\n", " ('I Want It All - Remastered 2011', 0.287)]),\n", " ('bring back that leroy brown',\n", " [('Bring Back That Leroy Brown - Live At The Rainbow, London / November 1974',\n", " 0.634),\n", " ('Bring Back That Leroy Brown - Live At The Rainbow, London / November 1974',\n", " 0.634),\n", " ('Bring Back That Leroy Brown - Remastered 2011', 0.0763),\n", " ('Bring Back That Leroy Brown - Remastered 2011', 0.0763),\n", " ('Bring Back That Leroy Brown - A Cappella Mix 2011', 0.0794)]),\n", " ('im going slightly mad',\n", " [(\"I'm Going Slightly Mad - Remastered 2011\", 0.189),\n", " (\"I'm Going Slightly Mad - Remastered 2011\", 0.189)]),\n", " ('put out the fire',\n", " [('Put Out The Fire - Remastered 2011', 0.184),\n", " ('Put Out The Fire - Remastered 2011', 0.184)]),\n", " ('you dont fool me',\n", " [(\"You Don't Fool Me - Remastered 2011\", 0.385),\n", " (\"You Don't Fool Me - Remastered 2011\", 0.385)]),\n", " ('friends will be friends',\n", " [('Friends Will Be Friends - Live', 0.407),\n", " ('Friends Will Be Friends - Remastered 2011', 0.336),\n", " ('Friends Will Be Friends - Remastered 2011', 0.336)]),\n", " ('escape from the swamp',\n", " [('Escape From The Swamp - Remastered 2011', 0.104),\n", " ('Escape From The Swamp - Remastered 2011', 0.104)]),\n", " ('get down make love',\n", " [('Get Down Make Love - Live At Milton Keynes Bowl / June 1982', 0.581),\n", " ('Get Down, Make Love - Remastered 2011', 0.212),\n", " ('Get Down, Make Love - Remastered 2011', 0.212)]),\n", " ('khashoggis ship',\n", " [(\"Khashoggi's Ship - Remastered 2011\", 0.416),\n", " (\"Khashoggi's Ship - Remastered 2011\", 0.416)]),\n", " ('the fairy fellers masterstroke',\n", " [(\"The Fairy Feller's Master-Stroke - Remastered 2011\", 0.121),\n", " (\"The Fairy Feller's Master-Stroke - Remastered 2011\", 0.121)]),\n", " ('crash dive on mingo city',\n", " [('Crash Dive On Mingo City - Remastered 2011', 0.64),\n", " ('Crash Dive On Mingo City - Remastered 2011', 0.64)]),\n", " ('all gods people',\n", " [(\"All God's People - Remastered 2011\", 0.313),\n", " (\"All God's People - Remastered 2011\", 0.313)]),\n", " ('las palabras de amor the words of love',\n", " [('Las Palabras De Amor (The Words Of Love) - Remastered 2011', 0.0704),\n", " ('Las Palabras De Amor (The Words Of Love) - Remastered 2011', 0.0704)]),\n", " ('teo torriatte let us cling together',\n", " [('Teo Torriatte (Let Us Cling Together) - Remastered 2011', 0.097),\n", " ('Teo Torriatte (Let Us Cling Together) - Remastered 2011', 0.097),\n", " ('Teo Torriatte (Let Us Cling Together) - Remastered 2011 / HD Mix',\n", " 0.135)]),\n", " ('flash to the rescue',\n", " [('Flash To The Rescue - Remastered 2011', 0.287),\n", " ('Flash To The Rescue - Remastered 2011', 0.287)]),\n", " ('scandal',\n", " [('Scandal - Remastered 2011', 0.312),\n", " ('Scandal - Remastered 2011', 0.312)]),\n", " ('play the game',\n", " [('Play The Game - Live At Milton Keynes Bowl / June 1982', 0.392),\n", " ('Play The Game - Remastered 2011', 0.122),\n", " ('Play The Game - Remastered 2011', 0.122)]),\n", " ('tenement funster',\n", " [('Tenement Funster - BBC Session / October 16th 1974, Maida Vale 4 Studio',\n", " 0.117),\n", " ('Tenement Funster - Remastered 2011', 0.345),\n", " ('Tenement Funster - Remastered 2011', 0.345),\n", " ('Tenement Funster - Live BBC Session / October 1974', 0.104)]),\n", " ('flashs theme',\n", " [(\"Flash's Theme - Remastered 2011\", 0.47),\n", " (\"Flash's Theme - Remastered 2011\", 0.47)]),\n", " ('you take my breath away',\n", " [('You Take My Breath Away - Remastered 2011', 0.27),\n", " ('You Take My Breath Away - Remastered 2011', 0.27)]),\n", " ('my life has been saved',\n", " [('My Life Has Been Saved - Remastered 2011', 0.137),\n", " ('My Life Has Been Saved - Remastered 2011', 0.137),\n", " ('My Life Has Been Saved - 1989 B-Side Version / Remastered 2011', 0.157)]),\n", " ('if you cant beat them',\n", " [(\"If You Can't Beat Them - Remastered 2011\", 0.358),\n", " (\"If You Can't Beat Them - Remastered 2011\", 0.358)]),\n", " ('radio ga ga',\n", " [('Radio Ga Ga - Remastered 2011', 0.189),\n", " ('Radio Ga Ga - Remastered 2011', 0.189)]),\n", " ('dreamers ball',\n", " [(\"Dreamer's Ball - Remastered 2011\", 0.419),\n", " (\"Dreamer's Ball - Remastered 2011\", 0.419),\n", " (\"Dreamer's Ball - Early Acoustic Take / August 1978\", 0.341)]),\n", " ('bijou', [('Bijou', 0.353), ('Bijou', 0.353)]),\n", " ('mother love', [('Mother Love', 0.411), ('Mother Love', 0.411)]),\n", " ('in the space capsule the love theme',\n", " [('In The Space Capsule (The Love Theme) - Remastered 2011', 0.105),\n", " ('In The Space Capsule (The Love Theme) - Remastered 2011', 0.105)]),\n", " ('mustapha',\n", " [('Mustapha - Remastered 2011', 0.0709),\n", " ('Mustapha - Remastered 2011', 0.0709)]),\n", " ('jesus',\n", " [('Jesus - Remastered 2011', 0.181),\n", " ('Jesus - Remastered 2011', 0.181),\n", " ('Jesus - De Lane Lea Demo / December 1971', 0.223)]),\n", " ('we are the champions',\n", " [('We Are The Champions - Remastered 2011', 0.118),\n", " ('We Are The Champions - Remastered 2011', 0.118)]),\n", " ('keep yourself alive reprise',\n", " [('Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974',\n", " 0.459),\n", " ('Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974',\n", " 0.688),\n", " ('Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974',\n", " 0.459)]),\n", " ('somebody to love',\n", " [('Somebody To Love - Remastered 2011', 0.113),\n", " ('Somebody To Love - Remastered 2011', 0.113)]),\n", " ('cool cat',\n", " [('Cool Cat - Remastered 2011', 0.18),\n", " ('Cool Cat - Remastered 2011', 0.18)]),\n", " ('misfire',\n", " [('Misfire - Remastered 2011', 0.431),\n", " ('Misfire - Remastered 2011', 0.431)]),\n", " ('yeah', [('Yeah - Remastered 2011', 0), ('Yeah - Remastered 2011', 0)]),\n", " ('a kind of magic',\n", " [('A Kind Of Magic - Remastered 2011', 0.128),\n", " ('A Kind Of Magic - Live At Wembley Stadium / July 1986', 0.697),\n", " ('A Kind Of Magic - Live', 0.369),\n", " ('A Kind Of Magic - Remastered 2011', 0.128),\n", " ('A Kind Of Magic - Highlander Version', 0.0682),\n", " ('A Kind Of Magic - Demo / August 1985', 0.108)]),\n", " ('these are the days of our lives',\n", " [('These Are The Days Of Our Lives', 0.0605),\n", " ('These Are The Days Of Our Lives', 0.0605)]),\n", " ('the miracle',\n", " [('The Miracle - Remastered 2011', 0.549),\n", " ('The Miracle - Remastered 2011', 0.549)]),\n", " ('the ring hypnotic seduction of dale',\n", " [('The Ring (Hypnotic Seduction Of Dale) - Remastered 2011', 0.231),\n", " ('The Ring (Hypnotic Seduction Of Dale) - Remastered 2011', 0.231)]),\n", " ('guitar solo',\n", " [('Guitar Solo - Live At Milton Keynes Bowl / June 1982', 0.427),\n", " ('Guitar Solo - Live At The Rainbow, London / November 1974', 0.171),\n", " ('Guitar Solo - Live At The Rainbow, London / November 1974', 0.171)]),\n", " ('its a beautiful day reprise',\n", " [(\"It's A Beautiful Day (Reprise) - Remastered 2011\", 0.612),\n", " (\"It's A Beautiful Day (Reprise) - Remastered 2011\", 0.612)]),\n", " ('great king rat',\n", " [('Great King Rat - BBC Session / December 3rd 1973, Langham 1 Studio',\n", " 0.238),\n", " ('Great King Rat - Live At The Rainbow, London / March 1974', 0.674),\n", " ('Great King Rat - Remastered 2011', 0.111),\n", " ('Great King Rat - Remastered 2011', 0.111),\n", " ('Great King Rat - De Lane Lea Demo / December 1971', 0.13)]),\n", " ('i was born to love you',\n", " [('I Was Born To Love You', 0.0971),\n", " ('I Was Born To Love You', 0.0971),\n", " ('I Was Born To Love You - Vocals & Piano Version / Remastered 2011',\n", " 0.293)]),\n", " ('spread your wings',\n", " [('Spread Your Wings - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 0.179),\n", " ('Spread Your Wings - Remastered 2011', 0.0624),\n", " ('Spread Your Wings - Remastered 2011', 0.0624),\n", " ('Spread Your Wings - Live BBC Session / October 1977', 0.12)]),\n", " ('body language',\n", " [('Body Language - Remastered 2011', 0.102),\n", " ('Body Language - Remastered 2011', 0.102)]),\n", " ('action this day',\n", " [('Action This Day - Remastered 2011', 0.0801),\n", " ('Action This Day - Remastered 2011', 0.0801)]),\n", " ('keep yourself alive',\n", " [('Keep Yourself Alive - Live At The Montreal Forum / November 1981', 0.206),\n", " ('Keep Yourself Alive - BBC Session / February 5th 1973, Langham 1 Studio',\n", " 0.0669),\n", " ('Keep Yourself Alive - BBC Session / July 25th 1973, Langham 1 Studio',\n", " 0.0485),\n", " ('Keep Yourself Alive - Live At The Rainbow, London / November 1974',\n", " 0.292),\n", " ('Keep Yourself Alive - Live At The Rainbow, London / March 1974', 0.527),\n", " ('Keep Yourself Alive - Live At The Rainbow, London / November 1974',\n", " 0.292),\n", " ('Keep Yourself Alive - Remastered 2011', 0.157),\n", " ('Keep Yourself Alive - Remastered 2011', 0.157),\n", " ('Keep Yourself Alive - De Lane Lea Demo / December 1971', 0.422)]),\n", " ('liar',\n", " [('Liar - BBC Session / February 5th 1973, Langham 1 Studio', 0.422),\n", " ('Liar - BBC Session / July 25th 1973, Langham 1 Studio', 0.507),\n", " ('Liar - Remastered 2011', 0.195),\n", " ('Liar - Remastered 2011', 0.195),\n", " ('Liar - De Lane Lea Demo / December 1971', 0.595)]),\n", " ('im in love with my car',\n", " [(\"I'm In Love With My Car - Live, European Tour / 1979\", 0.532),\n", " (\"I'm In Love With My Car - Remastered 2011\", 0.321)]),\n", " ('flash',\n", " [('Flash - Live At Milton Keynes Bowl / June 1982', 0.486),\n", " ('Flash - Single Version', 0.11)]),\n", " ('jailhouse rock',\n", " [('Jailhouse Rock - Live At The Rainbow, London / November 1974', 0.394),\n", " ('Jailhouse Rock - Live At The Rainbow, London / November 1974', 0.394)]),\n", " ('dragon attack',\n", " [('Dragon Attack - Live At The Montreal Forum / November 1981', 0.274),\n", " ('Dragon Attack - Remastered 2011', 0.266),\n", " ('Dragon Attack - Remastered 2011', 0.266)]),\n", " ('who wants to live forever',\n", " [('Who Wants To Live Forever - Live', 0.157),\n", " ('Who Wants To Live Forever - Remastered 2011', 0.114),\n", " ('Who Wants To Live Forever - Remastered 2011', 0.114)]),\n", " ('leaving home aint easy',\n", " [(\"Leaving Home Ain't Easy - Remastered 2011\", 0.112),\n", " (\"Leaving Home Ain't Easy - Remastered 2011\", 0.112)]),\n", " ('more of that jazz',\n", " [('More Of That Jazz - Remastered 2011', 0.0936),\n", " ('More Of That Jazz - Remastered 2011', 0.0936)]),\n", " ('the march of the black queen',\n", " [('The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 0.207),\n", " ('The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 0.207),\n", " ('The March Of The Black Queen - Remastered 2011', 0.64),\n", " ('The March Of The Black Queen - Remastered 2011', 0.64)]),\n", " ('all dead all dead',\n", " [('All Dead, All Dead - Remastered 2011', 0.114),\n", " ('All Dead, All Dead - Remastered 2011', 0.114)]),\n", " ('the kiss aura resurrects flash',\n", " [('The Kiss (Aura Resurrects Flash) - Remastered 2011', 0.0924),\n", " ('The Kiss (Aura Resurrects Flash) - Remastered 2011', 0.0924)]),\n", " ('funny how love is',\n", " [('Funny How Love Is - Remastered 2011', 0.346),\n", " ('Funny How Love Is - Remastered 2011', 0.346)]),\n", " ('we will rock you',\n", " [('We Will Rock You - Live At Wembley Stadium / July 1986', 0.423),\n", " ('We Will Rock You - Live At The Montreal Forum / November 1981', 0.413),\n", " ('We Will Rock You - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 0.116),\n", " ('We Will Rock You - Remastered', 0.259),\n", " ('We Will Rock You - Remastered', 0.259),\n", " ('We Will Rock You - Live In Tokyo / November 1982', 0.444)]),\n", " ('the hero',\n", " [('The Hero - Remastered 2011', 0.376),\n", " ('The Hero - Remastered 2011', 0.376),\n", " ('The Hero - October 1980... Revisited', 0.319),\n", " ('The Hero - Live In Montreal / November 1981', 0.699)]),\n", " ('princes of the universe',\n", " [('Princes Of The Universe - Remastered 2011', 0.296),\n", " ('Princes Of The Universe - Remastered 2011', 0.296)]),\n", " ('drowse',\n", " [('Drowse - Remastered 2011', 0.119), ('Drowse - Remastered 2011', 0.119)]),\n", " ('keep passing the open windows',\n", " [('Keep Passing The Open Windows - Remastered 2011', 0.14),\n", " ('Keep Passing The Open Windows - Remastered 2011', 0.14)]),\n", " ('sleeping on the sidewalk',\n", " [('Sleeping On The Sidewalk - Remastered 2011', 0.387),\n", " ('Sleeping On The Sidewalk - Remastered 2011', 0.387)]),\n", " ('father to son',\n", " [('Father To Son - Live At The Rainbow, London / November 1974', 0.687),\n", " ('Father To Son - Live At The Rainbow, London / March 1974', 0.467),\n", " ('Father To Son - Live At The Rainbow, London / November 1974', 0.687),\n", " ('Father To Son - Remastered 2011', 0.188),\n", " ('Father To Son - Remastered 2011', 0.188)]),\n", " ('in the lap of the gods revisited',\n", " [('In The Lap Of The Gods... Revisited - Live', 0.288),\n", " ('In The Lap Of The Gods... Revisited - Remastered 2011', 0.291),\n", " ('In The Lap Of The Gods... Revisited - Remastered 2011', 0.291),\n", " ('In The Lap Of The Gods… Revisited - Live At Wembley Stadium / July 1986',\n", " 0.129)]),\n", " ('man on the prowl',\n", " [('Man On The Prowl - Remastered 2011', 0.538),\n", " ('Man On The Prowl - Remastered 2011', 0.538)]),\n", " ('modern times rock n roll',\n", " [(\"Modern Times Rock 'n' Roll - BBC Session / December 3rd 1973, Langham 1 Studio\",\n", " 0.0893),\n", " (\"Modern Times Rock 'n' Roll - BBC Session / April 3rd 1974, Langham 1 Studio\",\n", " 0.249),\n", " (\"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\",\n", " 0.428),\n", " (\"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\",\n", " 0.428)]),\n", " ('gimme the prize',\n", " [('Gimme The Prize - Remastered 2011', 0.354),\n", " ('Gimme The Prize - Remastered 2011', 0.354)]),\n", " ('she makes me stormtrooper in stilettos',\n", " [('She Makes Me (Stormtrooper In Stilettos) - Remastered 2011', 0.119),\n", " ('She Makes Me (Stormtrooper In Stilettos) - Remastered 2011', 0.119)]),\n", " ('mings theme in the court of ming the merciless',\n", " [(\"Ming's Theme (In The Court Of Ming The Merciless) - Remastered 2011\",\n", " 0.132),\n", " (\"Ming's Theme (In The Court Of Ming The Merciless) - Remastered 2011\",\n", " 0.132)]),\n", " ('crazy little thing called love',\n", " [('Crazy Little Thing Called Love - Live At The Montreal Forum / November 1981',\n", " 0.694),\n", " ('Crazy Little Thing Called Love - Remastered 2011', 0.349),\n", " ('Crazy Little Thing Called Love - Remastered 2011', 0.349)]),\n", " ('the wedding march',\n", " [('The Wedding March - Remastered 2011', 0.433),\n", " ('The Wedding March - Remastered 2011', 0.433)]),\n", " ('drum solo',\n", " [('Drum Solo - Live At The Rainbow, London / November 1974', 0.306),\n", " ('Drum Solo - Live At The Rainbow, London / March 1974', 0.357),\n", " ('Drum Solo - Live At The Rainbow, London / November 1974', 0.306)]),\n", " ('son and daughter',\n", " [('Son And Daughter - BBC Session / July 25th 1973, Langham 1 Studio',\n", " 0.381),\n", " ('Son And Daughter - BBC Session / December 3rd 1973, Langham 1 Studio',\n", " 0.103),\n", " ('Son And Daughter - Live At The Rainbow, London / November 1974', 0.656),\n", " ('Son And Daughter - Live At The Rainbow, London / March 1974', 0.481),\n", " ('Son And Daughter - Live At The Rainbow, London / November 1974', 0.656),\n", " ('Son And Daughter - Remastered 2011', 0.369),\n", " ('Son And Daughter - Remastered 2011', 0.369)]),\n", " ('my fairy king',\n", " [('My Fairy King - BBC Session / February 5th 1973, Langham 1 Studio',\n", " 0.128),\n", " ('My Fairy King - Remastered 2011', 0.134),\n", " ('My Fairy King - Remastered 2011', 0.134)]),\n", " ('dancer',\n", " [('Dancer - Remastered 2011', 0.0494),\n", " ('Dancer - Remastered 2011', 0.0494)]),\n", " ('the invisible man',\n", " [('The Invisible Man - Remastered 2011', 0.328),\n", " ('The Invisible Man - Demo', 0.12),\n", " ('The Invisible Man - 12\" Version', 0.241),\n", " ('The Invisible Man - Remastered 2011', 0.328)]),\n", " ('ride the wild wind',\n", " [('Ride The Wild Wind - Remastered 2011', 0.332),\n", " ('Ride The Wild Wind - Remastered 2011', 0.332),\n", " ('Ride The Wild Wind - Early Version With Guide Vocal', 0.086)]),\n", " ('vultans theme attack of the hawk men',\n", " [(\"Vultan's Theme (Attack Of The Hawk Men) - Remastered 2011\", 0.111),\n", " (\"Vultan's Theme (Attack Of The Hawk Men) - Remastered 2011\", 0.111)]),\n", " ('was it all worth it',\n", " [('Was It All Worth It - Remastered 2011', 0.0894),\n", " ('Was It All Worth It - Remastered 2011', 0.0894)]),\n", " ('dead on time',\n", " [('Dead On Time - Remastered 2011', 0.237),\n", " ('Dead On Time - Remastered 2011', 0.237)]),\n", " ('the millionaire waltz',\n", " [('The Millionaire Waltz - Remastered 2011', 0.14),\n", " ('The Millionaire Waltz - Remastered 2011', 0.14)]),\n", " ('staying power',\n", " [('Staying Power - Remastered 2011', 0.0801),\n", " ('Staying Power - Remastered 2011', 0.0801)]),\n", " ('son and daughter reprise',\n", " [('Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974',\n", " 0.239),\n", " ('Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974',\n", " 0.464),\n", " ('Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974',\n", " 0.239)]),\n", " ('my baby does me',\n", " [('My Baby Does Me - Remastered 2011', 0.0449),\n", " ('My Baby Does Me - Remastered 2011', 0.0449)]),\n", " ('back chat',\n", " [('Back Chat - Remastered 2011', 0.372),\n", " ('Back Chat - Remastered 2011', 0.372),\n", " ('Back Chat - Single Remix', 0.0508)]),\n", " ('is this the world we created',\n", " [('Is This The World We Created...? - Remastered 2011', 0.121),\n", " ('Is This The World We Created...? - Remastered 2011', 0.121),\n", " ('Is This The World We Created...? - Live In Rio / January 1985', 0.179)]),\n", " ('white queen as it began',\n", " [('White Queen (As It Began) - BBC Session / April 3rd 1974, Langham 1 Studio',\n", " 0.216),\n", " ('White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 0.351),\n", " ('White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 0.351),\n", " ('White Queen (As It Began) - Remastered 2011', 0.133),\n", " ('White Queen (As It Began) - Remastered 2011', 0.133)]),\n", " ('the hitman',\n", " [('The Hitman - Remastered 2011', 0.429),\n", " ('The Hitman - Remastered 2011', 0.429)]),\n", " ('ogre battle',\n", " [('Ogre Battle - BBC Session / December 3rd 1973, Langham 1 Studio', 0.102),\n", " ('Ogre Battle - Remastered 2011', 0.55),\n", " ('Ogre Battle - Remastered 2011', 0.55)]),\n", " ('killer queen',\n", " [('Killer Queen - Live At The Montreal Forum / November 1981', 0.483),\n", " ('Killer Queen - Live At The Rainbow, London / November 1974', 0.646),\n", " ('Killer Queen - Live At The Rainbow, London / November 1974', 0.646),\n", " ('Killer Queen - Live, European Tour / 1979', 0.233),\n", " ('Killer Queen - Remastered 2011', 0.133),\n", " ('Killer Queen - Remastered 2011', 0.133)]),\n", " ('hammer to fall',\n", " [('Hammer To Fall - Remastered 2011', 0.102),\n", " ('Hammer To Fall - Remastered 2011', 0.102),\n", " (\"Hammer To Fall - Headbanger's Mix\", 0.097)]),\n", " ('now im here',\n", " [(\"Now I'm Here - Live At The Montreal Forum / November 1981\", 0.566),\n", " (\"Now I'm Here - BBC Session / October 16th 1974, Maida Vale 4 Studio\",\n", " 0.0823),\n", " (\"Now I'm Here - Live At The Hammersmith Odeon, London / 1975\", 0.5),\n", " (\"Now I'm Here - Live At The Rainbow, London / November 1974\", 0.691),\n", " (\"Now I'm Here - Live At The Rainbow, London / November 1974\", 0.691),\n", " (\"Now I'm Here - Remastered 2011\", 0.0988),\n", " (\"Now I'm Here - Remastered 2011\", 0.0988),\n", " ('Now I’m Here - Live At Hammersmith Odeon, London / December 1975',\n", " 0.45)]),\n", " ('doing alright',\n", " [('Doing Alright - Remastered 2011', 0.085),\n", " ('Doing Alright - Remastered 2011', 0.085)]),\n", " ('you and i',\n", " [('You And I - Remastered 2011', 0.427),\n", " ('You And I - Remastered 2011', 0.427)]),\n", " ('headlong',\n", " [('Headlong - Remastered 2011', 0.127),\n", " ('Headlong - Remastered 2011', 0.127),\n", " ('Headlong - Embryo With Guide Vocal', 0.187)]),\n", " ('big spender',\n", " [('Big Spender - Live At Wembley Stadium / July 1986', 0.418),\n", " ('Big Spender - Live At The Hammersmith Odeon, London / 1975', 0.35),\n", " ('Big Spender - Live At The Rainbow, London / November 1974', 0.272),\n", " ('Big Spender - Live At The Rainbow, London / November 1974', 0.272)]),\n", " ('one vision',\n", " [('One Vision - Remastered 2011', 0.361),\n", " ('One Vision - Remastered 2011', 0.361),\n", " ('One Vision - Live At Wembley Stadium / Friday July 11th 1986', 0.505)]),\n", " ('in the lap of the gods',\n", " [('In The Lap Of The Gods - Live At The Rainbow, London / November 1974',\n", " 0.324),\n", " ('In The Lap Of The Gods - Live At The Rainbow, London / November 1974',\n", " 0.324),\n", " ('In The Lap Of The Gods - Remastered 2011', 0.348),\n", " ('In The Lap Of The Gods - Remastered 2011', 0.348)]),\n", " ('the loser in the end',\n", " [('The Loser In The End - Remastered 2011', 0.152),\n", " ('The Loser In The End - Remastered 2011', 0.152)])]" ] }, "execution_count": 414, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ctitles = set([t['ctitle'] for t in tracks.find({'artist_id': this_artist_id})])\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": 415, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('i want it all', 'I Want It All - Single Version', 'I Want It All'),\n", " ('i want it all',\n", " 'I Want It All - Single Version',\n", " 'I want it all - live in sheffield / 2005'),\n", " ('hijack my heart', 'Hijack My Heart - B-Side', 'Hijack My Heart'),\n", " ('hijack my heart', 'Hijack My Heart - B-Side', 'Hijack my heart - b-side'),\n", " ('stealin', \"Stealin' - B-Side\", \"Stealin'\"),\n", " ('stealin', \"Stealin' - B-Side\", \"Stealin' - b-side\"),\n", " ('one vision', 'One Vision - Remastered 2011', 'One Vision'),\n", " ('one vision',\n", " 'One Vision - Remastered 2011',\n", " 'One vision - live in budapest / 1986'),\n", " ('a kind of magic', 'A Kind Of Magic - Remastered 2011', 'A Kind of Magic'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Remastered 2011',\n", " 'A Kind Of Magic - Highlander Version'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live At Wembley Stadium / July 1986',\n", " 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live At Wembley Stadium / July 1986',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('friends will be friends',\n", " 'Friends Will Be Friends - Live At Wembley Stadium / July 1986',\n", " 'Friends Will Be Friends'),\n", " ('friends will be friends',\n", " 'Friends Will Be Friends - Live At Wembley Stadium / July 1986',\n", " 'Friends will be friends - live at wembley stadium / july 1986'),\n", " ('im going slightly mad',\n", " \"I'm Going Slightly Mad - Remastered 2011\",\n", " \"I'm Going Slightly Mad\"),\n", " ('im going slightly mad',\n", " \"I'm Going Slightly Mad - Remastered 2011\",\n", " \"I'm Going Slightly Mad - Mad Mix\"),\n", " ('headlong', 'Headlong - Remastered 2011', 'Headlong'),\n", " ('headlong',\n", " 'Headlong - Remastered 2011',\n", " 'Headlong - embryo with guide vocal'),\n", " ('i cant live with you',\n", " \"I Can't Live With You - Remastered 2011\",\n", " \"I Can't Live With You\"),\n", " ('i cant live with you',\n", " \"I Can't Live With You - Remastered 2011\",\n", " \"I Can't Live With You - 1997 Rocks Retake\"),\n", " ('ride the wild wind',\n", " 'Ride The Wild Wind - Remastered 2011',\n", " 'Ride the Wild Wind'),\n", " ('ride the wild wind',\n", " 'Ride The Wild Wind - Remastered 2011',\n", " 'Ride the wild wind - early version with guide vocal'),\n", " ('im going slightly mad',\n", " \"I'm Going Slightly Mad - Remastered 2011\",\n", " \"I'm Going Slightly Mad\"),\n", " ('im going slightly mad',\n", " \"I'm Going Slightly Mad - Remastered 2011\",\n", " \"I'm Going Slightly Mad - Mad Mix\"),\n", " ('headlong', 'Headlong - Remastered 2011', 'Headlong'),\n", " ('headlong',\n", " 'Headlong - Remastered 2011',\n", " 'Headlong - embryo with guide vocal'),\n", " ('i cant live with you',\n", " \"I Can't Live With You - Remastered 2011\",\n", " \"I Can't Live With You\"),\n", " ('i cant live with you',\n", " \"I Can't Live With You - Remastered 2011\",\n", " \"I Can't Live With You - 1997 Rocks Retake\"),\n", " ('ride the wild wind',\n", " 'Ride The Wild Wind - Remastered 2011',\n", " 'Ride the Wild Wind'),\n", " ('ride the wild wind',\n", " 'Ride The Wild Wind - Remastered 2011',\n", " 'Ride the wild wind - early version with guide vocal'),\n", " ('i cant live with you',\n", " \"I Can't Live With You - 1997 Rocks Retake\",\n", " \"I Can't Live With You\"),\n", " ('i cant live with you',\n", " \"I Can't Live With You - 1997 Rocks Retake\",\n", " \"I Can't Live With You - 1997 Rocks Retake\"),\n", " ('ride the wild wind',\n", " 'Ride The Wild Wind - Early Version With Guide Vocal',\n", " 'Ride the Wild Wind'),\n", " ('ride the wild wind',\n", " 'Ride The Wild Wind - Early Version With Guide Vocal',\n", " 'Ride the wild wind - early version with guide vocal'),\n", " ('im going slightly mad',\n", " \"I'm Going Slightly Mad - Mad Mix\",\n", " \"I'm Going Slightly Mad\"),\n", " ('im going slightly mad',\n", " \"I'm Going Slightly Mad - Mad Mix\",\n", " \"I'm Going Slightly Mad - Mad Mix\"),\n", " ('headlong', 'Headlong - Embryo With Guide Vocal', 'Headlong'),\n", " ('headlong',\n", " 'Headlong - Embryo With Guide Vocal',\n", " 'Headlong - embryo with guide vocal'),\n", " ('i want it all', 'I Want It All - Remastered 2011', 'I Want It All'),\n", " ('i want it all',\n", " 'I Want It All - Remastered 2011',\n", " 'I want it all - live in sheffield / 2005'),\n", " ('i want it all', 'I Want It All - Remastered 2011', 'I Want It All'),\n", " ('i want it all',\n", " 'I Want It All - Remastered 2011',\n", " 'I want it all - live in sheffield / 2005'),\n", " ('now im here reprise',\n", " \"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\",\n", " \"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\"),\n", " ('now im here reprise',\n", " \"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\",\n", " \"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\"),\n", " ('love of my life',\n", " 'Love Of My Life - Live At The Montreal Forum / November 1981',\n", " 'Love of my life - live in sheffield / 2005'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At The Montreal Forum / November 1981',\n", " 'Love of my life - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At The Montreal Forum / November 1981',\n", " 'Love of my life - live in budapest / 1986'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At The Montreal Forum / November 1981',\n", " 'Love of My Life'),\n", " ('under pressure',\n", " 'Under Pressure - Live At The Montreal Forum / November 1981',\n", " 'Under Pressure'),\n", " ('under pressure',\n", " 'Under Pressure - Live At The Montreal Forum / November 1981',\n", " 'Under Pressure'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At The Montreal Forum / November 1981',\n", " 'Crazy Little Thing Called Love'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At The Montreal Forum / November 1981',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At The Montreal Forum / November 1981',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At The Montreal Forum / November 1981',\n", " 'Crazy little thing called love - live in sheffield / 2005'),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Montreal Forum / November 1981',\n", " 'Jailhouse Rock'),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Montreal Forum / November 1981',\n", " 'Jailhouse rock - live at the montreal forum / november 1981'),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Montreal Forum / November 1981',\n", " 'Jailhouse rock - live at the rainbow, london / november 1974'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live At The Montreal Forum / November 1981',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live At The Montreal Forum / November 1981',\n", " 'Tie Your Mother Down'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live At The Montreal Forum / November 1981',\n", " 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live At The Montreal Forum / November 1981',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('we will rock you fast',\n", " 'We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982',\n", " 'We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982'),\n", " ('we will rock you fast',\n", " 'We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982',\n", " 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981'),\n", " ('play the game',\n", " 'Play The Game - Live At Milton Keynes Bowl / June 1982',\n", " 'Play The Game'),\n", " ('play the game',\n", " 'Play The Game - Live At Milton Keynes Bowl / June 1982',\n", " 'Play the game - live at milton keynes bowl / june 1982'),\n", " ('staying power',\n", " 'Staying Power - Live At Milton Keynes Bowl / June 1982',\n", " 'Staying Power'),\n", " ('staying power',\n", " 'Staying Power - Live At Milton Keynes Bowl / June 1982',\n", " 'Staying power - live at milton keynes bowl / june 1982'),\n", " ('somebody to love',\n", " 'Somebody To Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Somebody to Love'),\n", " ('somebody to love',\n", " 'Somebody To Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Somebody to love - live at the freddie mercury tribute concert for aids awareness, wembley / 1992'),\n", " ('now im here reprise',\n", " \"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\",\n", " \"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\"),\n", " ('now im here reprise',\n", " \"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\",\n", " \"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\"),\n", " ('love of my life',\n", " 'Love Of My Life - Live At Milton Keynes Bowl / June 1982',\n", " 'Love of my life - live in sheffield / 2005'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At Milton Keynes Bowl / June 1982',\n", " 'Love of my life - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At Milton Keynes Bowl / June 1982',\n", " 'Love of my life - live in budapest / 1986'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At Milton Keynes Bowl / June 1982',\n", " 'Love of My Life'),\n", " ('save me', 'Save Me - Live At Milton Keynes Bowl / June 1982', 'Save Me'),\n", " ('save me',\n", " 'Save Me - Live At Milton Keynes Bowl / June 1982',\n", " 'Save me - live at the montreal forum / november 1981'),\n", " ('back chat',\n", " 'Back Chat - Live At Milton Keynes Bowl / June 1982',\n", " 'Back Chat'),\n", " ('back chat',\n", " 'Back Chat - Live At Milton Keynes Bowl / June 1982',\n", " 'Back chat - single remix'),\n", " ('under pressure',\n", " 'Under Pressure - Live At Milton Keynes Bowl / June 1982',\n", " 'Under Pressure'),\n", " ('under pressure',\n", " 'Under Pressure - Live At Milton Keynes Bowl / June 1982',\n", " 'Under Pressure'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - Live At Milton Keynes Bowl / June 1982',\n", " 'Fat Bottomed Girls'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - Live At Milton Keynes Bowl / June 1982',\n", " 'Fat bottomed girls - single version'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Crazy Little Thing Called Love'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Crazy little thing called love - live in sheffield / 2005'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live At Milton Keynes Bowl / June 1982',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live At Milton Keynes Bowl / June 1982',\n", " 'Tie Your Mother Down'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live At Milton Keynes Bowl / June 1982',\n", " 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live At Milton Keynes Bowl / June 1982',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('heaven for everyone',\n", " 'Heaven For Everyone - Remastered 2011',\n", " 'Heaven for Everyone'),\n", " ('heaven for everyone',\n", " 'Heaven For Everyone - Remastered 2011',\n", " 'Heaven for everyone - edit'),\n", " ('heaven for everyone',\n", " 'Heaven For Everyone - Remastered 2011',\n", " 'Heaven for Everyone'),\n", " ('heaven for everyone',\n", " 'Heaven For Everyone - Remastered 2011',\n", " 'Heaven for everyone - edit'),\n", " ('heaven for everyone',\n", " 'Heaven For Everyone - Single Version',\n", " 'Heaven for Everyone'),\n", " ('heaven for everyone',\n", " 'Heaven For Everyone - Single Version',\n", " 'Heaven for everyone - edit'),\n", " ('one vision',\n", " 'One Vision - Live At Wembley Stadium / July 1986',\n", " 'One Vision'),\n", " ('one vision',\n", " 'One Vision - Live At Wembley Stadium / July 1986',\n", " 'One vision - live in budapest / 1986'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live At Wembley Stadium / July 1986',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live At Wembley Stadium / July 1986',\n", " 'Tie Your Mother Down'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At Wembley Stadium / July 1986',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At Wembley Stadium / July 1986',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At Wembley Stadium / July 1986',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('tear it up',\n", " 'Tear It Up - Live At Wembley Stadium / July 1986',\n", " 'Tear It Up'),\n", " ('tear it up',\n", " 'Tear It Up - Live At Wembley Stadium / July 1986',\n", " 'Tear it up - live in budapest / 1986'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Live At Wembley Stadium / July 1986',\n", " 'A Kind of Magic'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Live At Wembley Stadium / July 1986',\n", " 'A Kind Of Magic - Highlander Version'),\n", " ('under pressure',\n", " 'Under Pressure - Live At Wembley Stadium / July 1986',\n", " 'Under Pressure'),\n", " ('under pressure',\n", " 'Under Pressure - Live At Wembley Stadium / July 1986',\n", " 'Under Pressure'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Live At Wembley Stadium / July 1986',\n", " 'I Want To Break Free'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Live At Wembley Stadium / July 1986',\n", " 'I want to break free - single version'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At Wembley Stadium / July 1986',\n", " 'Love of my life - live in sheffield / 2005'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At Wembley Stadium / July 1986',\n", " 'Love of my life - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At Wembley Stadium / July 1986',\n", " 'Love of my life - live in budapest / 1986'),\n", " ('love of my life',\n", " 'Love Of My Life - Live At Wembley Stadium / July 1986',\n", " 'Love of My Life'),\n", " ('youre so square baby i dont care',\n", " \"(You're So Square) Baby I Don't Care - Live At Wembley Stadium / July 1986\",\n", " \"(You're So Square) Baby I Don't Care\"),\n", " ('youre so square baby i dont care',\n", " \"(You're So Square) Baby I Don't Care - Live At Wembley Stadium / July 1986\",\n", " \"(you're so square) baby i don't care - live at wembley stadium / july 1986\"),\n", " ('hello mary lou goodbye heart',\n", " 'Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986',\n", " 'Hello Mary Lou (Goodbye Heart)'),\n", " ('hello mary lou goodbye heart',\n", " 'Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986',\n", " 'Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986'),\n", " ('hello mary lou goodbye heart',\n", " 'Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986',\n", " 'Hello Mary Lou (Goodbye Heart) - Live In Budapest / 1986'),\n", " ('tutti frutti',\n", " 'Tutti Frutti - Live At Wembley Stadium / July 1986',\n", " 'Tutti Frutti'),\n", " ('tutti frutti',\n", " 'Tutti Frutti - Live At Wembley Stadium / July 1986',\n", " 'Tutti frutti - live in budapest / 1986'),\n", " ('gimme some lovin',\n", " \"Gimme Some Lovin' - Live At Wembley Stadium / July 1986\",\n", " \"Gimme Some Lovin'\"),\n", " ('gimme some lovin',\n", " \"Gimme Some Lovin' - Live At Wembley Stadium / July 1986\",\n", " \"Gimme some lovin' - live at wembley stadium / july 1986\"),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At Wembley Stadium / July 1986',\n", " 'Crazy Little Thing Called Love'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At Wembley Stadium / July 1986',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At Wembley Stadium / July 1986',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live At Wembley Stadium / July 1986',\n", " 'Crazy little thing called love - live in sheffield / 2005'),\n", " ('youre so square baby i dont care',\n", " \"(You're So Square) Baby I Don't Care - Live\",\n", " \"(You're So Square) Baby I Don't Care\"),\n", " ('youre so square baby i dont care',\n", " \"(You're So Square) Baby I Don't Care - Live\",\n", " \"(you're so square) baby i don't care - live at wembley stadium / july 1986\"),\n", " ('hello mary lou goodbye heart',\n", " 'Hello Mary Lou (Goodbye Heart) - Live',\n", " 'Hello Mary Lou (Goodbye Heart)'),\n", " ('hello mary lou goodbye heart',\n", " 'Hello Mary Lou (Goodbye Heart) - Live',\n", " 'Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986'),\n", " ('hello mary lou goodbye heart',\n", " 'Hello Mary Lou (Goodbye Heart) - Live',\n", " 'Hello Mary Lou (Goodbye Heart) - Live In Budapest / 1986'),\n", " ('tutti frutti', 'Tutti Frutti - Live', 'Tutti Frutti'),\n", " ('tutti frutti',\n", " 'Tutti Frutti - Live',\n", " 'Tutti frutti - live in budapest / 1986'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live',\n", " 'Crazy Little Thing Called Love'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live',\n", " 'Crazy little thing called love - live in sheffield / 2005'),\n", " ('we will rock you', 'We Will Rock You - Live', 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('friends will be friends',\n", " 'Friends Will Be Friends - Live',\n", " 'Friends Will Be Friends'),\n", " ('friends will be friends',\n", " 'Friends Will Be Friends - Live',\n", " 'Friends will be friends - live at wembley stadium / july 1986'),\n", " ('voodoo', 'Voodoo', 'Voodoo'),\n", " ('voodoo', 'Voodoo', 'Voodoo'),\n", " ('we will rock you fast',\n", " 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981',\n", " 'We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982'),\n", " ('we will rock you fast',\n", " 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981',\n", " 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Live At The Montreal Forum / November 1981',\n", " 'Let Me Entertain You'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Live At The Montreal Forum / November 1981',\n", " 'Let me entertain you - live at the montreal forum / november 1981'),\n", " ('play the game',\n", " 'Play The Game - Live At The Montreal Forum / November 1981',\n", " 'Play The Game'),\n", " ('play the game',\n", " 'Play The Game - Live At The Montreal Forum / November 1981',\n", " 'Play the game - live at milton keynes bowl / june 1982'),\n", " ('somebody to love',\n", " 'Somebody To Love - Live At The Montreal Forum / November 1981',\n", " 'Somebody to Love'),\n", " ('somebody to love',\n", " 'Somebody To Love - Live At The Montreal Forum / November 1981',\n", " 'Somebody to love - live at the freddie mercury tribute concert for aids awareness, wembley / 1992'),\n", " ('save me',\n", " 'Save Me - Live At The Montreal Forum / November 1981',\n", " 'Save Me'),\n", " ('save me',\n", " 'Save Me - Live At The Montreal Forum / November 1981',\n", " 'Save me - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Live',\n", " 'Love of my life - live in sheffield / 2005'),\n", " ('love of my life',\n", " 'Love Of My Life - Live',\n", " 'Love of my life - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Live',\n", " 'Love of my life - live in budapest / 1986'),\n", " ('love of my life', 'Love Of My Life - Live', 'Love of My Life'),\n", " ('liar', 'Liar - BBC Session / February 5th 1973, Langham 1 Studio', 'Liar'),\n", " ('liar',\n", " 'Liar - BBC Session / February 5th 1973, Langham 1 Studio',\n", " 'Liar - de lane lea demo / december 1971'),\n", " ('liar', 'Liar - BBC Session / July 25th 1973, Langham 1 Studio', 'Liar'),\n", " ('liar',\n", " 'Liar - BBC Session / July 25th 1973, Langham 1 Studio',\n", " 'Liar - de lane lea demo / december 1971'),\n", " ('ogre battle',\n", " 'Ogre Battle - BBC Session / December 3rd 1973, Langham 1 Studio',\n", " 'Ogre Battle'),\n", " ('ogre battle',\n", " 'Ogre Battle - BBC Session / December 3rd 1973, Langham 1 Studio',\n", " 'Ogre battle - live at the rainbow, london / march 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - BBC Session / December 3rd 1973, Langham 1 Studio',\n", " 'Ogre battle - live at the rainbow, london / november 1974'),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - BBC Session / December 3rd 1973, Langham 1 Studio\",\n", " \"Modern Times Rock 'N' Roll\"),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - BBC Session / December 3rd 1973, Langham 1 Studio\",\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - BBC Session / April 3rd 1974, Langham 1 Studio\",\n", " \"Modern Times Rock 'N' Roll\"),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - BBC Session / April 3rd 1974, Langham 1 Studio\",\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - BBC Session / April 3rd 1974, Langham 1 Studio',\n", " 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - BBC Session / April 3rd 1974, Langham 1 Studio',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - BBC Session / April 3rd 1974, Langham 1 Studio',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - BBC Session / April 3rd 1974, Langham 1 Studio',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('we will rock you',\n", " 'We Will Rock You - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('we will rock you fast',\n", " 'We Will Rock You (Fast) - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 'We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982'),\n", " ('we will rock you fast',\n", " 'We Will Rock You (Fast) - BBC Session / October 28th 1977, Maida Vale 4 Studio',\n", " 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Hammersmith Odeon, London / 1975',\n", " 'Ogre Battle'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Hammersmith Odeon, London / 1975',\n", " 'Ogre battle - live at the rainbow, london / march 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Hammersmith Odeon, London / 1975',\n", " 'Ogre battle - live at the rainbow, london / november 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Hammersmith Odeon, London / 1975',\n", " 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Hammersmith Odeon, London / 1975',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Hammersmith Odeon, London / 1975',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Hammersmith Odeon, London / 1975',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Live At The Hammersmith Odeon, London / 1975',\n", " 'The March Of The Black Queen'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Live At The Hammersmith Odeon, London / 1975',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974'),\n", " ('liar', 'Liar - Live At The Hammersmith Odeon, London / 1975', 'Liar'),\n", " ('liar',\n", " 'Liar - Live At The Hammersmith Odeon, London / 1975',\n", " 'Liar - de lane lea demo / december 1971'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Hammersmith Odeon, London / 1975',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Hammersmith Odeon, London / 1975',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Hammersmith Odeon, London / 1975',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / November 1974',\n", " 'Procession'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / November 1974',\n", " 'Procession - live at the rainbow, london / march 1974'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / November 1974',\n", " 'Procession - live at the rainbow, london / november 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / November 1974',\n", " 'Ogre Battle'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / November 1974',\n", " 'Ogre battle - live at the rainbow, london / march 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / November 1974',\n", " 'Ogre battle - live at the rainbow, london / november 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 'The March Of The Black Queen'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974'),\n", " ('son and daughter reprise',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974'),\n", " ('son and daughter reprise',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974'),\n", " ('keep yourself alive reprise',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974'),\n", " ('keep yourself alive reprise',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('liar', 'Liar - Live At The Rainbow, London / November 1974', 'Liar'),\n", " ('liar',\n", " 'Liar - Live At The Rainbow, London / November 1974',\n", " 'Liar - de lane lea demo / december 1971'),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\",\n", " \"Modern Times Rock 'N' Roll\"),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\",\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Rainbow, London / November 1974',\n", " 'Jailhouse Rock'),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Rainbow, London / November 1974',\n", " 'Jailhouse rock - live at the montreal forum / november 1981'),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Rainbow, London / November 1974',\n", " 'Jailhouse rock - live at the rainbow, london / november 1974'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / March 1974',\n", " 'Procession'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / March 1974',\n", " 'Procession - live at the rainbow, london / march 1974'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / March 1974',\n", " 'Procession - live at the rainbow, london / november 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / March 1974',\n", " 'Ogre Battle'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / March 1974',\n", " 'Ogre battle - live at the rainbow, london / march 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / March 1974',\n", " 'Ogre battle - live at the rainbow, london / november 1974'),\n", " ('son and daughter reprise',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974'),\n", " ('son and daughter reprise',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974',\n", " 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('the fairy fellers masterstroke',\n", " \"The Fairy Feller's Master-Stroke - Live At The Rainbow, London / March 1974\",\n", " \"The Fairy Feller's Master-Stroke\"),\n", " ('the fairy fellers masterstroke',\n", " \"The Fairy Feller's Master-Stroke - Live At The Rainbow, London / March 1974\",\n", " \"The fairy feller's master-stroke - live at the rainbow, london / march 1974\"),\n", " ('keep yourself alive reprise',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974'),\n", " ('keep yourself alive reprise',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / March 1974',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / March 1974',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / March 1974',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / March 1974\",\n", " \"Modern Times Rock 'N' Roll\"),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / March 1974\",\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"),\n", " ('liar', 'Liar - Live At The Rainbow, London / March 1974', 'Liar'),\n", " ('liar',\n", " 'Liar - Live At The Rainbow, London / March 1974',\n", " 'Liar - de lane lea demo / december 1971'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / November 1974',\n", " 'Procession'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / November 1974',\n", " 'Procession - live at the rainbow, london / march 1974'),\n", " ('procession',\n", " 'Procession - Live At The Rainbow, London / November 1974',\n", " 'Procession - live at the rainbow, london / november 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / November 1974',\n", " 'Ogre Battle'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / November 1974',\n", " 'Ogre battle - live at the rainbow, london / march 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Live At The Rainbow, London / November 1974',\n", " 'Ogre battle - live at the rainbow, london / november 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 'The March Of The Black Queen'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974'),\n", " ('son and daughter reprise',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974'),\n", " ('son and daughter reprise',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974'),\n", " ('keep yourself alive reprise',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974'),\n", " ('keep yourself alive reprise',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974',\n", " 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('liar', 'Liar - Live At The Rainbow, London / November 1974', 'Liar'),\n", " ('liar',\n", " 'Liar - Live At The Rainbow, London / November 1974',\n", " 'Liar - de lane lea demo / december 1971'),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\",\n", " \"Modern Times Rock 'N' Roll\"),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\",\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Rainbow, London / November 1974',\n", " 'Jailhouse Rock'),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Rainbow, London / November 1974',\n", " 'Jailhouse rock - live at the montreal forum / november 1981'),\n", " ('jailhouse rock',\n", " 'Jailhouse Rock - Live At The Rainbow, London / November 1974',\n", " 'Jailhouse rock - live at the rainbow, london / november 1974'),\n", " ('one vision', 'One Vision - Live', 'One Vision'),\n", " ('one vision', 'One Vision - Live', 'One vision - live in budapest / 1986'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live',\n", " 'Tie Your Mother Down'),\n", " ('in the lap of the gods revisited',\n", " 'In The Lap Of The Gods... Revisited - Live',\n", " 'In The Lap Of The Gods (Revisited)'),\n", " ('in the lap of the gods revisited',\n", " 'In The Lap Of The Gods... Revisited - Live',\n", " 'In the lap of the gods... revisited - live in budapest / 1986'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye', 'Seven Seas Of Rhye - Live', 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Live',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('tear it up', 'Tear It Up - Live', 'Tear It Up'),\n", " ('tear it up', 'Tear It Up - Live', 'Tear it up - live in budapest / 1986'),\n", " ('a kind of magic', 'A Kind Of Magic - Live', 'A Kind of Magic'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Live',\n", " 'A Kind Of Magic - Highlander Version'),\n", " ('under pressure', 'Under Pressure - Live', 'Under Pressure'),\n", " ('under pressure', 'Under Pressure - Live', 'Under Pressure'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Live',\n", " 'I Want To Break Free'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Live',\n", " 'I want to break free - single version'),\n", " ('pain is so close to pleasure',\n", " 'Pain Is So Close To Pleasure - Remastered 2011',\n", " 'Pain Is So Close to Pleasure'),\n", " ('pain is so close to pleasure',\n", " 'Pain Is So Close To Pleasure - Remastered 2011',\n", " 'Pain is so close to pleasure - single remix'),\n", " ('friends will be friends',\n", " 'Friends Will Be Friends - Remastered 2011',\n", " 'Friends Will Be Friends'),\n", " ('friends will be friends',\n", " 'Friends Will Be Friends - Remastered 2011',\n", " 'Friends will be friends - live at wembley stadium / july 1986'),\n", " ('one vision', 'One Vision - Remastered 2011', 'One Vision'),\n", " ('one vision',\n", " 'One Vision - Remastered 2011',\n", " 'One vision - live in budapest / 1986'),\n", " ('a kind of magic', 'A Kind Of Magic - Remastered 2011', 'A Kind of Magic'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Remastered 2011',\n", " 'A Kind Of Magic - Highlander Version'),\n", " ('pain is so close to pleasure',\n", " 'Pain Is So Close To Pleasure - Remastered 2011',\n", " 'Pain Is So Close to Pleasure'),\n", " ('pain is so close to pleasure',\n", " 'Pain Is So Close To Pleasure - Remastered 2011',\n", " 'Pain is so close to pleasure - single remix'),\n", " ('friends will be friends',\n", " 'Friends Will Be Friends - Remastered 2011',\n", " 'Friends Will Be Friends'),\n", " ('friends will be friends',\n", " 'Friends Will Be Friends - Remastered 2011',\n", " 'Friends will be friends - live at wembley stadium / july 1986'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Highlander Version',\n", " 'A Kind of Magic'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Highlander Version',\n", " 'A Kind Of Magic - Highlander Version'),\n", " ('one vision', 'One Vision - Single Version', 'One Vision'),\n", " ('one vision',\n", " 'One Vision - Single Version',\n", " 'One vision - live in budapest / 1986'),\n", " ('pain is so close to pleasure',\n", " 'Pain Is So Close To Pleasure - Single Remix',\n", " 'Pain Is So Close to Pleasure'),\n", " ('pain is so close to pleasure',\n", " 'Pain Is So Close To Pleasure - Single Remix',\n", " 'Pain is so close to pleasure - single remix'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Demo / August 1985',\n", " 'A Kind of Magic'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Demo / August 1985',\n", " 'A Kind Of Magic - Highlander Version'),\n", " ('one vision',\n", " 'One Vision - Live At Wembley Stadium / Friday July 11th 1986',\n", " 'One Vision'),\n", " ('one vision',\n", " 'One Vision - Live At Wembley Stadium / Friday July 11th 1986',\n", " 'One vision - live in budapest / 1986'),\n", " ('tear it up', 'Tear It Up - Remastered 2011', 'Tear It Up'),\n", " ('tear it up',\n", " 'Tear It Up - Remastered 2011',\n", " 'Tear it up - live in budapest / 1986'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Remastered 2011',\n", " 'I Want To Break Free'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Remastered 2011',\n", " 'I want to break free - single version'),\n", " ('tear it up', 'Tear It Up - Remastered 2011', 'Tear It Up'),\n", " ('tear it up',\n", " 'Tear It Up - Remastered 2011',\n", " 'Tear it up - live in budapest / 1986'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Remastered 2011',\n", " 'I Want To Break Free'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Remastered 2011',\n", " 'I want to break free - single version'),\n", " ('i go crazy', 'I Go Crazy - B-Side', 'I Go Crazy'),\n", " ('i go crazy', 'I Go Crazy - B-Side', 'I go crazy - b-side'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Single Remix',\n", " 'I Want To Break Free'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Single Remix',\n", " 'I want to break free - single version'),\n", " ('staying power', 'Staying Power - Remastered 2011', 'Staying Power'),\n", " ('staying power',\n", " 'Staying Power - Remastered 2011',\n", " 'Staying power - live at milton keynes bowl / june 1982'),\n", " ('back chat', 'Back Chat - Remastered 2011', 'Back Chat'),\n", " ('back chat', 'Back Chat - Remastered 2011', 'Back chat - single remix'),\n", " ('under pressure', 'Under Pressure - Remastered 2011', 'Under Pressure'),\n", " ('under pressure', 'Under Pressure - Remastered 2011', 'Under Pressure'),\n", " ('staying power', 'Staying Power - Remastered 2011', 'Staying Power'),\n", " ('staying power',\n", " 'Staying Power - Remastered 2011',\n", " 'Staying power - live at milton keynes bowl / june 1982'),\n", " ('back chat', 'Back Chat - Remastered 2011', 'Back Chat'),\n", " ('back chat', 'Back Chat - Remastered 2011', 'Back chat - single remix'),\n", " ('under pressure', 'Under Pressure - Remastered 2011', 'Under Pressure'),\n", " ('under pressure', 'Under Pressure - Remastered 2011', 'Under Pressure'),\n", " ('staying power',\n", " 'Staying Power - Live At Milton Keynes Bowl / June 1982',\n", " 'Staying Power'),\n", " ('staying power',\n", " 'Staying Power - Live At Milton Keynes Bowl / June 1982',\n", " 'Staying power - live at milton keynes bowl / june 1982'),\n", " ('soul brother', 'Soul Brother - B-Side', 'Soul Brother'),\n", " ('soul brother', 'Soul Brother - B-Side', 'Soul brother - b-side'),\n", " ('back chat', 'Back Chat - Single Remix', 'Back Chat'),\n", " ('back chat', 'Back Chat - Single Remix', 'Back chat - single remix'),\n", " ('play the game', 'Play The Game - Remastered 2011', 'Play The Game'),\n", " ('play the game',\n", " 'Play The Game - Remastered 2011',\n", " 'Play the game - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy Little Thing Called Love'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy little thing called love - live in sheffield / 2005'),\n", " ('save me', 'Save Me - Remastered 2011', 'Save Me'),\n", " ('save me',\n", " 'Save Me - Remastered 2011',\n", " 'Save me - live at the montreal forum / november 1981'),\n", " ('play the game', 'Play The Game - Remastered 2011', 'Play The Game'),\n", " ('play the game',\n", " 'Play The Game - Remastered 2011',\n", " 'Play the game - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy Little Thing Called Love'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Remastered 2011',\n", " 'Crazy little thing called love - live in sheffield / 2005'),\n", " ('save me', 'Save Me - Remastered 2011', 'Save Me'),\n", " ('save me',\n", " 'Save Me - Remastered 2011',\n", " 'Save me - live at the montreal forum / november 1981'),\n", " ('save me', 'Save Me - Live In Montreal / November 1981', 'Save Me'),\n", " ('save me',\n", " 'Save Me - Live In Montreal / November 1981',\n", " 'Save me - live at the montreal forum / november 1981'),\n", " ('we will rock you fast version',\n", " 'We Will Rock You (Fast Version) - Live, European Tour / 1979',\n", " 'We Will Rock You (Fast Version)'),\n", " ('we will rock you fast version',\n", " 'We Will Rock You (Fast Version) - Live, European Tour / 1979',\n", " 'We Will Rock You (Fast Version) - Live, European Tour / 1979'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Live, European Tour / 1979',\n", " 'Let Me Entertain You'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Live, European Tour / 1979',\n", " 'Let me entertain you - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Live, European Tour / 1979',\n", " 'Love of my life - live in sheffield / 2005'),\n", " ('love of my life',\n", " 'Love Of My Life - Live, European Tour / 1979',\n", " 'Love of my life - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Live, European Tour / 1979',\n", " 'Love of my life - live in budapest / 1986'),\n", " ('love of my life',\n", " 'Love Of My Life - Live, European Tour / 1979',\n", " 'Love of My Life'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live, European Tour / 1979',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live, European Tour / 1979',\n", " 'Tie Your Mother Down'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live, European Tour / 1979',\n", " 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live, European Tour / 1979',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - 2011 Remaster',\n", " 'Fat Bottomed Girls'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - 2011 Remaster',\n", " 'Fat bottomed girls - single version'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Remastered 2011',\n", " 'Let Me Entertain You'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Remastered 2011',\n", " 'Let me entertain you - live at the montreal forum / november 1981'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - 2011 Remaster',\n", " 'Fat Bottomed Girls'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - 2011 Remaster',\n", " 'Fat bottomed girls - single version'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Remastered 2011',\n", " 'Let Me Entertain You'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Remastered 2011',\n", " 'Let me entertain you - live at the montreal forum / november 1981'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - Single Version',\n", " 'Fat Bottomed Girls'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - Single Version',\n", " 'Fat bottomed girls - single version'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Live In Montreal / November 1981',\n", " 'Let Me Entertain You'),\n", " ('let me entertain you',\n", " 'Let Me Entertain You - Live In Montreal / November 1981',\n", " 'Let me entertain you - live at the montreal forum / november 1981'),\n", " ('we will rock you', 'We Will Rock You - Remastered', 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Remastered',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('we will rock you', 'We Will Rock You - Remastered', 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Remastered',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live In Tokyo / November 1982',\n", " 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live In Tokyo / November 1982',\n", " 'We Will Rock You - LP & JC Remix'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Remastered 2011',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Remastered 2011',\n", " 'Tie Your Mother Down'),\n", " ('somebody to love',\n", " 'Somebody To Love - Remastered 2011',\n", " 'Somebody to Love'),\n", " ('somebody to love',\n", " 'Somebody To Love - Remastered 2011',\n", " 'Somebody to love - live at the freddie mercury tribute concert for aids awareness, wembley / 1992'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Remastered 2011',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Remastered 2011',\n", " 'Tie Your Mother Down'),\n", " ('somebody to love',\n", " 'Somebody To Love - Remastered 2011',\n", " 'Somebody to Love'),\n", " ('somebody to love',\n", " 'Somebody To Love - Remastered 2011',\n", " 'Somebody to love - live at the freddie mercury tribute concert for aids awareness, wembley / 1992'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Backing Track Mix',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Backing Track Mix',\n", " 'Tie Your Mother Down'),\n", " ('somebody to love',\n", " 'Somebody To Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Somebody to Love'),\n", " ('somebody to love',\n", " 'Somebody To Love - Live At Milton Keynes Bowl / June 1982',\n", " 'Somebody to love - live at the freddie mercury tribute concert for aids awareness, wembley / 1992'),\n", " ('love of my life',\n", " 'Love Of My Life - Remastered 2011',\n", " 'Love of my life - live in sheffield / 2005'),\n", " ('love of my life',\n", " 'Love Of My Life - Remastered 2011',\n", " 'Love of my life - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Remastered 2011',\n", " 'Love of my life - live in budapest / 1986'),\n", " ('love of my life', 'Love Of My Life - Remastered 2011', 'Love of My Life'),\n", " ('in the lap of the gods revisited',\n", " 'In The Lap Of The Gods... Revisited - Remastered 2011',\n", " 'In The Lap Of The Gods (Revisited)'),\n", " ('in the lap of the gods revisited',\n", " 'In The Lap Of The Gods... Revisited - Remastered 2011',\n", " 'In the lap of the gods... revisited - live in budapest / 1986'),\n", " ('in the lap of the gods revisited',\n", " 'In The Lap Of The Gods... Revisited - Remastered 2011',\n", " 'In The Lap Of The Gods (Revisited)'),\n", " ('in the lap of the gods revisited',\n", " 'In The Lap Of The Gods... Revisited - Remastered 2011',\n", " 'In the lap of the gods... revisited - live in budapest / 1986'),\n", " ('in the lap of the gods revisited',\n", " 'In The Lap Of The Gods… Revisited - Live At Wembley Stadium / July 1986',\n", " 'In The Lap Of The Gods (Revisited)'),\n", " ('in the lap of the gods revisited',\n", " 'In The Lap Of The Gods… Revisited - Live At Wembley Stadium / July 1986',\n", " 'In the lap of the gods... revisited - live in budapest / 1986'),\n", " ('procession', 'Procession - Remastered 2011', 'Procession'),\n", " ('procession',\n", " 'Procession - Remastered 2011',\n", " 'Procession - live at the rainbow, london / march 1974'),\n", " ('procession',\n", " 'Procession - Remastered 2011',\n", " 'Procession - live at the rainbow, london / november 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('ogre battle', 'Ogre Battle - Remastered 2011', 'Ogre Battle'),\n", " ('ogre battle',\n", " 'Ogre Battle - Remastered 2011',\n", " 'Ogre battle - live at the rainbow, london / march 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Remastered 2011',\n", " 'Ogre battle - live at the rainbow, london / november 1974'),\n", " ('the fairy fellers masterstroke',\n", " \"The Fairy Feller's Master-Stroke - Remastered 2011\",\n", " \"The Fairy Feller's Master-Stroke\"),\n", " ('the fairy fellers masterstroke',\n", " \"The Fairy Feller's Master-Stroke - Remastered 2011\",\n", " \"The fairy feller's master-stroke - live at the rainbow, london / march 1974\"),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Remastered 2011',\n", " 'The March Of The Black Queen'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Remastered 2011',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('procession', 'Procession - Remastered 2011', 'Procession'),\n", " ('procession',\n", " 'Procession - Remastered 2011',\n", " 'Procession - live at the rainbow, london / march 1974'),\n", " ('procession',\n", " 'Procession - Remastered 2011',\n", " 'Procession - live at the rainbow, london / november 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Remastered 2011',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('ogre battle', 'Ogre Battle - Remastered 2011', 'Ogre Battle'),\n", " ('ogre battle',\n", " 'Ogre Battle - Remastered 2011',\n", " 'Ogre battle - live at the rainbow, london / march 1974'),\n", " ('ogre battle',\n", " 'Ogre Battle - Remastered 2011',\n", " 'Ogre battle - live at the rainbow, london / november 1974'),\n", " ('the fairy fellers masterstroke',\n", " \"The Fairy Feller's Master-Stroke - Remastered 2011\",\n", " \"The Fairy Feller's Master-Stroke\"),\n", " ('the fairy fellers masterstroke',\n", " \"The Fairy Feller's Master-Stroke - Remastered 2011\",\n", " \"The fairy feller's master-stroke - live at the rainbow, london / march 1974\"),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Remastered 2011',\n", " 'The March Of The Black Queen'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Remastered 2011',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975',\n", " 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('liar', 'Liar - Remastered 2011', 'Liar'),\n", " ('liar', 'Liar - Remastered 2011', 'Liar - de lane lea demo / december 1971'),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'N Roll - Remastered 2011\",\n", " \"Modern Times Rock 'N' Roll\"),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'N Roll - Remastered 2011\",\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('liar', 'Liar - Remastered 2011', 'Liar'),\n", " ('liar', 'Liar - Remastered 2011', 'Liar - de lane lea demo / december 1971'),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'N Roll - Remastered 2011\",\n", " \"Modern Times Rock 'N' Roll\"),\n", " ('modern times rock n roll',\n", " \"Modern Times Rock 'N Roll - Remastered 2011\",\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye',\n", " 'Seven Seas Of Rhye - Remastered 2011',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('liar', 'Liar - De Lane Lea Demo / December 1971', 'Liar'),\n", " ('liar',\n", " 'Liar - De Lane Lea Demo / December 1971',\n", " 'Liar - de lane lea demo / december 1971'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live In Sheffield / 2005',\n", " 'Tie Your Mother Down'),\n", " ('tie your mother down',\n", " 'Tie Your Mother Down - Live In Sheffield / 2005',\n", " 'Tie Your Mother Down'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Live In Sheffield / 2005',\n", " 'I Want To Break Free'),\n", " ('i want to break free',\n", " 'I Want To Break Free - Live In Sheffield / 2005',\n", " 'I want to break free - single version'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - Live In Sheffield / 2005',\n", " 'Fat Bottomed Girls'),\n", " ('fat bottomed girls',\n", " 'Fat Bottomed Girls - Live In Sheffield / 2005',\n", " 'Fat bottomed girls - single version'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live In Sheffield / 2005',\n", " 'Crazy Little Thing Called Love'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live In Sheffield / 2005',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live In Sheffield / 2005',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981'),\n", " ('crazy little thing called love',\n", " 'Crazy Little Thing Called Love - Live In Sheffield / 2005',\n", " 'Crazy little thing called love - live in sheffield / 2005'),\n", " ('love of my life',\n", " 'Love Of My Life - Live In Sheffield / 2005',\n", " 'Love of my life - live in sheffield / 2005'),\n", " ('love of my life',\n", " 'Love Of My Life - Live In Sheffield / 2005',\n", " 'Love of my life - live at the montreal forum / november 1981'),\n", " ('love of my life',\n", " 'Love Of My Life - Live In Sheffield / 2005',\n", " 'Love of my life - live in budapest / 1986'),\n", " ('love of my life',\n", " 'Love Of My Life - Live In Sheffield / 2005',\n", " 'Love of My Life'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Live In Sheffield / 2005',\n", " 'A Kind of Magic'),\n", " ('a kind of magic',\n", " 'A Kind Of Magic - Live In Sheffield / 2005',\n", " 'A Kind Of Magic - Highlander Version'),\n", " ('i want it all',\n", " 'I Want It All - Live In Sheffield / 2005',\n", " 'I Want It All'),\n", " ('i want it all',\n", " 'I Want It All - Live In Sheffield / 2005',\n", " 'I want it all - live in sheffield / 2005'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live In Sheffield / 2005',\n", " 'We Will Rock You'),\n", " ('we will rock you',\n", " 'We Will Rock You - Live In Sheffield / 2005',\n", " 'We Will Rock You - LP & JC Remix')]" ] }, "execution_count": 415, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[(t['ctitle'], t['name'], g['title']) \n", " for t in tracks.find({'artist_id': this_artist_id})\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": 416, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(278, 104, 11)" ] }, "execution_count": 416, "metadata": {}, "output_type": "execute_result" } ], "source": [ "in_both = set((g['ctitle'], g['title'])\n", " for g in genius_tracks.find({'primary_artist.id': this_artist_genius_id}, ['ctitle', 'title']) \n", " if tracks.find({'ctitle': g['ctitle']}).count())\n", "\n", "genius_only = set((g['ctitle'], g['title']) \n", " for g in genius_tracks.find({'primary_artist.id': this_artist_genius_id}, ['ctitle', 'title']) \n", " if not tracks.find({'ctitle': g['ctitle']}).count())\n", "\n", "spotify_only = set((s['ctitle'], s['name'])\n", " for s in tracks.find({'artist_id': this_artist_id}, ['ctitle', '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": 417, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "[('39', \"'39\"),\n", " ('a human body', 'A Human body'),\n", " ('a kind of magic', 'A Kind Of Magic - Highlander Version'),\n", " ('a kind of magic', 'A Kind of Magic'),\n", " ('a winters tale', \"A Winter's Tale\"),\n", " ('action this day', 'Action This Day'),\n", " ('all dead all dead', 'All Dead, All Dead'),\n", " ('all gods people', \"All God's People\"),\n", " ('another one bites the dust', 'Another One Bites the Dust'),\n", " ('arboria planet of the tree men', 'Arboria (Planet of the Tree Men)'),\n", " ('back chat', 'Back Chat'),\n", " ('back chat', 'Back chat - single remix'),\n", " ('battle theme', 'Battle Theme'),\n", " ('bicycle race', 'Bicycle Race'),\n", " ('big spender', 'Big Spender'),\n", " ('bijou', 'Bijou'),\n", " ('body language', 'Body Language'),\n", " ('bohemian rhapsody', 'Bohemian Rhapsody'),\n", " ('breakthru', 'Breakthru'),\n", " ('brighton rock', 'Brighton Rock'),\n", " ('brighton rock solo', 'Brighton Rock Solo'),\n", " ('bring back that leroy brown', 'Bring Back That Leroy Brown'),\n", " ('call me', 'Call Me'),\n", " ('calling all girls', 'Calling All Girls'),\n", " ('chinese torture', 'Chinese Torture'),\n", " ('clebrity', 'C-lebrity'),\n", " ('coming soon', 'Coming Soon'),\n", " ('cool cat', 'Cool Cat'),\n", " ('cosmos rockin', \"Cosmos Rockin'\"),\n", " ('crash dive on mingo city', 'Crash Dive on Mingo City'),\n", " ('crazy little thing called love', 'Crazy Little Thing Called Love'),\n", " ('crazy little thing called love',\n", " 'Crazy little thing called love - live at milton keynes bowl / june 1982'),\n", " ('crazy little thing called love',\n", " 'Crazy little thing called love - live at the montreal forum / november 1981'),\n", " ('crazy little thing called love',\n", " 'Crazy little thing called love - live in sheffield / 2005'),\n", " ('dancer', 'Dancer'),\n", " ('dead on time', 'Dead On Time'),\n", " ('dear friends', 'Dear Friends'),\n", " ('death on two legs', 'Death On Two Legs'),\n", " ('death on two legs dedicated to', 'Death on Two Legs (Dedicated to...)'),\n", " ('delilah', 'Delilah'),\n", " ('doing all right', 'Doing All Right'),\n", " ('doing alright', 'Doing Alright'),\n", " ('dont lose your head', \"Don't Lose Your Head\"),\n", " ('dont stop me now', \"Don't Stop Me Now\"),\n", " ('dont try so hard', \"Don't Try So Hard\"),\n", " ('dont try suicide', \"Don't Try Suicide\"),\n", " ('dragon attack', 'Dragon Attack'),\n", " ('dreamers ball', \"Dreamer's Ball\"),\n", " ('drowse', 'Drowse'),\n", " ('drum and tympani solo',\n", " 'Drum And Tympani Solo - Live At The Montreal Forum / November 1981'),\n", " ('drum solo', 'Drum solo - live at the rainbow, london / november 1974'),\n", " ('escape from the swamp', 'Escape from the Swamp'),\n", " ('execution of flash', 'Execution of Flash'),\n", " ('fat bottomed girls', 'Fat Bottomed Girls'),\n", " ('fat bottomed girls', 'Fat bottomed girls - single version'),\n", " ('father to son', 'Father To Son'),\n", " ('feel like makin love', \"Feel Like Makin' Love\"),\n", " ('feelings feelings', 'Feelings, Feelings'),\n", " ('fight from the inside', 'Fight From The Inside'),\n", " ('flash', 'Flash'),\n", " ('flash to the rescue', 'Flash to the Rescue'),\n", " ('flashs theme', \"Flash's Theme\"),\n", " ('flick of the wrist', 'Flick of the Wrist'),\n", " ('football fight', 'Football Fight'),\n", " ('forever', 'Forever'),\n", " ('friends will be friends', 'Friends Will Be Friends'),\n", " ('friends will be friends',\n", " 'Friends will be friends - live at wembley stadium / july 1986'),\n", " ('friends will be friends will be friends',\n", " 'Friends Will Be Friends Will Be Friends'),\n", " ('fun it', 'Fun It'),\n", " ('funny how love is', 'Funny How Love Is'),\n", " ('get down make love', 'Get Down, Make Love'),\n", " ('gimme some lovin', \"Gimme Some Lovin'\"),\n", " ('gimme some lovin',\n", " \"Gimme some lovin' - live at wembley stadium / july 1986\"),\n", " ('gimme the prize', 'Gimme the Prize'),\n", " ('god save the queen', 'God Save The Queen'),\n", " ('good company', 'Good Company'),\n", " ('good oldfashioned lover boy', 'Good Old-Fashioned Lover Boy'),\n", " ('great king rat', 'Great King Rat'),\n", " ('guitar solo', 'Guitar solo - live'),\n", " ('hammer to fall', 'Hammer to Fall'),\n", " ('hang on in there', 'Hang On in There'),\n", " ('headlong', 'Headlong'),\n", " ('headlong', 'Headlong - embryo with guide vocal'),\n", " ('heaven for everyone', 'Heaven for Everyone'),\n", " ('heaven for everyone', 'Heaven for everyone - edit'),\n", " ('hello mary lou goodbye heart', 'Hello Mary Lou (Goodbye Heart)'),\n", " ('hello mary lou goodbye heart',\n", " 'Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986'),\n", " ('hello mary lou goodbye heart',\n", " 'Hello Mary Lou (Goodbye Heart) - Live In Budapest / 1986'),\n", " ('hijack my heart', 'Hijack My Heart'),\n", " ('hijack my heart', 'Hijack my heart - b-side'),\n", " ('i go crazy', 'I Go Crazy'),\n", " ('i go crazy', 'I go crazy - b-side'),\n", " ('i want it all', 'I Want It All'),\n", " ('i want it all', 'I want it all - live in sheffield / 2005'),\n", " ('i want to break free', 'I Want To Break Free'),\n", " ('i want to break free', 'I want to break free - single version'),\n", " ('i was born to love you', 'I Was Born To Love You'),\n", " ('if you cant beat them', \"If You Can't Beat Them\"),\n", " ('im going slightly mad', \"I'm Going Slightly Mad\"),\n", " ('im going slightly mad', \"I'm Going Slightly Mad - Mad Mix\"),\n", " ('im in love with my car', \"I'm In Love With My Car\"),\n", " ('in only seven days', 'In Only Seven Days'),\n", " ('in the death cell love theme reprise',\n", " 'In the Death Cell (Love Theme Reprise)'),\n", " ('in the lap of the gods', 'In The Lap Of The Gods'),\n", " ('in the lap of the gods revisited', 'In The Lap Of The Gods (Revisited)'),\n", " ('in the lap of the gods revisited',\n", " 'In the lap of the gods... revisited - live in budapest / 1986'),\n", " ('in the lap of the godsrevisited',\n", " 'In the lap of the gods...revisited - live at the rainbow, london / november 1974'),\n", " ('in the space capsule the love theme',\n", " 'In the Space Capsule (The Love Theme)'),\n", " ('innuendo', 'Innuendo'),\n", " ('is this the world we created', 'Is This The World We Created?'),\n", " ('its a beautiful day', \"It's a Beautiful Day\"),\n", " ('its a beautiful day reprise', \"It's A Beautiful Day (Reprise)\"),\n", " ('its a hard life', \"It's A Hard Life\"),\n", " ('its late', \"It's Late\"),\n", " ('jailhouse rock', 'Jailhouse Rock'),\n", " ('jailhouse rock',\n", " 'Jailhouse rock - live at the montreal forum / november 1981'),\n", " ('jailhouse rock',\n", " 'Jailhouse rock - live at the rainbow, london / november 1974'),\n", " ('jealousy', 'Jealousy'),\n", " ('jesus', 'Jesus'),\n", " ('keep passing the open windows', 'Keep Passing The Open Windows'),\n", " ('khashoggis ship', \"Khashoggi's Ship\"),\n", " ('killer queen', 'Killer Queen'),\n", " ('las palabras de amor the words of love',\n", " 'Las Palabras De Amor (The Words of Love)'),\n", " ('lazing on a sunday afternoon', 'Lazing on a Sunday Afternoon'),\n", " ('leaving home aint easy', \"Leaving Home Ain't Easy\"),\n", " ('let me entertain you', 'Let Me Entertain You'),\n", " ('let me entertain you',\n", " 'Let me entertain you - live at the montreal forum / november 1981'),\n", " ('let there be drums', 'Let there be drums - live in sheffield / 2005'),\n", " ('liar', 'Liar'),\n", " ('liar', 'Liar - de lane lea demo / december 1971'),\n", " ('life is real song for lennon', 'Life Is Real (Song for Lennon)'),\n", " ('lily of the valley', 'Lily of the Valley'),\n", " ('long away', 'Long Away'),\n", " ('looks like its gonna be a good night',\n", " \"Looks Like It's Gonna Be A Good Night - Improv / Live In Budapest / 1986\"),\n", " ('lost opportunity', 'Lost Opportunity'),\n", " ('love of my life', 'Love of My Life'),\n", " ('love of my life',\n", " 'Love of my life - live at the montreal forum / november 1981'),\n", " ('love of my life', 'Love of my life - live in budapest / 1986'),\n", " ('love of my life', 'Love of my life - live in sheffield / 2005'),\n", " ('machines or back to humans', 'Machines (Or Back To Humans)'),\n", " ('mad the swine', 'Mad The Swine'),\n", " ('made in heaven', 'Made In Heaven'),\n", " ('man on the prowl', 'Man On The Prowl'),\n", " ('marriage of dale and ming and flash approaching',\n", " 'Marriage of Dale and Ming (And Flash Approaching)'),\n", " ('mings theme in the court of ming the merciless',\n", " \"Ming's Theme (In the Court of Ming the Merciless)\"),\n", " ('misfire', 'Misfire'),\n", " ('modern times rock n roll', \"Modern Times Rock 'N' Roll\"),\n", " ('modern times rock n roll',\n", " \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"),\n", " ('more of that jazz', 'More Of That Jazz'),\n", " ('mother love', 'Mother Love'),\n", " ('mustapha', 'Mustapha'),\n", " ('my baby does me', 'My Baby Does Me'),\n", " ('my fairy king', 'My Fairy King'),\n", " ('my life has been saved', 'My Life Has Been Saved'),\n", " ('my melancholy blues', 'My Melancholy Blues'),\n", " ('need your loving tonight', 'Need your Loving Tonight'),\n", " ('nevermore', 'Nevermore'),\n", " ('now im here', \"Now I'm Here\"),\n", " ('now im here reprise',\n", " \"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\"),\n", " ('now im here reprise',\n", " \"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\"),\n", " ('ogre battle', 'Ogre Battle'),\n", " ('ogre battle', 'Ogre battle - live at the rainbow, london / march 1974'),\n", " ('ogre battle', 'Ogre battle - live at the rainbow, london / november 1974'),\n", " ('one vision', 'One Vision'),\n", " ('one vision', 'One vision - live in budapest / 1986'),\n", " ('one year of love', 'One Year of Love'),\n", " ('pain is so close to pleasure', 'Pain Is So Close to Pleasure'),\n", " ('pain is so close to pleasure',\n", " 'Pain is so close to pleasure - single remix'),\n", " ('party', 'Party'),\n", " ('play the game', 'Play The Game'),\n", " ('play the game', 'Play the game - live at milton keynes bowl / june 1982'),\n", " ('princes of the universe', 'Princes of the Universe'),\n", " ('procession', 'Procession'),\n", " ('procession', 'Procession - live at the rainbow, london / march 1974'),\n", " ('procession', 'Procession - live at the rainbow, london / november 1974'),\n", " ('put out the fire', 'Put Out The Fire'),\n", " ('radio ga ga', 'Radio Ga Ga'),\n", " ('rain must fall', 'Rain must fall'),\n", " ('reaching out', 'Reaching Out'),\n", " ('ride the wild wind', 'Ride the Wild Wind'),\n", " ('ride the wild wind', 'Ride the wild wind - early version with guide vocal'),\n", " ('rock in rio blues', 'Rock in Rio Blues'),\n", " ('rock it prime jive', 'Rock It (Prime Jive)'),\n", " ('route 66', 'Route 66'),\n", " ('sail away sweet sister', 'Sail Away Sweet Sister'),\n", " ('save me', 'Save Me'),\n", " ('save me', 'Save me - live at the montreal forum / november 1981'),\n", " ('say its not true', \"Say It's Not True\"),\n", " ('scandal', 'Scandal'),\n", " ('seaside rendezvous', 'Seaside Rendezvous'),\n", " ('see what a fool ive been', \"See What A Fool I've Been\"),\n", " ('seven seas of rhye', 'Seven Seas Of Rhye'),\n", " ('seven seas of rhye', 'Seven Seas Of Rhye - Instrumental Mix 2011'),\n", " ('seven seas of rhye',\n", " 'Seven seas of rhye - live at the rainbow, london / november 1974'),\n", " ('she makes me stormtrooper in stilettos',\n", " 'She Makes Me (Stormtrooper in Stilettos)'),\n", " ('sheer heart attack', 'Sheer Heart Attack'),\n", " ('sleeping on the sidewalk', 'Sleeping On The Sidewalk'),\n", " ('small', 'Small'),\n", " ('small reprise', 'Small reprise'),\n", " ('some day one day', 'Some Day One Day'),\n", " ('some things that glitter', 'Some Things That Glitter'),\n", " ('somebody to love', 'Somebody to Love'),\n", " ('somebody to love',\n", " 'Somebody to love - live at the freddie mercury tribute concert for aids awareness, wembley / 1992'),\n", " ('son and daughter', 'Son And Daughter'),\n", " ('son and daughter reprise',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974'),\n", " ('son and daughter reprise',\n", " 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974'),\n", " ('soul brother', 'Soul Brother'),\n", " ('soul brother', 'Soul brother - b-side'),\n", " ('spread your wings', 'Spread Your Wings'),\n", " ('staying power', 'Staying Power'),\n", " ('staying power', 'Staying power - live at milton keynes bowl / june 1982'),\n", " ('stealin', \"Stealin'\"),\n", " ('stealin', \"Stealin' - b-side\"),\n", " ('still burnin', \"Still Burnin'\"),\n", " ('stone cold crazy', 'Stone Cold Crazy'),\n", " ('sweet lady', 'Sweet Lady'),\n", " ('tavaszi szel vizet araszt',\n", " 'Tavaszi Szel Vizet Araszt - Live In Budapest / 1986'),\n", " ('tear it up', 'Tear It Up'),\n", " ('tear it up', 'Tear it up - live in budapest / 1986'),\n", " ('tenement funster', 'Tenement Funster'),\n", " ('teo torriatte let us cling together',\n", " 'Teo Torriatte (Let Us Cling Together)'),\n", " ('thank god its christmas', \"Thank God It's Christmas\"),\n", " ('the fairy fellers masterstroke', \"The Fairy Feller's Master-Stroke\"),\n", " ('the fairy fellers masterstroke',\n", " \"The fairy feller's master-stroke - live at the rainbow, london / march 1974\"),\n", " ('the hero', 'The Hero'),\n", " ('the hitman', 'The Hitman'),\n", " ('the invisible man', 'The Invisible Man'),\n", " ('the kiss aura resurrects flash', 'The Kiss (Aura Resurrects Flash)'),\n", " ('the loser in the end', 'The Loser In The End'),\n", " ('the march of the black queen', 'The March Of The Black Queen'),\n", " ('the march of the black queen',\n", " 'The March Of The Black Queen - Live At The Rainbow, London / November 1974'),\n", " ('the millionaire waltz', 'The Millionaire Waltz'),\n", " ('the miracle', 'The Miracle'),\n", " ('the night comes down', 'The Night Comes Down'),\n", " ('the prophets song', \"The Prophet's Song\"),\n", " ('the ring hypnotic seduction of dale',\n", " 'The Ring (Hypnotic Seduction of Dale)'),\n", " ('the show must go on', 'The Show Must Go On'),\n", " ('the wedding march', 'The Wedding March'),\n", " ('through the night', 'Through The Night'),\n", " ('tie your mother down', 'Tie Your Mother Down'),\n", " ('time to shine', 'Time To Shine'),\n", " ('too much love will kill you', 'Too Much Love Will Kill You'),\n", " ('tutti frutti', 'Tutti Frutti'),\n", " ('tutti frutti', 'Tutti frutti - live in budapest / 1986'),\n", " ('under pressure', 'Under Pressure'),\n", " ('voodoo', 'Voodoo'),\n", " ('vultans theme attack of the hawk men',\n", " \"Vultan's Theme (Attack of the Hawk Men)\"),\n", " ('warboys', 'Warboys'),\n", " ('was it all worth it', 'Was It All Worth It'),\n", " ('we are the champions', 'We Are The Champions'),\n", " ('we believe', 'We Believe'),\n", " ('we will rock you', 'We Will Rock You'),\n", " ('we will rock you', 'We Will Rock You - LP & JC Remix'),\n", " ('we will rock you fast',\n", " 'We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982'),\n", " ('we will rock you fast',\n", " 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981'),\n", " ('we will rock you fast version', 'We Will Rock You (Fast Version)'),\n", " ('we will rock you fast version',\n", " 'We Will Rock You (Fast Version) - Live, European Tour / 1979'),\n", " ('white man', 'White Man'),\n", " ('white queen as it began', 'White Queen (As It Began)'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / March 1974'),\n", " ('white queen as it began',\n", " 'White Queen (As It Began) - Live At The Rainbow, London / November 1974'),\n", " ('who needs you', 'Who Needs You'),\n", " ('yeah', 'Yeah'),\n", " ('you and i', 'You and I'),\n", " ('you dont fool me', \"You Don't Fool Me\"),\n", " ('you take my breath away', 'You Take My Breath Away'),\n", " ('youre my best friend', \"You're My Best Friend\"),\n", " ('youre so square baby i dont care', \"(You're So Square) Baby I Don't Care\"),\n", " ('youre so square baby i dont care',\n", " \"(you're so square) baby i don't care - live at wembley stadium / july 1986\")]" ] }, "execution_count": 417, "metadata": {}, "output_type": "execute_result" } ], "source": [ "sorted([s for s in in_both \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": 418, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('a kind of magic taylor', 'A Kind Of Magic (Taylor)'),\n", " ('a new life is born', 'A New Life Is Born'),\n", " ('april lady', 'April Lady'),\n", " ('baby i dont care', \"Baby I Don't Care\"),\n", " ('back to the light', 'Back To The Light'),\n", " ('bet your bottom dollar bill youre a playboy',\n", " \"Bet Your Bottom Dollar Bill You're A Playboy\"),\n", " ('big bad caused a mighty fine sensation',\n", " 'Big Bad Caused A Mighty Fine Sensation'),\n", " ('blag', 'Blag'),\n", " ('blurred vision', 'Blurred Vision'),\n", " ('calling all girls taylor', 'Calling All Girls (Taylor)'),\n", " ('crazy little thing called love by queen',\n", " 'Crazy Little Thing Called Love by Queen'),\n", " ('dead on time may', 'Dead On Time (May)'),\n", " ('dog with a bone', 'Dog With A Bone'),\n", " ('doin alright', \"Doin' Alright\"),\n", " ('dont loose your head', \"Don't Loose Your Head\"),\n", " ('dont try suicide mercury', \"Don't Try Suicide (Mercury)\"),\n", " ('earth', 'Earth'),\n", " ('fat bottomed girls may', 'Fat Bottomed Girls (May)'),\n", " ('flashs theme reprise victory celebrations',\n", " \"Flash's Theme Reprise (Victory Celebrations)\"),\n", " ('flick of the wrist mercury', 'Flick Of The Wrist (Mercury)'),\n", " ('forever piano version', 'Forever (Piano Version)'),\n", " ('gimme the prize kurgans theme', \"Gimme The Prize (kurgan's Theme)\"),\n", " ('gimme the prize kurgens theme', 'Gimme The Prize (Kurgens Theme)'),\n", " ('goin back', \"Goin' Back\"),\n", " ('going back', 'Going Back'),\n", " ('great king rat mercury', 'Great King Rat (Mercury)'),\n", " ('hammer to fall may', 'Hammer To Fall (May)'),\n", " ('hangman', 'Hangman'),\n", " ('heaven for everyone single version',\n", " 'Heaven for Everyone (Single Version)'),\n", " ('hello mary lou', 'Hello Mary Lou'),\n", " ('how can i go', 'How Can I Go'),\n", " ('i can hear music', 'I Can Hear Music'),\n", " ('i go crazy may', 'I Go Crazy (May)'),\n", " ('i guess were falling out', 'I Guess Were Falling Out'),\n", " ('i want it all single version', 'I Want It All (Single Version)'),\n", " ('i want it all we will rock you mashup',\n", " 'I Want It All / We Will Rock You Mash-Up'),\n", " ('i want to break free extended version',\n", " 'I Want To Break Free (Extended Version)'),\n", " ('i want to break free single remix', 'I Want To Break Free (Single Remix)'),\n", " ('i was born to love you freddie mercury',\n", " 'I Was Born To Love You (Freddie Mercury)'),\n", " ('if you cant beat em', \"If You Can't Beat 'em\"),\n", " ('imagine john lennon cover', 'Imagine (John Lennon cover)'),\n", " ('in my defence', 'In My Defence'),\n", " ('is this the world we created mercury may',\n", " 'Is This The World We Created? (Mercury, May)'),\n", " ('its a beautiful day bside', \"It's a beautiful day [B-Side]\"),\n", " ('its a beautiful day queen', \"It's A Beautiful Day (Queen)\"),\n", " ('its a hard life mercury', \"It's A Hard Life (Mercury)\"),\n", " ('its a kind of magic highlander', \"It's a kind of magic (highlander)\"),\n", " ('killer', 'Killer'),\n", " ('let me in your heart again', 'Let Me In Your Heart Again'),\n", " ('let me in your heart again',\n", " 'Let me in your heart again - william orbit mix'),\n", " ('life is real', 'Life is Real'),\n", " ('lily of the valley mercury', 'Lily Of The Valley (Mercury)'),\n", " ('living on my own', 'Living On My Own'),\n", " ('love kills', 'Love Kills'),\n", " ('love kills the ballad', 'Love Kills (The Ballad)'),\n", " ('man on the prowl mercury', 'Man On The Prowl (Mercury)'),\n", " ('mr bad guy', 'Mr. Bad Guy'),\n", " ('my babe does me', 'My Babe Does Me'),\n", " ('my fairy king mercury', 'My Fairy King (Mercury)'),\n", " ('my secret fantasy', 'My Secret Fantasy'),\n", " ('new york', 'New York'),\n", " ('news of the world', 'News of the World - Album Art'),\n", " ('noone but you only the good die young',\n", " 'No-One but You (Only the Good Die Young)'),\n", " ('now im here may', \"Now I'm Here (May)\"),\n", " ('one vision extended version', 'One Vision (Extended Version)'),\n", " ('one vision single version', 'One Vision (Single Version)'),\n", " ('polar bear', 'Polar Bear'),\n", " ('prayer', 'Prayer'),\n", " ('put out the fire may', 'Put Out The Fire (May)'),\n", " ('rain must fall queen', 'Rain Must Fall (Queen)'),\n", " ('ride the wild wind queen', 'Ride The Wild Wind (Queen)'),\n", " ('rock it', 'Rock It'),\n", " ('runaway', 'Runaway'),\n", " ('saturday nights alright for fighting',\n", " \"Saturday Night's Alright (for Fighting)\"),\n", " ('self made man', 'Self Made Man'),\n", " ('selfish female remix', 'Selfish (Female Remix)'),\n", " ('seven seas of rhye remix', 'Seven Seas Of Rhye (Remix)'),\n", " ('she blows hot cold', 'She Blows Hot & Cold'),\n", " ('she makes me stormtrooper in stilettoes',\n", " 'She Makes Me (Stormtrooper In Stilettoes)'),\n", " ('silver salmon', 'Silver Salmon'),\n", " ('somebody to love edit', 'Somebody To Love (Edit)'),\n", " ('spread your wings deacon', 'Spread Your Wings (Deacon)'),\n", " ('step on me', 'Step On Me'),\n", " ('stop all the fighting', 'Stop All The Fighting'),\n", " ('surfs up schools out', \"Surf's Up... School's Out!\"),\n", " ('tear it up may', 'Tear It Up (May)'),\n", " ('tenement funster taylor', 'Tenement Funster (Taylor)'),\n", " ('teo torriate', 'Teo Torriate'),\n", " ('teo torriatte', 'Teo Torriatte'),\n", " ('teo torriatte let us cling together delete',\n", " 'Teo Torriatte (Let Us Cling Together) (delete)'),\n", " ('the great pretender', 'The Great Pretender'),\n", " ('the invisible man 12 version', 'The Invisible Man (12\" version)'),\n", " ('there must be more to life than this william orbit mix',\n", " 'There Must Be More To Life Than This (William Orbit Mix)'),\n", " ('these are days of our lifes', 'These Are Days Of Our Lifes'),\n", " ('time', 'Time'),\n", " ('track 13', 'Track 13'),\n", " ('we are the champions mercury', 'We Are The Champions (Mercury)'),\n", " ('white queen', 'White Queen')]" ] }, "execution_count": 418, "metadata": {}, "output_type": "execute_result" } ], "source": [ "sorted([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": 419, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "[('all right now', 'All Right Now - Live In Sheffield / 2005'),\n", " ('cant get enough', \"Can't Get Enough - Live In Sheffield / 2005\"),\n", " ('flashs theme reprise', \"Flash's Theme Reprise - Remastered 2011\"),\n", " ('impromptu', 'Impromptu - Live At Wembley Stadium / July 1986'),\n", " ('jailhouse rock medley',\n", " 'Jailhouse Rock Medley - Live At The Hammersmith Odeon, London / 1975'),\n", " ('jailhouse rock stupid cupid be bop a lula',\n", " 'Jailhouse Rock / Stupid Cupid / Be Bop A Lula - Live At The Rainbow, London / March 1974'),\n", " ('last horizon', 'Last Horizon - Live In Sheffield / 2005'),\n", " ('surfs upschools out', \"Surf's Up...School's Out!\"),\n", " ('the kiss', 'The Kiss - Early Version / March 1980'),\n", " ('untitled', 'Untitled - Remastered 2011'),\n", " ('wishing well', 'Wishing Well - Live In Sheffield / 2005')]" ] }, "execution_count": 419, "metadata": {}, "output_type": "execute_result" } ], "source": [ "sorted(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": 420, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "jailhouse rock medley ['Jailhouse Rock Medley - Live At The Hammersmith Odeon, London / 1975'] []\n", "a winters tale [\"A Winter's Tale\", \"A Winter's Tale\", \"A Winter's Tale - Cosy Fireside Mix / Remastered 2011\"] [\"A Winter's Tale\"]\n", "i go crazy ['I Go Crazy - B-Side'] ['I Go Crazy', 'I go crazy - b-side']\n", "fun it ['Fun It - Remastered 2011', 'Fun It - Remastered 2011'] ['Fun It']\n", "let me entertain you ['Let Me Entertain You - Live At The Montreal Forum / November 1981', 'Let Me Entertain You - Live, European Tour / 1979', 'Let Me Entertain You - Remastered 2011', 'Let Me Entertain You - Remastered 2011', 'Let Me Entertain You - Live In Montreal / November 1981'] ['Let Me Entertain You', 'Let me entertain you - live at the montreal forum / november 1981']\n", "innuendo ['Innuendo - Remastered 2011', 'Innuendo - Remastered 2011'] ['Innuendo']\n", "see what a fool ive been [\"See What A Fool I've Been - BBC Session / July 25th 1973, Langham 1 Studio\", \"See What A Fool I've Been - Live At The Hammersmith Odeon, London / 1975\", \"See What A Fool I've Been - Live At The Rainbow, London / March 1974\", \"See What A Fool I've Been - Live BBC Session, London / July 1973 / 2011 Remix\", 'See What A Fool I’ve Been - B-Side Version / Remastered 2011'] [\"See What A Fool I've Been\"]\n", "jealousy ['Jealousy - Remastered 2011', 'Jealousy - Remastered 2011'] ['Jealousy']\n", "pain is so close to pleasure ['Pain Is So Close To Pleasure - Remastered 2011', 'Pain Is So Close To Pleasure - Remastered 2011', 'Pain Is So Close To Pleasure - Single Remix'] ['Pain Is So Close to Pleasure', 'Pain is so close to pleasure - single remix']\n", "rain must fall ['Rain Must Fall - Remastered 2011', 'Rain Must Fall - Remastered 2011'] ['Rain must fall']\n", "fight from the inside ['Fight From The Inside - Remastered 2011', 'Fight From The Inside - Remastered 2011'] ['Fight From The Inside']\n", "stone cold crazy ['Stone Cold Crazy - BBC Session / October 16th 1974, Maida Vale 4 Studio', 'Stone Cold Crazy - Live At The Rainbow, London / November 1974', 'Stone Cold Crazy - Live At The Rainbow, London / November 1974', 'Stone Cold Crazy - Remastered 2011', 'Stone Cold Crazy - Remastered 2011'] ['Stone Cold Crazy']\n", "too much love will kill you ['Too Much Love Will Kill You', 'Too Much Love Will Kill You'] ['Too Much Love Will Kill You']\n", "the kiss ['The Kiss - Early Version / March 1980'] []\n", "sheer heart attack ['Sheer Heart Attack - Live At The Montreal Forum / November 1981', 'Sheer Heart Attack - Live At Milton Keynes Bowl / June 1982', 'Sheer Heart Attack - Live, European Tour / 1979', 'Sheer Heart Attack - Remastered 2011', 'Sheer Heart Attack - Remastered 2011', 'Sheer Heart Attack - Live In Paris / February 1979'] ['Sheer Heart Attack']\n", "coming soon ['Coming Soon - Remastered 2011', 'Coming Soon - Remastered 2011'] ['Coming Soon']\n", "soul brother ['Soul Brother - B-Side'] ['Soul Brother', 'Soul brother - b-side']\n", "made in heaven ['Made In Heaven', 'Made In Heaven'] ['Made In Heaven']\n", "its a beautiful day [\"It's A Beautiful Day - Remastered 2011\", \"It's A Beautiful Day - Remastered 2011\", \"It's A Beautiful Day - B-Side Version / Remastered 2011\", \"It's A Beautiful Day - Original Spontaneous Idea / April 1980\"] [\"It's a Beautiful Day\"]\n", "i cant live with you [\"I Can't Live With You - Remastered 2011\", \"I Can't Live With You - Remastered 2011\", \"I Can't Live With You - 1997 Rocks Retake\"] [\"I Can't Live With You\", \"I Can't Live With You - 1997 Rocks Retake\"]\n", "nevermore ['Nevermore - BBC Session / April 3rd 1974, Langham 1 Studio', 'Nevermore - Remastered 2011', 'Nevermore - Remastered 2011', 'Nevermore - Live BBC Session, London / April 1974'] ['Nevermore']\n", "some day one day ['Some Day One Day - Remastered 2011', 'Some Day One Day - Remastered 2011'] ['Some Day One Day']\n", "good oldfashioned lover boy ['Good Old-Fashioned Lover Boy - Remastered 2011', 'Good Old-Fashioned Lover Boy - Remastered 2011', 'Good Old-Fashioned Lover Boy - Live On BBC Top Of The Pops / July 1977'] ['Good Old-Fashioned Lover Boy']\n", "its late [\"It's Late - BBC Session / October 28th 1977, Maida Vale 4 Studio\", \"It's Late - Remastered 2011\", \"It's Late - Remastered 2011\"] [\"It's Late\"]\n", "seven seas of rhye ['Seven Seas Of Rhye - Live At Wembley Stadium / July 1986', 'Seven Seas Of Rhye - Live At The Hammersmith Odeon, London / 1975', 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974', 'Seven Seas Of Rhye - Live At The Rainbow, London / March 1974', 'Seven Seas Of Rhye - Live At The Rainbow, London / November 1974', 'Seven Seas Of Rhye - Live', 'Seven Seas Of Rhye - Remastered 2011', 'Seven Seas Of Rhye - Remastered 2011', 'Seven Seas Of Rhye - Instrumental Mix 2011', 'Seven Seas Of Rhye - Remastered 2011', 'Seven Seas Of Rhye - Remastered 2011'] ['Seven Seas Of Rhye - Instrumental Mix 2011', 'Seven Seas Of Rhye', 'Seven seas of rhye - live at the rainbow, london / november 1974']\n", "the show must go on ['The Show Must Go On - Remastered 2011', 'The Show Must Go On - Remastered 2011', 'The Show Must Go On - Live In Sheffield / 2005'] ['The Show Must Go On']\n", "rock it prime jive ['Rock It (Prime Jive) - Remastered 2011', 'Rock It (Prime Jive) - Remastered 2011'] ['Rock It (Prime Jive)']\n", "we will rock you fast version ['We Will Rock You (Fast Version) - Live, European Tour / 1979'] ['We Will Rock You (Fast Version)', 'We Will Rock You (Fast Version) - Live, European Tour / 1979']\n", "who needs you ['Who Needs You - Remastered 2011', 'Who Needs You - Remastered 2011'] ['Who Needs You']\n", "untitled ['Untitled - Remastered 2011', 'Untitled - Remastered 2011'] []\n", "long away ['Long Away - Remastered 2011', 'Long Away - Remastered 2011'] ['Long Away']\n", "dear friends ['Dear Friends - Remastered 2011', 'Dear Friends - Remastered 2011'] ['Dear Friends']\n", "jailhouse rock stupid cupid be bop a lula ['Jailhouse Rock / Stupid Cupid / Be Bop A Lula - Live At The Rainbow, London / March 1974'] []\n", "save me ['Save Me - Live At Milton Keynes Bowl / June 1982', 'Save Me - Live At The Montreal Forum / November 1981', 'Save Me - Remastered 2011', 'Save Me - Remastered 2011', 'Save Me - Live In Montreal / November 1981'] ['Save Me', 'Save me - live at the montreal forum / november 1981']\n", "battle theme ['Battle Theme - Remastered 2011', 'Battle Theme - Remastered 2011'] ['Battle Theme']\n", "marriage of dale and ming and flash approaching ['Marriage Of Dale And Ming (And Flash Approaching) - Remastered 2011', 'Marriage Of Dale And Ming (And Flash Approaching) - Remastered 2011'] ['Marriage of Dale and Ming (And Flash Approaching)']\n", "football fight ['Football Fight - Remastered 2011', 'Football Fight - Remastered 2011', 'Football Fight - Early Version / No Synths! / February 1980'] ['Football Fight']\n", "need your loving tonight ['Need Your Loving Tonight - Remastered 2011', 'Need Your Loving Tonight - Remastered 2011'] ['Need your Loving Tonight']\n", "bohemian rhapsody ['Bohemian Rhapsody - Live At The Montreal Forum / November 1981', 'Bohemian Rhapsody - Live At Milton Keynes Bowl / June 1982', 'Bohemian Rhapsody - Live At Wembley Stadium / July 1986', 'Bohemian Rhapsody - Live', 'Bohemian Rhapsody - Live At The Hammersmith Odeon, London / 1975', 'Bohemian Rhapsody - Reprise / Live At The Hammersmith Odeon, London / 1975', 'Bohemian Rhapsody - Live, European Tour / 1979', 'Bohemian Rhapsody - Remastered 2011', 'Bohemian Rhapsody - Live In Sheffield / 2005'] ['Bohemian Rhapsody']\n", "lily of the valley ['Lily Of The Valley - Remastered 2011', 'Lily Of The Valley - Remastered 2011'] ['Lily of the Valley']\n", "all right now ['All Right Now - Live In Sheffield / 2005'] []\n", "fat bottomed girls ['Fat Bottomed Girls - Live At Milton Keynes Bowl / June 1982', 'Fat Bottomed Girls - 2011 Remaster', 'Fat Bottomed Girls - 2011 Remaster', 'Fat Bottomed Girls - Single Version', 'Fat Bottomed Girls - Live In Sheffield / 2005'] ['Fat Bottomed Girls', 'Fat bottomed girls - single version']\n", "surfs upschools out [\"Surf's Up...School's Out!\"] []\n", "youre so square baby i dont care [\"(You're So Square) Baby I Don't Care - Live At Wembley Stadium / July 1986\", \"(You're So Square) Baby I Don't Care - Live\"] [\"(You're So Square) Baby I Don't Care\", \"(you're so square) baby i don't care - live at wembley stadium / july 1986\"]\n", "procession ['Procession - Live At The Rainbow, London / November 1974', 'Procession - Live At The Rainbow, London / March 1974', 'Procession - Live At The Rainbow, London / November 1974', 'Procession - Remastered 2011', 'Procession - Remastered 2011'] ['Procession', 'Procession - live at the rainbow, london / march 1974', 'Procession - live at the rainbow, london / november 1974']\n", "its a hard life [\"It's A Hard Life - Remastered 2011\", \"It's A Hard Life - Remastered 2011\", \"It's A Hard Life - Live In Rio / January 1985\"] [\"It's A Hard Life\"]\n", "god save the queen ['God Save The Queen - Live At Wembley Stadium / July 1986', 'God Save The Queen - Live At The Montreal Forum / November 1981', 'God Save The Queen - Live At Milton Keynes Bowl / June 1982', 'God Save The Queen - Live', 'God Save The Queen - Live At The Hammersmith Odeon, London / 1975', 'God Save The Queen - Live At The Rainbow, London / November 1974', 'God Save The Queen - Live At The Rainbow, London / November 1974', 'God Save The Queen - Live, European Tour / 1979', 'God Save The Queen - Remastered 2011', 'God Save The Queen - Live In Sheffield / 2005'] ['God Save The Queen']\n", "execution of flash ['Execution Of Flash - Remastered 2011', 'Execution Of Flash - Remastered 2011'] ['Execution of Flash']\n", "brighton rock ['Brighton Rock - Live At The Hammersmith Odeon, London / 1975', 'Brighton Rock - Live, European Tour / 1979', 'Brighton Rock - Remastered 2011', 'Brighton Rock - Remastered 2011'] ['Brighton Rock']\n", "stealin [\"Stealin' - B-Side\"] [\"Stealin'\", \"Stealin' - b-side\"]\n", "tear it up ['Tear It Up - Live At Wembley Stadium / July 1986', 'Tear It Up - Live', 'Tear It Up - Remastered 2011', 'Tear It Up - Remastered 2011'] ['Tear It Up', 'Tear it up - live in budapest / 1986']\n", "white man ['White Man - Remastered 2011', 'White Man - Remastered 2011'] ['White Man']\n", "tie your mother down ['Tie Your Mother Down - Live At The Montreal Forum / November 1981', 'Tie Your Mother Down - Live At Milton Keynes Bowl / June 1982', 'Tie Your Mother Down - Live At Wembley Stadium / July 1986', 'Tie Your Mother Down - Live', 'Tie Your Mother Down - Live, European Tour / 1979', 'Tie Your Mother Down - Remastered 2011', 'Tie Your Mother Down - Remastered 2011', 'Tie Your Mother Down - Backing Track Mix', 'Tie Your Mother Down - Live In Sheffield / 2005'] ['Tie Your Mother Down']\n", "my melancholy blues ['My Melancholy Blues - BBC Session / October 28th 1977, Maida Vale 4 Studio', 'My Melancholy Blues - Remastered 2011', 'My Melancholy Blues - Remastered 2011', 'My Melancholy Blues - Live BBC Session / October 1977'] ['My Melancholy Blues']\n", "dont try so hard [\"Don't Try So Hard\", \"Don't Try So Hard\"] [\"Don't Try So Hard\"]\n", "life is real song for lennon ['Life Is Real (Song For Lennon) - Remastered 2011', 'Life Is Real (Song For Lennon) - Remastered 2011'] ['Life Is Real (Song for Lennon)']\n", "arboria planet of the tree men ['Arboria (Planet Of The Tree Men) - Remastered 2011', 'Arboria (Planet Of The Tree Men) - Remastered 2011'] ['Arboria (Planet of the Tree Men)']\n", "heaven for everyone ['Heaven For Everyone - Remastered 2011', 'Heaven For Everyone - Remastered 2011', 'Heaven For Everyone - Single Version'] ['Heaven for Everyone', 'Heaven for everyone - edit']\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "another one bites the dust ['Another One Bites The Dust - Live At The Montreal Forum / November 1981', 'Another One Bites The Dust - Live At Milton Keynes Bowl / June 1982', 'Another One Bites The Dust - Live At Wembley Stadium / July 1986', 'Another One Bites The Dust - Live', 'Another One Bites The Dust - Remastered 2011', 'Another One Bites The Dust - Remastered 2011', 'Another One Bites The Dust - Live In Sheffield / 2005'] ['Another One Bites the Dust']\n", "machines or back to humans ['Machines (Or Back To Humans) - Remastered 2011', 'Machines (Or Back To Humans) - Remastered 2011'] ['Machines (Or Back To Humans)']\n", "the night comes down ['The Night Comes Down - Remastered 2011', 'The Night Comes Down - Remastered 2011', 'The Night Comes Down - De Lane Lea Demo / December 1971'] ['The Night Comes Down']\n", "39 [\"'39 - Live In Sheffield / 2005\", \"'39 - Live, European Tour / 1979\", \"'39 - Remastered 2011\"] [\"'39\"]\n", "one year of love ['One Year Of Love - Remastered 2011', 'One Year Of Love - Remastered 2011'] ['One Year of Love']\n", "dont try suicide [\"Don't Try Suicide - Remastered 2011\", \"Don't Try Suicide - Remastered 2011\"] [\"Don't Try Suicide\"]\n", "breakthru ['Breakthru - Remastered 2011', 'Breakthru - Remastered 2011'] ['Breakthru']\n", "delilah ['Delilah - Remastered 2011', 'Delilah - Remastered 2011'] ['Delilah']\n", "under pressure ['Under Pressure - Live At The Montreal Forum / November 1981', 'Under Pressure - Live At Milton Keynes Bowl / June 1982', 'Under Pressure - Live At Wembley Stadium / July 1986', 'Under Pressure - Live', 'Under Pressure - Remastered 2011', 'Under Pressure - Remastered 2011'] ['Under Pressure']\n", "dont stop me now [\"Don't Stop Me Now - Live, European Tour / 1979\", \"Don't Stop Me Now - Remastered\", \"Don't Stop Me Now - Remastered\", \"Don't Stop Me Now - With Long-Lost Guitars\"] [\"Don't Stop Me Now\"]\n", "dont lose your head [\"Don't Lose Your Head - Remastered 2011\", \"Don't Lose Your Head - Remastered 2011\"] [\"Don't Lose Your Head\"]\n", "calling all girls ['Calling All Girls - Remastered 2011', 'Calling All Girls - Remastered 2011', 'Calling All Girls - Live In Tokyo / November 1982'] ['Calling All Girls']\n", "flashs theme reprise [\"Flash's Theme Reprise - Remastered 2011\", \"Flash's Theme Reprise - Remastered 2011\"] []\n", "party ['Party - Remastered 2011', 'Party - Remastered 2011'] ['Party']\n", "youre my best friend [\"You're My Best Friend - Live, European Tour / 1979\", \"You're My Best Friend - Remastered 2011\"] [\"You're My Best Friend\"]\n", "sail away sweet sister ['Sail Away Sweet Sister - Remastered 2011', 'Sail Away Sweet Sister - Remastered 2011', 'Sail Away Sweet Sister - Take 1 With Guide Vocal'] ['Sail Away Sweet Sister']\n", "flick of the wrist ['Flick Of The Wrist - BBC Session / October 16th 1974, Maida Vale 4 Studio', 'Flick Of The Wrist - Live At The Rainbow, London / November 1974', 'Flick Of The Wrist - Live At The Rainbow, London / November 1974', 'Flick Of The Wrist - Remastered 2011', 'Flick Of The Wrist - Remastered 2011', 'Flick Of The Wrist - Live BBC Session / October 1974'] ['Flick of the Wrist']\n", "let me live ['Let Me Live - Remastered 2011', 'Let Me Live - Remastered 2011'] ['Let Me Live']\n", "in only seven days ['In Only Seven Days - Remastered 2011', 'In Only Seven Days - Remastered 2011'] ['In Only Seven Days']\n", "wishing well ['Wishing Well - Live In Sheffield / 2005'] []\n", "bicycle race ['Bicycle Race - Live, European Tour / 1979', 'Bicycle Race - Remastered 2011', 'Bicycle Race - Remastered 2011', 'Bicycle Race - Instrumental'] ['Bicycle Race']\n", "i want to break free ['I Want To Break Free - Live At Wembley Stadium / July 1986', 'I Want To Break Free - Live', 'I Want To Break Free - Remastered 2011', 'I Want To Break Free - Remastered 2011', 'I Want To Break Free - Single Remix', 'I Want To Break Free - Live In Sheffield / 2005'] ['I Want To Break Free', 'I want to break free - single version']\n", "in the death cell love theme reprise ['In The Death Cell (Love Theme Reprise) - Remastered 2011', 'In The Death Cell (Love Theme Reprise) - Remastered 2011'] ['In the Death Cell (Love Theme Reprise)']\n", "i want it all ['I Want It All - Single Version', 'I Want It All - Remastered 2011', 'I Want It All - Remastered 2011', 'I Want It All - Live In Sheffield / 2005'] ['I Want It All', 'I want it all - live in sheffield / 2005']\n", "bring back that leroy brown ['Bring Back That Leroy Brown - Live At The Hammersmith Odeon, London / 1975', 'Bring Back That Leroy Brown - Live At The Rainbow, London / November 1974', 'Bring Back That Leroy Brown - Live At The Rainbow, London / November 1974', 'Bring Back That Leroy Brown - Remastered 2011', 'Bring Back That Leroy Brown - Remastered 2011', 'Bring Back That Leroy Brown - A Cappella Mix 2011'] ['Bring Back That Leroy Brown']\n", "we will rock you fast ['We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982', 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981', 'We Will Rock You (Fast) - BBC Session / October 28th 1977, Maida Vale 4 Studio'] ['We Will Rock You (Fast) - Live At Milton Keynes Bowl / June 1982', 'We Will Rock You (Fast) - Live At The Montreal Forum / November 1981']\n", "im going slightly mad [\"I'm Going Slightly Mad - Remastered 2011\", \"I'm Going Slightly Mad - Remastered 2011\", \"I'm Going Slightly Mad - Mad Mix\"] [\"I'm Going Slightly Mad\", \"I'm Going Slightly Mad - Mad Mix\"]\n", "put out the fire ['Put Out The Fire - Remastered 2011', 'Put Out The Fire - Remastered 2011'] ['Put Out The Fire']\n", "you dont fool me [\"You Don't Fool Me - Remastered 2011\", \"You Don't Fool Me - Remastered 2011\"] [\"You Don't Fool Me\"]\n", "friends will be friends ['Friends Will Be Friends - Live At Wembley Stadium / July 1986', 'Friends Will Be Friends - Live', 'Friends Will Be Friends - Remastered 2011', 'Friends Will Be Friends - Remastered 2011'] ['Friends Will Be Friends', 'Friends will be friends - live at wembley stadium / july 1986']\n", "escape from the swamp ['Escape From The Swamp - Remastered 2011', 'Escape From The Swamp - Remastered 2011'] ['Escape from the Swamp']\n", "get down make love ['Get Down Make Love - Live At Milton Keynes Bowl / June 1982', 'Get Down, Make Love - Live At The Montreal Forum / November 1981', 'Get Down, Make Love - Live, European Tour / 1979', 'Get Down, Make Love - Remastered 2011', 'Get Down, Make Love - Remastered 2011'] ['Get Down, Make Love']\n", "khashoggis ship [\"Khashoggi's Ship - Remastered 2011\", \"Khashoggi's Ship - Remastered 2011\"] [\"Khashoggi's Ship\"]\n", "the fairy fellers masterstroke [\"The Fairy Feller's Master-Stroke - Live At The Rainbow, London / March 1974\", \"The Fairy Feller's Master-Stroke - Remastered 2011\", \"The Fairy Feller's Master-Stroke - Remastered 2011\"] [\"The Fairy Feller's Master-Stroke\", \"The fairy feller's master-stroke - live at the rainbow, london / march 1974\"]\n", "crash dive on mingo city ['Crash Dive On Mingo City - Remastered 2011', 'Crash Dive On Mingo City - Remastered 2011'] ['Crash Dive on Mingo City']\n", "all gods people [\"All God's People - Remastered 2011\", \"All God's People - Remastered 2011\"] [\"All God's People\"]\n", "las palabras de amor the words of love ['Las Palabras De Amor (The Words Of Love) - Remastered 2011', 'Las Palabras De Amor (The Words Of Love) - Remastered 2011'] ['Las Palabras De Amor (The Words of Love)']\n", "teo torriatte let us cling together ['Teo Torriatte (Let Us Cling Together) - Remastered 2011', 'Teo Torriatte (Let Us Cling Together) - Remastered 2011', 'Teo Torriatte (Let Us Cling Together) - Remastered 2011 / HD Mix'] ['Teo Torriatte (Let Us Cling Together)']\n", "flash to the rescue ['Flash To The Rescue - Remastered 2011', 'Flash To The Rescue - Remastered 2011'] ['Flash to the Rescue']\n", "scandal ['Scandal - Remastered 2011', 'Scandal - Remastered 2011'] ['Scandal']\n", "play the game ['Play The Game - Live At Milton Keynes Bowl / June 1982', 'Play The Game - Live At The Montreal Forum / November 1981', 'Play The Game - Remastered 2011', 'Play The Game - Remastered 2011'] ['Play The Game', 'Play the game - live at milton keynes bowl / june 1982']\n", "tenement funster ['Tenement Funster - BBC Session / October 16th 1974, Maida Vale 4 Studio', 'Tenement Funster - Remastered 2011', 'Tenement Funster - Remastered 2011', 'Tenement Funster - Live BBC Session / October 1974'] ['Tenement Funster']\n", "flashs theme [\"Flash's Theme - Remastered 2011\", \"Flash's Theme - Remastered 2011\"] [\"Flash's Theme\"]\n", "you take my breath away ['You Take My Breath Away - Remastered 2011', 'You Take My Breath Away - Remastered 2011', 'You Take My Breath Away - Live In Hyde Park / September 1976'] ['You Take My Breath Away']\n", "my life has been saved ['My Life Has Been Saved - Remastered 2011', 'My Life Has Been Saved - Remastered 2011', 'My Life Has Been Saved - 1989 B-Side Version / Remastered 2011'] ['My Life Has Been Saved']\n", "last horizon ['Last Horizon - Live In Sheffield / 2005'] []\n", "if you cant beat them [\"If You Can't Beat Them - Remastered 2011\", \"If You Can't Beat Them - Remastered 2011\"] [\"If You Can't Beat Them\"]\n", "radio ga ga ['Radio Ga Ga - Live In Sheffield / 2005', 'Radio Ga Ga - Live At Wembley Stadium / July 1986', 'Radio Ga Ga - Live', 'Radio Ga Ga - Remastered 2011', 'Radio Ga Ga - Remastered 2011'] ['Radio Ga Ga']\n", "dreamers ball [\"Dreamer's Ball - Live, European Tour / 1979\", \"Dreamer's Ball - Remastered 2011\", \"Dreamer's Ball - Remastered 2011\", \"Dreamer's Ball - Early Acoustic Take / August 1978\"] [\"Dreamer's Ball\"]\n", "bijou ['Bijou', 'Bijou'] ['Bijou']\n", "mother love ['Mother Love', 'Mother Love'] ['Mother Love']\n", "in the space capsule the love theme ['In The Space Capsule (The Love Theme) - Remastered 2011', 'In The Space Capsule (The Love Theme) - Remastered 2011'] ['In the Space Capsule (The Love Theme)']\n", "mustapha ['Mustapha - Remastered 2011', 'Mustapha - Remastered 2011'] ['Mustapha']\n", "jesus ['Jesus - Remastered 2011', 'Jesus - Remastered 2011', 'Jesus - De Lane Lea Demo / December 1971'] ['Jesus']\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "we are the champions ['We Are The Champions - Live At Wembley Stadium / July 1986', 'We Are The Champions - Live At The Montreal Forum / November 1981', 'We Are The Champions - Live At Milton Keynes Bowl / June 1982', 'We Are The Champions - Live', 'We Are The Champions - Live, European Tour / 1979', 'We Are The Champions - Remastered 2011', 'We Are The Champions - Remastered 2011', 'We Are The Champions - Live In Sheffield / 2005'] ['We Are The Champions']\n", "keep yourself alive reprise ['Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974', 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974', 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974'] ['Keep Yourself Alive (Reprise) - Live At The Rainbow, London / March 1974', 'Keep Yourself Alive (Reprise) - Live At The Rainbow, London / November 1974']\n", "somebody to love ['Somebody To Love - Live At Milton Keynes Bowl / June 1982', 'Somebody To Love - Live At The Montreal Forum / November 1981', 'Somebody To Love - Remastered 2011', 'Somebody To Love - Remastered 2011', 'Somebody To Love - Live At Milton Keynes Bowl / June 1982'] ['Somebody to Love', 'Somebody to love - live at the freddie mercury tribute concert for aids awareness, wembley / 1992']\n", "cool cat ['Cool Cat - Remastered 2011', 'Cool Cat - Remastered 2011'] ['Cool Cat']\n", "love of my life ['Love Of My Life - Live At The Montreal Forum / November 1981', 'Love Of My Life - Live At Milton Keynes Bowl / June 1982', 'Love Of My Life - Live At Wembley Stadium / July 1986', 'Love Of My Life - Live', 'Love Of My Life - Live, European Tour / 1979', 'Love Of My Life - Remastered 2011', 'Love Of My Life - Live In Sheffield / 2005'] ['Love of my life - live in sheffield / 2005', 'Love of my life - live at the montreal forum / november 1981', 'Love of my life - live in budapest / 1986', 'Love of My Life']\n", "misfire ['Misfire - Remastered 2011', 'Misfire - Remastered 2011'] ['Misfire']\n", "yeah ['Yeah - Remastered 2011', 'Yeah - Remastered 2011'] ['Yeah']\n", "impromptu ['Impromptu - Live At Wembley Stadium / July 1986'] []\n", "a kind of magic ['A Kind Of Magic - Remastered 2011', 'A Kind Of Magic - Live At Wembley Stadium / July 1986', 'A Kind Of Magic - Live', 'A Kind Of Magic - Remastered 2011', 'A Kind Of Magic - Highlander Version', 'A Kind Of Magic - Demo / August 1985', 'A Kind Of Magic - Live In Sheffield / 2005'] ['A Kind of Magic', 'A Kind Of Magic - Highlander Version']\n", "these are the days of our lives ['These Are The Days Of Our Lives', 'These Are The Days Of Our Lives', 'These Are The Days Of Our Lives - Live In Sheffield / 2005'] ['These Are the Days of Our Lives']\n", "the miracle ['The Miracle - Remastered 2011', 'The Miracle - Remastered 2011'] ['The Miracle']\n", "the ring hypnotic seduction of dale ['The Ring (Hypnotic Seduction Of Dale) - Remastered 2011', 'The Ring (Hypnotic Seduction Of Dale) - Remastered 2011'] ['The Ring (Hypnotic Seduction of Dale)']\n", "guitar solo ['Guitar Solo - Live At The Montreal Forum / November 1981', 'Guitar Solo - Live In Sheffield / 2005', 'Guitar Solo - Live At Milton Keynes Bowl / June 1982', 'Guitar Solo - Live At The Hammersmith Odeon, London / 1975', 'Guitar Solo - Live At The Rainbow, London / November 1974', 'Guitar Solo - Live At The Rainbow, London / March 1974', 'Guitar Solo - Live At The Rainbow, London / November 1974', 'Guitar Solo - Live'] ['Guitar solo - live']\n", "its a beautiful day reprise [\"It's A Beautiful Day (Reprise) - Remastered 2011\", \"It's A Beautiful Day (Reprise) - Remastered 2011\"] [\"It's A Beautiful Day (Reprise)\"]\n", "great king rat ['Great King Rat - BBC Session / December 3rd 1973, Langham 1 Studio', 'Great King Rat - Live At The Rainbow, London / March 1974', 'Great King Rat - Remastered 2011', 'Great King Rat - Remastered 2011', 'Great King Rat - De Lane Lea Demo / December 1971'] ['Great King Rat']\n", "i was born to love you ['I Was Born To Love You', 'I Was Born To Love You', 'I Was Born To Love You - Vocals & Piano Version / Remastered 2011'] ['I Was Born To Love You']\n", "spread your wings ['Spread Your Wings - BBC Session / October 28th 1977, Maida Vale 4 Studio', 'Spread Your Wings - Live, European Tour / 1979', 'Spread Your Wings - Remastered 2011', 'Spread Your Wings - Remastered 2011', 'Spread Your Wings - Live BBC Session / October 1977'] ['Spread Your Wings']\n", "body language ['Body Language - Remastered 2011', 'Body Language - Remastered 2011'] ['Body Language']\n", "action this day ['Action This Day - Live At Milton Keynes Bowl / June 1982', 'Action This Day - Remastered 2011', 'Action This Day - Remastered 2011', 'Action This Day - Live In Tokyo / November 1982'] ['Action This Day']\n", "now im here reprise [\"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\", \"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\"] [\"Now I'm Here (Reprise) - Live At Milton Keynes Bowl / June 1982\", \"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\"]\n", "keep yourself alive ['Keep Yourself Alive - Live At The Montreal Forum / November 1981', 'Keep Yourself Alive - BBC Session / February 5th 1973, Langham 1 Studio', 'Keep Yourself Alive - BBC Session / July 25th 1973, Langham 1 Studio', 'Keep Yourself Alive - Live At The Hammersmith Odeon, London / 1975', 'Keep Yourself Alive - Live At The Rainbow, London / November 1974', 'Keep Yourself Alive - Live At The Rainbow, London / March 1974', 'Keep Yourself Alive - Live At The Rainbow, London / November 1974', 'Keep Yourself Alive - Live, European Tour / 1979', 'Keep Yourself Alive - Remastered 2011', 'Keep Yourself Alive - Remastered 2011', 'Keep Yourself Alive - De Lane Lea Demo / December 1971'] ['Keep Yourself Alive']\n", "say its not true [\"Say It's Not True\", \"Say It's Not True - Live In Sheffield / 2005\"] [\"Say It's Not True\"]\n", "liar ['Liar - BBC Session / February 5th 1973, Langham 1 Studio', 'Liar - BBC Session / July 25th 1973, Langham 1 Studio', 'Liar - Live At The Hammersmith Odeon, London / 1975', 'Liar - Live At The Rainbow, London / November 1974', 'Liar - Live At The Rainbow, London / March 1974', 'Liar - Live At The Rainbow, London / November 1974', 'Liar - Remastered 2011', 'Liar - Remastered 2011', 'Liar - De Lane Lea Demo / December 1971'] ['Liar', 'Liar - de lane lea demo / december 1971']\n", "im in love with my car [\"I'm In Love With My Car - Live At The Montreal Forum / November 1981\", \"I'm In Love With My Car - Live, European Tour / 1979\", \"I'm In Love With My Car - Remastered 2011\", \"I'm In Love With My Car - Live In Sheffield / 2005\"] [\"I'm In Love With My Car\"]\n", "flash ['Flash - Live At The Montreal Forum / November 1981', 'Flash - Live At Milton Keynes Bowl / June 1982', 'Flash - Single Version', 'Flash - Live In Montreal / November 1981'] ['Flash']\n", "tutti frutti ['Tutti Frutti - Live At Wembley Stadium / July 1986', 'Tutti Frutti - Live'] ['Tutti Frutti', 'Tutti frutti - live in budapest / 1986']\n", "jailhouse rock ['Jailhouse Rock - Live At The Montreal Forum / November 1981', 'Jailhouse Rock - Live At The Rainbow, London / November 1974', 'Jailhouse Rock - Live At The Rainbow, London / November 1974'] ['Jailhouse Rock', 'Jailhouse rock - live at the montreal forum / november 1981', 'Jailhouse rock - live at the rainbow, london / november 1974']\n", "dragon attack ['Dragon Attack - Live At Milton Keynes Bowl / June 1982', 'Dragon Attack - Live At The Montreal Forum / November 1981', 'Dragon Attack - Remastered 2011', 'Dragon Attack - Remastered 2011', 'Dragon Attack - Live At Milton Keynes Bowl / June 1982'] ['Dragon Attack']\n", "who wants to live forever ['Who Wants To Live Forever - Live At Wembley Stadium / July 1986', 'Who Wants To Live Forever - Live', 'Who Wants To Live Forever - Remastered 2011', 'Who Wants To Live Forever - Remastered 2011'] ['Who Wants to Live Forever']\n", "leaving home aint easy [\"Leaving Home Ain't Easy - Remastered 2011\", \"Leaving Home Ain't Easy - Remastered 2011\"] [\"Leaving Home Ain't Easy\"]\n", "more of that jazz ['More Of That Jazz - Remastered 2011', 'More Of That Jazz - Remastered 2011'] ['More Of That Jazz']\n", "the march of the black queen ['The March Of The Black Queen - Live At The Hammersmith Odeon, London / 1975', 'The March Of The Black Queen - Live At The Rainbow, London / November 1974', 'The March Of The Black Queen - Live At The Rainbow, London / November 1974', 'The March Of The Black Queen - Remastered 2011', 'The March Of The Black Queen - Remastered 2011'] ['The March Of The Black Queen', 'The March Of The Black Queen - Live At The Rainbow, London / November 1974']\n", "all dead all dead ['All Dead, All Dead - Remastered 2011', 'All Dead, All Dead - Remastered 2011'] ['All Dead, All Dead']\n", "the kiss aura resurrects flash ['The Kiss (Aura Resurrects Flash) - Remastered 2011', 'The Kiss (Aura Resurrects Flash) - Remastered 2011'] ['The Kiss (Aura Resurrects Flash)']\n", "funny how love is ['Funny How Love Is - Remastered 2011', 'Funny How Love Is - Remastered 2011'] ['Funny How Love Is']\n", "we will rock you ['We Will Rock You - Live At Wembley Stadium / July 1986', 'We Will Rock You - Live At The Montreal Forum / November 1981', 'We Will Rock You - Live At Milton Keynes Bowl / June 1982', 'We Will Rock You - Live', 'We Will Rock You - BBC Session / October 28th 1977, Maida Vale 4 Studio', 'We Will Rock You - Live, European Tour / 1979', 'We Will Rock You - Remastered', 'We Will Rock You - Remastered', 'We Will Rock You - Live In Tokyo / November 1982', 'We Will Rock You - Live In Sheffield / 2005'] ['We Will Rock You', 'We Will Rock You - LP & JC Remix']\n", "the hero ['The Hero - Live At The Montreal Forum / November 1981', 'The Hero - Live At Milton Keynes Bowl / June 1982', 'The Hero - Remastered 2011', 'The Hero - Remastered 2011', 'The Hero - October 1980... Revisited', 'The Hero - Live In Montreal / November 1981'] ['The Hero']\n", "princes of the universe ['Princes Of The Universe - Remastered 2011', 'Princes Of The Universe - Remastered 2011'] ['Princes of the Universe']\n", "drowse ['Drowse - Remastered 2011', 'Drowse - Remastered 2011'] ['Drowse']\n", "keep passing the open windows ['Keep Passing The Open Windows - Remastered 2011', 'Keep Passing The Open Windows - Remastered 2011'] ['Keep Passing The Open Windows']\n", "sleeping on the sidewalk ['Sleeping On The Sidewalk - Remastered 2011', 'Sleeping On The Sidewalk - Remastered 2011'] ['Sleeping On The Sidewalk']\n", "father to son ['Father To Son - Live At The Rainbow, London / November 1974', 'Father To Son - Live At The Rainbow, London / March 1974', 'Father To Son - Live At The Rainbow, London / November 1974', 'Father To Son - Remastered 2011', 'Father To Son - Remastered 2011'] ['Father To Son']\n", "in the lap of the gods revisited ['In The Lap Of The Gods... Revisited - Live', 'In The Lap Of The Gods... Revisited - Remastered 2011', 'In The Lap Of The Gods... Revisited - Remastered 2011', 'In The Lap Of The Gods… Revisited - Live At Wembley Stadium / July 1986'] ['In The Lap Of The Gods (Revisited)', 'In the lap of the gods... revisited - live in budapest / 1986']\n", "man on the prowl ['Man On The Prowl - Remastered 2011', 'Man On The Prowl - Remastered 2011'] ['Man On The Prowl']\n", "modern times rock n roll [\"Modern Times Rock 'n' Roll - BBC Session / December 3rd 1973, Langham 1 Studio\", \"Modern Times Rock 'n' Roll - BBC Session / April 3rd 1974, Langham 1 Studio\", \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\", \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / March 1974\", \"Modern Times Rock 'n' Roll - Live At The Rainbow, London / November 1974\", \"Modern Times Rock 'N Roll - Remastered 2011\", \"Modern Times Rock 'N Roll - Remastered 2011\"] [\"Modern Times Rock 'N' Roll\", \"Modern times rock 'n' roll - live at the rainbow, london / november 1974\"]\n", "gimme the prize ['Gimme The Prize - Remastered 2011', 'Gimme The Prize - Remastered 2011'] ['Gimme the Prize']\n", "she makes me stormtrooper in stilettos ['She Makes Me (Stormtrooper In Stilettos) - Remastered 2011', 'She Makes Me (Stormtrooper In Stilettos) - Remastered 2011'] ['She Makes Me (Stormtrooper in Stilettos)']\n", "mings theme in the court of ming the merciless [\"Ming's Theme (In The Court Of Ming The Merciless) - Remastered 2011\", \"Ming's Theme (In The Court Of Ming The Merciless) - Remastered 2011\"] [\"Ming's Theme (In the Court of Ming the Merciless)\"]\n", "crazy little thing called love ['Crazy Little Thing Called Love - Live At The Montreal Forum / November 1981', 'Crazy Little Thing Called Love - Live At Milton Keynes Bowl / June 1982', 'Crazy Little Thing Called Love - Live At Wembley Stadium / July 1986', 'Crazy Little Thing Called Love - Live', 'Crazy Little Thing Called Love - Remastered 2011', 'Crazy Little Thing Called Love - Remastered 2011', 'Crazy Little Thing Called Love - Live In Sheffield / 2005'] ['Crazy Little Thing Called Love', 'Crazy little thing called love - live at milton keynes bowl / june 1982', 'Crazy little thing called love - live at the montreal forum / november 1981', 'Crazy little thing called love - live in sheffield / 2005']\n", "the wedding march ['The Wedding March - Remastered 2011', 'The Wedding March - Remastered 2011'] ['The Wedding March']\n", "drum solo ['Drum Solo - Live At The Rainbow, London / November 1974', 'Drum Solo - Live At The Rainbow, London / March 1974', 'Drum Solo - Live At The Rainbow, London / November 1974'] ['Drum solo - live at the rainbow, london / november 1974']\n", "son and daughter ['Son And Daughter - BBC Session / July 25th 1973, Langham 1 Studio', 'Son And Daughter - BBC Session / December 3rd 1973, Langham 1 Studio', 'Son And Daughter - Live At The Hammersmith Odeon, London / 1975', 'Son And Daughter - Live At The Rainbow, London / November 1974', 'Son And Daughter - Live At The Rainbow, London / March 1974', 'Son And Daughter - Live At The Rainbow, London / November 1974', 'Son And Daughter - Remastered 2011', 'Son And Daughter - Remastered 2011'] ['Son And Daughter']\n", "my fairy king ['My Fairy King - BBC Session / February 5th 1973, Langham 1 Studio', 'My Fairy King - Remastered 2011', 'My Fairy King - Remastered 2011'] ['My Fairy King']\n", "dancer ['Dancer - Remastered 2011', 'Dancer - Remastered 2011'] ['Dancer']\n", "the invisible man ['The Invisible Man - Remastered 2011', 'The Invisible Man - Demo', 'The Invisible Man - 12\" Version', 'The Invisible Man - Remastered 2011'] ['The Invisible Man']\n", "ride the wild wind ['Ride The Wild Wind - Remastered 2011', 'Ride The Wild Wind - Remastered 2011', 'Ride The Wild Wind - Early Version With Guide Vocal'] ['Ride the Wild Wind', 'Ride the wild wind - early version with guide vocal']\n", "hijack my heart ['Hijack My Heart - B-Side'] ['Hijack My Heart', 'Hijack my heart - b-side']\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "gimme some lovin [\"Gimme Some Lovin' - Live At Wembley Stadium / July 1986\"] [\"Gimme Some Lovin'\", \"Gimme some lovin' - live at wembley stadium / july 1986\"]\n", "vultans theme attack of the hawk men [\"Vultan's Theme (Attack Of The Hawk Men) - Remastered 2011\", \"Vultan's Theme (Attack Of The Hawk Men) - Remastered 2011\"] [\"Vultan's Theme (Attack of the Hawk Men)\"]\n", "hello mary lou goodbye heart ['Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986', 'Hello Mary Lou (Goodbye Heart) - Live'] ['Hello Mary Lou (Goodbye Heart)', 'Hello Mary Lou (Goodbye Heart) - Live At Wembley Stadium / July 1986', 'Hello Mary Lou (Goodbye Heart) - Live In Budapest / 1986']\n", "was it all worth it ['Was It All Worth It - Remastered 2011', 'Was It All Worth It - Remastered 2011'] ['Was It All Worth It']\n", "dead on time ['Dead On Time - Remastered 2011', 'Dead On Time - Remastered 2011'] ['Dead On Time']\n", "in the lap of the godsrevisited ['In The Lap Of The Gods...Revisited - Live At Wembley Stadium / July 1986', 'In The Lap Of The Gods...Revisited - Live At The Hammersmith Odeon, London / 1975', 'In The Lap Of The Gods...Revisited - Live At The Rainbow, London / November 1974', 'In The Lap Of The Gods...Revisited - Live At The Rainbow, London / November 1974'] ['In the lap of the gods...revisited - live at the rainbow, london / november 1974']\n", "the millionaire waltz ['The Millionaire Waltz - Remastered 2011', 'The Millionaire Waltz - Remastered 2011'] ['The Millionaire Waltz']\n", "staying power ['Staying Power - Live At Milton Keynes Bowl / June 1982', 'Staying Power - Remastered 2011', 'Staying Power - Remastered 2011', 'Staying Power - Live At Milton Keynes Bowl / June 1982'] ['Staying Power', 'Staying power - live at milton keynes bowl / june 1982']\n", "son and daughter reprise ['Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974', 'Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974', 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974'] ['Son And Daughter (Reprise) - Live At The Rainbow, London / March 1974', 'Son And Daughter (Reprise) - Live At The Rainbow, London / November 1974']\n", "intro ['Intro - Live At The Montreal Forum / November 1981'] []\n", "my baby does me ['My Baby Does Me - Remastered 2011', 'My Baby Does Me - Remastered 2011'] ['My Baby Does Me']\n", "back chat ['Back Chat - Live At Milton Keynes Bowl / June 1982', 'Back Chat - Remastered 2011', 'Back Chat - Remastered 2011', 'Back Chat - Single Remix'] ['Back Chat', 'Back chat - single remix']\n", "is this the world we created ['Is This The World We Created? - Live At Wembley Stadium / July 1986', 'Is This The World We Created...? - Live', 'Is This The World We Created...? - Remastered 2011', 'Is This The World We Created...? - Remastered 2011', 'Is This The World We Created...? - Live In Rio / January 1985'] ['Is This The World We Created?']\n", "white queen as it began ['White Queen (As It Began) - BBC Session / April 3rd 1974, Langham 1 Studio', 'White Queen (As It Began) - Live At The Hammersmith Odeon, London / 1975', 'White Queen (As It Began) - Live At The Rainbow, London / November 1974', 'White Queen (As It Began) - Live At The Rainbow, London / March 1974', 'White Queen (As It Began) - Live At The Rainbow, London / November 1974', 'White Queen (As It Began) - Remastered 2011', 'White Queen (As It Began) - Remastered 2011', 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975'] ['White Queen (As It Began)', 'White Queen (As It Began) - Live At Hammersmith Odeon, London / December 1975', 'White Queen (As It Began) - Live At The Rainbow, London / March 1974', 'White Queen (As It Began) - Live At The Rainbow, London / November 1974']\n", "the hitman ['The Hitman - Remastered 2011', 'The Hitman - Remastered 2011'] ['The Hitman']\n", "ogre battle ['Ogre Battle - BBC Session / December 3rd 1973, Langham 1 Studio', 'Ogre Battle - Live At The Hammersmith Odeon, London / 1975', 'Ogre Battle - Live At The Rainbow, London / November 1974', 'Ogre Battle - Live At The Rainbow, London / March 1974', 'Ogre Battle - Live At The Rainbow, London / November 1974', 'Ogre Battle - Remastered 2011', 'Ogre Battle - Remastered 2011'] ['Ogre Battle', 'Ogre battle - live at the rainbow, london / march 1974', 'Ogre battle - live at the rainbow, london / november 1974']\n", "killer queen ['Killer Queen - Live At The Montreal Forum / November 1981', 'Killer Queen - Live At The Hammersmith Odeon, London / 1975', 'Killer Queen - Live At The Rainbow, London / November 1974', 'Killer Queen - Live At The Rainbow, London / November 1974', 'Killer Queen - Live, European Tour / 1979', 'Killer Queen - Remastered 2011', 'Killer Queen - Remastered 2011'] ['Killer Queen']\n", "hammer to fall ['Hammer To Fall - Live At Wembley Stadium / July 1986', 'Hammer To Fall - Live', 'Hammer To Fall - Remastered 2011', 'Hammer To Fall - Remastered 2011', \"Hammer To Fall - Headbanger's Mix\", 'Hammer To Fall - Live In Sheffield / 2005'] ['Hammer to Fall']\n", "now im here [\"Now I'm Here - Live At Milton Keynes Bowl / June 1982\", \"Now I'm Here - Live At Wembley Stadium / July 1986\", \"Now I'm Here - Live At The Montreal Forum / November 1981\", \"Now I'm Here - Live\", \"Now I'm Here - BBC Session / October 16th 1974, Maida Vale 4 Studio\", \"Now I'm Here - Live At The Hammersmith Odeon, London / 1975\", \"Now I'm Here - Live At The Rainbow, London / November 1974\", \"Now I'm Here - Live At The Rainbow, London / November 1974\", \"Now I'm Here - Live, European Tour / 1979\", \"Now I'm Here - Remastered 2011\", \"Now I'm Here - Remastered 2011\", 'Now I’m Here - Live At Hammersmith Odeon, London / December 1975'] [\"Now I'm Here\"]\n", "doing alright ['Doing Alright - Remastered 2011', 'Doing Alright - Remastered 2011'] ['Doing Alright']\n", "you and i ['You And I - Remastered 2011', 'You And I - Remastered 2011'] ['You and I']\n", "headlong ['Headlong - Remastered 2011', 'Headlong - Remastered 2011', 'Headlong - Embryo With Guide Vocal'] ['Headlong', 'Headlong - embryo with guide vocal']\n", "big spender ['Big Spender - Live At Wembley Stadium / July 1986', 'Big Spender - Live At The Hammersmith Odeon, London / 1975', 'Big Spender - Live At The Rainbow, London / November 1974', 'Big Spender - Live At The Rainbow, London / November 1974'] ['Big Spender']\n", "cant get enough [\"Can't Get Enough - Live In Sheffield / 2005\"] []\n", "one vision ['One Vision - Remastered 2011', 'One Vision - Live At Wembley Stadium / July 1986', 'One Vision - Live', 'One Vision - Remastered 2011', 'One Vision - Single Version', 'One Vision - Live At Wembley Stadium / Friday July 11th 1986'] ['One Vision', 'One vision - live in budapest / 1986']\n", "in the lap of the gods ['In The Lap Of The Gods - Live At The Rainbow, London / November 1974', 'In The Lap Of The Gods - Live At The Rainbow, London / November 1974', 'In The Lap Of The Gods - Remastered 2011', 'In The Lap Of The Gods - Remastered 2011'] ['In The Lap Of The Gods']\n", "the loser in the end ['The Loser In The End - Remastered 2011', 'The Loser In The End - Remastered 2011'] ['The Loser In The End']\n" ] } ], "source": [ "for ct in ctitles:\n", " sts = [(t['name']) for t in tracks.find({'artist_id': this_artist_id, 'ctitle': ct})]\n", " gts = [(t['title']) for t in genius_tracks.find({'primary_artist.id': this_artist_genius_id, 'ctitle': ct})]\n", " if len(sts) != 1 or len(gts) != 1:\n", " print(ct, sts, gts)" ] }, { "cell_type": "code", "execution_count": 112, "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": 421, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "('flashs theme reprise', \"Flash's Theme Reprise - Remastered 2011\") ('now im here reprise', \"Now I'm Here (Reprise) - Live At The Montreal Forum / November 1981\") 8 True\n", "('the kiss', 'The Kiss - Early Version / March 1980') ('the hero', 'The Hero') 4 True\n", "('surfs upschools out', \"Surf's Up...School's Out!\") ('surfs up schools out', \"Surf's Up... School's Out!\") 1 False\n", "('untitled', 'Untitled - Remastered 2011') ('fun it', 'Fun It') 5 True\n" ] } ], "source": [ "banned_substrings = ['rmx', 'remix', 'rework', 'live', 'intro', 'medley', 'mix']\n", "genius_and_both = genius_only | in_both\n", "for s in spotify_only:\n", " if not any(banned in s[1].lower() for banned in banned_substrings):\n", " gt = min(genius_and_both, key=lambda g: levenshtein(s[0], g[0]))\n", " d = levenshtein(s[0], gt[0])\n", " \n", " print(s, gt, d, gt in in_both)" ] }, { "cell_type": "code", "execution_count": 361, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[({'_id': '7ll8muXAomKNStOTzhA4Pk',\n", " 'album_id': '4RlAfzZ4iwr4jQa7Ar9i6t',\n", " 'ctitle': 'black dog bring it on home',\n", " 'name': 'Black Dog / Bring It On Home'},\n", " 'The Song Remains The Same')]" ] }, "execution_count": 361, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[(t, albums.find_one({'_id': t['album_id']})['name']) for t in tracks.find({'artist_id': this_artist_id}, ['ctitle', 'name', 'album_id'])\n", " if 'dog bring' in t['ctitle']]" ] }, { "cell_type": "code", "execution_count": 114, "metadata": {}, "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)" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "Manually fix a couple of errors." ] }, { "cell_type": "code", "execution_count": 248, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 248, "metadata": {}, "output_type": "execute_result" } ], "source": [ "genius_tracks.update_many({'ctitle': 'what did i do god as my witness'}, \n", " {'$set': {'ctitle': 'what did i dogod as my witness'}})\n", "genius_tracks.update_many({'ctitle': 'the ballad of the beaconsfield miners'}, \n", " {'$set': {'ctitle': 'ballad of the beaconsfield miners'}})\n", "genius_tracks.update_many({'ctitle': 'cheer up boys your makeup is running'}, \n", " {'$set': {'ctitle': 'cheer up boys your make up is running'}})\n", "genius_tracks.update_many({'ctitle': 'erase replace'}, \n", " {'$set': {'ctitle': 'erasereplace'}})\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": 362, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idartist_namename
06VH2op0GKIl3WNTbZmmcmILed ZeppelinThe Complete BBC Sessions
10kTe1sQd9yhDsdG2Zth7X6Led ZeppelinCelebration Day
24wExFfncaUIqSgoxnqa3EhLed ZeppelinMothership (Remastered)
339BE5332FUDi2TIYD84hm2Led ZeppelinHow The West Was Won
456G9UnPmRifbubzPDJfAydLed ZeppelinCoda (Deluxe Edition)
5228mANuRrV20jS5DCA0eERLed ZeppelinCoda (Remastered)
65WRmchevXvk5eXPT0gEuTLLed ZeppelinCoda
71jCYuXr0Ujke24z1ymBr5ULed ZeppelinIn Through The Out Door (Deluxe Edition)
81W5CtQ7Ng0kP3lXyz7PIT2Led ZeppelinIn Through The Out Door (Remastered)
94wVHvawxZy52Oemd4sGyUmLed ZeppelinIn Through The Out Door
104RlAfzZ4iwr4jQa7Ar9i6tLed ZeppelinThe Song Remains The Same
116vSiY2OVanKKforfEOT2PDLed ZeppelinPresence (Deluxe Edition)
123uhD8hNpb0m3iIZ18RHH5uLed ZeppelinPresence (Remastered)
133xiPkaTzfC48CcsXYgz5v0Led ZeppelinPresence
141lZahjeu4AhPkg9JARZr5FLed ZeppelinPhysical Graffiti
150ovKDDAHiTwg4AEjKdgdWoLed ZeppelinPhysical Graffiti
1626tH0kjUhkxBEd3ipGkx3YLed ZeppelinPhysical Graffiti (Deluxe Edition)
177gS8ozSkvPW3VBPLnXOZ7SLed ZeppelinHouses Of The Holy (Deluxe Edition)
180GqpoHJREPp0iuXK3HzrHkLed ZeppelinHouses Of The Holy (Remastered)
195phxHbK2GSr7hEu4orLywPLed ZeppelinHouses Of The Holy
2044Ig8dzqOkvkGDzaUof9lKLed ZeppelinLed Zeppelin IV (Deluxe Edition)
215EyIDBAqhnlkAHqvPRwdbXLed ZeppelinLed Zeppelin IV (Remastered Version)
224xGEiQ7La4japmGrREeLlwLed ZeppelinLed Zeppelin III (Remastered Deluxe Edition)
236P5QHz4XtxOmS5EuiGIPutLed ZeppelinLed Zeppelin III (Remastered)
2458N1RPC3B4mRkjBaug4u3XLed ZeppelinLed Zeppelin II (Remastered Deluxe Edition)
2558MQ0PLijVHePUonQlK76YLed ZeppelinLed Zeppelin II (Remastered)
2670lQYZtypdCALtFVlQAcvxLed ZeppelinLed Zeppelin II
2722BzOOZKYZ2jYYKLpOlnETLed ZeppelinLed Zeppelin (Remastered Deluxe Edition)
281J8QW9qsMLx3staWaHpQmULed ZeppelinLed Zeppelin (Remastered)
293ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin
\n", "
" ], "text/plain": [ " _id artist_name \\\n", "0 6VH2op0GKIl3WNTbZmmcmI Led Zeppelin \n", "1 0kTe1sQd9yhDsdG2Zth7X6 Led Zeppelin \n", "2 4wExFfncaUIqSgoxnqa3Eh Led Zeppelin \n", "3 39BE5332FUDi2TIYD84hm2 Led Zeppelin \n", "4 56G9UnPmRifbubzPDJfAyd Led Zeppelin \n", "5 228mANuRrV20jS5DCA0eER Led Zeppelin \n", "6 5WRmchevXvk5eXPT0gEuTL Led Zeppelin \n", "7 1jCYuXr0Ujke24z1ymBr5U Led Zeppelin \n", "8 1W5CtQ7Ng0kP3lXyz7PIT2 Led Zeppelin \n", "9 4wVHvawxZy52Oemd4sGyUm Led Zeppelin \n", "10 4RlAfzZ4iwr4jQa7Ar9i6t Led Zeppelin \n", "11 6vSiY2OVanKKforfEOT2PD Led Zeppelin \n", "12 3uhD8hNpb0m3iIZ18RHH5u Led Zeppelin \n", "13 3xiPkaTzfC48CcsXYgz5v0 Led Zeppelin \n", "14 1lZahjeu4AhPkg9JARZr5F Led Zeppelin \n", "15 0ovKDDAHiTwg4AEjKdgdWo Led Zeppelin \n", "16 26tH0kjUhkxBEd3ipGkx3Y Led Zeppelin \n", "17 7gS8ozSkvPW3VBPLnXOZ7S Led Zeppelin \n", "18 0GqpoHJREPp0iuXK3HzrHk Led Zeppelin \n", "19 5phxHbK2GSr7hEu4orLywP Led Zeppelin \n", "20 44Ig8dzqOkvkGDzaUof9lK Led Zeppelin \n", "21 5EyIDBAqhnlkAHqvPRwdbX Led Zeppelin \n", "22 4xGEiQ7La4japmGrREeLlw Led Zeppelin \n", "23 6P5QHz4XtxOmS5EuiGIPut Led Zeppelin \n", "24 58N1RPC3B4mRkjBaug4u3X Led Zeppelin \n", "25 58MQ0PLijVHePUonQlK76Y Led Zeppelin \n", "26 70lQYZtypdCALtFVlQAcvx Led Zeppelin \n", "27 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin \n", "28 1J8QW9qsMLx3staWaHpQmU Led Zeppelin \n", "29 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "\n", " name \n", "0 The Complete BBC Sessions \n", "1 Celebration Day \n", "2 Mothership (Remastered) \n", "3 How The West Was Won \n", "4 Coda (Deluxe Edition) \n", "5 Coda (Remastered) \n", "6 Coda \n", "7 In Through The Out Door (Deluxe Edition) \n", "8 In Through The Out Door (Remastered) \n", "9 In Through The Out Door \n", "10 The Song Remains The Same \n", "11 Presence (Deluxe Edition) \n", "12 Presence (Remastered) \n", "13 Presence \n", "14 Physical Graffiti \n", "15 Physical Graffiti \n", "16 Physical Graffiti (Deluxe Edition) \n", "17 Houses Of The Holy (Deluxe Edition) \n", "18 Houses Of The Holy (Remastered) \n", "19 Houses Of The Holy \n", "20 Led Zeppelin IV (Deluxe Edition) \n", "21 Led Zeppelin IV (Remastered Version) \n", "22 Led Zeppelin III (Remastered Deluxe Edition) \n", "23 Led Zeppelin III (Remastered) \n", "24 Led Zeppelin II (Remastered Deluxe Edition) \n", "25 Led Zeppelin II (Remastered) \n", "26 Led Zeppelin II \n", "27 Led Zeppelin (Remastered Deluxe Edition) \n", "28 Led Zeppelin (Remastered) \n", "29 Led Zeppelin " ] }, "execution_count": 362, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame(list(albums.find({'artist_id': this_artist_id}, ['artist_name', 'name'])))" ] }, { "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": [ "# Remove live and duplicate tracks" ] }, { "cell_type": "code", "execution_count": 461, "metadata": {}, "outputs": [], "source": [ "this_artist_id = '36QJpDe2go2KgaRleHCDTp'" ] }, { "cell_type": "code", "execution_count": 462, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idartist_namenamerelease_date
06VH2op0GKIl3WNTbZmmcmILed ZeppelinThe Complete BBC Sessions2016-09-16
10kTe1sQd9yhDsdG2Zth7X6Led ZeppelinCelebration Day2012-11-19
24wExFfncaUIqSgoxnqa3EhLed ZeppelinMothership (Remastered)2007
339BE5332FUDi2TIYD84hm2Led ZeppelinHow The West Was Won2003-05-27
456G9UnPmRifbubzPDJfAydLed ZeppelinCoda (Deluxe Edition)1982-11-19
5228mANuRrV20jS5DCA0eERLed ZeppelinCoda (Remastered)1982-11-19
65WRmchevXvk5eXPT0gEuTLLed ZeppelinCoda1982-11-19
71jCYuXr0Ujke24z1ymBr5ULed ZeppelinIn Through The Out Door (Deluxe Edition)1979-08-15
81W5CtQ7Ng0kP3lXyz7PIT2Led ZeppelinIn Through The Out Door (Remastered)1979-08-15
94wVHvawxZy52Oemd4sGyUmLed ZeppelinIn Through The Out Door1979-08-15
104RlAfzZ4iwr4jQa7Ar9i6tLed ZeppelinThe Song Remains The Same1976-09-28
116vSiY2OVanKKforfEOT2PDLed ZeppelinPresence (Deluxe Edition)1976-03-31
123uhD8hNpb0m3iIZ18RHH5uLed ZeppelinPresence (Remastered)1976-03-31
133xiPkaTzfC48CcsXYgz5v0Led ZeppelinPresence1976-03-31
141lZahjeu4AhPkg9JARZr5FLed ZeppelinPhysical Graffiti1975-02-24
150ovKDDAHiTwg4AEjKdgdWoLed ZeppelinPhysical Graffiti1975-02-24
1626tH0kjUhkxBEd3ipGkx3YLed ZeppelinPhysical Graffiti (Deluxe Edition)1975-02-24
177gS8ozSkvPW3VBPLnXOZ7SLed ZeppelinHouses Of The Holy (Deluxe Edition)1973-03-28
180GqpoHJREPp0iuXK3HzrHkLed ZeppelinHouses Of The Holy (Remastered)1973-03-28
195phxHbK2GSr7hEu4orLywPLed ZeppelinHouses Of The Holy1973-03-28
2044Ig8dzqOkvkGDzaUof9lKLed ZeppelinLed Zeppelin IV (Deluxe Edition)1971-11-08
215EyIDBAqhnlkAHqvPRwdbXLed ZeppelinLed Zeppelin IV (Remastered Version)1971-11-08
224xGEiQ7La4japmGrREeLlwLed ZeppelinLed Zeppelin III (Remastered Deluxe Edition)1970-10-05
236P5QHz4XtxOmS5EuiGIPutLed ZeppelinLed Zeppelin III (Remastered)1970
2458N1RPC3B4mRkjBaug4u3XLed ZeppelinLed Zeppelin II (Remastered Deluxe Edition)1969-10-22
2558MQ0PLijVHePUonQlK76YLed ZeppelinLed Zeppelin II (Remastered)1969-10-22
2670lQYZtypdCALtFVlQAcvxLed ZeppelinLed Zeppelin II1969-10-22
2722BzOOZKYZ2jYYKLpOlnETLed ZeppelinLed Zeppelin (Remastered Deluxe Edition)1969-01-12
281J8QW9qsMLx3staWaHpQmULed ZeppelinLed Zeppelin (Remastered)1969-01-12
293ycjBixZf7S3WpC5WZhhUKLed ZeppelinLed Zeppelin1969-01-12
\n", "
" ], "text/plain": [ " _id artist_name \\\n", "0 6VH2op0GKIl3WNTbZmmcmI Led Zeppelin \n", "1 0kTe1sQd9yhDsdG2Zth7X6 Led Zeppelin \n", "2 4wExFfncaUIqSgoxnqa3Eh Led Zeppelin \n", "3 39BE5332FUDi2TIYD84hm2 Led Zeppelin \n", "4 56G9UnPmRifbubzPDJfAyd Led Zeppelin \n", "5 228mANuRrV20jS5DCA0eER Led Zeppelin \n", "6 5WRmchevXvk5eXPT0gEuTL Led Zeppelin \n", "7 1jCYuXr0Ujke24z1ymBr5U Led Zeppelin \n", "8 1W5CtQ7Ng0kP3lXyz7PIT2 Led Zeppelin \n", "9 4wVHvawxZy52Oemd4sGyUm Led Zeppelin \n", "10 4RlAfzZ4iwr4jQa7Ar9i6t Led Zeppelin \n", "11 6vSiY2OVanKKforfEOT2PD Led Zeppelin \n", "12 3uhD8hNpb0m3iIZ18RHH5u Led Zeppelin \n", "13 3xiPkaTzfC48CcsXYgz5v0 Led Zeppelin \n", "14 1lZahjeu4AhPkg9JARZr5F Led Zeppelin \n", "15 0ovKDDAHiTwg4AEjKdgdWo Led Zeppelin \n", "16 26tH0kjUhkxBEd3ipGkx3Y Led Zeppelin \n", "17 7gS8ozSkvPW3VBPLnXOZ7S Led Zeppelin \n", "18 0GqpoHJREPp0iuXK3HzrHk Led Zeppelin \n", "19 5phxHbK2GSr7hEu4orLywP Led Zeppelin \n", "20 44Ig8dzqOkvkGDzaUof9lK Led Zeppelin \n", "21 5EyIDBAqhnlkAHqvPRwdbX Led Zeppelin \n", "22 4xGEiQ7La4japmGrREeLlw Led Zeppelin \n", "23 6P5QHz4XtxOmS5EuiGIPut Led Zeppelin \n", "24 58N1RPC3B4mRkjBaug4u3X Led Zeppelin \n", "25 58MQ0PLijVHePUonQlK76Y Led Zeppelin \n", "26 70lQYZtypdCALtFVlQAcvx Led Zeppelin \n", "27 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin \n", "28 1J8QW9qsMLx3staWaHpQmU Led Zeppelin \n", "29 3ycjBixZf7S3WpC5WZhhUK Led Zeppelin \n", "\n", " name release_date \n", "0 The Complete BBC Sessions 2016-09-16 \n", "1 Celebration Day 2012-11-19 \n", "2 Mothership (Remastered) 2007 \n", "3 How The West Was Won 2003-05-27 \n", "4 Coda (Deluxe Edition) 1982-11-19 \n", "5 Coda (Remastered) 1982-11-19 \n", "6 Coda 1982-11-19 \n", "7 In Through The Out Door (Deluxe Edition) 1979-08-15 \n", "8 In Through The Out Door (Remastered) 1979-08-15 \n", "9 In Through The Out Door 1979-08-15 \n", "10 The Song Remains The Same 1976-09-28 \n", "11 Presence (Deluxe Edition) 1976-03-31 \n", "12 Presence (Remastered) 1976-03-31 \n", "13 Presence 1976-03-31 \n", "14 Physical Graffiti 1975-02-24 \n", "15 Physical Graffiti 1975-02-24 \n", "16 Physical Graffiti (Deluxe Edition) 1975-02-24 \n", "17 Houses Of The Holy (Deluxe Edition) 1973-03-28 \n", "18 Houses Of The Holy (Remastered) 1973-03-28 \n", "19 Houses Of The Holy 1973-03-28 \n", "20 Led Zeppelin IV (Deluxe Edition) 1971-11-08 \n", "21 Led Zeppelin IV (Remastered Version) 1971-11-08 \n", "22 Led Zeppelin III (Remastered Deluxe Edition) 1970-10-05 \n", "23 Led Zeppelin III (Remastered) 1970 \n", "24 Led Zeppelin II (Remastered Deluxe Edition) 1969-10-22 \n", "25 Led Zeppelin II (Remastered) 1969-10-22 \n", "26 Led Zeppelin II 1969-10-22 \n", "27 Led Zeppelin (Remastered Deluxe Edition) 1969-01-12 \n", "28 Led Zeppelin (Remastered) 1969-01-12 \n", "29 Led Zeppelin 1969-01-12 " ] }, "execution_count": 462, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame(list(albums.find({'artist_id': this_artist_id}, ['name', 'artist_name', 'release_date'])))" ] }, { "cell_type": "code", "execution_count": 463, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
" ], "text/plain": [ "Empty DataFrame\n", "Columns: []\n", "Index: []" ] }, "execution_count": 463, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame([a for a in albums.find({'artist_id': this_artist_id},\n", " ['name', 'artist_name', 'release_date'])\n", " if 'live' in a['name'].lower()])" ] }, { "cell_type": "code", "execution_count": 466, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idartist_namenamerelease_date
056G9UnPmRifbubzPDJfAydLed ZeppelinCoda (Deluxe Edition)1982-11-19
11jCYuXr0Ujke24z1ymBr5ULed ZeppelinIn Through The Out Door (Deluxe Edition)1979-08-15
26vSiY2OVanKKforfEOT2PDLed ZeppelinPresence (Deluxe Edition)1976-03-31
326tH0kjUhkxBEd3ipGkx3YLed ZeppelinPhysical Graffiti (Deluxe Edition)1975-02-24
47gS8ozSkvPW3VBPLnXOZ7SLed ZeppelinHouses Of The Holy (Deluxe Edition)1973-03-28
544Ig8dzqOkvkGDzaUof9lKLed ZeppelinLed Zeppelin IV (Deluxe Edition)1971-11-08
64xGEiQ7La4japmGrREeLlwLed ZeppelinLed Zeppelin III (Remastered Deluxe Edition)1970-10-05
758N1RPC3B4mRkjBaug4u3XLed ZeppelinLed Zeppelin II (Remastered Deluxe Edition)1969-10-22
822BzOOZKYZ2jYYKLpOlnETLed ZeppelinLed Zeppelin (Remastered Deluxe Edition)1969-01-12
\n", "
" ], "text/plain": [ " _id artist_name \\\n", "0 56G9UnPmRifbubzPDJfAyd Led Zeppelin \n", "1 1jCYuXr0Ujke24z1ymBr5U Led Zeppelin \n", "2 6vSiY2OVanKKforfEOT2PD Led Zeppelin \n", "3 26tH0kjUhkxBEd3ipGkx3Y Led Zeppelin \n", "4 7gS8ozSkvPW3VBPLnXOZ7S Led Zeppelin \n", "5 44Ig8dzqOkvkGDzaUof9lK Led Zeppelin \n", "6 4xGEiQ7La4japmGrREeLlw Led Zeppelin \n", "7 58N1RPC3B4mRkjBaug4u3X Led Zeppelin \n", "8 22BzOOZKYZ2jYYKLpOlnET Led Zeppelin \n", "\n", " name release_date \n", "0 Coda (Deluxe Edition) 1982-11-19 \n", "1 In Through The Out Door (Deluxe Edition) 1979-08-15 \n", "2 Presence (Deluxe Edition) 1976-03-31 \n", "3 Physical Graffiti (Deluxe Edition) 1975-02-24 \n", "4 Houses Of The Holy (Deluxe Edition) 1973-03-28 \n", "5 Led Zeppelin IV (Deluxe Edition) 1971-11-08 \n", "6 Led Zeppelin III (Remastered Deluxe Edition) 1970-10-05 \n", "7 Led Zeppelin II (Remastered Deluxe Edition) 1969-10-22 \n", "8 Led Zeppelin (Remastered Deluxe Edition) 1969-01-12 " ] }, "execution_count": 466, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame([a for a in albums.find({'artist_id': this_artist_id},\n", " ['name', 'artist_name', 'release_date'])\n", " if 'deluxe' in a['name'].lower()])" ] }, { "cell_type": "code", "execution_count": 477, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "200" ] }, "execution_count": 477, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tracks.find({'artist_id': this_artist_id,\n", " 'ignore': {'$exists': True}\n", " }).count()" ] }, { "cell_type": "code", "execution_count": 474, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 474, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tracks.update_many({'artist_id': this_artist_id},\n", " {'$unset': {'ignore': ''}})" ] }, { "cell_type": "code", "execution_count": 478, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'Celebration Day',\n", " 'Coda',\n", " 'Houses Of The Holy',\n", " 'How The West Was Won',\n", " 'Led Zeppelin',\n", " 'Led Zeppelin (Remastered Deluxe Edition)',\n", " 'Led Zeppelin II',\n", " 'Led Zeppelin II (Remastered Deluxe Edition)',\n", " 'Led Zeppelin III (Remastered Deluxe Edition)',\n", " 'Mothership (Remastered)',\n", " 'Presence',\n", " 'The Complete BBC Sessions',\n", " 'The Song Remains The Same'}" ] }, "execution_count": 478, "metadata": {}, "output_type": "execute_result" } ], "source": [ "set([a['name'] for t in tracks.find({'artist_id': this_artist_id,\n", " 'ignore': {'$exists': True}\n", " })\n", " for a in albums.find({'_id': t['album_id']})])" ] }, { "cell_type": "code", "execution_count": 460, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'_id': '6eGjyvl2LCovg5fstFxAga', 'name': 'Innuendo - Remastered 2011'},\n", " {'_id': '0lRGxO56Y6ARKEyvpJOX1N',\n", " 'name': \"I'm Going Slightly Mad - Remastered 2011\"},\n", " {'_id': '7vHSspNs8MPkOB2A3x9ARJ', 'name': 'Headlong - Remastered 2011'},\n", " {'_id': '0BkEev4JcKY0Hk54VWwtSO',\n", " 'name': \"I Can't Live With You - Remastered 2011\"},\n", " {'_id': '6vUbXquGK5Q3osX5wJXx8q', 'name': \"Don't Try So Hard\"},\n", " {'_id': '4srbcly4yWgbyvIww7Dunz',\n", " 'name': 'Ride The Wild Wind - Remastered 2011'},\n", " {'_id': '6YXCFjv7y12dX97iWcdzks',\n", " 'name': \"All God's People - Remastered 2011\"},\n", " {'_id': '6kvmyRoDEiRldGyVyt6zex', 'name': 'These Are The Days Of Our Lives'},\n", " {'_id': '0SkKJNTOTdOz0jl17Fm6Co', 'name': 'Delilah - Remastered 2011'},\n", " {'_id': '7BLZzMO6PMGqXSp56jz0Bb', 'name': 'The Hitman - Remastered 2011'},\n", " {'_id': '6leGGL1jleM6GOJ9CJLkgr',\n", " 'name': 'The Show Must Go On - Remastered 2011'},\n", " {'_id': '2Jd320a4gWyq7b5id234rh',\n", " 'name': \"I Can't Live With You - 1997 Rocks Retake\"},\n", " {'_id': '70zIlBRaU4uKeShAv6QQ3Q', 'name': 'Lost Opportunity - B-Side'},\n", " {'_id': '2wm2c4wARmRyQ7y92Jz8ak',\n", " 'name': 'Ride The Wild Wind - Early Version With Guide Vocal'},\n", " {'_id': '5lodcyh28Gx6nY80qWAGTK', 'name': \"I'm Going Slightly Mad - Mad Mix\"},\n", " {'_id': '0F66rb8Of8ulhXQQ0kI8Yk',\n", " 'name': 'Headlong - Embryo With Guide Vocal'},\n", " {'_id': '0g7AkY1T1lt9kYuBUPOv1I', 'name': 'Bijou'}]" ] }, "execution_count": 460, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(tracks.find({'album_id': '4May3oxm4OfBv9QwkXylAC'}, ['name']))" ] }, { "cell_type": "code", "execution_count": 468, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "[{'_id': '6VH2op0GKIl3WNTbZmmcmI', 'name': 'The Complete BBC Sessions'},\n", " {'_id': '0kTe1sQd9yhDsdG2Zth7X6', 'name': 'Celebration Day'},\n", " {'_id': '4wExFfncaUIqSgoxnqa3Eh', 'name': 'Mothership (Remastered)'},\n", " {'_id': '39BE5332FUDi2TIYD84hm2', 'name': 'How The West Was Won'},\n", " {'_id': '56G9UnPmRifbubzPDJfAyd', 'name': 'Coda (Deluxe Edition)'},\n", " {'_id': '228mANuRrV20jS5DCA0eER', 'name': 'Coda (Remastered)'},\n", " {'_id': '5WRmchevXvk5eXPT0gEuTL', 'name': 'Coda'},\n", " {'_id': '1jCYuXr0Ujke24z1ymBr5U',\n", " 'name': 'In Through The Out Door (Deluxe Edition)'},\n", " {'_id': '1W5CtQ7Ng0kP3lXyz7PIT2',\n", " 'name': 'In Through The Out Door (Remastered)'},\n", " {'_id': '4wVHvawxZy52Oemd4sGyUm', 'name': 'In Through The Out Door'},\n", " {'_id': '4RlAfzZ4iwr4jQa7Ar9i6t', 'name': 'The Song Remains The Same'},\n", " {'_id': '6vSiY2OVanKKforfEOT2PD', 'name': 'Presence (Deluxe Edition)'},\n", " {'_id': '3uhD8hNpb0m3iIZ18RHH5u', 'name': 'Presence (Remastered)'},\n", " {'_id': '3xiPkaTzfC48CcsXYgz5v0', 'name': 'Presence'},\n", " {'_id': '1lZahjeu4AhPkg9JARZr5F', 'name': 'Physical Graffiti'},\n", " {'_id': '0ovKDDAHiTwg4AEjKdgdWo', 'name': 'Physical Graffiti'},\n", " {'_id': '26tH0kjUhkxBEd3ipGkx3Y',\n", " 'name': 'Physical Graffiti (Deluxe Edition)'},\n", " {'_id': '7gS8ozSkvPW3VBPLnXOZ7S',\n", " 'name': 'Houses Of The Holy (Deluxe Edition)'},\n", " {'_id': '0GqpoHJREPp0iuXK3HzrHk', 'name': 'Houses Of The Holy (Remastered)'},\n", " {'_id': '5phxHbK2GSr7hEu4orLywP', 'name': 'Houses Of The Holy'},\n", " {'_id': '44Ig8dzqOkvkGDzaUof9lK', 'name': 'Led Zeppelin IV (Deluxe Edition)'},\n", " {'_id': '5EyIDBAqhnlkAHqvPRwdbX',\n", " 'name': 'Led Zeppelin IV (Remastered Version)'},\n", " {'_id': '4xGEiQ7La4japmGrREeLlw',\n", " 'name': 'Led Zeppelin III (Remastered Deluxe Edition)'},\n", " {'_id': '6P5QHz4XtxOmS5EuiGIPut', 'name': 'Led Zeppelin III (Remastered)'},\n", " {'_id': '58N1RPC3B4mRkjBaug4u3X',\n", " 'name': 'Led Zeppelin II (Remastered Deluxe Edition)'},\n", " {'_id': '58MQ0PLijVHePUonQlK76Y', 'name': 'Led Zeppelin II (Remastered)'},\n", " {'_id': '70lQYZtypdCALtFVlQAcvx', 'name': 'Led Zeppelin II'},\n", " {'_id': '22BzOOZKYZ2jYYKLpOlnET',\n", " 'name': 'Led Zeppelin (Remastered Deluxe Edition)'},\n", " {'_id': '1J8QW9qsMLx3staWaHpQmU', 'name': 'Led Zeppelin (Remastered)'},\n", " {'_id': '3ycjBixZf7S3WpC5WZhhUK', 'name': 'Led Zeppelin'}]" ] }, "execution_count": 468, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(albums.find({'artist_id': this_artist_id}, ['name']))" ] }, { "cell_type": "code", "execution_count": 476, "metadata": {}, "outputs": [], "source": [ "ignore_albums = ['0kTe1sQd9yhDsdG2Zth7X6',\n", " '39BE5332FUDi2TIYD84hm2',\n", " '4RlAfzZ4iwr4jQa7Ar9i6t',\n", " '6VH2op0GKIl3WNTbZmmcmI',\n", " '4wExFfncaUIqSgoxnqa3Eh',\n", "'5WRmchevXvk5eXPT0gEuTL',\n", "'3xiPkaTzfC48CcsXYgz5v0',\n", "'5phxHbK2GSr7hEu4orLywP',\n", "'70lQYZtypdCALtFVlQAcvx',\n", "'3ycjBixZf7S3WpC5WZhhUK'\n", " ]\n", "\n", "\n", "for a in ignore_albums:\n", " tracks.update_many({'album_id': a}, {'$set': {'ignore': True}})\n", "\n", "for a in albums.find({'artist_id': this_artist_id}, ['name']):\n", " if 'live' in a['name'].lower():\n", " tracks.update_many({'album_id': a['_id']}, {'$set': {'ignore': True}})\n", " \n", "for a in albums.find({'artist_id': this_artist_id}, ['name']):\n", " if 'deluxe' in a['name'].lower() and 'remaster' in a['name'].lower():\n", " tracks.update_many({'album_id': a['_id']}, {'$set': {'ignore': True}}) " ] }, { "cell_type": "code", "execution_count": 470, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['0kTe1sQd9yhDsdG2Zth7X6',\n", " '39BE5332FUDi2TIYD84hm2',\n", " '4RlAfzZ4iwr4jQa7Ar9i6t',\n", " '6VH2op0GKIl3WNTbZmmcmI',\n", " '4wExFfncaUIqSgoxnqa3Eh',\n", " '5WRmchevXvk5eXPT0gEuTL',\n", " '3xiPkaTzfC48CcsXYgz5v0',\n", " '5phxHbK2GSr7hEu4orLywP',\n", " '70lQYZtypdCALtFVlQAcvx',\n", " '3ycjBixZf7S3WpC5WZhhUK']" ] }, "execution_count": 470, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ignore_albums" ] }, { "cell_type": "code", "execution_count": 250, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "dict_keys(['type', 'available_markets', 'tracks', 'id', '_id', 'uri', 'album_type', 'artist_name', 'copyrights', 'release_date', 'popularity', 'images', 'external_ids', 'release_date_precision', 'artist_id', 'label', 'artists', 'name', 'genres', 'external_urls', 'href'])" ] }, "execution_count": 250, "metadata": {}, "output_type": "execute_result" } ], "source": [ "albums.find_one().keys()" ] }, { "cell_type": "code", "execution_count": 196, "metadata": {}, "outputs": [], "source": [ "pd.DataFrame(list(tracks.find({'album_id': '5ju5Ouzan3QwXqQt1Tihbh'}, ['name', 'ctitle'])))" ] }, { "cell_type": "code", "execution_count": 370, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('1lZahjeu4AhPkg9JARZr5F',\n", " ['bronyraur',\n", " 'down by the seaside',\n", " 'ten years gone',\n", " 'night flight',\n", " 'the wanton song',\n", " 'boogie with stu',\n", " 'black country woman',\n", " 'sick again',\n", " 'custard pie',\n", " 'the rover',\n", " 'in my time of dying',\n", " 'houses of the holy',\n", " 'trampled under foot',\n", " 'kashmir',\n", " 'in the light']),\n", " ('0ovKDDAHiTwg4AEjKdgdWo',\n", " ['custard pie',\n", " 'the rover',\n", " 'in my time of dying',\n", " 'houses of the holy',\n", " 'trampled under foot',\n", " 'kashmir',\n", " 'in the light',\n", " 'bronyraur',\n", " 'down by the seaside',\n", " 'ten years gone',\n", " 'night flight',\n", " 'the wanton song',\n", " 'boogie with stu',\n", " 'black country woman',\n", " 'sick again'])]" ] }, "execution_count": 370, "metadata": {}, "output_type": "execute_result" } ], "source": [ "[(a, [t['ctitle'] for t in tracks.find({'album_id': a})]) \n", " for a in '1lZahjeu4AhPkg9JARZr5F 0ovKDDAHiTwg4AEjKdgdWo'.split()]" ] }, { "cell_type": "code", "execution_count": 427, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ctitlet_namett_albtt_name
0keep yourself aliveKeep Yourself Alive - Remastered 2011Queen Rock MontrealKeep Yourself Alive - Live At The Montreal For...
1keep yourself aliveKeep Yourself Alive - Remastered 2011On AirKeep Yourself Alive - BBC Session / February 5...
2keep yourself aliveKeep Yourself Alive - Remastered 2011On AirKeep Yourself Alive - BBC Session / July 25th ...
3keep yourself aliveKeep Yourself Alive - Remastered 2011A Night At The OdeonKeep Yourself Alive - Live At The Hammersmith ...
4keep yourself aliveKeep Yourself Alive - Remastered 2011Live At The RainbowKeep Yourself Alive - Live At The Rainbow, Lon...
5keep yourself aliveKeep Yourself Alive - Remastered 2011Live At The Rainbow (Deluxe)Keep Yourself Alive - Live At The Rainbow, Lon...
6keep yourself aliveKeep Yourself Alive - Remastered 2011Live At The Rainbow (Deluxe)Keep Yourself Alive - Live At The Rainbow, Lon...
7keep yourself aliveKeep Yourself Alive - Remastered 2011Live KillersKeep Yourself Alive - Live, European Tour / 1979
8keep yourself aliveKeep Yourself Alive - Remastered 2011Queen (2011 Remaster)Keep Yourself Alive - Remastered 2011
9doing alrightDoing Alright - Remastered 2011Queen (2011 Remaster)Doing Alright - Remastered 2011
10great king ratGreat King Rat - Remastered 2011On AirGreat King Rat - BBC Session / December 3rd 19...
11great king ratGreat King Rat - Remastered 2011Live At The Rainbow (Deluxe)Great King Rat - Live At The Rainbow, London /...
12great king ratGreat King Rat - Remastered 2011Queen (2011 Remaster)Great King Rat - Remastered 2011
13my fairy kingMy Fairy King - Remastered 2011On AirMy Fairy King - BBC Session / February 5th 197...
14my fairy kingMy Fairy King - Remastered 2011Queen (2011 Remaster)My Fairy King - Remastered 2011
15liarLiar - Remastered 2011On AirLiar - BBC Session / February 5th 1973, Langha...
16liarLiar - Remastered 2011On AirLiar - BBC Session / July 25th 1973, Langham 1...
17liarLiar - Remastered 2011A Night At The OdeonLiar - Live At The Hammersmith Odeon, London /...
18liarLiar - Remastered 2011Live At The RainbowLiar - Live At The Rainbow, London / November ...
19liarLiar - Remastered 2011Live At The Rainbow (Deluxe)Liar - Live At The Rainbow, London / March 1974
20liarLiar - Remastered 2011Live At The Rainbow (Deluxe)Liar - Live At The Rainbow, London / November ...
21liarLiar - Remastered 2011Queen (2011 Remaster)Liar - Remastered 2011
22the night comes downThe Night Comes Down - Remastered 2011Queen (2011 Remaster)The Night Comes Down - Remastered 2011
23modern times rock n rollModern Times Rock 'N Roll - Remastered 2011On AirModern Times Rock 'n' Roll - BBC Session / Dec...
24modern times rock n rollModern Times Rock 'N Roll - Remastered 2011On AirModern Times Rock 'n' Roll - BBC Session / Apr...
25modern times rock n rollModern Times Rock 'N Roll - Remastered 2011Live At The RainbowModern Times Rock 'n' Roll - Live At The Rainb...
26modern times rock n rollModern Times Rock 'N Roll - Remastered 2011Live At The Rainbow (Deluxe)Modern Times Rock 'n' Roll - Live At The Rainb...
27modern times rock n rollModern Times Rock 'N Roll - Remastered 2011Live At The Rainbow (Deluxe)Modern Times Rock 'n' Roll - Live At The Rainb...
28modern times rock n rollModern Times Rock 'N Roll - Remastered 2011Queen (2011 Remaster)Modern Times Rock 'N Roll - Remastered 2011
29son and daughterSon And Daughter - Remastered 2011On AirSon And Daughter - BBC Session / July 25th 197...
...............
38seven seas of rhyeSeven Seas Of Rhye - Remastered 2011A Night At The OdeonSeven Seas Of Rhye - Live At The Hammersmith O...
39seven seas of rhyeSeven Seas Of Rhye - Remastered 2011Live At The RainbowSeven Seas Of Rhye - Live At The Rainbow, Lond...
40seven seas of rhyeSeven Seas Of Rhye - Remastered 2011Live At The Rainbow (Deluxe)Seven Seas Of Rhye - Live At The Rainbow, Lond...
41seven seas of rhyeSeven Seas Of Rhye - Remastered 2011Live At The Rainbow (Deluxe)Seven Seas Of Rhye - Live At The Rainbow, Lond...
42seven seas of rhyeSeven Seas Of Rhye - Remastered 2011Hungarian Rhapsody (Live In Budapest / 1986)Seven Seas Of Rhye - Live
43seven seas of rhyeSeven Seas Of Rhye - Remastered 2011Queen II (2011 Remaster)Seven Seas Of Rhye - Remastered 2011
44seven seas of rhyeSeven Seas Of Rhye - Remastered 2011Queen II (Deluxe Edition 2011 Remaster)Seven Seas Of Rhye - Remastered 2011
45seven seas of rhyeSeven Seas Of Rhye - Remastered 2011Queen II (Deluxe Edition 2011 Remaster)Seven Seas Of Rhye - Instrumental Mix 2011
46seven seas of rhyeSeven Seas Of Rhye - Remastered 2011Queen (2011 Remaster)Seven Seas Of Rhye - Remastered 2011
47keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...Queen Rock MontrealKeep Yourself Alive - Live At The Montreal For...
48keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...On AirKeep Yourself Alive - BBC Session / February 5...
49keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...On AirKeep Yourself Alive - BBC Session / July 25th ...
50keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...A Night At The OdeonKeep Yourself Alive - Live At The Hammersmith ...
51keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...Live At The RainbowKeep Yourself Alive - Live At The Rainbow, Lon...
52keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...Live At The Rainbow (Deluxe)Keep Yourself Alive - Live At The Rainbow, Lon...
53keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...Live At The Rainbow (Deluxe)Keep Yourself Alive - Live At The Rainbow, Lon...
54keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...Live KillersKeep Yourself Alive - Live, European Tour / 1979
55keep yourself aliveKeep Yourself Alive - De Lane Lea Demo / Decem...Queen (2011 Remaster)Keep Yourself Alive - Remastered 2011
56the night comes downThe Night Comes Down - De Lane Lea Demo / Dece...Queen (2011 Remaster)The Night Comes Down - Remastered 2011
57great king ratGreat King Rat - De Lane Lea Demo / December 1971On AirGreat King Rat - BBC Session / December 3rd 19...
58great king ratGreat King Rat - De Lane Lea Demo / December 1971Live At The Rainbow (Deluxe)Great King Rat - Live At The Rainbow, London /...
59great king ratGreat King Rat - De Lane Lea Demo / December 1971Queen (2011 Remaster)Great King Rat - Remastered 2011
60jesusJesus - De Lane Lea Demo / December 1971Queen (2011 Remaster)Jesus - Remastered 2011
61liarLiar - De Lane Lea Demo / December 1971On AirLiar - BBC Session / February 5th 1973, Langha...
62liarLiar - De Lane Lea Demo / December 1971On AirLiar - BBC Session / July 25th 1973, Langham 1...
63liarLiar - De Lane Lea Demo / December 1971A Night At The OdeonLiar - Live At The Hammersmith Odeon, London /...
64liarLiar - De Lane Lea Demo / December 1971Live At The RainbowLiar - Live At The Rainbow, London / November ...
65liarLiar - De Lane Lea Demo / December 1971Live At The Rainbow (Deluxe)Liar - Live At The Rainbow, London / March 1974
66liarLiar - De Lane Lea Demo / December 1971Live At The Rainbow (Deluxe)Liar - Live At The Rainbow, London / November ...
67liarLiar - De Lane Lea Demo / December 1971Queen (2011 Remaster)Liar - Remastered 2011
\n", "

68 rows × 4 columns

\n", "
" ], "text/plain": [ " ctitle \\\n", "0 keep yourself alive \n", "1 keep yourself alive \n", "2 keep yourself alive \n", "3 keep yourself alive \n", "4 keep yourself alive \n", "5 keep yourself alive \n", "6 keep yourself alive \n", "7 keep yourself alive \n", "8 keep yourself alive \n", "9 doing alright \n", "10 great king rat \n", "11 great king rat \n", "12 great king rat \n", "13 my fairy king \n", "14 my fairy king \n", "15 liar \n", "16 liar \n", "17 liar \n", "18 liar \n", "19 liar \n", "20 liar \n", "21 liar \n", "22 the night comes down \n", "23 modern times rock n roll \n", "24 modern times rock n roll \n", "25 modern times rock n roll \n", "26 modern times rock n roll \n", "27 modern times rock n roll \n", "28 modern times rock n roll \n", "29 son and daughter \n", ".. ... \n", "38 seven seas of rhye \n", "39 seven seas of rhye \n", "40 seven seas of rhye \n", "41 seven seas of rhye \n", "42 seven seas of rhye \n", "43 seven seas of rhye \n", "44 seven seas of rhye \n", "45 seven seas of rhye \n", "46 seven seas of rhye \n", "47 keep yourself alive \n", "48 keep yourself alive \n", "49 keep yourself alive \n", "50 keep yourself alive \n", "51 keep yourself alive \n", "52 keep yourself alive \n", "53 keep yourself alive \n", "54 keep yourself alive \n", "55 keep yourself alive \n", "56 the night comes down \n", "57 great king rat \n", "58 great king rat \n", "59 great king rat \n", "60 jesus \n", "61 liar \n", "62 liar \n", "63 liar \n", "64 liar \n", "65 liar \n", "66 liar \n", "67 liar \n", "\n", " t_name \\\n", "0 Keep Yourself Alive - Remastered 2011 \n", "1 Keep Yourself Alive - Remastered 2011 \n", "2 Keep Yourself Alive - Remastered 2011 \n", "3 Keep Yourself Alive - Remastered 2011 \n", "4 Keep Yourself Alive - Remastered 2011 \n", "5 Keep Yourself Alive - Remastered 2011 \n", "6 Keep Yourself Alive - Remastered 2011 \n", "7 Keep Yourself Alive - Remastered 2011 \n", "8 Keep Yourself Alive - Remastered 2011 \n", "9 Doing Alright - Remastered 2011 \n", "10 Great King Rat - Remastered 2011 \n", "11 Great King Rat - Remastered 2011 \n", "12 Great King Rat - Remastered 2011 \n", "13 My Fairy King - Remastered 2011 \n", "14 My Fairy King - Remastered 2011 \n", "15 Liar - Remastered 2011 \n", "16 Liar - Remastered 2011 \n", "17 Liar - Remastered 2011 \n", "18 Liar - Remastered 2011 \n", "19 Liar - Remastered 2011 \n", "20 Liar - Remastered 2011 \n", "21 Liar - Remastered 2011 \n", "22 The Night Comes Down - Remastered 2011 \n", "23 Modern Times Rock 'N Roll - Remastered 2011 \n", "24 Modern Times Rock 'N Roll - Remastered 2011 \n", "25 Modern Times Rock 'N Roll - Remastered 2011 \n", "26 Modern Times Rock 'N Roll - Remastered 2011 \n", "27 Modern Times Rock 'N Roll - Remastered 2011 \n", "28 Modern Times Rock 'N Roll - Remastered 2011 \n", "29 Son And Daughter - Remastered 2011 \n", ".. ... \n", "38 Seven Seas Of Rhye - Remastered 2011 \n", "39 Seven Seas Of Rhye - Remastered 2011 \n", "40 Seven Seas Of Rhye - Remastered 2011 \n", "41 Seven Seas Of Rhye - Remastered 2011 \n", "42 Seven Seas Of Rhye - Remastered 2011 \n", "43 Seven Seas Of Rhye - Remastered 2011 \n", "44 Seven Seas Of Rhye - Remastered 2011 \n", "45 Seven Seas Of Rhye - Remastered 2011 \n", "46 Seven Seas Of Rhye - Remastered 2011 \n", "47 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "48 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "49 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "50 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "51 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "52 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "53 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "54 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "55 Keep Yourself Alive - De Lane Lea Demo / Decem... \n", "56 The Night Comes Down - De Lane Lea Demo / Dece... \n", "57 Great King Rat - De Lane Lea Demo / December 1971 \n", "58 Great King Rat - De Lane Lea Demo / December 1971 \n", "59 Great King Rat - De Lane Lea Demo / December 1971 \n", "60 Jesus - De Lane Lea Demo / December 1971 \n", "61 Liar - De Lane Lea Demo / December 1971 \n", "62 Liar - De Lane Lea Demo / December 1971 \n", "63 Liar - De Lane Lea Demo / December 1971 \n", "64 Liar - De Lane Lea Demo / December 1971 \n", "65 Liar - De Lane Lea Demo / December 1971 \n", "66 Liar - De Lane Lea Demo / December 1971 \n", "67 Liar - De Lane Lea Demo / December 1971 \n", "\n", " tt_alb \\\n", "0 Queen Rock Montreal \n", "1 On Air \n", "2 On Air \n", "3 A Night At The Odeon \n", "4 Live At The Rainbow \n", "5 Live At The Rainbow (Deluxe) \n", "6 Live At The Rainbow (Deluxe) \n", "7 Live Killers \n", "8 Queen (2011 Remaster) \n", "9 Queen (2011 Remaster) \n", "10 On Air \n", "11 Live At The Rainbow (Deluxe) \n", "12 Queen (2011 Remaster) \n", "13 On Air \n", "14 Queen (2011 Remaster) \n", "15 On Air \n", "16 On Air \n", "17 A Night At The Odeon \n", "18 Live At The Rainbow \n", "19 Live At The Rainbow (Deluxe) \n", "20 Live At The Rainbow (Deluxe) \n", "21 Queen (2011 Remaster) \n", "22 Queen (2011 Remaster) \n", "23 On Air \n", "24 On Air \n", "25 Live At The Rainbow \n", "26 Live At The Rainbow (Deluxe) \n", "27 Live At The Rainbow (Deluxe) \n", "28 Queen (2011 Remaster) \n", "29 On Air \n", ".. ... \n", "38 A Night At The Odeon \n", "39 Live At The Rainbow \n", "40 Live At The Rainbow (Deluxe) \n", "41 Live At The Rainbow (Deluxe) \n", "42 Hungarian Rhapsody (Live In Budapest / 1986) \n", "43 Queen II (2011 Remaster) \n", "44 Queen II (Deluxe Edition 2011 Remaster) \n", "45 Queen II (Deluxe Edition 2011 Remaster) \n", "46 Queen (2011 Remaster) \n", "47 Queen Rock Montreal \n", "48 On Air \n", "49 On Air \n", "50 A Night At The Odeon \n", "51 Live At The Rainbow \n", "52 Live At The Rainbow (Deluxe) \n", "53 Live At The Rainbow (Deluxe) \n", "54 Live Killers \n", "55 Queen (2011 Remaster) \n", "56 Queen (2011 Remaster) \n", "57 On Air \n", "58 Live At The Rainbow (Deluxe) \n", "59 Queen (2011 Remaster) \n", "60 Queen (2011 Remaster) \n", "61 On Air \n", "62 On Air \n", "63 A Night At The Odeon \n", "64 Live At The Rainbow \n", "65 Live At The Rainbow (Deluxe) \n", "66 Live At The Rainbow (Deluxe) \n", "67 Queen (2011 Remaster) \n", "\n", " tt_name \n", "0 Keep Yourself Alive - Live At The Montreal For... \n", "1 Keep Yourself Alive - BBC Session / February 5... \n", "2 Keep Yourself Alive - BBC Session / July 25th ... \n", "3 Keep Yourself Alive - Live At The Hammersmith ... \n", "4 Keep Yourself Alive - Live At The Rainbow, Lon... \n", "5 Keep Yourself Alive - Live At The Rainbow, Lon... \n", "6 Keep Yourself Alive - Live At The Rainbow, Lon... \n", "7 Keep Yourself Alive - Live, European Tour / 1979 \n", "8 Keep Yourself Alive - Remastered 2011 \n", "9 Doing Alright - Remastered 2011 \n", "10 Great King Rat - BBC Session / December 3rd 19... \n", "11 Great King Rat - Live At The Rainbow, London /... \n", "12 Great King Rat - Remastered 2011 \n", "13 My Fairy King - BBC Session / February 5th 197... \n", "14 My Fairy King - Remastered 2011 \n", "15 Liar - BBC Session / February 5th 1973, Langha... \n", "16 Liar - BBC Session / July 25th 1973, Langham 1... \n", "17 Liar - Live At The Hammersmith Odeon, London /... \n", "18 Liar - Live At The Rainbow, London / November ... \n", "19 Liar - Live At The Rainbow, London / March 1974 \n", "20 Liar - Live At The Rainbow, London / November ... \n", "21 Liar - Remastered 2011 \n", "22 The Night Comes Down - Remastered 2011 \n", "23 Modern Times Rock 'n' Roll - BBC Session / Dec... \n", "24 Modern Times Rock 'n' Roll - BBC Session / Apr... \n", "25 Modern Times Rock 'n' Roll - Live At The Rainb... \n", "26 Modern Times Rock 'n' Roll - Live At The Rainb... \n", "27 Modern Times Rock 'n' Roll - Live At The Rainb... \n", "28 Modern Times Rock 'N Roll - Remastered 2011 \n", "29 Son And Daughter - BBC Session / July 25th 197... \n", ".. ... \n", "38 Seven Seas Of Rhye - Live At The Hammersmith O... \n", "39 Seven Seas Of Rhye - Live At The Rainbow, Lond... \n", "40 Seven Seas Of Rhye - Live At The Rainbow, Lond... \n", "41 Seven Seas Of Rhye - Live At The Rainbow, Lond... \n", "42 Seven Seas Of Rhye - Live \n", "43 Seven Seas Of Rhye - Remastered 2011 \n", "44 Seven Seas Of Rhye - Remastered 2011 \n", "45 Seven Seas Of Rhye - Instrumental Mix 2011 \n", "46 Seven Seas Of Rhye - Remastered 2011 \n", "47 Keep Yourself Alive - Live At The Montreal For... \n", "48 Keep Yourself Alive - BBC Session / February 5... \n", "49 Keep Yourself Alive - BBC Session / July 25th ... \n", "50 Keep Yourself Alive - Live At The Hammersmith ... \n", "51 Keep Yourself Alive - Live At The Rainbow, Lon... \n", "52 Keep Yourself Alive - Live At The Rainbow, Lon... \n", "53 Keep Yourself Alive - Live At The Rainbow, Lon... \n", "54 Keep Yourself Alive - Live, European Tour / 1979 \n", "55 Keep Yourself Alive - Remastered 2011 \n", "56 The Night Comes Down - Remastered 2011 \n", "57 Great King Rat - BBC Session / December 3rd 19... \n", "58 Great King Rat - Live At The Rainbow, London /... \n", "59 Great King Rat - Remastered 2011 \n", "60 Jesus - Remastered 2011 \n", "61 Liar - BBC Session / February 5th 1973, Langha... \n", "62 Liar - BBC Session / July 25th 1973, Langham 1... \n", "63 Liar - Live At The Hammersmith Odeon, London /... \n", "64 Liar - Live At The Rainbow, London / November ... \n", "65 Liar - Live At The Rainbow, London / March 1974 \n", "66 Liar - Live At The Rainbow, London / November ... \n", "67 Liar - Remastered 2011 \n", "\n", "[68 rows x 4 columns]" ] }, "execution_count": 427, "metadata": {}, "output_type": "execute_result" } ], "source": [ "al_id = '6YwX6crCLDQTE8ZbtdzFUh'\n", "\n", "\n", "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': al_id}, ['name', 'ctitle'])\n", " for tt in tracks.find({'ctitle': t['ctitle']}, ['name', 'ctitle', 'album.name', 'album_id'])\n", " if tt['album_id'] != al_id))" ] }, { "cell_type": "code", "execution_count": 91, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ctitlet_name
0from me to youFrom Me To You - Mono / Remastered
1i feel fineI Feel Fine - Remastered 2015
2day tripperDay Tripper - Remastered 2015
3we can work it outWe Can Work It Out - Remastered 2015
4paperback writerPaperback Writer - Remastered 2015
5lady madonnaLady Madonna - Remastered 2015
6hey judeHey Jude - Remastered 2015
7the ballad of john and yokoThe Ballad Of John And Yoko - Remastered 2015
\n", "
" ], "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": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idctitlename
04edArG2VehvJdwOZfYOxtKtwist and shoutTwist And Shout - Live / Remastered
1150EAeMGWJRubuH8zyx7h8shes a womanShe's A Woman - Live / Remastered
21fVeHYkyMxrjbjRAD9uWsZdizzy miss lizzyDizzy Miss Lizzy - Live / Remastered
30GRplBEB2FWCKutwMmS6nYticket to rideTicket To Ride - Live / Remastered
41eVymk74iroqhsZxm0Vy3gcant buy me loveCan't Buy Me Love - Live / Remastered
52p5a9gu6NECVSvBtGSU1vmthings we said todayThings We Said Today - Live / Remastered
61HyLh5cctOnP186CBi8bhmroll over beethovenRoll Over Beethoven - Live / Remastered
77fZEWm7TAL2oZDyiYrrgnkboysBoys - Live / Remastered
821nhooOxso7CCoHPE73w4La hard days nightA Hard Day's Night - Live / Remastered
91alcPfZWUHh01l4Fnoo5JthelpHelp! - Live / Remastered
1024gUDXSQysdnTaRpbWtYlKall my lovingAll My Loving - Live / Remastered
112VmFFbXSJzYxzEJSAeI0lMshe loves youShe Loves You - Live / Remastered
126b8lhQ86u5MddlmXulslpDlong tall sallyLong Tall Sally - Live / Remastered
131oKfZ5MTCSrv07hsHqJ0JSyou cant do thatYou Can't Do That - Live / Bonus Track
1404gBqA2mubcTgFqL9Domlji want to hold your handI Want To Hold Your Hand - Live / Bonus Track
1579QDgDoBbS7pCrOjIH7ByAeverybodys trying to be my babyEverybody’s Trying To Be My Baby - Live / Bonu...
161yV2I5c6efVSqSiuv9H2ADbabys in blackBaby's In Black - Live / Bonus Track
\n", "
" ], "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": [ "" ] }, "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": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idctitleignorename
04edArG2VehvJdwOZfYOxtKtwist and shoutTrueTwist And Shout - Live / Remastered
1150EAeMGWJRubuH8zyx7h8shes a womanTrueShe's A Woman - Live / Remastered
21fVeHYkyMxrjbjRAD9uWsZdizzy miss lizzyTrueDizzy Miss Lizzy - Live / Remastered
30GRplBEB2FWCKutwMmS6nYticket to rideTrueTicket To Ride - Live / Remastered
41eVymk74iroqhsZxm0Vy3gcant buy me loveTrueCan't Buy Me Love - Live / Remastered
52p5a9gu6NECVSvBtGSU1vmthings we said todayTrueThings We Said Today - Live / Remastered
61HyLh5cctOnP186CBi8bhmroll over beethovenTrueRoll Over Beethoven - Live / Remastered
77fZEWm7TAL2oZDyiYrrgnkboysTrueBoys - Live / Remastered
821nhooOxso7CCoHPE73w4La hard days nightTrueA Hard Day's Night - Live / Remastered
91alcPfZWUHh01l4Fnoo5JthelpTrueHelp! - Live / Remastered
1024gUDXSQysdnTaRpbWtYlKall my lovingTrueAll My Loving - Live / Remastered
112VmFFbXSJzYxzEJSAeI0lMshe loves youTrueShe Loves You - Live / Remastered
126b8lhQ86u5MddlmXulslpDlong tall sallyTrueLong Tall Sally - Live / Remastered
131oKfZ5MTCSrv07hsHqJ0JSyou cant do thatTrueYou Can't Do That - Live / Bonus Track
1404gBqA2mubcTgFqL9Domlji want to hold your handTrueI Want To Hold Your Hand - Live / Bonus Track
1579QDgDoBbS7pCrOjIH7ByAeverybodys trying to be my babyTrueEverybody’s Trying To Be My Baby - Live / Bonu...
161yV2I5c6efVSqSiuv9H2ADbabys in blackTrueBaby's In Black - Live / Bonus Track
\n", "
" ], "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": 95, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# pd.DataFrame(list(tracks.find({'album_id': '5XfJmldgWzrc1AIdbBaVZn'}, ['name', 'ctitle', 'ignore'])))" ] }, { "cell_type": "code", "execution_count": 96, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ctitlet_namett_albtt_name
0twist and shoutTwist And Shout - Live / RemasteredPlease Please Me (Remastered)Twist And Shout - Remastered 2009
1dizzy miss lizzyDizzy Miss Lizzy - Live / RemasteredHelp! (Remastered)Dizzy Miss Lizzy - Remastered
2ticket to rideTicket To Ride - Live / Remastered1 (Remastered)Ticket To Ride - Remastered 2015
3ticket to rideTicket To Ride - Live / RemasteredHelp! (Remastered)Ticket To Ride - Remastered
4cant buy me loveCan't Buy Me Love - Live / Remastered1 (Remastered)Can't Buy Me Love - Remastered 2015
5cant buy me loveCan't Buy Me Love - Live / RemasteredA Hard Day's Night (Remastered)Can't Buy Me Love - Remastered
6things we said todayThings We Said Today - Live / RemasteredA Hard Day's Night (Remastered)Things We Said Today - Remastered
7roll over beethovenRoll Over Beethoven - Live / RemasteredWith The Beatles (Remastered)Roll Over Beethoven - Remastered
8roll over beethovenRoll Over Beethoven - Live / RemasteredOn Air (Deluxe)Roll Over Beethoven - Saturday Club / 1963
9boysBoys - Live / RemasteredPlease Please Me (Remastered)Boys - Remastered 2009
10a hard days nightA Hard Day's Night - Live / Remastered1 (Remastered)A Hard Day's Night - Remastered 2015
11a hard days nightA Hard Day's Night - Live / RemasteredA Hard Day's Night (Remastered)A Hard Day's Night - Remastered
12helpHelp! - Live / Remastered1 (Remastered)Help! - Remastered 2015
13helpHelp! - Live / RemasteredHelp! (Remastered)Help! - Remastered
14all my lovingAll My Loving - Live / RemasteredWith The Beatles (Remastered)All My Loving - Remastered
15she loves youShe Loves You - Live / Remastered1 (Remastered)She Loves You - Mono / Remastered
16you cant do thatYou Can't Do That - Live / Bonus TrackA Hard Day's Night (Remastered)You Can't Do That - Remastered
17i want to hold your handI Want To Hold Your Hand - Live / Bonus Track1 (Remastered)I Want To Hold Your Hand - Remastered 2015
18everybodys trying to be my babyEverybody’s Trying To Be My Baby - Live / Bonu...Beatles For Sale (Remastered)Everybody's Trying To Be My Baby - Remastered
19babys in blackBaby's In Black - Live / Bonus TrackBeatles For Sale (Remastered)Baby's In Black - Remastered
\n", "
" ], "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": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ctitlet_name
0shes a womanShe's A Woman - Live / Remastered
1long tall sallyLong Tall Sally - Live / Remastered
\n", "
" ], "text/plain": [ " 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": 97, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 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": 98, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "dict_keys(['artists', 'id', 'images', 'href', 'album_type', 'available_markets', 'uri', 'type', 'name', 'external_urls'])" ] }, "execution_count": 98, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# tracks.find_one()['album'].keys()" ] }, { "cell_type": "code", "execution_count": 99, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idctitlet_namett_albtt_name
05JT7CoUSGNk7mMNkHMQjqrlove me doLove Me Do - Mono / RemasteredPlease Please Me (Remastered)Love Me Do - Remastered 2009
17pQAq14Z73YUFMtxCyt0bGcant buy me loveCan't Buy Me Love - Remastered 2015A Hard Day's Night (Remastered)Can't Buy Me Love - Remastered
20mNQUZEATk2uItMUtiLWK5a hard days nightA Hard Day's Night - Remastered 2015A Hard Day's Night (Remastered)A Hard Day's Night - Remastered
33nhJDVdUrm6DnDW4iBfpKzeight days a weekEight Days A Week - Remastered 2015Beatles For Sale (Remastered)Eight Days A Week - Remastered
46pkjW5srxjzRSKKMrl7et8ticket to rideTicket To Ride - Remastered 2015Help! (Remastered)Ticket To Ride - Remastered
51dfuJYDSIc41cw5RPsaCF1helpHelp! - Remastered 2015Help! (Remastered)Help! - Remastered
663uskN0xLezVg4281wzeQnyesterdayYesterday - Remastered 2015Help! (Remastered)Yesterday - Remastered
7727YRTVI7pKH1uCnXnyZulyellow submarineYellow Submarine - Remastered 2015Yellow Submarine (Remastered)Yellow Submarine - Remastered
8727YRTVI7pKH1uCnXnyZulyellow submarineYellow Submarine - Remastered 2015Revolver (Remastered)Yellow Submarine - Remastered
90TRkjwb4uY3CHb5zhr9bBdeleanor rigbyEleanor Rigby - Remastered 2015Revolver (Remastered)Eleanor Rigby - Remastered
105Kw6fC8wyRgMYfBDtEklYMpenny lanePenny Lane - Remastered 2015Magical Mystery Tour (Remastered)Penny Lane - Remastered 2009
115Kw6fC8wyRgMYfBDtEklYMpenny lanePenny Lane - Remastered 2015Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...Penny Lane - Take 6 / Instrumental
125Kw6fC8wyRgMYfBDtEklYMpenny lanePenny Lane - Remastered 2015Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...Penny Lane - Stereo Mix 2017
1356rXurvdpjoSIVggfd5ANSall you need is loveAll You Need Is Love - Remastered 2015Yellow Submarine (Remastered)All You Need Is Love - Remastered
1456rXurvdpjoSIVggfd5ANSall you need is loveAll You Need Is Love - Remastered 2015Magical Mystery Tour (Remastered)All You Need Is Love - Remastered 2009
150wFW5NQJdNDJPcZyfYSExxhello goodbyeHello, Goodbye - Remastered 2015Magical Mystery Tour (Remastered)Hello, Goodbye - Remastered 2009
164ajbplh2IXiJkXjQiq5aqqget backGet Back - Remastered 2015Let It Be (Remastered)Get Back - Remastered
176Y6UBWhifUnkJIO2mdy0S3somethingSomething - Remastered 2015Abbey Road (Remastered)Something - Remastered
187iABnSNZciNepqGtjMQxxdcome togetherCome Together - Remastered 2015Abbey Road (Remastered)Come Together - Remastered
1922QadBPe0QCuqraFVAr1m3let it beLet It Be - Remastered 2015Let It Be (Remastered)Let It Be - Remastered
200Oroc0HXQaxs8ONgI7dLnwthe long and winding roadThe Long And Winding Road - Remastered 2015Let It Be (Remastered)The Long And Winding Road - Remastered
\n", "
" ], "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": [ { "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": 104, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idctitlet_albt_namett_albtt_name
02uO1HbJhQvmXpjclLmLEeKjumpin jack flashSome Girls: Live In Texas '78Jumpin' Jack Flash - LiveTotally Stripped (Live)Jumpin’ Jack Flash - Live
11oluhsJUDe1uAVGwfsFpfgkey to the highwayDirty Work (Remastered 2009)Key To The Highway - Piano Instrumental/Remast...Dirty WorkKey To The Highway - Piano Instrumental
23v2SyLXNg7IY3I3N6QTZ45jumpin jack flashLadies & Gentlemen (Live)Jumpin' Jack Flash - LiveSome Girls: Live In Texas '78Jumpin' Jack Flash - Live
33v2SyLXNg7IY3I3N6QTZ45jumpin jack flashLadies & Gentlemen (Live)Jumpin' Jack Flash - LiveTotally Stripped (Live)Jumpin’ Jack Flash - Live
45Y77giAAAmU9EpfHBDbBV8you got me rockinTotally Stripped - Brixton (Live)You Got Me Rockin’ - LiveTotally Stripped - Paris (Live)You Got Me Rockin’ - Live
51w9FiXsMcaxb5SD8vIZgm3jumpin jack flashTotally Stripped - Brixton (Live)Jumpin’ Jack Flash - LiveSome Girls: Live In Texas '78Jumpin' Jack Flash - Live
61w9FiXsMcaxb5SD8vIZgm3jumpin jack flashTotally Stripped - Brixton (Live)Jumpin’ Jack Flash - LiveLadies & Gentlemen (Live)Jumpin' Jack Flash - Live
71w9FiXsMcaxb5SD8vIZgm3jumpin jack flashTotally Stripped - Brixton (Live)Jumpin’ Jack Flash - LiveTotally Stripped (Live)Jumpin’ Jack Flash - Live
81w9FiXsMcaxb5SD8vIZgm3jumpin jack flashTotally Stripped - Brixton (Live)Jumpin’ Jack Flash - LiveTotally Stripped - Paris (Live)Jumpin’ Jack Flash - Live
91tEdH58k6r4CvjEhmxxbMCjumpin jack flashTotally Stripped - Paris (Live)Jumpin’ Jack Flash - LiveSome Girls: Live In Texas '78Jumpin' Jack Flash - Live
101tEdH58k6r4CvjEhmxxbMCjumpin jack flashTotally Stripped - Paris (Live)Jumpin’ Jack Flash - LiveLadies & Gentlemen (Live)Jumpin' Jack Flash - Live
111tEdH58k6r4CvjEhmxxbMCjumpin jack flashTotally Stripped - Paris (Live)Jumpin’ Jack Flash - LiveTotally Stripped (Live)Jumpin’ Jack Flash - Live
120Za26pWVLQpKfXmb9FX10SrespectableSome GirlsRespectable - RemasteredSome Girls: Live In Texas '78Respectable - Live
130Za26pWVLQpKfXmb9FX10SrespectableSome GirlsRespectable - RemasteredTotally Stripped - Amsterdam (Live)Respectable - Live
140832Tptls5YicHPGgw7ssPbeast of burdenSome GirlsBeast Of Burden - RemasteredTotally Stripped - Amsterdam (Live)Beast Of Burden - Live
150832Tptls5YicHPGgw7ssPbeast of burdenSome GirlsBeast Of Burden - RemasteredTotally Stripped - Paris (Live)Beast Of Burden - Live
160832Tptls5YicHPGgw7ssPbeast of burdenSome GirlsBeast Of Burden - RemasteredSome Girls: Live In Texas '78Beast Of Burden - Live
176yq33zsqWCd8cYXQdtAFZ9shatteredSome GirlsShattered - RemasteredSome Girls: Live In Texas '78Shattered - Live
186yq33zsqWCd8cYXQdtAFZ9shatteredSome GirlsShattered - RemasteredTotally Stripped - Paris (Live)Shattered - Live
195pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredSome GirlsMiss You - Remastered
205pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredTotally Stripped (Live)Miss You - Live
215pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredTotally Stripped - Brixton (Live)Miss You - Live
225pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredTotally Stripped - Paris (Live)Miss You - Live
235pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredSome Girls: Live In Texas '78Miss You - Live
244E8qFhiuYAWEYYAsYIf4dWwhen the whip comes downSome Girls (Deluxe Version)When The Whip Comes Down - RemasteredSome GirlsWhen The Whip Comes Down - Remastered
254E8qFhiuYAWEYYAsYIf4dWwhen the whip comes downSome Girls (Deluxe Version)When The Whip Comes Down - RemasteredSome Girls: Live In Texas '78When The Whip Comes Down - Live
267sDQlyQACyT7mNHFwwEMI7just my imagination running away with meSome Girls (Deluxe Version)Just My Imagination (Running Away With Me) - R...Some GirlsJust My Imagination (Running Away With Me) - R...
2748bJ1sWhJKdB8M43uqi924some girlsSome Girls (Deluxe Version)Some Girls - RemasteredSome GirlsSome Girls - Remastered
286362zAWHGgbrQaoeCFZpuOliesSome Girls (Deluxe Version)Lies - RemasteredSome GirlsLies - Remastered
294RlD0KvoqPZy5n9Zi76X9lfar away eyesSome Girls (Deluxe Version)Far Away Eyes - RemasteredSome Girls: Live In Texas '78Far Away Eyes - Live
.....................
1537tXuNR6xy9wGBXatDfqFEjall down the lineTotally Stripped - Paris (Live)All Down The Line - LiveSome Girls: Live In Texas '78All Down The Line - Live
1543nGR1fpxsAfDdZc9wwm16ushatteredTotally Stripped - Paris (Live)Shattered - LiveSome Girls: Live In Texas '78Shattered - Live
1554Uq4cdVjNDZFtiuzTopRacbeast of burdenTotally Stripped - Paris (Live)Beast Of Burden - LiveTotally Stripped - Amsterdam (Live)Beast Of Burden - Live
1564Uq4cdVjNDZFtiuzTopRacbeast of burdenTotally Stripped - Paris (Live)Beast Of Burden - LiveSome Girls: Live In Texas '78Beast Of Burden - Live
1577i0HwPhGd77HqpGliF8hWClet it bleedTotally Stripped - Paris (Live)Let It Bleed - LiveTotally Stripped - Amsterdam (Live)Let It Bleed - Live
1587ccGJ2vLgjqUDmfn9m66obangieTotally Stripped - Paris (Live)Angie - LiveTotally Stripped - Amsterdam (Live)Angie - Live
15957H3scKLSd9UOWzjfxa8Ctwild horsesTotally Stripped - Paris (Live)Wild Horses - LiveTotally Stripped - Amsterdam (Live)Wild Horses - Live
1603ovO4GmtWckNKeFItjPDVPshine a lightTotally Stripped - Paris (Live)Shine A Light - LiveTotally Stripped (Live)Shine A Light - Live
1613ovO4GmtWckNKeFItjPDVPshine a lightTotally Stripped - Paris (Live)Shine A Light - LiveTotally Stripped - Amsterdam (Live)Shine A Light - Live
1622jaOxamwOcyjN1E4ut6CK1like a rolling stoneTotally Stripped - Paris (Live)Like A Rolling Stone - LiveTotally Stripped (Live)Like A Rolling Stone - Live
1632jaOxamwOcyjN1E4ut6CK1like a rolling stoneTotally Stripped - Paris (Live)Like A Rolling Stone - LiveTotally Stripped - Amsterdam (Live)Like A Rolling Stone - Live
1646zL5bMJTpJKrf2xkU85b0ji go wildTotally Stripped - Paris (Live)I Go Wild - LiveTotally Stripped (Live)I Go Wild - Live
1656WKiTv7SJ486taXpKIMANrmiss youTotally Stripped - Paris (Live)Miss You - LiveTotally Stripped (Live)Miss You - Live
1666WKiTv7SJ486taXpKIMANrmiss youTotally Stripped - Paris (Live)Miss You - LiveSome Girls: Live In Texas '78Miss You - Live
1670v4MSSHsVfsog0miOeNCDMconnectionTotally Stripped - Paris (Live)Connection - LiveTotally Stripped - Amsterdam (Live)Connection - Live
1684Eh4q5GJegCgMQU1E7rRl7slipping awayTotally Stripped - Paris (Live)Slipping Away - LiveSteel Wheels (Remastered 2009)Slipping Away - Remastered
1694Eh4q5GJegCgMQU1E7rRl7slipping awayTotally Stripped - Paris (Live)Slipping Away - LiveTotally Stripped - Amsterdam (Live)Slipping Away - Live
1700DK2fsv7gaw2q4P41wtW94midnight ramblerTotally Stripped - Paris (Live)Midnight Rambler - LiveLadies & Gentlemen (Live)Midnight Rambler - Live
1710DK2fsv7gaw2q4P41wtW94midnight ramblerTotally Stripped - Paris (Live)Midnight Rambler - LiveTotally Stripped (Live)Midnight Rambler - Live
1721mnDusx7zn2yzmr42hUksErip this jointTotally Stripped - Paris (Live)Rip This Joint - LiveLadies & Gentlemen (Live)Rip This Joint - Live
1731mnDusx7zn2yzmr42hUksErip this jointTotally Stripped - Paris (Live)Rip This Joint - LiveTotally Stripped (Live)Rip This Joint - Live
1741mnDusx7zn2yzmr42hUksErip this jointTotally Stripped - Paris (Live)Rip This Joint - LiveTotally Stripped - Amsterdam (Live)Rip This Joint - Live
1755lWzRBoBzcfr1oNYNhR5acstart me upTotally Stripped - Paris (Live)Start Me Up - LiveTattoo You (2009 Re-Mastered)Start Me Up - Remastered
1764EllMMamxvLvwvOQLsyc9Wbrown sugarTotally Stripped - Paris (Live)Brown Sugar - LiveSome Girls: Live In Texas '78Brown Sugar - Live
1774EllMMamxvLvwvOQLsyc9Wbrown sugarTotally Stripped - Paris (Live)Brown Sugar - LiveLadies & Gentlemen (Live)Brown Sugar - Live
1784EllMMamxvLvwvOQLsyc9Wbrown sugarTotally Stripped - Paris (Live)Brown Sugar - LiveTotally Stripped (Live)Brown Sugar - Live
1791F69leTp8WQHMFVQ5gOtISmannish boyLive At The Checkerboard LoungeMannish Boy - LiveLive At The Checkerboard LoungeMannish Boy - Live
1806dx6G9OexgRFCulfKI4sPNall down the lineSome Girls: Live In Texas '78All Down The Line - LiveTotally Stripped - Amsterdam (Live)All Down The Line - Live
18116FlhqpxLT6WTfiLVEZ7Vvbeast of burdenSome Girls: Live In Texas '78Beast Of Burden - LiveTotally Stripped - Amsterdam (Live)Beast Of Burden - Live
1825UXwp4rKvtXtKJpe0iIctMmiss youSome Girls: Live In Texas '78Miss You - LiveTotally Stripped (Live)Miss You - Live
\n", "

183 rows × 6 columns

\n", "
" ], "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": [ "# 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": 105, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(set(), set())" ] }, "execution_count": 105, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# # 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", "# dw - dwd, dwd - dw" ] }, { "cell_type": "code", "execution_count": 106, "metadata": {}, "outputs": [ { "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": [ "# # 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": 107, "metadata": {}, "outputs": [], "source": [ "# for a in ['1TpcI1LEFVhBvDPSTMPGFG', '54sqbAXxR1jFfyXb1WvrHK']:\n", "# tracks.update_many({'album_id': a}, {'$set': {'ignore': True}})" ] }, { "cell_type": "code", "execution_count": 135, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idartist_namenamerelease_date
05XfJmldgWzrc1AIdbBaVZnThe BeatlesLive At The Hollywood Bowl2016-09-09
15ju5Ouzan3QwXqQt1TihbhThe Beatles1 (Remastered)2000-11-13
22pCqZLeavM2BMovJXsJEIVThe BeatlesLet It Be (Remastered)1970-05-08
32Pqkn9Dq2DFtdfkKAeqgMdThe BeatlesAbbey Road (Remastered)1969-09-26
447bcKzmKgmMPHXNVOWpLiuThe BeatlesYellow Submarine (Remastered)1969-01-17
503Qh833fEdVT30Pfs93ea6The BeatlesThe Beatles (Remastered)1968-11-22
66P9yO0ukhOx3dvmhGKeYoCThe BeatlesMagical Mystery Tour (Remastered)1967-11-27
71PULmKbHeOqlkIwcDMNwD4The BeatlesSgt. Pepper's Lonely Hearts Club Band (Remaste...1967-06-01
80PYyrqs9NXtxPhf0CZkq2LThe BeatlesRevolver (Remastered)1966-08-05
93OdI6e43crvyAHhaqpxSyzThe BeatlesRubber Soul (Remastered)1965-12-03
1019K3IHYeVkUTjcBHGfbCOiThe BeatlesHelp! (Remastered)1965-08-06
117BgGBZndAvDlKOcwe5rscZThe BeatlesBeatles For Sale (Remastered)1964-12-04
1271Mwd9tntFQYUk4k2DwA0DThe BeatlesA Hard Day's Night (Remastered)1964-07-10
131DBkJIEoeHrTX4WCBQGcCiRadioheadThe King Of Limbs2011-02-18
143nkEsxmIX0zRNXGAexaHAnThe BeatlesWith The Beatles (Remastered)1963-11-22
157gDXyW16byCQOgK965BRznThe BeatlesPlease Please Me (Remastered)1963-03-22
166vuykQgDLUCiZ7YggIpLM9RadioheadA Moon Shaped Pool2016-05-08
1747xaqCsJcYFWqD1gwujl1TRadioheadTKOL RMX 12345672011-10-10
187eyQXxuf2nGj9d2367Gi5fRadioheadIn Rainbows2007-12-28
1936lJLPoPPOKNFddTAcirncRadioheadIn Rainbows Disk 22007
206Eo5EkmdLvZrONzi046iC2RadioheadCom Lag: 2+2=52004-03-24
211oW3v5Har9mvXnGk0x4fHmRadioheadHail To the Thief2003
226svTt5o2lUgIrgYDKVmdnDRadioheadI Might Be Wrong2001
236V9YnBmFjWmXCBaUVRCVXPRadioheadAmnesiac2001-03-12
2419RUXBFyM4PpmrLRdtqWbpRadioheadKid A2000-10-01
257dxKtc08dYeRVHt3p9CZJnRadioheadOK Computer1997-05-28
26500FEaUzn8lN9zWFyZG5C2RadioheadThe Bends1995-03-28
276400dnyeDyD2mIFHfkwHXNRadioheadPablo Honey1993-02-22
284g9Jfls8z2nbQxj5PiXkiyThe Rolling StonesBlue & Lonesome2016-12-02
294fhWcu56Bbh5wALuTouFVWThe Rolling StonesHavana Moon (Live)2016-11-11
...............
323CHu7qW160uqPZHW3TMZ1lThe Rolling StonesShine A Light2008-01-01
334FTHynKEtuP7eppERNfjyGThe Rolling StonesA Bigger Bang (2009 Re-Mastered)2005-09-05
3450UGtgNA5bq1c0BDjPfmbDThe Rolling StonesLive Licks2004-11-01
350ZGddnvcVzHVHfE3WW1tV5The Rolling StonesBridges To Babylon (Remastered)1997-09-29
364M8Q1L9PZq0xK5tLUpO3jdThe Rolling StonesStripped1995-01-13
3762ZT16LY1phGM0O8x5qW1zThe Rolling StonesVoodoo Lounge (Remastered 2009)1994-07-11
381W1UJulgICjFDyYIMUwRs7The Rolling StonesFlashpoint1991-04-02
3925mfHGJNQkluvIqedXHSx3The Rolling StonesSteel Wheels (2009 Re-Mastered)1989-08-29
401TpcI1LEFVhBvDPSTMPGFGThe Rolling StonesDirty Work1986-03-24
411WSfNoPDPzgyKFN6OSYWUxThe Rolling StonesDirty Work (Remastered 2009)1986-03-24
42064eFGemsrDcMvgRZ0gqtwThe Rolling StonesUndercover (2009 Re-Mastered)1983-11-07
430hxrNynMDh5QeyALlf1CdSThe Rolling StonesStill Life1982-06-01
441YvnuYGlblQ5vLnOhaZzpnThe Rolling StonesTattoo You (2009 Re-Mastered)1981-08-24
452wZgoXS06wSdu9C0ZJOvlcThe Rolling StonesEmotional Rescue (2009 Re-Mastered)1980-06-20
4654sqbAXxR1jFfyXb1WvrHKThe Rolling StonesSome Girls1978-06-09
476FjXxl9VLURGuubdXUn2J3The Rolling StonesSome Girls (Deluxe Version)1978-06-09
484jbWZmf7kRxCBD6tgVepYhSpice GirlsForever2000-11-06
493sr6lAuO3nmB1u8ZuQgpiXSpice GirlsSpiceworld1997-11-03
503x2jF7blR6bFHtk4MccsyJSpice GirlsSpice1996-11-04
513LXItxKnnJcEDc5QdTc00nThe BeatlesSgt. Pepper's Lonely Hearts Club Band (Deluxe ...1967-06-01
527Hk1X2BCADxuR9saTIKfOWThe Rolling StonesOn Air (Deluxe)2017-12-01
536iCIB08bkoitQOL5y2uEsMThe Rolling StonesSticky Fingers Live At The Fonda Theatre2017-09-29
5434d9ClCaKRoQ8pMeJ9GfvtThe Rolling StonesLadies & Gentlemen (Live)2017-06-07
550aWIIpfY32rT1i3yO9LROlThe Rolling StonesTotally Stripped (Live)2016-06-17
565D7RtaChuvF0Av1xXT3acuThe Rolling StonesTotally Stripped - Brixton (Live)2016-06-06
572b3y5k1DchDACjH5KMlgQvThe Rolling StonesTotally Stripped - Amsterdam (Live)2016-06-03
583wkyUMDuH56iNaSxKvukaxThe Rolling StonesTotally Stripped - Paris (Live)2016-05-20
596hB5kO3oV3tlnblCNSSA9ZMuddy WatersLive At The Checkerboard Lounge2012-07-09
603yNf6JVyEEqvM4OqKEmZSCMuddy WatersLive At The Checkerboard Lounge2012-07-09
612gCp8kyDcL93s4kVP4VMTCThe Rolling StonesSome Girls: Live In Texas '782011-11-21
\n", "

62 rows × 4 columns

\n", "
" ], "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": 135, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame(list(albums.find({}, ['name', 'artist_name', 'release_date'])))" ] }, { "cell_type": "code", "execution_count": 109, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
_idctitlet_albt_namett_albtt_name
02uO1HbJhQvmXpjclLmLEeKjumpin jack flashSome Girls: Live In Texas '78Jumpin' Jack Flash - LiveTotally Stripped (Live)Jumpin’ Jack Flash - Live
13v2SyLXNg7IY3I3N6QTZ45jumpin jack flashLadies & Gentlemen (Live)Jumpin' Jack Flash - LiveSome Girls: Live In Texas '78Jumpin' Jack Flash - Live
23v2SyLXNg7IY3I3N6QTZ45jumpin jack flashLadies & Gentlemen (Live)Jumpin' Jack Flash - LiveTotally Stripped (Live)Jumpin’ Jack Flash - Live
35Y77giAAAmU9EpfHBDbBV8you got me rockinTotally Stripped - Brixton (Live)You Got Me Rockin’ - LiveTotally Stripped - Paris (Live)You Got Me Rockin’ - Live
41w9FiXsMcaxb5SD8vIZgm3jumpin jack flashTotally Stripped - Brixton (Live)Jumpin’ Jack Flash - LiveSome Girls: Live In Texas '78Jumpin' Jack Flash - Live
51w9FiXsMcaxb5SD8vIZgm3jumpin jack flashTotally Stripped - Brixton (Live)Jumpin’ Jack Flash - LiveLadies & Gentlemen (Live)Jumpin' Jack Flash - Live
61w9FiXsMcaxb5SD8vIZgm3jumpin jack flashTotally Stripped - Brixton (Live)Jumpin’ Jack Flash - LiveTotally Stripped (Live)Jumpin’ Jack Flash - Live
71w9FiXsMcaxb5SD8vIZgm3jumpin jack flashTotally Stripped - Brixton (Live)Jumpin’ Jack Flash - LiveTotally Stripped - Paris (Live)Jumpin’ Jack Flash - Live
81tEdH58k6r4CvjEhmxxbMCjumpin jack flashTotally Stripped - Paris (Live)Jumpin’ Jack Flash - LiveSome Girls: Live In Texas '78Jumpin' Jack Flash - Live
91tEdH58k6r4CvjEhmxxbMCjumpin jack flashTotally Stripped - Paris (Live)Jumpin’ Jack Flash - LiveLadies & Gentlemen (Live)Jumpin' Jack Flash - Live
101tEdH58k6r4CvjEhmxxbMCjumpin jack flashTotally Stripped - Paris (Live)Jumpin’ Jack Flash - LiveTotally Stripped (Live)Jumpin’ Jack Flash - Live
115jWDi16gJx7N2oexwjGx5yintroductionLive At The Checkerboard LoungeIntroduction - LiveLive At The Checkerboard LoungeIntroduction - Live
126M75z4blVIRMeWtjSU1UyRyou dont have to goLive At The Checkerboard LoungeYou Don't Have To Go - LiveLive At The Checkerboard LoungeYou Don't Have To Go - Live
136NqtddM4j4X9dG75yOmy0Syellow submarineYellow Submarine (Remastered)Yellow Submarine - RemasteredRevolver (Remastered)Yellow Submarine - Remastered
145EuraV2jbqB15ihd3d2Hexstrawberry fields foreverMagical Mystery Tour (Remastered)Strawberry Fields Forever - Remastered 2009Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...Strawberry Fields Forever - Take 7
155EuraV2jbqB15ihd3d2Hexstrawberry fields foreverMagical Mystery Tour (Remastered)Strawberry Fields Forever - Remastered 2009Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...Strawberry Fields Forever - Take 26
165EuraV2jbqB15ihd3d2Hexstrawberry fields foreverMagical Mystery Tour (Remastered)Strawberry Fields Forever - Remastered 2009Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...Strawberry Fields Forever - Stereo Mix 2015
175RStjc42UAYI2NMY3cYpgzpenny laneMagical Mystery Tour (Remastered)Penny Lane - Remastered 2009Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...Penny Lane - Take 6 / Instrumental
185RStjc42UAYI2NMY3cYpgzpenny laneMagical Mystery Tour (Remastered)Penny Lane - Remastered 2009Sgt. Pepper's Lonely Hearts Club Band (Deluxe ...Penny Lane - Stereo Mix 2017
193xMSaDC9TU6AQJIsxQB7MKall you need is loveMagical Mystery Tour (Remastered)All You Need Is Love - Remastered 2009Yellow Submarine (Remastered)All You Need Is Love - Remastered
205pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredTotally Stripped (Live)Miss You - Live
215pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredTotally Stripped - Brixton (Live)Miss You - Live
225pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredTotally Stripped - Paris (Live)Miss You - Live
235pTWpY8l7B1XcQnijEFGFjmiss youSome Girls (Deluxe Version)Miss You - RemasteredSome Girls: Live In Texas '78Miss You - Live
244E8qFhiuYAWEYYAsYIf4dWwhen the whip comes downSome Girls (Deluxe Version)When The Whip Comes Down - RemasteredSome Girls: Live In Texas '78When The Whip Comes Down - Live
254RlD0KvoqPZy5n9Zi76X9lfar away eyesSome Girls (Deluxe Version)Far Away Eyes - RemasteredSome Girls: Live In Texas '78Far Away Eyes - Live
2633PXyHrkIHxp6PBVPlQGx7respectableSome Girls (Deluxe Version)Respectable - RemasteredSome Girls: Live In Texas '78Respectable - Live
2733PXyHrkIHxp6PBVPlQGx7respectableSome Girls (Deluxe Version)Respectable - RemasteredTotally Stripped - Amsterdam (Live)Respectable - Live
287pfVe0VrMK5QhTaAYzkuYnbeast of burdenSome Girls (Deluxe Version)Beast Of Burden - RemasteredTotally Stripped - Amsterdam (Live)Beast Of Burden - Live
297pfVe0VrMK5QhTaAYzkuYnbeast of burdenSome Girls (Deluxe Version)Beast Of Burden - RemasteredTotally Stripped - Paris (Live)Beast Of Burden - Live
.....................
1491mnDusx7zn2yzmr42hUksErip this jointTotally Stripped - Paris (Live)Rip This Joint - LiveTotally Stripped (Live)Rip This Joint - Live
1501mnDusx7zn2yzmr42hUksErip this jointTotally Stripped - Paris (Live)Rip This Joint - LiveTotally Stripped - Amsterdam (Live)Rip This Joint - Live
1515lWzRBoBzcfr1oNYNhR5acstart me upTotally Stripped - Paris (Live)Start Me Up - LiveTattoo You (2009 Re-Mastered)Start Me Up - Remastered
1524EllMMamxvLvwvOQLsyc9Wbrown sugarTotally Stripped - Paris (Live)Brown Sugar - LiveSome Girls: Live In Texas '78Brown Sugar - Live
1534EllMMamxvLvwvOQLsyc9Wbrown sugarTotally Stripped - Paris (Live)Brown Sugar - LiveLadies & Gentlemen (Live)Brown Sugar - Live
1544EllMMamxvLvwvOQLsyc9Wbrown sugarTotally Stripped - Paris (Live)Brown Sugar - LiveTotally Stripped (Live)Brown Sugar - Live
1551F69leTp8WQHMFVQ5gOtISmannish boyLive At The Checkerboard LoungeMannish Boy - LiveLive At The Checkerboard LoungeMannish Boy - Live
1566dx6G9OexgRFCulfKI4sPNall down the lineSome Girls: Live In Texas '78All Down The Line - LiveTotally Stripped - Amsterdam (Live)All Down The Line - Live
15716FlhqpxLT6WTfiLVEZ7Vvbeast of burdenSome Girls: Live In Texas '78Beast Of Burden - LiveTotally Stripped - Amsterdam (Live)Beast Of Burden - Live
1585UXwp4rKvtXtKJpe0iIctMmiss youSome Girls: Live In Texas '78Miss You - LiveTotally Stripped (Live)Miss You - Live
1596bxyTE0a0SFneMeIxXDCm7sgt peppers lonely hearts club bandSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Sgt. Pepper's Lonely Hearts Club Band - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Sgt. Pepper's Lonely Hearts Club Band - Remast...
1606bxyTE0a0SFneMeIxXDCm7sgt peppers lonely hearts club bandSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Sgt. Pepper's Lonely Hearts Club Band - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Sgt. Pepper's Lonely Hearts Club Band - Repris...
1614sOAk2nNTildSyJSLSlXuGwith a little help from my friendsSgt. Pepper's Lonely Hearts Club Band (Deluxe ...With A Little Help From My Friends - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...With A Little Help From My Friends - Remastered
1627jqsBIOx7CGhtNPNYxBWIjlucy in the sky with diamondsSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Lucy In The Sky With Diamonds - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Lucy In The Sky With Diamonds - Remastered
1637FgFsmFqGDWduAW4vdgya1getting betterSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Getting Better - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Getting Better - Remastered
1644qYGe6lTon2cHuTQF45xovfixing a holeSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Fixing A Hole - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Fixing A Hole - Remastered
16555kc3bnwWdGFCqthgjqR9lshes leaving homeSgt. Pepper's Lonely Hearts Club Band (Deluxe ...She's Leaving Home - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...She's Leaving Home - Remastered
1661Yk5EOxuBEClupjWcUX0Tibeing for the benefit of mr kiteSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Being For The Benefit Of Mr. Kite! - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Being For The Benefit Of Mr. Kite! - Remastered
1672UGZC7jvYr11WFSd6xvbk9within you without youSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Within You Without You - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Within You Without You - Remastered
16859dYBIJ4cOrjtgkuwUnqQqlovely ritaSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Lovely Rita - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Lovely Rita - Remastered
1693pY5chBSUotRa6RoIfwJjcgood morning good morningSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Good Morning Good Morning - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...Good Morning Good Morning - Remastered
1703ZFPe2aiLQuEfDxSqQstZpa day in the lifeSgt. Pepper's Lonely Hearts Club Band (Deluxe ...A Day In The Life - RemixSgt. Pepper's Lonely Hearts Club Band (Remaste...A Day In The Life - Remastered
1712BOawXVznHmi2KJzRFstBNsgt peppers lonely hearts club bandSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Sgt. Pepper's Lonely Hearts Club Band - Take 9...Sgt. Pepper's Lonely Hearts Club Band (Remaste...Sgt. Pepper's Lonely Hearts Club Band - Remast...
1722BOawXVznHmi2KJzRFstBNsgt peppers lonely hearts club bandSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Sgt. Pepper's Lonely Hearts Club Band - Take 9...Sgt. Pepper's Lonely Hearts Club Band (Remaste...Sgt. Pepper's Lonely Hearts Club Band - Repris...
1731alxZZpi5dBLcmV3WkYIzNwith a little help from my friendsSgt. Pepper's Lonely Hearts Club Band (Deluxe ...With A Little Help From My Friends - Take 1 / ...Sgt. Pepper's Lonely Hearts Club Band (Remaste...With A Little Help From My Friends - Remastered
1741k1kJBeaL3FCUG2vOJ1z0glucy in the sky with diamondsSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Lucy In The Sky With Diamonds - Take 1Sgt. Pepper's Lonely Hearts Club Band (Remaste...Lucy In The Sky With Diamonds - Remastered
17542uZOBjvKNv4QKnBmjOwb0getting betterSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Getting Better - Take 1 / Instrumental And Spe...Sgt. Pepper's Lonely Hearts Club Band (Remaste...Getting Better - Remastered
1765JnPM6eKhHJtkWfS6ymUMFfixing a holeSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Fixing A Hole - Speech And Take 3Sgt. Pepper's Lonely Hearts Club Band (Remaste...Fixing A Hole - Remastered
1773HEC6nzAo3U5z7blaCNBcFshes leaving homeSgt. Pepper's Lonely Hearts Club Band (Deluxe ...She's Leaving Home - Take 1 / InstrumentalSgt. Pepper's Lonely Hearts Club Band (Remaste...She's Leaving Home - Remastered
1783qchAN1uJ1KiF8yxmqb3Ovbeing for the benefit of mr kiteSgt. Pepper's Lonely Hearts Club Band (Deluxe ...Being For The Benefit Of Mr. Kite! - Take 4Sgt. Pepper's Lonely Hearts Club Band (Remaste...Being For The Benefit Of Mr. Kite! - Remastered
\n", "

179 rows × 6 columns

\n", "
" ], "text/plain": [ " _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", " 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": 109, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# 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": 110, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 110, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# # Radiohead: I Might be Wrong (live album)\n", "# tracks.update_many({'album_id': '6svTt5o2lUgIrgYDKVmdnD'}, {'$set': {'ignore': True}})" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Copy the lyrics over\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": 428, "metadata": {}, "outputs": [], "source": [ "for t in tracks.find({'artist_id': this_artist_id}, ['ctitle', 'duration_ms']):\n", " gts = genius_tracks.find({'ctitle': t['ctitle'], \n", " 'primary_artist.id': this_artist_genius_id,\n", " '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": "code", "execution_count": 429, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'_id': 308915,\n", " 'lyrics': \"gone and got himself elected president (we want leroy for president) next time you got to hit a bitty baddy weather this time like a shimmy shimmy leather he's a big boy bad boy leroy i don't care where you get him from bring that big bad leroy back want him back\",\n", " 'original_lyrics': \"\\n\\n[Verse]\\nGone and got himself elected president\\n(We want Leroy for President)\\n\\nNext time, you got to hit a bitty baddy\\nWeather\\nThis time, like a shimmy, shimmy leather\\nHe's a big boy, bad boy, Leroy\\nI don't care where you get him from\\n\\nBring that big bad Leroy back\\nWant him back\\n\\n\"},\n", " {'_id': 2012721,\n", " 'lyrics': \"he's for everyone of us stand for everyone of us he'll save with a mighty hand every man every woman every child he's the mighty flash no-one but the pure in heart may find the golden grail oh oh - oh oh flash\",\n", " 'original_lyrics': \"\\n\\nHe's for everyone of us\\nStand for everyone of us\\nHe'll save with a mighty hand\\nEvery man every woman every child\\nHe's the mighty flash\\nNo-one but the pure in heart may find the golden grail\\nOh oh - oh oh\\nFlash\\n\\n\"},\n", " {'_id': 2252949, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 2208467,\n", " 'lyrics': 'improvised song',\n", " 'original_lyrics': '\\n\\nImprovised song\\n\\n'},\n", " {'_id': 1395375,\n", " 'lyrics': \"the minute you walked in the joint i could see you were a of distinction a real big spender good looking so refined so wouldn't you like to know what's going on in my mind let me get right to the point i don't pop my cork for every one i see hey big spender spend a little time with me\",\n", " 'original_lyrics': \"\\n\\nThe minute you walked in the joint\\nI could see you were a, of distinction\\nA real big spender\\nGood looking, so refined\\nSo wouldn't you like to know\\nWhat's going on in my mind?\\nLet me get right to the point\\nI don't pop my cork for every one I see\\nHey, big spender, spend a little time with me\\n\\n\"},\n", " {'_id': 310140,\n", " 'lyrics': \"you and me we are destined you'll agree to spend the rest of our lives with each other the rest of our days like two lovers for ever yeah for ever my bijou\",\n", " 'original_lyrics': \"\\n\\n[Verse]\\nYou and me we are destined you'll agree\\nTo spend the rest of our lives with each other\\nThe rest of our days like two lovers\\nFor ever\\nYeah\\nFor ever\\n\\n[Outro]\\nMy bijou\\n\\n\"},\n", " {'_id': 998252,\n", " 'lyrics': 'do do do take away my sunshine you take away my rain i can see it in your eyes there must be an answer somewhere you can find a way i can see it in your eye do do do',\n", " 'original_lyrics': '\\n\\nDo do do...\\nTake away my sunshine\\nYou take away my rain\\nI can see it in your eyes\\nThere must be an answer somewhere\\nYou can find a way\\nI can see it in your eye\\nDo do do...\\n\\n'},\n", " {'_id': 308904,\n", " 'lyrics': \"don't you misfire fill me up with the desire to carry on don't you know honey that love's a game it's always hit or miss so take your aim got to hold on tight shoot me out of sight don't you misfire your gun is loaded and pointing my way there's only one bullet so don't delay got to time it right fire me through the night come on take a shot fire me higher don't you miss this time please don't misfire misfire\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nDon't you misfire\\nFill me up with the desire\\nTo carry on\\n\\n[Verse 1]\\nDon't you know honey, that love's a game\\nIt's always hit or miss, so take your aim\\nGot to hold on tight, shoot me out of sight\\n\\n[Chorus][x2]\\nDon't you misfire\\n\\n[Verse 2]\\nYour gun is loaded, and pointing my way\\nThere's only one bullet, so don't delay\\nGot to time it right, fire me through the night\\nCome on, take a shot\\nFire me higher\\nDon't you miss this time\\nPlease don't misfire, misfire\\n\\n\"},\n", " {'_id': 1455687,\n", " 'lyrics': \"one two three four one i didn't get no sleep last night had a drink and i got uptight i fell over when the sun comes in inside when the tide comes in i'm alive i'm all over so move over here i come new york new york you're gaining on me new york you're just that one step far away but i'm here to stay new york (you're gaining on me) stop gaining on me new york you're just that one step far away but i'm here to stay you can't catch me new york\",\n", " 'original_lyrics': \"\\n\\nOne two three four one\\nI didn't get no sleep last night\\nHad a drink and I got uptight\\nI fell over\\nWhen the sun comes in inside\\nWhen the tide comes in I'm alive\\nI'm all over, so move over\\nHere I come New York\\nNew York, you're gaining on me\\nNew York, you're just that one step far away\\nBut I'm here to stay\\nNew York, (you're gaining on me) stop gaining on me\\nNew York, you're just that one step far away\\nBut I'm here to stay\\nYou can't catch me New York\\n\\n\"},\n", " {'_id': 356595, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 2845669,\n", " 'lyrics': \"are you running (are you running) (are you running) are you running (are you running) (are you running) are you running (are you running) (are you running) ha ha ha h'huu h'huu fab\",\n", " 'original_lyrics': \"\\n\\n[Instrumental]\\n\\nAre you running? (are you running?) (are you running?)\\nAre you running? (are you running?) (are you running?)\\n\\nAre you running? (are you running?) (are you running?)\\n\\nHa ha ha\\nH'huu h'huu\\n\\nFab!\\n\\n\"},\n", " {'_id': 2845671, 'lyrics': 'yeah', 'original_lyrics': '\\n\\nYeah\\n\\n'},\n", " {'_id': 1184464,\n", " 'lyrics': \"when love breaks up when the dawn lights wakes up a new life is born there's no waters blowing down there's no rain (ad-libbed) to the sea get lonely dee-dee-dee dah day dah dee-dee-dee by the sea there's muddy waters in my hands across the (ad-libbed) dah dah dah\",\n", " 'original_lyrics': \"\\n\\nWhen love breaks up\\nWhen the dawn lights wakes up\\nA new life is born\\nThere's no waters blowing down\\nThere's no rain (ad-libbed) to the sea\\nGet lonely\\nDee-dee-dee\\nDah, day, dah\\nDee-dee-dee, by the sea\\nThere's muddy waters\\nIn my hands\\nAcross the (ad-libbed)\\nDah, dah, dah\\n\\n\"},\n", " {'_id': 2229372, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 1993198,\n", " 'lyrics': \"so you feel like you ain't somebody always needed to be somebody well put your feet on the ground put your hand on your heart turn your eyes to the stars and the world's for your taking all you have to do is save the world so you feel it's the end of the story find it all pretty satisfactory well i tell you my friend this may seem like the end but the continuation is yours for the making yes you're the hero\",\n", " 'original_lyrics': \"\\n\\nSo you feel like you ain't somebody?\\nAlways needed to be somebody?\\nWell, put your feet on the ground\\nPut your hand on your heart\\nTurn your eyes to the stars\\nAnd the world's for your taking!!\\nAll you have to do is save the world!!\\nSo you feel it's the end of the story?\\nFind it all pretty satisfactory?\\nWell, I tell you my friend this may seem like the end\\nBut the continuation is yours for the making!!\\nYes, you're the hero!!!\\n\\n\"},\n", " {'_id': 1271730,\n", " 'lyrics': 'words and music by freddie mercury brian may roger taylor and john deacon one one one one one vision one flesh one bone one true religion one voice one hope one real decision gimme one light - yeah gimme one hope - hey just gimme one man one man one bar one night one day hey hey just gimme gimme gimme gimme fried chicken',\n", " 'original_lyrics': '\\n\\nWords and music by freddie mercury, brian may, roger\\nTaylor and john deacon\\n\\nOne one one one...\\nOne vision...\\nOne flesh one bone one true religion\\nOne voice one hope one real decision\\nGimme one light - yeah\\nGimme one hope - hey\\nJust gimme\\nOne man one man one bar one night one day\\nHey hey\\nJust gimme\\nGimme gimme gimme fried chicken\\n\\n'},\n", " {'_id': 2238411, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 1995570, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 308899,\n", " 'lyrics': \"so dear friends your love has gone only tears to dwell upon i dare not say as the wind must blow so a love is lost a love is won go to sleep and dream again soon your hopes will rise and then from all this gloom life can start anew and there'll be no crying soon\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nSo dear friends your love has gone\\nOnly tears to dwell upon\\nI dare not say as the wind must blow\\nSo a love is lost, a love is won\\nGo to sleep and dream again\\nSoon your hopes will rise and then\\nFrom all this gloom life can start anew\\nAnd there'll be no crying soon\\n\\n\"},\n", " {'_id': 1081119,\n", " 'lyrics': \"queen miscellaneous doin' alright yesterday my life was in ruin now today i know what i'm doin' gotta feelin' i should be doin' alright doin' alright where will i be this time tommorow jumping with joy or sinking in sorrow anyway i should be doin' alright doin' alright should be waiting for the sun anyway i've got to hide going back to where the skies are blue going home to find the one\",\n", " 'original_lyrics': \"\\n\\nQueen\\nMiscellaneous\\nDoin' Alright\\nYesterday my life was in ruin\\nNow today I know what I'm doin'\\nGotta feelin' I should be doin' alright\\nDoin' alright\\nWhere will I be this time tommorow\\nJumping with joy or sinking in sorrow\\nAnyway I should be doin' alright\\nDoin' alright\\nShould be waiting for the sun\\nAnyway I've got to hide\\nGoing back to where the skies are blue\\nGoing home to find the one\\n\\n\"},\n", " {'_id': 891296,\n", " 'lyrics': 'this artist has requested that the lyrics to thier songs be removed from the internet and we respect this decision',\n", " 'original_lyrics': '\\n\\nThis artist has requested that the lyrics to thier songs be removed from the internet, and we respect this decision\\n\\n'},\n", " {'_id': 309692,\n", " 'lyrics': \"don't lose your head don't lose your head no don't lose your head don't lose your head hear what i say don't lose your way - yeah remember love's stronger remember love walks tall don't drink and drive my car don't get breathalysed don't lose your head if you make it to the top and you want to stay alive don't lose your head\",\n", " 'original_lyrics': \"\\n\\n[Chorus][x2]\\nDon't lose your head\\nDon't lose your head\\nNo don't lose your head\\nDon't lose your head\\nHear what I say\\nDon't lose your way - yeah\\nRemember, love's stronger, remember love walks tall\\n\\n[Verse 1]\\nDon't drink and drive my car\\nDon't get breathalysed\\nDon't lose your head\\nIf you make it to the top and you want to stay alive\\nDon't lose your head\\n\\n[Chorus][x2]\\n\\n\"},\n", " {'_id': 2208175,\n", " 'lyrics': '(instrumental)',\n", " 'original_lyrics': '\\n\\n(Instrumental)\\n\\n'},\n", " {'_id': 1944066,\n", " 'lyrics': '(instrumental)',\n", " 'original_lyrics': '\\n\\n(instrumental)\\n\\n'},\n", " {'_id': 2230880, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 2004862, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 1121803,\n", " 'lyrics': 'football fight track 5 written by freddie mercury album version 1 29 dialogue ming klytus are your men on the right pills maybe you should execute their trainer flash gordon 41 42 dale arden go flash go go flash go go flash go go flash go',\n", " 'original_lyrics': '\\n\\nFootball Fight\\nTrack 5. Written by Freddie Mercury. Album Version 1: 29\\nDialogue:\\nMing: Klytus, are your men on the right pills? Maybe you should execute their trainer?\\nFlash Gordon: 41, 42\\nDale Arden: Go Flash go, go Flash go, go Flash go, go Flash go\\n\\n'},\n", " {'_id': 1933095,\n", " 'lyrics': 'instrumental',\n", " 'original_lyrics': '\\n\\nInstrumental\\n\\n'},\n", " {'_id': 1764237,\n", " 'lyrics': 'people keep on talking bogeying around take you to me party sitting on the town yeah hey',\n", " 'original_lyrics': '\\n\\nPeople keep on talking\\nBogeying around\\nTake you to me party\\nSitting on the town\\nYeah, hey\\n\\n'},\n", " {'_id': 1955638,\n", " 'lyrics': 'people keep on talking bogeying around take you to me party sitting on the town yeah hey',\n", " 'original_lyrics': '\\n\\nPeople keep on talking\\nBogeying around\\nTake you to me party\\nSitting on the town\\nYeah, hey\\n\\n'},\n", " {'_id': 1049696, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 1986493,\n", " 'lyrics': 'instrumental',\n", " 'original_lyrics': '\\n\\nInstrumental\\n\\n'},\n", " {'_id': 868701, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 308892,\n", " 'lyrics': 'i live my life for you think all my thoughts with you anything you ask i do for you and only you i touch your lips with mine but in the end i leave it to the lords leave it in the lap of the gods what more can i do leave it in the lap of the gods i leave it to you leave it in the lap of the gods leave it in the lap of the gods i want you to leave it in the lap of the gods lap of the gods',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nI live my life for you\\nThink all my thoughts with you\\nAnything you ask I do, for you\\nAnd only you\\nI touch your lips with mine\\nBut in the end\\nI leave it to the lords\\nLeave it in the lap of the Gods\\nWhat more can I do\\nLeave it in the lap of the Gods\\nI leave it to you\\nLeave it in the lap of the Gods\\nLeave it in the lap of the Gods\\nI want you to\\nLeave it in the lap of the Gods\\nLap of the Gods\\n\\n'},\n", " {'_id': 1950617, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 310145,\n", " 'lyrics': \"it's a beautiful day the sun is shining i feel good and no-one's going to stop me now oh yeah it's a beautiful day i feel good i feel right and no-one no-one's gonna stop me now mama sometimes i fell so sad so sad so bad but no-one's going to stop me now no-one it's hopeless - so hopeless to even try\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nIt's a beautiful day\\nThe sun is shining\\nI feel good\\nAnd no-one's going to stop me now, oh yeah\\n\\n[Chorus]\\nIt's a beautiful day\\nI feel good, I feel right\\nAnd no-one, no-one's gonna stop me now\\nMama\\n\\n[Verse]\\nSometimes I fell so sad, so sad, so bad\\nBut no-one's going to stop me now, no-one\\nIt's hopeless - so hopeless to even try\\n\\n\"},\n", " {'_id': 2459711,\n", " 'lyrics': \"it's a beautiful day the sun is shining i feel good and no-one's gonna stop me now oh yeah it's a beautiful day i feel good i feel right and no-one and no-one no-one's gonna stop me now yeah no-one sometimes i feel so sad so sad but no-one's gonna stop me now no-one it's hopeless so hopeless to even try\",\n", " 'original_lyrics': \"\\n\\nIt's a beautiful day\\nThe sun is shining\\nI feel good\\nAnd no-one's gonna stop me now, oh yeah\\n\\nIt's a beautiful day\\nI feel good, I feel right[x2]\\nAnd no-one\\nAnd no-one\\nNo-one's gonna stop me now[x5]\\nYeah\\nNo-one[x3]\\n\\nSometimes I feel so sad, so sad, but\\nNo-one's gonna stop me now, no-one\\nIt's hopeless, so hopeless to even try\\n\\n\"},\n", " {'_id': 1127814,\n", " 'lyrics': \"queen made in heaven it's a beautiful day (queen) it's a beautiful day the sun is shining i feel good and no-one's gonna stop me now oh yeah it's a beautiful day i feel good i feel right and no-one no-one's gonna stop me now mama sometimes i feel so sad so sad so bad but no-one's gonna stop me now no-one it's hopeless - so hopeless to even try\",\n", " 'original_lyrics': \"\\n\\nQueen\\nMade In Heaven\\nIt's A Beautiful Day (Queen)\\nIt's a beautiful day\\nThe sun is shining\\nI feel good\\nAnd no-one's gonna stop me now, oh yeah\\nIt's a beautiful day\\nI feel good, I feel right\\nAnd no-one, no-one's gonna stop me now\\nMama\\nSometimes I feel so sad, so sad, so bad\\nBut no-one's gonna stop me now, no-one\\nIt's hopeless - so hopeless to even try\\n\\n\"},\n", " {'_id': 2011901,\n", " 'lyrics': 'instrumental',\n", " 'original_lyrics': '\\n\\nInstrumental\\n\\n'},\n", " {'_id': 1999247, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 1982992, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 1340484,\n", " 'lyrics': \"my secret fantasy ah oooh-oo-oooh my fantasy my fantasy oooooooh gives me pleasure gives me pleasure oooh-oo-oooh my secret fantasy ooh-oo-ooh ooh-oo-ooh my fantasy yeah (fantasy) gives me pleasure gives me pleasure do do do do do do do do do do do do do ha ahh ah ah ahhh ah ah ahhh ahh ahh ahh oooh yeah yeah fantasy it's my fantasy it's my fantasy (secret fantasy) fantasy oooh-ooh oooh-ooh\",\n", " 'original_lyrics': \"\\n\\nMy Secret Fantasy\\nAh\\nOooh-oo-oooh\\nMy fantasy\\nMy fantasy\\nOooooooh\\nGives me pleasure\\nGives me pleasure\\nOooh-oo-oooh\\nMy secret fantasy\\nOoh-oo-ooh, ooh-oo-ooh\\nMy fantasy\\nYeah\\n(Fantasy) gives me pleasure\\nGives me pleasure\\nDo, do, do, do\\nDo, do, do, do, do, do, do, do, do\\nHa\\nAhh\\nAh, ah, ahhh\\nAh, ah, ahhh, ahh, ahh, ahh\\nOooh, yeah, yeah\\nFantasy\\nIt's my fantasy\\nIt's my fantasy (secret fantasy), fantasy\\nOooh-ooh, oooh-ooh\\n\\n\"},\n", " {'_id': 1997761, 'lyrics': '', 'original_lyrics': '\\n\\n\\n\\n\\n'},\n", " {'_id': 1939138,\n", " 'lyrics': 'instrumental',\n", " 'original_lyrics': '\\n\\nInstrumental\\n\\n'},\n", " {'_id': 1987708,\n", " 'lyrics': 'instrumental',\n", " 'original_lyrics': '\\n\\nInstrumental\\n\\n'},\n", " {'_id': 1845547,\n", " 'lyrics': \"lately i've been hard to reach i've been too long on my own everybody has a private world where they can be alone are you calling me are you trying to get through are you reaching out for me like i'm reaching out for you\",\n", " 'original_lyrics': \"\\n\\nLately I've been hard to reach\\nI've been too long on my own\\nEverybody has a private world\\nWhere they can be alone\\nAre you calling me?\\nAre you trying to get through?\\nAre you reaching out for me?\\nLike I'm reaching out for you\\n\\n\"},\n", " {'_id': 2202647,\n", " 'lyrics': 'instrumental',\n", " 'original_lyrics': '\\n\\nInstrumental\\n\\n'},\n", " {'_id': 1934409,\n", " 'lyrics': 'everyone needs a place they can hide everyone need to find peace sublime oh peace of mind',\n", " 'original_lyrics': '\\n\\nEveryone needs a place they can hide\\nEveryone need to find peace sublime\\n\\nOh peace of mind\\n\\n'},\n", " {'_id': 2217157,\n", " 'lyrics': 'tavaszi szél vizet áraszt virágom virágom minden madár társat választ virágom virágom hát én immár kit válasszak virágom virágom te engemet én tégedet virágom virágom',\n", " 'original_lyrics': '\\n\\nTavaszi Szél vizet áraszt\\nVirágom, virágom\\nMinden madár társat választ\\nVirágom, virágom\\nHát én immár kit válasszak\\nVirágom, virágom\\nTe engemet, én tégedet\\nVirágom, virágom\\n\\n'},\n", " {'_id': 2221746, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 1254681, 'lyrics': '', 'original_lyrics': '\\n\\n[?]\\n\\n'},\n", " {'_id': 1944922, 'lyrics': '', 'original_lyrics': '\\n\\n[Instrumental]\\n\\n'},\n", " {'_id': 1980324,\n", " 'lyrics': \"love of my life you've hurt me you've broken my heart and now you leave me love of my life can't you see bring it back bring it back don't take it away from me because you don't know what it means to me love of my life don't leave me you've taken my love and now desert me love of my life can't you see bring it back bring it back don't take it away from me because you don't know what it means to me you will remember when this is blown over and everything's all by the way when i grow older i will be there at your side to remind you how i still love you i still love you hurry back hurry back please bring it back home to me because you don't know what it means to me love of my life love of my life yeah\",\n", " 'original_lyrics': \"\\n\\nLove of my life, you've hurt me\\nYou've broken my heart\\nAnd now you leave me\\nLove of my life, can't you see?\\nBring it back, bring it back\\nDon't take it away from me\\nBecause you don't know\\nWhat it means to me\\nLove of my life, don't leave me\\nYou've taken my love\\nAnd now desert me\\nLove of my life, can't you see?\\nBring it back, bring it back\\nDon't take it away from me\\nBecause you don't know\\nWhat it means to me\\nYou will remember\\nWhen this is blown over\\nAnd everything's all by the way\\nWhen I grow older\\nI will be there at your side\\nTo remind you how I still love you\\nI still love you\\nHurry back, hurry back\\nPlease, bring it back home to me\\nBecause you don't know\\nWhat it means to me\\nLove of my life\\nLove of my life\\nYeah\\n\\n\"},\n", " {'_id': 1746183,\n", " 'lyrics': \"love of my life - you've hurt me you've broken my heart and now you leave me love of my life can't you see bring it back bring it back don't take it away from me because you don't know - what it means to me love of my life don't leave me you've taken my love you now desert me love of my life can't you see bring it back bring it back don't take it away from me because you don't know - what it means to me you won't remember - when this is blown over and everything's all by the way - when i get older i will be there at your side to remind you how i still love you - i still love you back - hurry back please bring it back home to me because you don't know what it means to me - love of my life love of my life\",\n", " 'original_lyrics': \"\\n\\nLove of my life - you've hurt me\\nYou've broken my heart and now you leave me\\nLove of my life can't you see\\nBring it back, bring it back\\nDon't take it away from me, because you don't know -\\nWhat it means to me\\nLove of my life don't leave me\\nYou've taken my love, you now desert me\\nLove of my life can't you see\\nBring it back, bring it back\\nDon't take it away from me, because you don't know -\\nWhat it means to me\\nYou won't remember -\\nWhen this is blown over\\nAnd everything's all by the way -\\nWhen I get older\\nI will be there at your side to remind you\\nHow I still love you - I still love you\\nBack - hurry back\\nPlease bring it back home to me\\nBecause you don't know what it means to me -\\nLove of my life\\nLove of my life\\n\\n\"},\n", " {'_id': 1957307,\n", " 'lyrics': \"love of my life you've hurt me you've broken my heart and now you leave me love of my life can't you see bring it back bring it back don't take it away from me because you don't know what it means to me love of my life don't leave me you've taken my love and now desert me love of my life can't you see bring it back bring it back don't take it away from me because you don't know what it means to me you will remember when this is blown over and everything's all by the way when i grow older i will be there at your side to remind you how i still love you i still love you hurry back hurry back please bring it back home to me because you don't know what it means to me love of my life love of my life yeah\",\n", " 'original_lyrics': \"\\n\\nLove of my life, you've hurt me\\nYou've broken my heart\\nAnd now you leave me\\nLove of my life, can't you see?\\nBring it back, bring it back\\nDon't take it away from me\\nBecause you don't know\\nWhat it means to me\\nLove of my life, don't leave me\\nYou've taken my love\\nAnd now desert me\\nLove of my life, can't you see?\\nBring it back, bring it back\\nDon't take it away from me\\nBecause you don't know\\nWhat it means to me\\nYou will remember\\nWhen this is blown over\\nAnd everything's all by the way\\nWhen I grow older\\nI will be there at your side\\nTo remind you how I still love you\\nI still love you\\nHurry back, hurry back\\nPlease, bring it back home to me\\nBecause you don't know\\nWhat it means to me\\nLove of my life\\nLove of my life\\nYeah\\n\\n\"},\n", " {'_id': 1971439,\n", " 'lyrics': \"love of my life you've hurt me you've broken my heart and now you leave me love of my life can't you see bring it back bring it back don't take it away from me because you don't know what it means to me love of my life don't leave me you've taken my love and now desert me love of my life can't you see bring it back bring it back don't take it away from me because you don't know what it means to me you will remember when this is blown over and everything's all by the way when i grow older i will be there at your side to remind you how i still love you i still love you hurry back hurry back please bring it back home to me because you don't know what it means to me love of my life love of my life yeah\",\n", " 'original_lyrics': \"\\n\\nLove of my life, you've hurt me\\nYou've broken my heart\\nAnd now you leave me\\nLove of my life, can't you see?\\nBring it back, bring it back\\nDon't take it away from me\\nBecause you don't know\\nWhat it means to me\\nLove of my life, don't leave me\\nYou've taken my love\\nAnd now desert me\\nLove of my life, can't you see?\\nBring it back, bring it back\\nDon't take it away from me\\nBecause you don't know\\nWhat it means to me\\nYou will remember\\nWhen this is blown over\\nAnd everything's all by the way\\nWhen I grow older\\nI will be there at your side\\nTo remind you how I still love you\\nI still love you\\nHurry back, hurry back\\nPlease, bring it back home to me\\nBecause you don't know\\nWhat it means to me\\nLove of my life\\nLove of my life\\nYeah\\n\\n\"},\n", " {'_id': 75243,\n", " 'lyrics': \"ooh let's go steve walks warily down the street with the brim pulled way down low ain't no sound but the sound of his feet machine guns ready to go are you ready hey are you ready for this are you hanging on the edge of your seat out of the doorway the bullets rip to the sound of the beat yeah another one bites the dust another one bites the dust and another one gone and another one gone another one bites the dust yeah hey i'm gonna get you too another one bites the dust how do you think i'm going to get along without you when you're gone you took me for everything that i had and kicked me out on my own are you happy are you satisfied how long can you stand the heat out of the doorway the bullets rip to the sound of the beat look out another one bites the dust another one bites the dust and another one gone and another one gone another one bites the dust hey i'm gonna get you too another one bites the dust hey oh take it bite the dust hey another one bites the dust another one bites the dust ow another one bites the dust hey hey another one bites the dust hey-eh-eh ooh there are plenty of ways you can hurt a man and bring him to the ground you can beat him you can cheat him you can treat him bad and leave him when he's down yeah but i'm ready yes i'm ready for you i'm standing on my own two feet out of the doorway the bullets rip repeating the sound of the beat oh yeah another one bites the dust another one bites the dust and another one gone and another one gone another one bites the dust(yeah) hey i'm gonna get you too another one bites the dust shoot out ay-yeah all right\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nOoh, let's go!\\n\\n[Verse 1]\\nSteve walks warily down the street\\nWith the brim pulled way down low\\nAin't no sound but the sound of his feet\\nMachine guns ready to go\\nAre you ready? Hey, are you ready for this?\\nAre you hanging on the edge of your seat?\\nOut of the doorway the bullets rip\\nTo the sound of the beat, yeah\\n\\n[Chorus]\\nAnother one bites the dust\\nAnother one bites the dust\\nAnd another one gone, and another one gone\\nAnother one bites the dust, yeah\\nHey, I'm gonna get you too\\nAnother one bites the dust\\n\\n[Verse 2]\\nHow do you think I'm going to get along\\nWithout you, when you're gone\\nYou took me for everything that I had\\nAnd kicked me out on my own\\nAre you happy, are you satisfied?\\nHow long can you stand the heat?\\nOut of the doorway the bullets rip\\nTo the sound of the beat\\nLook out\\n\\n[Chorus]\\nAnother one bites the dust\\nAnother one bites the dust\\nAnd another one gone, and another one gone\\nAnother one bites the dust\\nHey, I'm gonna get you too\\nAnother one bites the dust\\n\\n[Bridge]\\nHey\\nOh, take it\\nBite the dust, hey\\nAnother one bites the dust\\nAnother one bites the dust, ow\\nAnother one bites the dust, hey hey\\nAnother one bites the dust, hey-eh-eh\\nOoh\\n\\n[Verse 3]\\nThere are plenty of ways you can hurt a man\\nAnd bring him to the ground\\nYou can beat him, you can cheat him, you can treat him bad\\nAnd leave him when he's down, yeah\\nBut I'm ready, yes I'm ready for you\\nI'm standing on my own two feet\\nOut of the doorway the bullets rip\\nRepeating the sound of the beat\\nOh yeah\\n\\n[Chorus]\\nAnother one bites the dust\\nAnother one bites the dust\\nAnd another one gone, and another one gone\\nAnother one bites the dust(Yeah)\\nHey, I'm gonna get you too\\nAnother one bites the dust\\n\\n[Outro]\\nShoot out\\nAy-yeah\\nAll Right\\n\\n\"},\n", " {'_id': 1530661,\n", " 'lyrics': \"you suck my blood like a leech you break the law and you preach screw my brain till it hurts you've taken all my money and you want more misguided old mule with your pig headed rules with your narrow minded cronies who are fools of the first division death on two legs you're tearing me apart death on two legs you've never had a heart of your own kill joy bad guy big talking small fry you're just an old barrow boy have you found a new toy to replace me can you face me but now you can kiss my ass goodbye feel good are you satisfied do you feel like suicide (i think you should) is your conscience all right does it plague you at night do you feel good feel good you talk like a big business tycoon you're just a hot air balloon so no one gives you a damn you're just an overgrown schoolboy let me tan your hide a dog with disease you're the king of the 'sleaze' put your money where your mouth is mister know-all was the fin on your back part of the deal (shark) chorus} death on two legs you're tearing me apart death on two legs you've never had a heart (you never did) of your own (right from the start) insane you should be put inside you're a sewer rat decaying in a cesspool of pride should be made unemployed then make yourself null and void make me feel good i feel good\",\n", " 'original_lyrics': \"\\n\\nYou suck my blood like a leech\\nYou break the law and you preach\\nScrew my brain till it hurts\\nYou've taken all my money\\nAnd you want more\\n\\nMisguided old mule with your pig headed rules\\nWith your narrow minded cronies\\nWho are fools of the first division\\n\\n[Chorus]\\nDeath on two legs\\nYou're tearing me apart\\nDeath on two legs\\nYou've never had a heart, of your own\\n\\nKill joy, bad guy, big talking, small fry\\nYou're just an old barrow boy\\nHave you found a new toy to replace me?\\nCan you face me?\\nBut now you can kiss\\nMy ass goodbye!\\n\\nFeel good, are you satisfied?\\nDo you feel like suicide?\\n(I think you should)\\nIs your conscience all right\\nDoes it plague you at night?\\nDo you feel good feel good?\\n\\nYou talk like a big business tycoon\\nYou're just a hot air balloon\\nSo no one gives you a damn\\nYou're just an overgrown schoolboy\\nLet me tan your hide\\n\\nA dog with disease\\nYou're the king of the 'sleaze'\\nPut your money where your mouth is\\nMister know-all\\nWas the fin on your back\\nPart of the deal? (shark)\\n\\n[Chorus}\\nDeath on two legs\\nYou're tearing me apart\\nDeath on two legs\\nYou've never had a heart (you never did) of your own\\n(right from the start)\\n\\nInsane, you should be put inside\\nYou're a sewer rat decaying in a cesspool of pride\\nShould be made unemployed\\nThen make yourself null and void\\nMake me feel good\\nI FEEL GOOD!\\n\\n\"},\n", " {'_id': 308684,\n", " 'lyrics': \"yesterday my life was in ruin now today i know what i'm doing got a feeling i should be doing all right doing all right where will i be this time tomorrow jumped in joy or sinking in sorrow anyway i should be doing all right doing all right should be waiting for the sun looking round to find the words to say should be waiting for the skies to clear there ain't time in all the world should be waiting for the sun and anyway i've got to hide away yesterday my life was in ruin now today god knows what i'm doing anyway i should be doing all right doing all right doing all right\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nYesterday my life was in ruin\\nNow today I know what I'm doing\\nGot a feeling I should be doing all right\\nDoing all right\\n\\nWhere will I be this time tomorrow?\\nJumped in joy or sinking in sorrow\\nAnyway I should be doing all right\\nDoing all right\\n\\nShould be waiting for the sun\\nLooking round to find the words to say\\nShould be waiting for the skies to clear\\nThere ain't time in all the world\\nShould be waiting for the sun\\nAnd anyway I've got to hide away\\n\\nYesterday my life was in ruin\\nNow today God knows what I'm doing\\nAnyway I should be doing all right\\nDoing all right\\n\\n[Outro]\\nDoing all right\\n\\n\"},\n", " {'_id': 1015772,\n", " 'lyrics': \"i have sinned dear father father i have sinned try and help me father won't you let me in liar nobody believes me liar why don't they leave me alone sire i have stolen stolen many times raised my voice in anger when i know i never should liar oh ev'rybody deceives me liar why don't you leave me alone liar i have sailed the seas liar from mars to mercury liar i have drunk the wine liar time after time father please forgive me you know you'll never leave me please will you direct me in the right way liar liar liar liar liar liar look what the've done to me liar ev'vr day ev'ry night liar all the time liar ohhh let me go listen are you gonna listen mama i'm gonna be your slave all day long mama i'm gonna try behave all day long mama gonna be your slave all day long i'm gonna love you till your dying day all day long i'm gonna serve you till you dying day all day long i'm gonna love you till you dying day all day long i'm gonna kneel down by your side and pray i'm gonna serve you till you dying day all day long all day long all day long all day long all day long all day long all day long all day long all day long all day long all day long liar liar they never ever let you win liar liar everything you do is sin liar nobody believes you liar they bring you down before you begin now let me tell you this ah yes 'for they let you\",\n", " 'original_lyrics': \"\\n\\nI have sinned dear Father\\nFather I have sinned\\nTry and help me Father\\nWon't you let me in? Liar\\nNobody believes me Liar\\nWhy don't they leave me alone?\\nSire I have stolen stolen many times\\nRaised my voice in anger\\nWhen I know I never should\\nLiar oh ev'rybody deceives me\\nLiar why don't you leave me alone?\\nLiar I have sailed the seas\\nLiar from Mars to Mercury\\nLiar I have drunk the wine\\nLiar time after time\\nFather please forgive me\\nYou know you'll never leave me\\nPlease will you direct me in the right way\\nLiar liar liar liar liar\\nLiar look what the've done to me\\nLiar ev'vr day ev'ry night\\nLiar all the time\\nLiar ohhh\\nLet me go\\nListen are you gonna listen?\\nMama I'm gonna be your slave\\nAll day long\\nMama I'm gonna try behave\\nAll day long\\nMama gonna be your slave\\nAll day long\\nI'm gonna love you till your dying day\\nAll day long\\nI'm gonna serve you till you dying day\\nAll day long\\nI'm gonna love you till you dying day\\nAll day long\\nI'm gonna kneel down by your side and pray\\nI'm gonna serve you till you dying day\\nAll day long\\nAll day long\\nAll day long all day long all day long\\nAll day long all day long all day long\\nAll day long all day long all day long\\nLiar liar they never ever let you win\\nLiar liar everything you do is sin\\nLiar nobody believes you\\nLiar they bring you down before you begin\\nNow let me tell you this\\nAh yes 'for they let you\\n\\n\"},\n", " {'_id': 309924,\n", " 'lyrics': 'guilt stains on my pillow blood on my terraces torsos in my closet shadows from my past live is real life is real life is real so real sleeping is my leisure waking up in a minefield dream is just a pleasure dome love is a roulette wheel - life is real success is my breathing space i brought it on myself i will price it i will cash it i can take it or leave it loneliness is my hiding place breastfeeding myself what more can i say i have swallowed the bitter pill i can taste it i can taste it music will be my mistress loving like a whore lennon is a genius living in every pore life is real life is real life is real so real life is cruel life is a bitch life is real - so real',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nGuilt stains on my pillow\\nBlood on my terraces\\nTorsos in my closet\\nShadows from my past live is real\\n\\n[Chorus]\\nLife is real, life is real, so real\\n\\nSleeping is my leisure\\nWaking up in a minefield\\nDream is just a pleasure dome\\nLove is a roulette wheel - life is real\\n\\n[Chorus]\\n\\n[Verse 2]\\nSuccess is my breathing space\\nI brought it on myself\\nI will price it\\nI will cash it\\nI can take it or leave it\\nLoneliness is my hiding place\\nBreastfeeding myself\\nWhat more can I say\\nI have swallowed the bitter pill\\nI can taste it, I can taste it\\n\\n[Chorus]\\n\\n[Bridge]\\nMusic will be my mistress\\nLoving like a whore\\nLennon is a genius\\nLiving in every pore\\n\\n[Outro]\\nLife is real, life is real, life is real, so real\\nLife is cruel\\nLife is a bitch\\nLife is real - so real\\n\\n'},\n", " {'_id': 308883,\n", " 'lyrics': \"baby you've been had i am forever searching high and low but why does everybody tell me no neptune of the seas have you an answer for me please and the lily of the valley doesn't know i lie in wait with open eyes i carry on through stormy skies i follow every course my kingdom for a horse but each time i grow old serpent of the nile relieve me for a while and cast me from your spell and let me go messenger from seven seas has flown to tell the king of rhye he's lost his throne wars will never cease is there time enough for peace but the lily of the valley doesn't know\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nBaby, you've been had\\n\\n[Verse 1]\\nI am forever searching high and low\\nBut why does everybody tell me no\\nNeptune of the seas\\nHave you an answer for me please\\nAnd the lily of the valley doesn't know\\n\\nI lie in wait with open eyes\\nI carry on through stormy skies\\nI follow every course\\nMy kingdom for a horse\\nBut each time I grow old\\nSerpent of the Nile\\nRelieve me for a while\\nAnd cast me from your spell and let me go\\n\\nMessenger from Seven Seas has flown\\nTo tell the King of Rhye he's lost his throne\\nWars will never cease\\nIs there time enough for peace\\nBut the lily of the valley doesn't know\\n\\n\"},\n", " {'_id': 1236270,\n", " 'lyrics': \"queen sheer heart attack lily of the valley (mercury) i am forever searching high and low but why does everybody tell me no neptune of the seas have you an answer for me please and the lily of the valley doesn't know i lie in wait with open eyes i carry on through stormy skies i follow every course my kingdom for a horse but each time i grow old serpent of the nile relieve me for a while and cast me from your spell and let me go messenger from seven seas has flown to tell the king of rhye he's lost his throne wars will never cease is there time enough for peace but the lily of the valley doesn't know\",\n", " 'original_lyrics': \"\\n\\nQueen\\nSheer Heart Attack\\nLily Of The Valley (Mercury)\\nI am forever searching high and low\\nBut why does everybody tell me no\\nNeptune of the seas\\nHave you an answer for me please\\nAnd the lily of the valley doesn't know\\nI lie in wait with open eyes\\nI carry on through stormy skies\\nI follow every course\\nMy kingdom for a horse\\nBut each time I grow old\\nSerpent of the Nile\\nRelieve me for a while\\nAnd cast me from your spell and let me go\\nMessenger from Seven Seas has flown\\nTo tell the King of Rhye he's lost his throne\\nWars will never cease\\nIs there time enough for peace\\nBut the lily of the valley doesn't know\\n\\n\"},\n", " {'_id': 1340593,\n", " 'lyrics': \"words and music by freddie mercury sometimes i feel i'm gonna break down and cry (so lonely) nowhere to go nothing to do with my time i get lonely so lonely living on my own sometimes i feel i'm always walking too fast and everything is coming down on me down on me i go crazy oh so crazy living on my own dee do de de dee do de de i don't have no time for no monkey business dee do de de dee do de de i get so lonely lonely lonely lonely yeah got to be some good times ahead sometimes i feel nobody gives me no warning find my head is always up in the clouds in a dreamworld its not easy living on my own dee do de de dee do de de i don't have no time for no monkey business dee do de de dee do de de i get so lonely lonely lonely lonely yeah got to be some good times ahead dee do de de dee do de de i don't have no time for no monkey business dee do de de dee do de de i get so lonely lonely lonely lonely yeah got to be some good times ahead\",\n", " 'original_lyrics': \"\\n\\nWords and music by Freddie Mercury\\n\\nSometimes I feel I'm gonna break down and cry (so lonely)\\nNowhere to go nothing to do with my time\\nI get lonely so lonely living on my own\\n\\nSometimes I feel I'm always walking too fast\\nAnd everything is coming down on me down on me\\nI go crazy oh so crazy living on my own\\n\\nDee do de de dee do de de\\nI don't have no time for no monkey business\\nDee do de de dee do de de\\nI get so lonely lonely lonely lonely yeah\\nGot to be some good times ahead\\n\\nSometimes I feel nobody gives me no warning\\nFind my head is always up in the clouds in a dreamworld\\nIts not easy living on my own\\n\\nDee do de de dee do de de\\nI don't have no time for no monkey business\\nDee do de de dee do de de\\nI get so lonely lonely lonely lonely yeah\\nGot to be some good times ahead\\n\\nDee do de de dee do de de\\nI don't have no time for no monkey business\\nDee do de de dee do de de\\nI get so lonely lonely lonely lonely yeah\\nGot to be some good times ahead\\n\\n\"},\n", " {'_id': 311644,\n", " 'lyrics': \"with the morning i face the sun i lift my head and smile for everyone every afternoon you'll find me working on i got my new shoes on got to be moving on (that's what they say) every night i'm tossed and i shake my fevered brow thinking of my lost opportunity yes every morning i face the sun i get so positive with everyone and every afternoon you'll find the cracks showing through they know what i'm going through (oh yes they do) every evening finds me the optimist behind me gone with my lost opportunity\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nWith the morning I face the sun\\nI lift my head and smile for everyone\\nEvery afternoon you'll find me working on\\nI got my new shoes on\\nGot to be moving on\\n(That's what they say)\\nEvery night I'm tossed\\nAnd I shake my fevered brow\\nThinking of my lost opportunity\\nYes every morning I face the sun\\nI get so positive with everyone\\nAnd every afternoon\\nYou'll find the cracks showing through\\nThey know what I'm going through\\n(Oh yes they do)\\nEvery evening finds me\\nThe optimist behind me\\nGone with my lost opportunity\\n\\n\"},\n", " {'_id': 1862005,\n", " 'lyrics': \"love don't give no compensation love don't pay no bills love don't give no indication love just won't stand still love kills drills you through your heart love kills scars you from the start it's just a living pastime ruining your heartline stays for a lifetime won't let you go coz love love love won't leave you alone love don't take no reservations love is no square deal hey love don't give no justification it strikes like cold steel love kills drills you through your heart love kills scars you from the start it's just a living pastime burning your lifeline stay for a long time won't let you go coz love love love won't leave you alone coz love love love won't leave you alone love can play with your emotions open invitation to your heart love can play with your emotions open invitation to your heart love kills love can play with your emotions open invitation to your heart love kills love kills love love love love love kills drills you through your heart love kills scars you from the start it's just a living pastime ruining your heartline won't let you go love kills hey drills you through your heart love kills tears you right apart it won't let go it won't let go love kills yeah yeah love kills drills you through your heart love kills\",\n", " 'original_lyrics': \"\\n\\nLove don't give no compensation\\nLove don't pay no bills\\nLove don't give no indication\\nLove just won't stand still\\nLove kills, drills you through your heart\\nLove kills, scars you from the start\\nIt's just a living pastime, ruining your heartline\\nStays for a lifetime\\nWon't let you go\\nCoz love, love, love won't leave you alone\\nLove don't take no reservations, love is no square deal\\nHey love don't give no justification, it strikes like cold steel\\nLove kills, drills you through your heart\\nLove kills, scars you from the start\\nIt's just a living pastime\\nBurning your lifeline\\nStay for a long time won't let you go\\nCoz love, love, love won't leave you alone\\nCoz love, love, love won't leave you alone\\nLove can play with your emotions\\nOpen invitation to your heart\\nLove can play with your emotions\\nOpen invitation to your heart\\nLove kills\\nLove can play with your emotions\\nOpen invitation to your heart\\nLove kills\\nLove kills\\nLove, love, love, love\\nLove kills\\nDrills you through your heart\\nLove kills, scars you from the start\\nIt's just a living pastime, ruining your heartline\\nWon't let you go\\nLove kills, hey, drills you through your heart\\nLove kills, tears you right apart\\nIt won't let go\\nIt won't let go\\nLove kills, yeah, yeah\\nLove kills drills you through your heart\\nLove kills\\n\\n\"},\n", " {'_id': 308937,\n", " 'lyrics': \"love of my life you've hurt me you've broken my heart and now you leave me love of my life can't you see bring it back bring it back don't take it away from me because you don't know what it means to me love of my life don't leave me you've taken my love you now desert me love of my life can't you see bring it back bring it back don't take it away from me because you don't know what it means to me you will remember when this is blown over and everything's all by the way when i grow older i will be there at your side to remind you how i still love you - i still love you back hurry back please bring it back home to me because you don't know what it means to me love of my life love of my life\",\n", " 'original_lyrics': \"\\n\\nLove of my life, you've hurt me\\nYou've broken my heart, and now you leave me\\nLove of my life, can't you see\\nBring it back, bring it back, don't take it away from me\\nBecause you don't know what it means to me\\n\\nLove of my life, don't leave me\\nYou've taken my love, you now desert me\\nLove of my life can't you see\\nBring it back, bring it back, don't take it away from me\\nBecause you don't know what it means to me\\n\\nYou will remember, when this is blown over\\nAnd everything's all by the way\\nWhen I grow older, I will be there at your side, to remind you\\nHow I still love you - I still love you\\n\\nBack, hurry back, please bring it back home to me\\nBecause you don't know what it means to me\\n\\nLove of my life\\nLove of my life\\n\\n\"},\n", " {'_id': 308923,\n", " 'lyrics': \"in the year of '39 assembled here the volunteers in the days when lands were few here the ship sailed out into the blue and sunny morn sweetest sight ever seen and the night followed day and the storytellers say that the score brave souls inside for many a lonely day sailed across the milky seas never looked back never feared never cried don't you hear my call though you're many years away don't you hear me calling you write your letters in the sand for the day i take your hand in the land that our grandchildren knew in the year of '39 came a ship in from the blue the volunteers came home that day and they bring good news of a world so newly born though their hearts so heavily weigh for the earth is old and grey little darling we'll away but my love this cannot be oh so many years are gone though i'm older but a year your mother's eyes from your eyes cry to me don't you hear my call though you're many years away don't you hear me calling you write your letters in the sand for the day i take your hand in the land that our grandchildren knew don't you hear my call though you're many years away don't you hear me calling you all your letters in the sand cannot heal me like your hand for my life still ahead pity me\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nIn the year of '39 assembled here the Volunteers\\nIn the days when lands were few\\nHere the ship sailed out into the blue and sunny morn\\nSweetest sight ever seen\\nAnd the night followed day\\nAnd the storytellers say\\nThat the score brave souls inside\\nFor many a lonely day sailed across the milky seas\\nNever looked back, never feared, never cried\\n\\n[Chorus]\\nDon't you hear my call though you're many years away\\nDon't you hear me calling you\\nWrite your letters in the sand\\nFor the day I take your hand\\nIn the land that our grandchildren knew\\n\\n[Verse 2]\\nIn the year of '39 came a ship in from the blue\\nThe volunteers came home that day\\nAnd they bring good news of a world so newly born\\nThough their hearts so heavily weigh\\nFor the Earth is old and grey, little darling we'll away\\nBut my love this cannot be\\nOh so many years are gone though I'm older but a year\\nYour mother's eyes from your eyes cry to me\\n\\n[Chorus]\\nDon't you hear my call though you're many years away\\nDon't you hear me calling you\\nWrite your letters in the sand\\nFor the day I take your hand\\nIn the land that our grandchildren knew\\n\\n[Chorus 2]\\nDon't you hear my call though you're many years away\\nDon't you hear me calling you\\nAll your letters in the sand cannot heal me like your hand\\nFor my life\\nStill ahead\\nPity Me\\n\\n\"},\n", " {'_id': 1139139,\n", " 'lyrics': \"words and music by brian may and tim staffell she won our hearts the arts she loved is painting pictures for free when she was done she hung them up for all the children to see goodbye april lady its been good to have you around goodbye april lady youve done a lot for the folks in this town the children learned to read she strung their beads its sorry she was the one as you can see isn't she good she don't leave nothing undone goodbye april lady its been good to have you around goodbye april lady youve done a lot for the folks in this town she taught them all to love she was their cream and we don't want her to go but we know too well she fell in love and theres no stopping her so goodbye april lady its been good to have you around goodbye april lady youve done a lot for the folks in this town goodbye april lady\",\n", " 'original_lyrics': \"\\n\\nWords and music by brian may and tim staffell\\n\\nShe won our hearts the arts she loved\\nIs painting pictures for free\\nWhen she was done she hung them up\\nFor all the children to see\\nGoodbye april lady\\nIts been good to have you around\\nGoodbye april lady\\nYouve done a lot for the folks in this town\\nThe children learned to read\\nShe strung their beads\\nIts sorry she was the one\\nAs you can see isn't she good\\nShe don't leave nothing undone\\nGoodbye april lady\\nIts been good to have you around\\nGoodbye april lady\\nYouve done a lot for the folks in this town\\nShe taught them all to love\\nShe was their cream\\nAnd we don't want her to go\\nBut we know too well\\nShe fell in love\\nAnd theres no stopping her so\\nGoodbye april lady\\nIts been good to have you around\\nGoodbye april lady\\nYouve done a lot for the folks in this town\\nGoodbye april lady...\\n\\n\"},\n", " {'_id': 309849,\n", " 'lyrics': \"back chat back chat you burn all my energy back chat back chat criticizing all you see back chat back chat analyzing what i say and you always get your way oh yeah see what you've done to me back chat back chat you're driving me insane it's a battle to the end knock you down you come again talk back talk back you've got me on the rack twisting every word i say wind me up and get your way fat chance i have of making a romance if i'm ever gonna win have to get the last word in take it from there twisting every word i say wind me up and let me play wake up stand up and drag yourself on out get down get ready scream and shout back off be cool and learn to change your ways cuz your talking in your sleep and your walking in a daze don't push your luck with me i'm ready to attack cuz when i'm tryna talk to you all you do is just talk back you stand so tall you don't flatter me at all don't talk back don't talk back don't talk back just leave me alone + yes you do yes you do baby back chat back chat\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nBack Chat, Back Chat\\nYou burn all my energy\\nBack Chat, Back Chat\\nCriticizing all you see\\nBack Chat, Back Chat\\nAnalyzing what I say\\nAnd you always get your way\\n\\nOh yeah see what you've done to me\\n\\n[Bridge]\\nBack Chat, Back Chat\\nYou're driving me insane\\nIt's a battle to the end, knock you down you\\nCome again\\n\\n[Verse 1]\\nTalk back, talk back you've got me on the rack\\nTwisting every word I say\\nWind me up and get your way\\nFat chance I have of making a romance\\nIf I'm ever gonna win\\nHave to get the last word in\\nTake it from there\\nTwisting every word I say\\nWind me up and let me play\\n\\n[Chorus]\\n\\n[Guitar Solo]\\n\\n[Verse 2]\\nWake up stand up and drag yourself on out\\nGet down get ready\\nScream and shout\\nBack off be cool\\nAnd learn to change your ways\\nCuz your talking in your sleep\\nAnd your walking in a daze\\nDon't push your luck with me\\nI'm ready to attack\\nCuz when i'm tryna talk to you all you do is just talk back\\n\\n[Verse 3]\\nYou stand so tall you don't flatter me at all\\nDon't talk back, don't talk back don't talk back\\nJust leave me alone\\n[Outro]\\n\\n[Chorus]+\\nYes you do, yes you do baby\\n\\nBack chat, back chat [x5]\\n\\n\"},\n", " {'_id': 309743,\n", " 'lyrics': \"(when love breaks up) breaks up (when the dawn light wakes up) wakes up a new life is born somehow i have to make this final breakthru now i wake up feel just fine your face fills my mind i get religion quick because you're looking divine honey you're touching something you're touching me i'm under your thumb under your spell can't you see if i could only reach you if i could make you smile if i could only reach you that would really be a breakthru oh yeah (breakthru) these barriers of pain (breakthru) yeah to the sunshine from the rain make my feelings known towards you turn my heart inside and out for you now somehow i have to make this final (break)thru (now) oh yeah your smile speaks books to me i break up with each and every one of your looks at me honey you're starting something deep inside honey you're sparking something this fire in me i'm outta control i want to rush headlong into this ecstasy if i could only reach you if i could make you smile if i could only reach you (ooh-ooh ooh-ooh ooh-ooh ooh-) that would really be a (breakthru) if i could only reach you if i could make you smile if i could only reach you that would really be a breakthru oh yeah (breakthru) (breakthru) (break-) hey if i could only reach you if i could make you smile if i could only reach you (ooh-ooh ooh-ooh ooh-ooh ooh-) that would really be a (breakthru) if i could only reach you if i could make you smile if i could only reach you that would really be a (breakthru) (breakthru)\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\n(When love breaks up) Breaks up\\n(When the dawn light wakes up) Wakes up\\nA new life is born\\nSomehow I have to make this final breakthru\\nNow!\\n\\n[Verse 1]\\nI wake up\\nFeel just fine\\nYour face\\nFills my mind\\nI get religion quick\\nBecause you're looking divine\\nHoney you're touching something, you're touching me\\nI'm under your thumb, under your spell, can't you see?\\n\\n[Chorus]\\nIf I could only reach you\\nIf I could make you smile\\nIf I could only reach you\\nThat would really be a breakthru\\nOh yeah\\n\\n[Post-Chorus]\\n(Breakthru) These barriers of pain\\n(Breakthru) Yeah, to the sunshine from the rain\\nMake my feelings known towards you\\nTurn my heart inside and out for you now\\nSomehow I have to make this final (break)thru\\n(Now!)\\nOh yeah\\n\\n[Verse 2]\\nYour smile\\nSpeaks books to me\\nI break up\\nWith each and every one of your looks at me\\nHoney, you're starting something deep inside\\nHoney, you're sparking something, this fire in me\\nI'm outta control, I want to rush headlong into this ecstasy\\n\\n[Chorus]\\nIf I could only reach you\\nIf I could make you smile\\nIf I could only reach you (ooh-ooh ooh-ooh ooh-ooh ooh-)\\nThat would really be a (breakthru!)\\nIf I could only reach you\\nIf I could make you smile\\nIf I could only reach you\\nThat would really be a breakthru\\nOh yeah\\n\\n[Bridge]\\n(Breakthru)\\n(Breakthru)\\n(Break-)\\nHey!\\n\\n[Chorus]\\nIf I could only reach you\\nIf I could make you smile\\nIf I could only reach you (ooh-ooh ooh-ooh ooh-ooh ooh-)\\nThat would really be a (breakthru!)\\nIf I could only reach you\\nIf I could make you smile\\nIf I could only reach you\\nThat would really be a (breakthru)\\n\\n[Outro]\\n(Breakthru)\\n\\n\"},\n", " {'_id': 310039,\n", " 'lyrics': 'call me if you need my love (my love babe) call me if you need my love she lives in a luxury apartment in the heart of town i live in the country and my house is tumbling down (ooh ooh) call me if you need my love i met her in her neighborhood i was just passing through one look was all i took yeah one look or two (ooh ooh) you got my name you got my number you got my number you got my name yeah yeah yeah (have mercy) now i am going to settle down get myself a wife or two no more of this running around like i used to do call me if you need my love babe call me if you need my love call me if you need my love (oh babe) call me if you need my love call me if you need my love (oh babe) call me if you need my love call me if you need my love (oh babe) call me if you need my love',\n", " 'original_lyrics': '\\n\\n[Chorus]\\nCall me if you need my love (my love, babe)\\nCall me if you need my love[x5]\\n\\n[Verse 1]\\nShe lives in a luxury\\nApartment in the heart of town\\nI live in the country and\\nMy house is tumbling down (ooh ooh)\\n\\n[Chorus]\\nCall me if you need my love[x4]\\n\\n[Verse 2]\\nI met her in her neighborhood\\nI was just passing through\\nOne look was all I took, yeah\\nOne look or two (ooh ooh)\\n\\n[Chorus]\\n\\n[Verse 3]\\nYou got my name, you got my number\\nYou got my number, you got my name\\nYeah, yeah, yeah\\n\\n[Bridge]\\n(Have mercy)\\n\\nNow I am going to settle down\\nGet myself a wife or two\\nNo more of this running around\\nLike I used to do\\n\\n[Chorus]\\nCall me if you need my love, babe\\nCall me if you need my love\\nCall me if you need my love (oh, babe)\\nCall me if you need my love\\nCall me if you need my love (oh, babe)\\nCall me if you need my love\\nCall me if you need my love (oh, babe)\\nCall me if you need my love\\n\\n'},\n", " {'_id': 309586,\n", " 'lyrics': 'i get some headaches when i hit the heights like in the morning after crazy nights like some mother-in-law in her nylon tights they are always they are always they are always they are always coming soon coming soon on the outside of the tracks you take them the same old babies with the same old toys the neighbours screaming when the noise annoys somebody nagging you when you are out with the boys they are always they are always they are always they are always coming soon coming soon on the outside of the tracks they are always they are always they are always they are always coming soon coming soon on the outside of the tracks',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nI get some headaches when I hit the heights\\nLike in the morning after crazy nights\\nLike some mother-in-law in her nylon tights\\n\\n[Chorus]\\nThey are always\\nThey are always\\nThey are always\\nThey are always\\nComing soon\\nComing soon, on the outside, of the tracks\\n\\n[Verse 2]\\nYou take them\\nThe same old babies with the same old toys\\nThe neighbours screaming when the noise annoys\\nSomebody nagging you when you are out with the boys\\n\\n[Chorus]\\nThey are always\\nThey are always\\nThey are always\\nThey are always\\nComing soon\\nComing soon, on the outside, of the tracks\\nThey are always\\nThey are always\\nThey are always\\nThey are always\\nComing soon\\nComing soon, on the outside, of the tracks\\n\\n'},\n", " {'_id': 1181495,\n", " 'lyrics': \"oooh yeah yeah yeah yeah you're taking all the sunshine away making out like you're the main line (i knew that) 'cause you're a cool cat tapping on the toe with a new hat oooh just cruising driving along like the swing king feeling the beat of my heart uhuh feeling the beat of my heart oooh you're a cool cat coming on strong with all the chit chat oooh you're alright hanging out and stealing all the limelight messing with the beat of my heart yeah oooh messing with the beat of my heart oooh you used to be a mean kid oooh making such a deal of life oooh you were wishing and hoping and waiting to really hit the big time but did it happen happen nooooooooo you're speeding to fast slow down slow down you'd better slow down slow down you really know how to set the mood and you really get inside the groove cool cat tapping on the toe with a new hat oooh just cruising driving along like the swing king feeling the beat of my heart feeling the beat of my heart yeah feeling the beat of my heart can you feel it feeling the beat of my heart feeling the beat of my heart oooh feeling feeling feeling feeling every feeling\",\n", " 'original_lyrics': \"\\n\\nOooh yeah yeah yeah yeah!\\nYou're taking all the sunshine away\\nMaking out like you're the main line (I knew that)\\n'cause you're a cool cat\\nTapping on the toe with a new hat\\nOooh just cruising\\nDriving along like the swing king\\nFeeling the beat of my heart uhuh!\\nFeeling the beat of my heart\\n\\nOooh, you're a cool cat\\nComing on strong with all the chit chat\\nOooh you're alright\\nHanging out and stealing all the limelight\\nMessing with the beat of my heart yeah!\\nOooh, messing with the beat of my heart\\nOooh you used to be a mean kid\\nOooh making such a deal of life\\nOooh you were wishing and hoping and waiting\\nTo really hit the big time\\nBut did it happen? happen? NOOOOOOOOO!\\nYou're speeding to fast slow down\\nSlow down, you'd better slow down, SLOW DOWN!\\n\\nYou really know how to set the mood\\nAnd you really get inside the groove\\nCool cat\\nTapping on the toe with a new hat\\nOooh, just cruising\\nDriving along like the swing king\\nFeeling the beat of my heart\\nFeeling the beat of my heart yeah!\\nFeeling the beat of my heart\\nCan you feel it?\\nFeeling the beat of my heart\\nFeeling the beat of my heart\\nOooh feeling feeling feeling\\nFeeling every feeling\\n\\n\"},\n", " {'_id': 309819,\n", " 'lyrics': \"i'm not invited to the party been sitting here all night i'm all alone here at the party don't got no black coat don't got no tie i got to shape up now you got to know why dancer dancer i can't live with it i'm going to die without it dancer dancer there is not a doubt about it dancer dancer why don't you kick off your dancing shoes and come along with me you're the life and soul of the funk-tion it took me all night to get hold of the right introduction blew me out of sight i taste your lipstick i look in your eyes you feel fantastic my body cries dancer dancer i can't believe your dancing can't take you home can't take your dancing dancer dancer dance the night away\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI'm not invited to the party\\nBeen sitting here all night\\nI'm all alone here at the party\\nDon't got no black coat\\nDon't got no tie\\nI got to shape up now\\nYou got to know why\\n\\n[Chorus]\\nDancer, Dancer\\n\\n[Bridge]\\nI can't live with it I'm going to die without it\\nDancer, Dancer\\nThere is not a doubt about it\\n\\n[Chorus]\\nDancer, Dancer\\n\\n[Verse 2]\\nWhy don't you kick off your dancing shoes\\nAnd come along with me\\nYou're the life and soul of the funk-tion\\nIt took me all night\\nTo get hold of the right introduction\\nBlew me out of sight\\nI taste your lipstick\\nI look in your eyes\\nYou feel fantastic\\nMy body cries\\n\\n[Outro]\\nDancer, Dancer\\nI can't believe your dancing\\nCan't take you home, can't take your dancing\\nDancer, Dancer, dance the night away\\n\\n\"},\n", " {'_id': 141092,\n", " 'lyrics': \"delilah delilah oh my oh my oh my you're irresistible you make me smile when i'm just about to cry you bring me hope you make me laugh - and i like it you get away with murder so innocent but when you throw a moody you're all claws and you bite that's all right delilah delilah oh my oh my oh my you're unpredictable you make me so very happy when you cuddle up and go to sleep beside me and then you make me slightly mad when you pee all over my chippendale suite delilah delilah oh oh oh oh oh oh oh you take over my house and home you even try to answer my telephone delilah you're the apple of my eye meeow meeow meeow delilah i love you delilah oh you make me so very happy you give me kisses and i go out of my mind ooh meeow meeow meeow you're irresistible - i love you delilah delilah i love you hah hah you make me very happy oh yeah - i love your kisses i love your kisses i love your kisses i love your kisses i love your your your kisses i love your kisses\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nDelilah Delilah\\nOh my oh my oh my you're irresistible\\nYou make me smile when I'm just about to cry\\nYou bring me hope you make me laugh - and I like it\\nYou get away with murder so innocent\\nBut when you throw a moody you're all claws and you bite\\nThat's all right\\n\\nDelilah Delilah\\nOh my oh my oh my you're unpredictable\\nYou make me so very happy\\nWhen you cuddle up and go to sleep beside me\\nAnd then you make me slightly mad\\nWhen you pee all over my Chippendale suite\\n\\nDelilah Delilah\\nOh oh oh oh oh oh oh\\n\\nYou take over my house and home\\nYou even try to answer my telephone\\nDelilah you're the apple of my eye\\n\\nMeeow meeow meeow\\nDelilah I love you Delilah\\nOh you make me so very happy\\nYou give me kisses and I go out of my mind ooh\\nMeeow meeow meeow\\nYou're irresistible - I love you Delilah\\nDelilah I love you\\n\\nHah hah\\nYou make me very happy\\nOh yeah - I love your kisses\\nI love your kisses\\nI love your kisses\\nI love your kisses\\nI love your, your, your kisses\\nI love your kisses\\n\\n\"},\n", " {'_id': 308994,\n", " 'lyrics': \"it's the sad-eyed goodbye yesterday moments i remember it's the bleak street weak-kneed partings i recall it's the mistier mist the hazier days the brighter sun and the easier lays there's all the more reason for laughing and crying when you're younger and life isn't too hard at all it's the fantastic drowse of the afternoon sundays that bored you to rages of tears the unending pleadings to waste all your good times in thoughts of your middle aged years it's a vertical hold all the things that you're told for the everyday hero it all turns to zero and there's all the more reason for living or dying when you're young and your troubles are all very small out here on the street we'd gather and meet and scuff up the sidewalk with endlessly restless feet half of the time we'd broaden our minds more in the pool hall than we did in the school hall with the downtown chewing-gum bums watching the nightlife the lights and the fun never wanted to be the boy next door always thought i'd be something more but it isn’t easy for a smalltown boy it ain’t easy at all thinking it right doing it wrong it's easier from an armchair waves of alternatives wash at my sleepiness have my eggs poached for breakfast i guess\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nIt's the sad-eyed, goodbye, yesterday moments I remember\\nIt's the bleak street, weak-kneed partings I recall\\nIt's the mistier mist\\nThe hazier days\\nThe brighter sun\\nAnd the easier lays\\nThere's all the more reason for laughing and crying\\nWhen you're younger and life isn't too hard at all\\n\\nIt's the fantastic drowse of the afternoon Sundays\\nThat bored you to rages of tears\\nThe unending pleadings, to waste all your good times\\nIn thoughts of your middle aged years\\nIt's a vertical hold, all the things that you're told\\nFor the everyday hero it all turns to zero\\nAnd there's all the more reason for living or dying\\nWhen you're young and your troubles are all very small\\n\\nOut here on the street\\nWe'd gather and meet\\nAnd scuff up the sidewalk with endlessly restless feet\\nHalf of the time\\nWe'd broaden our minds\\nMore in the pool hall than we did in the school hall\\nWith the downtown chewing-gum bums\\nWatching the nightlife, the lights and the fun\\n\\nNever wanted to be the boy next door\\nAlways thought I'd be something more\\nBut it isn’t easy for a smalltown boy\\nIt ain’t easy at all\\nThinking it right, doing it wrong\\nIt's easier from an armchair\\nWaves of alternatives wash at my sleepiness\\nHave my eggs poached for breakfast I guess\\n\\n[Spoken Outro]\\n\\n\"},\n", " {'_id': 1096264,\n", " 'lyrics': \"words and music by tim staffell i might be at a table and suddenly ill catch a fleeting vision of her crystal seas or i might be standing in a crowded dockyard faraway underneath the sun i've never seen cos i have seen many worlds for what its worth but ill never see again the planet earth my earth i might be chasing waves of light out towards the rim where stars are sparse and the cold of space seeps in but i might be in a bar room drinking methylated gin and thinking of the places i have been yes i have seen many worlds for what its worth but ill never see again the planet earth my earth i have seen many worlds for what its worth but ill never see again the planet earth my earth cast adrift amongst the stars i float from sun to sun dreaming of the world that gave me birth all the places i have been remind me there is none to match the green living hills of earth cos i have seen many worlds for what its worth but ill never see again the planet earth my earth\",\n", " 'original_lyrics': \"\\n\\nWords and music by tim staffell\\n\\nI might be at a table\\nAnd suddenly Ill catch\\nA fleeting vision of her crystal seas\\nOr I might be standing in a crowded dockyard faraway\\nUnderneath the sun I've never seen\\nCos I have seen many worlds\\nFor what its worth\\nBut Ill never see again the planet earth\\nMy earth\\nI might be chasing waves of light\\nOut towards the rim\\nWhere stars are sparse\\nAnd the cold of space seeps in\\nBut I might be in a bar room\\nDrinking methylated gin\\nAnd thinking of the places I have been\\nYes I have seen many worlds\\nFor what its worth\\nBut Ill never see again the planet earth\\nMy earth\\nI have seen many worlds\\nFor what its worth\\nBut Ill never see again the planet earth\\nMy earth\\nCast adrift amongst the stars\\nI float from sun to sun\\nDreaming of the world that gave me birth\\nAll the places I have been\\nRemind me there is none\\nTo match the green living hills of earth\\nCos I have seen many worlds\\nFor what its worth\\nBut Ill never see again the planet earth\\nMy earth\\n\\n\"},\n", " {'_id': 311640,\n", " 'lyrics': \"flash a-ah savior of the universe flash a-ah he'll save every one of us (seemingly there is no reason for these extraordinary intergalactical upsets) (ha ha ha ha ha ha ha) (what's happening flash) (only doctor hans zarkov formerly at nasa has provided any explanation) flash a-ah he's a miracle (this morning's unprecedented solar eclipse is no cause for alarm) flash a-ah king of the impossible he's for every one of us stand for every one of us he save with a mighty hand every man every woman every child with a mighty flash (general kala flash gordon approaching) (what do you mean flash gordon approaching open fire all weapons dispatch war rocket ajax to bring back his body) flash a-ah (gordon's alive) flash a-ah he'll save every one of us just a man with a man's courage you know he's nothing but a man and he can never fail no one but the pure at heart may find the golden grail ohohohoh (flash flash i love you but we only have fourteen hours to save the earth) flash\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nFlash a-ah\\nSavior of the Universe\\nFlash a-ah\\nHe'll save every one of us\\n\\n(Seemingly there is no reason for these extraordinary intergalactical upsets)\\n(Ha Ha Ha Ha Ha Ha Ha)\\n(What's happening Flash?)\\n(Only Doctor Hans Zarkov, formerly at NASA, has provided any explanation)\\n\\n[Chorus 1]\\nFlash a-ah\\nHe's a miracle\\n\\n(This morning's unprecedented solar eclipse is no cause for alarm)\\n\\n[Chorus 2]\\nFlash a-ah\\nKing of the impossible\\n\\n[Verse 1]\\nHe's for every one of us\\nStand for every one of us\\nHe save with a mighty hand\\nEvery man, every woman\\nEvery child, with a mighty\\nFlash\\n\\n(General Kala, Flash Gordon approaching.)\\n(What do you mean Flash Gordon approaching? Open fire! All weapons! Dispatch war rocket Ajax to bring back his body)\\n\\n[Chorus 3]\\nFlash a-ah\\n(Gordon's alive!)\\n\\n[Chorus 4]\\nFlash a-ah\\nHe'll save every one of us\\n\\n[Outro]\\nJust a man\\nWith a man's courage\\nYou know he's\\nNothing but a man\\nAnd he can never fail\\nNo one but the pure at heart\\nMay find the Golden Grail\\n...Oh..Oh........Oh..Oh....\\n\\n(Flash, Flash, I love you, but we only have fourteen hours to save the Earth!)\\nFlash\\n\\n\"},\n", " {'_id': 1547579,\n", " 'lyrics': \"there's no time for us there's no place for us what is this thing that builds our dreams yet slips away from us who wants to live forever who wants to live forever there's no chance for us it's all decided for us this world has only one sweet moment set aside for us who wants to live forever who wants to live forever who dares to love forever when love must die but touch my tears with your lips touch my world with your fingertips and we can have forever and we can love forever forever is our today who wants to live forever who wants to live forever forever is our today who waits forever anyway\",\n", " 'original_lyrics': \"\\n\\nThere's no time for us\\nThere's no place for us\\nWhat is this thing that builds our dreams yet slips away\\nFrom us\\nWho wants to live forever\\nWho wants to live forever ?\\nThere's no chance for us\\nIt's all decided for us\\nThis world has only one sweet moment set aside for us\\nWho wants to live forever\\nWho wants to live forever?\\nWho dares to love forever?\\nWhen love must die\\nBut touch my tears with your lips\\nTouch my world with your fingertips\\nAnd we can have forever\\nAnd we can love forever\\nForever is our today\\nWho wants to live forever\\nWho wants to live forever?\\nForever is our today\\nWho waits forever anyway?\\n\\n\"},\n", " {'_id': 309034,\n", " 'lyrics': \"everybody in the morning should do a good turn all right everybody in the night time should have a good time all night now we got a movement don't shun it fun it can't you see now you're moving free get some fun join our dynasty can't you tell when we get it down you're the one you're the best in town hey everybody everybody going to have a good time tonight just shaking the soles of your feet everybody everybody going to have a good time tonight that's the only soul you'll ever meet they say that moving the body's right it's all right that's the only one part of being alive all right all right groove on out groove on up ok do your thing do your thing your way get you kicks get your tricks with me get up and dance honey fun's for free don't shun it fun it\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nEverybody in the morning\\nShould do a good turn all right\\nEverybody in the night time\\nShould have a good time all night\\nNow we got a movement\\nDon't shun it fun it\\nCan't you see now you're moving free?\\nGet some fun join our dynasty\\nCan't you tell when we get it down?\\nYou're the one you're the best in town\\n\\n[Chorus]\\nHey everybody everybody going to have a good time tonight\\nJust shaking the soles of your feet\\nEverybody everybody going to have a good time tonight\\nThat's the only soul you'll ever meet\\n\\n[Verse 2]\\nThey say that moving the body's right it's all right\\nThat's the only one part of being alive all right all right\\nGroove on out groove on up OK\\nDo your thing do your thing your way\\nGet you kicks get your tricks with me\\nGet up and dance honey fun's for free\\n\\n[Chorus]\\n\\n[Outro][x3]\\nDon't shun it fun it\\n\\n\"},\n", " {'_id': 862334,\n", " 'lyrics': \"i think i'm going back to the things i learnt so well in my youth i think i'm returning to those days when i was young enough to know the truth now there are no games to only pass the time no more colouring books no christmas bells to chime but thinking young and growing older is no sin and i can't play the game of life to win i can recall a time when i wasn't ashamed to reach out to a friend and now i think i've got a lot more than just my toys to lend now there's more to do than watch my sailboat glide and every day can be my magic carpet ride and i can play hide and seek with my fears and live my days instead of counting my years then everyone debates the true reality i'd rather see the world the way it used to be a little bit of freedom's all we lack so catch me if you can i'm going back\",\n", " 'original_lyrics': \"\\n\\nI think I'm going back\\nTo the things I learnt so well in my youth\\nI think I'm returning to\\nThose days when I was young enough to know the truth\\nNow there are no games\\nTo only pass the time\\nNo more colouring books\\nNo Christmas bells to chime\\nBut thinking young and growing older is no sin\\nAnd I can't play the game of life to win\\nI can recall a time\\nWhen I wasn't ashamed to reach out to a friend\\nAnd now I think I've got\\nA lot more than just my toys to lend\\nNow there's more to do\\nThan watch my sailboat glide\\nAnd every day can be\\nMy magic carpet ride\\nAnd I can play hide and seek with my fears\\nAnd live my days instead of counting my years\\nThen everyone debates\\nThe true reality\\nI'd rather see the world\\nThe way it used to be\\nA little bit of freedom's all we lack\\nSo catch me if you can\\nI'm going back\\n\\n\"},\n", " {'_id': 1843763,\n", " 'lyrics': \"words and music by gerry goffin and carole king i think i'm going back to the things i learnt so well in my youth i think i'm returning to those days when i was young enough to know the truth now there are no games to only pass the time no more colouring books no christmas bells to chime but thinking young and growing older is no sin and i can't play the game of life to win i can recall a time when i wasn't ashamed to reach out to a friend and now i think i've got a lot more than just my toys to lend now theres more to do than watch my sailboat glide and every day can be my magic carpet ride and i can play hide and seek with my fears and live my days instead of counting my years then everyone debates the true reality id rather see the world the way it used to be a little bit of freedoms all we lack so catch me if you can i'm going back\",\n", " 'original_lyrics': \"\\n\\nWords and music by gerry goffin and carole king\\n\\nI think I'm going back\\nTo the things I learnt so well in my youth\\nI think I'm returning to\\nThose days when I was young enough to know the truth\\nNow there are no games\\nTo only pass the time\\nNo more colouring books\\nNo christmas bells to chime\\nBut thinking young and growing older is no sin\\nAnd I can't play the game of life to win\\nI can recall a time\\nWhen I wasn't ashamed to reach out to a friend\\nAnd now I think I've got\\nA lot more than just my toys to lend\\nNow theres more to do\\nThan watch my sailboat glide\\nAnd every day can be\\nMy magic carpet ride\\nAnd I can play hide and seek with my fears\\nAnd live my days instead of counting my years\\nThen everyone debates\\nThe true reality\\nId rather see the world\\nThe way it used to be\\nA little bit of freedoms all we lack\\nSo catch me if you can\\nI'm going back\\n\\n\"},\n", " {'_id': 1178409,\n", " 'lyrics': \"i know all about you they call you mr t you are a barber's son you've got the rope feel me you use you use rope that you believe oh oh i tell you have you made any more pork pies for me hangman says you make a very nice cup of tea oh yes you do hangman hangman waiting for me hang that rope from the highest tree i don't want to beg for mercy hangman hang me hangman hang me i know all about you they call you they call you mr c you did a very good job oh you'll go down you'll go down go down in history baby baby i'm telling you have you made any more pies for me hangman says they're very nice they're very nice for me oh yes they are nice hangman hangman waiting for me hang that rope from the highest tree i don't want to beg for mercy hangman hang me hang me oooh hey hey why do you keep calling why do you keep calling why do you keep calling me oooh why you'll go down you'll go down down and down in history baby baby i'm telling you ooooh you say you're afraid of dying you say you're just tired of living yeah now you say you're tired of living hangman says he gonna let you go now you say you're afraid of dying hangman he says he won't let you go hangman hang me hangman hang me hangman hang me hangman oh gonna see me die gonna watch me die oh gonna die gonna die gonna die gonna die gonna see me see me die you gonna come and watch me die hey ooh yeah gonna come and watch me die on a saturday morning gonna come and watch me die on a saturday morning please don't let me go no please don't let me go yeah oh yeah (unknown lyric) on a saturday morning please don't let me go no please don't let me go yeah oh yeah oh you'll die tomorrow one two three four yeah yeah oh let me die please don't cry don't cry yeah yeah yeah ohhh\",\n", " 'original_lyrics': \"\\n\\nI know all about you\\nThey call you Mr. T\\nYou are a barber's son\\nYou've got the rope, feel me\\nYou use, you use rope that you believe\\nOh, oh, I tell you\\nHave you made any more pork pies for me?\\nHangman, says you make a very nice cup of tea, oh yes you do\\nHangman, hangman, waiting for me\\nHang that rope from the highest tree\\nI don't want to beg for mercy\\nHangman, hang me, hangman, hang me\\nI know all about you\\nThey call you, they call you Mr. C\\nYou did a very good job\\nOh, you'll go down, you'll go down, go down in history\\nBaby, baby, I'm telling you\\nHave you made any more pies for me?\\nHangman, says they're very nice, they're very nice for me, oh yes they are nice\\nHangman, hangman, waiting for me\\nHang that rope from the highest tree\\nI don't want to beg for mercy\\nHangman, hang me, hang me\\nOooh\\nHey\\nHey, why do you keep calling, why do you keep calling\\nWhy do you keep calling me, oooh, why\\nYou'll go down, you'll go down, down and down in history\\nBaby, baby, I'm telling you, ooooh\\nYou say you're afraid of dying\\nYou say, you're just tired of living, yeah\\nNow you say you're tired of living\\nHangman says he gonna let you go\\nNow you say you're afraid of dying\\nHangman, he says he won't let you go\\nHangman, hang me\\nHangman, hang me\\nHangman, hang me\\nHangman\\nOh, gonna see me die\\nGonna watch me die\\nOh, gonna die, gonna die, gonna die, gonna die\\nGonna see me, see me die\\nYou gonna come and watch me die\\nHey, ooh yeah\\nGonna come and watch me die on a Saturday morning\\nGonna come and watch me die on a Saturday morning\\nPlease don't let me go, no, please don't let me go\\nYeah, oh yeah\\n(unknown lyric) on a Saturday morning\\nPlease don't let me go, no, please don't let me go, yeah\\nOh yeah, oh\\nYou'll die tomorrow\\nOne, two, three, four, yeah, yeah\\nOh, let me die, please don't cry, don't cry\\nYeah, yeah, yeah\\nOhhh\\n\\n\"},\n", " {'_id': 310043,\n", " 'lyrics': \"and you're rushing headlong you've got a new goal and you're rushing headlong out of control and you think you're so strong but there ain't no stopping and there's nothing you can do about it nothing you can do no there's nothing you can do about it no there's nothing you can nothing you can nothing you can do about it and you're rushing headlong you've got a new goal and you're rushing headlong out of control and you think you're so strong but there ain't no stopping no there's nothing you can do about it yeah hey he used to be a man with a stick in his hand hoop diddy diddy - hoop diddy do she used to be a woman with a hot dog stand hoop diddy diddy - hoop diddy do now you've got soup in the laundry bag now you've got strings you're gonna lose your rag you're getting in a fight then it ain't so groovy when you're screaming in the night let me out of this cheap b movie headlong down the highway and you're rushing headlong out of control and you think you're so strong but there ain't no stopping and you can't stop rocking and there's nothing you can nothing you can nothing you can do about it when a red hot man meets a white hot lady hoop diddy diddy - hoop diddy do soon the fire starts raging gets you more than half crazy hoop diddy diddy - hoop diddy do now they start freaking everywhere you turn you can't start walking because your feet got burned it ain't no time to figure wrong from right because reason's out of the window better hold on tight you're rushing headlong headlong out of control - yeah and you think you're so strong but there ain't no stopping and there's nothing you nothing you nothing you can do about it at all yeah yeah alright - go and you're rushing headlong down the highway and you're rushing headlong out of control and you think you're so strong but there ain't no stopping there's nothing nothing nothing you can do about it ah ha headlong yeah yeah yeah headlong headlong headlong gnoldaeh gnoldaeh gnoldaeh gnoldaeh\",\n", " 'original_lyrics': \"\\n\\nAnd you're rushing headlong you've got a new goal\\nAnd you're rushing headlong out of control\\nAnd you think you're so strong\\nBut there ain't no stopping\\nAnd there's nothing you can do about it\\nNothing you can do no there's nothing you can do about it\\nNo there's nothing you can nothing you can nothing you can do about it\\n\\nAnd you're rushing headlong you've got a new goal\\nAnd you're rushing headlong out of control\\nAnd you think you're so strong\\nBut there ain't no stopping no there's nothing you can do about it\\nYeah\\n\\nHey he used to be a man with a stick in his hand\\nHoop diddy diddy - hoop diddy do\\nShe used to be a woman with a hot dog stand\\nHoop diddy diddy - hoop diddy do\\nNow you've got soup in the laundry bag\\nNow you've got strings you're gonna lose your rag\\nYou're getting in a fight\\nThen it ain't so groovy when you're screaming in the night\\nLet me out of this cheap B movie\\n\\nHeadlong down the highway and you're rushing\\nHeadlong out of control\\nAnd you think you're so strong\\nBut there ain't no stopping and you can't stop rocking\\nAnd there's nothing you can nothing you can nothing you can do about it\\n\\nWhen a red hot man meets a white hot lady\\nHoop diddy diddy - hoop diddy do\\nSoon the fire starts raging gets you more than half crazy\\nHoop diddy diddy - hoop diddy do\\nNow they start freaking everywhere you turn\\nYou can't start walking because your feet got burned\\nIt ain't no time to figure wrong from right\\nBecause reason's out of the window better hold on tight\\n\\nYou're rushing headlong\\nHeadlong out of control - yeah\\nAnd you think you're so strong\\nBut there ain't no stopping\\nAnd there's nothing you nothing you nothing you can do about it at all\\n\\nYeah yeah\\nAlright - go\\n\\nAnd you're rushing headlong down the highway\\nAnd you're rushing headlong out of control\\nAnd you think you're so strong\\nBut there ain't no stopping\\nThere's nothing nothing nothing you can do about it\\n\\nAh ha\\nHeadlong\\nYeah yeah yeah\\nHeadlong\\nHeadlong\\n\\nHeadlong\\n[Outro]\\nGnoldaeh gnoldaeh gnoldaeh gnoldaeh\\n\\n\"},\n", " {'_id': 309711,\n", " 'lyrics': \"i took my baby to see a heavy band but i never saw my baby util the encore she had the singer by the hand i didn't want to cry because i had to be cool i didn't want to tell you that you are too cruel did you have to run off with that dog-gone fool all i got to do is think about you every night and day i go crazy all i got to do is get my hands on you you better stay away from me baby i wouldn't mind the postman if the neighbours didn't know or the gas man the electric man - man to fix the car i would have to let it go but you had to bring me down for a rock and roll clone leave me like a sucker standing all alone did you have to run off with that rolling stone all i got to do is think about you every night and day i go crazy all i got to do is get my hands on you you better stay away from me baby so i am not going to go and see the rolling stones no more i don't want to go see queen no more no more now i don't want to hurt you like you have been hurting me but you know that i will be watching rolling on the floor next time you are on tv had enough of your pretending that you know where it's at coming on to all the boys like a real spoiled brat to think that i nearly let you get away with all that no way man all i got to do is think about you every night and day i go crazy all i got to do is get my hands on you you better stay away from me baby\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI took my baby to see a heavy band\\nBut I never saw my baby util the encore\\nShe had the singer by the hand\\nI didn't want to cry because I had to be cool\\nI didn't want to tell you that you are too cruel\\nDid you have to run off with that dog-gone fool\\n\\n[Chorus]\\nAll I got to do is think about you\\nEvery night and day I go crazy\\nAll I got to do is get my hands on you\\nYou better stay away from me baby\\n\\n[Verse 2]\\nI wouldn't mind the postman if the neighbours didn't know\\nOr the gas man the electric man - man to fix the car\\nI would have to let it go\\nBut you had to bring me down for a rock and roll clone\\nLeave me like a sucker standing all alone\\nDid you have to run off with that rolling stone\\n\\n[Chorus]\\nAll I got to do is think about you\\nEvery night and day I go crazy\\nAll I got to do is get my hands on you\\nYou better stay away from me baby\\n\\n[Bridge]\\nSo I am not going to go and see the Rolling Stones no more\\nI don't want to go see Queen no more no more\\n\\n[Verse 3]\\nNow I don't want to hurt you like you have been hurting me\\nBut you know that I will be watching\\nRolling on the floor next time you are on TV\\nHad enough of your pretending that you know where it's at\\nComing on to all the boys like a real spoiled brat\\nTo think that I nearly let you get away with all that\\nNo way man\\n\\n[Chorus]\\nAll I got to do is think about you\\nEvery night and day I go crazy\\nAll I got to do is get my hands on you\\nYou better stay away from me baby\\n\\n\"},\n", " {'_id': 309832,\n", " 'lyrics': \"one two three four while the sun hangs in the sky and the desert has sand while the waves crash in the sea and meet the land while there's a wind and the stars and the rainbow till the mountains crumble into the plain oh yes we'll keep on trying tread that fine line oh we'll keep on trying yeah just passing our time while we live according to race color or creed while we rule by blind madness and pure greed our lives dictated by tradition superstition false religion through the eons and on and on oh yes we'll keep on trying we'll tread that fine line oh we'll keep on trying till the end of time till the end of time through the sorrow all through our splendor don't take offence at my innuendo you can be anything you want to be just turn yourself into anything you think that you could ever be be free with your tempo be free be free surrender your ego - be free be free to yourself if there's a god or any kind of justice under the sky if there's a point if there's a reason to live or die if there's an answer to the questions we feel bound to ask show yourself - destroy our fears - release your mask oh yes we'll keep on trying hey tread that fine line yeah we'll keep on smiling yeah and whatever will be - will be we'll just keep on trying we'll just keep on trying till the end of time till the end of time till the end of time\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nOne two three four\\n\\n[Verse 1]\\nWhile the sun hangs in the sky and the desert has sand\\nWhile the waves crash in the sea and meet the land\\nWhile there's a wind and the stars and the rainbow\\nTill the mountains crumble into the plain\\n\\n[Chorus]\\nOh yes we'll keep on trying\\nTread that fine line\\nOh we'll keep on trying yeah\\nJust passing our time\\n\\n[Verse 2]\\nWhile we live according to race, color or creed\\nWhile we rule by blind madness and pure greed\\nOur lives dictated by tradition, superstition, false religion\\nThrough the eons, and on and on\\n\\n[Chorus]\\nOh yes we'll keep on trying\\nWe'll tread that fine line\\nOh we'll keep on trying\\nTill the end of time\\nTill the end of time\\n\\n[Bridge]\\nThrough the sorrow all through our splendor\\nDon't take offence at my innuendo\\n\\n[Spanish Guitar Solo]\\n\\n[Bridge]\\nYou can be anything you want to be\\nJust turn yourself into anything you think that you could ever be\\nBe free with your tempo, be free be free\\nSurrender your ego - be free, be free to yourself\\n\\n[Instrumental Break]\\n\\n[Verse 3]\\nIf there's a God or any kind of justice under the sky\\nIf there's a point, if there's a reason to live or die\\nIf there's an answer to the questions we feel bound to ask\\nShow yourself - destroy our fears - release your mask\\n\\n[Final Chorus]\\nOh yes we'll keep on trying\\nHey! Tread that fine line\\nYeah, we'll keep on smiling, yeah\\nAnd whatever will be - will be\\nWe'll just keep on trying\\nWe'll just keep on trying\\nTill the end of time\\nTill the end of time\\nTill the end of time\\n\\n\"},\n", " {'_id': 309014,\n", " 'lyrics': \"you say you love me and i hardly know your name and if i say i love you in the candle light there's no one but myself to blame but there's something inside that's turning my mind away oh how i could love you if i could let you stay it's late - and i'm bleeding deep inside it's late - is it just my sickly pride too late - even now the feeling seems to slip away so late - though i'm crying i can't help but hear you say it's late it's late it's late but not too late the way you love me is the sweetest love around but after all this time the more i'm trying the more i seem to let you down now you tell me you're leaving and i just can't believe it's true oh you know that i can love you though you know i can't be true oh you made me love you don't tell me that we're through it's late but it's driving me so mad it's late yes i know but don't try to tell me that it's too late save our love you can't turn out the lights so late i've been wrong but i'll learn to be right it's late it's late it's late but not too late i've been so long you've been so long we've been so long trying to work it out i ain't got long you ain't got long we gotta know what this life is all about too late much too late you're staring at me with suspicion in your eye you say what game are you playing what's this that you're saying i know that i can't reply if i take you tonight is it making my life a lie oh you make me wonder did i live my life alright it's late but it's time to set me free it's late yes i know but there's no way it has to be too late so let the fire take our bodies this night so late so let the waters take our guilt in the tide it's late it's late it's late it's late it's late it's late it's all too late\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nYou say you love me\\nAnd I hardly know your name\\nAnd if I say I love you in the candle light\\nThere's no one but myself to blame\\nBut there's something inside\\nThat's turning my mind away\\nOh how I could love you\\nIf I could let you stay\\n\\n[Chorus 1]\\nIt's late - and I'm bleeding deep inside\\nIt's late - is it just my sickly pride\\nToo late - even now the feeling seems to slip away\\nSo late - though I'm crying I can't help but hear you say\\nIt's late It's late It's late\\nBut not too late\\n\\n[Verse 2]\\nThe way you love me\\nIs the sweetest love around\\nBut after all this time\\nThe more I'm trying\\nThe more I seem to let you down\\nNow you tell me you're leaving\\nAnd I just can't believe it's true\\nOh you know that I can love you\\nThough you know I can't be true\\nOh you made me love you\\nDon't tell me that we're through\\n\\n[Chorus 2]\\nIt's late, but it's driving me so mad\\nIt's late, yes I know but don't try to tell me that it's\\nToo late, save our love you can't turn out the lights\\nSo late, I've been wrong but I'll learn to be right\\nIt's late it's late it's late\\nBut not too late\\n\\n[Bridge]\\nI've been so long\\nYou've been so long\\nWe've been so long trying to work it out\\nI ain't got long\\nYou ain't got long\\nWe gotta know what this life is all about\\n\\n[Guitar Solo]\\n\\n[Verse 3]\\nToo late much too late\\nYou're staring at me\\nWith suspicion in your eye\\nYou say what game are you playing?\\nWhat's this that you're saying?\\nI know that I can't reply\\nIf I take you tonight\\nIs it making my life a lie?\\nOh you make me wonder\\nDid I live my life alright?\\n\\n[Chorus 3]\\nIt's late, but it's time to set me free\\nIt's late, yes I know but there's no way it has to be\\nToo late, so let the fire take our bodies this night\\nSo late, so let the waters take our guilt in the tide\\nIt's late it's late it's late it's late\\nIt's late it's late\\nIt's all too late\\n\\n\"},\n", " {'_id': 309020,\n", " 'lyrics': \"oh how wrong can you be oh to fall in love was my very first mistake how was i to know i was far too much in love to see oh jealousy look at me now jealousy you got me somehow you gave me no warning took me by surprise jealousy you led me on you couldn't lose you couldn't fail you had suspicion on my trail how how how all my jealousy i wasn't man enough to let you hurt my pride now i'm only left with my own jealousy oh how strong can you be with matters of the heart life is much too short to while away with tears if only you could see just what you do to me oh jealousy you tripped me up jealousy you brought me down you bring me sorrow you cause me pain jealousy when will you let go got to hold of my possessive mind turned me into a jealous kind how how how all my jealousy i wasn't man enough to let you hurt my pride now i'm only left with my own jealousy but now it matters not if i should live or die because i'm only left with my own jealousy\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nOh how wrong can you be?\\nOh to fall in love was my very first mistake\\nHow was I to know I was far too much in love to see?\\nOh jealousy look at me now\\nJealousy you got me somehow\\nYou gave me no warning\\nTook me by surprise\\nJealousy you led me on\\nYou couldn't lose you couldn't fail\\nYou had suspicion on my trail\\n\\n[Chorus]\\nHow how how all my jealousy\\nI wasn't man enough to let you hurt my pride\\nNow I'm only left with my own jealousy\\n\\n[Verse 2]\\nOh how strong can you be\\nWith matters of the heart?\\nLife is much too short\\nTo while away with tears\\nIf only you could see just what you do to me\\nOh jealousy you tripped me up\\nJealousy you brought me down\\nYou bring me sorrow you cause me pain\\nJealousy when will you let go?\\nGot to hold of my possessive mind\\nTurned me into a jealous kind\\n\\n[Chorus]\\nHow, how, how, all my jealousy\\nI wasn't man enough to let you hurt my pride\\nNow I'm only left with my own jealousy\\nBut now it matters not if I should live or die\\nBecause I'm only left with my own jealousy\\n\\n\"},\n", " {'_id': 152345,\n", " 'lyrics': \"and then i saw him in the crowd a lot of people had gathered round him the beggars shouted the lepers called him the old man said nothing he just stared about him all going down to see the lord jesus all going down to see the lord jesus all going down then came a man before his feet he fell unclean said the leper and rang his bell felt the palm of a hand touch his head go now go now you're a new man instead all going down to see the lord jesus all going down to see the lord jesus all going down it all began with the three wise men followed a star took them to bethlehem and made it heard throughout the land born was a leader of man all going down to see the lord jesus all going down to see the lord jesus all going down it all began with the three wise men followed a star took them to bethlehem and made it heard throughout the land born was a leader of man all going down to see the lord jesus all going down to see the lord jesus all going down\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nAnd then I saw Him in the crowd\\nA lot of people had gathered round Him\\nThe beggars shouted the lepers called Him\\nThe old man said nothing\\nHe just stared about him\\nAll going down to see the Lord Jesus\\nAll going down to see the Lord Jesus\\nAll going down\\nThen came a man before His feet he fell\\nUnclean said the leper and rang his bell\\nFelt the palm of a hand touch his head\\nGo now go now you're a new man instead\\nAll going down to see the Lord Jesus\\nAll going down to see the Lord Jesus\\nAll going down\\n\\n[Chorus]\\nIt all began with the three wise men\\nFollowed a star took them to Bethlehem\\nAnd made it heard throughout the land\\nBorn was a leader of man\\nAll going down to see the Lord Jesus\\nAll going down to see the Lord Jesus\\nAll going down\\n\\n[Chorus]\\nIt all began with the three wise men\\nFollowed a star took them to Bethlehem\\nAnd made it heard throughout the land\\nBorn was a leader of man\\nAll going down to see the Lord Jesus\\nAll going down to see the Lord Jesus\\nAll going down\\n\\n\"},\n", " {'_id': 1844002,\n", " 'lyrics': \"she keeps her moet et chandon in her pretty cabinet 'let them eat cake' she says just like marie antoinette a built-in remedy for kruschev and kennedy at anytime an invitation you can't decline caviar and cigarettes well versed in etiquette extraordinarily nice she's a killer queen gunpowder gelatine dynamite with a laserbeam guaranteed to blow your mind anytime ooh recommended at the price insatiable an appetite wanna try to avoid complications she never kept the same address in conversation she spoke just like a baroness met a man from china went down to asia minor (killer killer she's a killer queen) then again incidentally if you're that way inclined perfume came naturally from paris (naturally) for cars she couldn't care less fastidious and precise she's a killer queen gunpowder gelatine dynamite with a laser beam guaranteed to blow your mind anytime drop of a hat she's as willing as playful as a pussy cat then momentarily out of action temporarily out of gas to absolutely drive you wild wild she's all out to get you she's a killer queen gunpowder gelatine dynamite with a laser beam guaranteed to blow your mind anytime ooh recommended at the price insatiable an appetite wanna try you wanna try\",\n", " 'original_lyrics': \"\\n\\nShe keeps her Moet et Chandon\\nIn her pretty cabinet\\n'Let them eat cake' she says\\nJust like Marie Antoinette\\nA built-in remedy\\nFor Kruschev and Kennedy\\nAt anytime an invitation\\nYou can't decline\\nCaviar and cigarettes\\nWell versed in etiquette\\nExtraordinarily nice\\nShe's a Killer Queen\\nGunpowder, gelatine\\nDynamite with a laserbeam\\nGuaranteed to blow your mind\\nAnytime\\nOoh, recommended at the price\\nInsatiable an appetite\\nWanna try ?\\nTo avoid complications\\nShe never kept the same address\\nIn conversation\\nShe spoke just like a baroness\\nMet a man from China\\nWent down to Asia Minor\\n(killer, killer, she's a Killer Queen)\\nThen again incidentally\\nIf you're that way inclined\\nPerfume came naturally from Paris (naturally)\\nFor cars she couldn't care less\\nFastidious and precise\\nShe's a Killer Queen\\nGunpowder, gelatine\\nDynamite with a laser beam\\nGuaranteed to blow your mind\\nAnytime\\nDrop of a hat she's as willing as\\nPlayful as a pussy cat\\nThen momentarily out of action\\nTemporarily out of gas\\nTo absolutely drive you wild, wild..\\nShe's all out to get you\\nShe's a Killer Queen\\nGunpowder, gelatine\\nDynamite with a laser beam\\nGuaranteed to blow your mind\\nAnytime\\nOoh, recommended at the price\\nInsatiable an appetite\\nWanna try ?\\nYou wanna try...\\n\\n\"},\n", " {'_id': 308693,\n", " 'lyrics': \"i have sinned dear father father i have sinned try and help me father won't you let me in liar nobody believes me liar why don't they leave me alone sire i have stolen stolen many times raised my voice in anger when i know i never should liar oh everybody deceives me liar why don't you leave me alone liar i have sailed the seas liar from mars to mercury liar i have drunk the wine liar time after time liar you're lying to me liar you're lying to me father please forgive me you know you'll never leave me please will you direct me in the right way liar liar liar liar liar that's what they keep calling me liar liar liar listen are you going to listen mama i'm going to be your slave all day long mama i'm going to try behave all day long mama going to be your slave all day long i'm going to serve you till your dying day all day long i'm going to keep you till you dying day all day long i'm going to kneel down by your side and pray all day long and pray all day long and pray all day long all day long all day long all day long all day long all day long all day long all day long all day long liar liar they never let you win liar liar everything you do is sin liar nobody believes you liar they bring you down before you begin now let me tell you this now you know you could be dead before they let you\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI have sinned dear Father Father I have sinned\\nTry and help me Father\\nWon't you let me in? Liar\\nNobody believes me Liar\\nWhy don't they leave me alone?\\nSire I have stolen stolen many times\\nRaised my voice in anger\\nWhen I know I never should\\nLiar oh everybody deceives me\\nLiar why don't you leave me alone?\\n\\n[Chorus 1]\\nLiar I have sailed the seas\\nLiar from Mars to Mercury\\nLiar I have drunk the wine\\nLiar time after time\\nLiar you're lying to me\\nLiar you're lying to me\\nFather please forgive me\\nYou know you'll never leave me\\nPlease will you direct me in the right way\\nLiar liar liar liar\\nLiar that's what they keep calling me\\nLiar liar liar\\n\\n[Chorus 2]\\nListen are you going to listen?\\nMama I'm going to be your slave\\nAll day long\\nMama I'm going to try behave\\nAll day long\\nMama going to be your slave\\nAll day long\\nI'm going to serve you till your dying day\\nAll day long\\nI'm going to keep you till you dying day\\nAll day long\\nI'm going to kneel down by your side and pray\\nAll day long and pray\\nAll day long and pray\\nAll day long all day long all day long\\nAll day long all day long all day long\\n\\n[Chorus 3]\\nAll day long all day long all day long\\nLiar liar they never let you win\\nLiar liar everything you do is sin\\nLiar nobody believes you\\nLiar they bring you down before you begin\\nNow let me tell you this\\nNow you know you could be dead before they let you...\\n\\n\"},\n", " {'_id': 308986,\n", " 'lyrics': \"you might believe in heaven i would not care to say for every star in heaven there's a sad soul here today wake up in the morning with a good face stare at the moon all day lonely as a whisper on a star chase does anyone care anyway for all the prayers in heaven so much of life's this way did we leave our way behind us such a long long way behind us who knows when now who knows where where the light of day will find us look for the day take heart my friend we love you though it seems like you're alone a million lights above you smile down upon your home hurry put your troubles in a suitcase come let the new child play lonely as a whisper on a star chase i'm leaving here i'm long away for all the stars in heaven i would not live i could not live this way did we leave our way behind us such a long way behind us leave it for some hopeless lane such a long long way such a long long way such a long long away i'm looking for still looking for that day\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nYou might believe in heaven\\nI would not care to say\\nFor every star in heaven\\nThere's a sad soul here today\\nWake up in the morning with a good face\\nStare at the moon all day\\nLonely as a whisper on a star chase\\nDoes anyone care anyway\\nFor all the prayers in heaven\\nSo much of life's this way\\n\\n[Chorus]\\nDid we leave our way behind us\\nSuch a long long way behind us\\nWho knows when, now who knows where\\nWhere the light of day will find us?\\nLook for the day\\n\\n[Verse 2]\\nTake heart, my friend, we love you\\nThough it seems like you're alone\\nA million lights above you\\nSmile down upon your home\\nHurry put your troubles in a suitcase\\nCome let the new child play\\nLonely as a whisper on a star chase\\nI'm leaving here, I'm long away\\nFor all the stars in heaven\\nI would not live\\nI could not live this way\\n\\n[Chorus]\\nDid we leave our way behind us\\nSuch a long way behind us\\nLeave it for some hopeless lane\\nSuch a long long way\\nSuch a long long way\\nSuch a long long away\\nI'm looking for\\nStill looking for that day\\n\\n\"},\n", " {'_id': 861570,\n", " 'lyrics': \"love don't give no compensation love don't pay no bills love don't give no indication love just won't stand still love kills drills you through your heart love kills scars you from the start it's just a living pastime ruling your heart line stay for a lifetime won't let you go 'cause love love love won't leave you alone love don't take no resenration love is no square deal hey love don't @ve no justification strikes rike cold steel love kills drills you through your heart love kills scars you from the start it's just a living pastime burning your lifeline gives you a hard time won't let you go 'cause love love love wony leave you alone hey love can play with your emotions open invitations to your heart hey love kills play with your emotions open invitations to your heart to your heart to your heart love kills love kills hey hey love kills love kills love kills love kills love can play with your emotions open invitations love kills hey drills you through your heart love kills scars you from the start it's just a living pastime ruling your heart line won't let you go love kills hey drills you through your heart love kills tears you right apart it won't let go it won't let go love kills yeah yeah\",\n", " 'original_lyrics': \"\\n\\nLove don't give no compensation\\nLove don't pay no bills\\nLove don't give no indication\\nLove just won't stand still\\nLove kills\\nDrills you through your heart\\nLove kills\\nScars you from the start\\nIt's just a living pastime\\nRuling your heart line\\nStay for a lifetime\\nWon't let you go 'cause love\\nLove\\nLove won't leave you alone\\nLove don't take no resenration\\nLove is no square deal\\nHey\\nLove don't @ve no justification\\nStrikes rike cold steel\\nLove kills\\nDrills you through your heart\\nLove kills\\nScars you from the start\\nIt's just a living pastime burning your lifeline\\nGives you a hard time\\nWon't let you go 'cause love\\nLove\\nLove wonY leave you alone\\nHey\\nLove can play with your emotions\\nOpen invitations to your heart\\nHey\\nLove kills. Play with your emotions\\nOpen invitations to your heart\\nTo your heart\\nTo your heart\\nLove kills\\nLove kills\\nHey\\nHey\\nLove kills\\nLove kills\\nLove kills\\nLove kills\\nLove can play with your emotions\\nOpen invitations\\nLove kills\\nHey\\nDrills you through your heart\\nLove kills\\nScars you from the start\\nIt's just a living pastime\\nRuling your heart line\\nWon't let you go\\nLove kills\\nHey\\nDrills you through your heart\\nLove kills\\nTears you right apart\\nIt won't let go\\nIt won't let go\\nLove kills\\nYeah\\nYeah\\n\\n\"},\n", " {'_id': 1686057,\n", " 'lyrics': \"let's go chasing rainbows in the sky it's my invitation let's all take a trip on my ecstasy i'm mr bad guy yes i'm everybody's mr bad guy can't you see i'm mr mercury oh spread your wings and fly away with me your big daddy's got no place to stay bad communication i feel like the president of the usa mr bad guy yes i'm everybody's mr bad guy can't you see i'm mr mercury oh spread your wings and fly away with me i'm mr bad guy they're all afraid of me i can ruin people's lives yeah mr bad guy they're all afraid of me it's the only way to be that's my destiny yeah mr bad guy mr bad guy bad guy it's the only way for me it's my destiny mr bad guy yes i'm everybody's mr bad guy can't you see this is my destiny oh spread your wings and fly away with me\",\n", " 'original_lyrics': \"\\n\\nLet's go chasing rainbows in the sky\\nIt's my invitation\\nLet's all take a trip on my ecstasy\\nI'm Mr. Bad Guy\\nYes, I'm everybody's Mr. Bad Guy\\nCan't you see I'm Mr. Mercury\\nOh, spread your wings\\nAnd fly away with me\\nYour big daddy's\\nGot no place to stay\\nBad communication\\nI feel like the President of the USA\\nMr. Bad Guy\\nYes, I'm everybody's Mr. Bad Guy\\nCan't you see I'm Mr. Mercury\\nOh, spread your wings\\nAnd fly away with me\\nI'm Mr. Bad Guy\\nThey're all afraid of me\\nI can ruin people's lives\\nYeah\\nMr. Bad Guy\\nThey're all afraid of me\\nIt's the only way to be\\nThat's my destiny, yeah\\nMr. Bad Guy, Mr. Bad Guy, Bad Guy\\nIt's the only way for me\\nIt's my destiny\\nMr. Bad Guy\\nYes, I'm everybody's Mr. Bad Guy\\nCan't you see, this is my destiny\\nOh, spread your wings\\nAnd fly away with me\\n\\n\"},\n", " {'_id': 309707,\n", " 'lyrics': \"we had a good night jamming away there was a full moon showing and we started to play but in the cold light of day next morning party was over uh uh the party was over we got love and we got style and we got sex and i know i know we got what it takes whoa whoa whoa whoa who - whoa whoa who why don't you come back and play come back and play (hey hey) come back and play we got all night all day everybody's gone away why don't you come back and play come back and play come back and play come back and play play play it play it go get them boy - let's party yeah give it give it we had a food fight in somebody's face we were up all night singing (singing) and giving a chase but in the cold light of day next morning everybody was hung over hey come back and play (come back and play) come back and play we got all night all day everybody's gone away why don't you come back and play (and play) come back and play we got all night we got all day we got all night and day come back come back come back come back back and play hey hey hey goodbye goodbye goodbye goodbye the party is over\",\n", " 'original_lyrics': \"\\n\\nWe had a good night jamming away\\nThere was a full moon showing\\nAnd we started to play\\nBut in the cold light of day next morning\\nParty was over uh uh\\nThe party was over\\nWe got love and we got style\\nAnd we got sex and I know I know\\nWe got what it takes\\nWhoa whoa whoa whoa who - whoa whoa who\\nWhy don't you come back and play\\nCome back and play (hey hey) come back and play\\nWe got all night all day\\nEverybody's gone away\\nWhy don't you come back and play come back and play\\nCome back and play come back and play\\nPlay play it play it\\nGo get them boy - let's party\\nYeah\\nGive it give it\\nWe had a food fight in somebody's face\\nWe were up all night singing (singing)\\nAnd giving a chase\\nBut in the cold light of day next morning\\nEverybody was hung over\\nHey come back and play (come back and play) come back\\nAnd play\\nWe got all night all day\\nEverybody's gone away\\nWhy don't you come back and play (and play) come back\\nAnd play\\nWe got all night we got all day\\nWe got all night and day\\nCome back come back come back come back back and play\\nHey hey hey\\nGoodbye goodbye goodbye goodbye the party is over\\n\\n\"},\n", " {'_id': 884029,\n", " 'lyrics': 'words and music by brian may and tim staffell in the bright shop window sits the polar bear makes the childrens eyes light up to see him there amongst the tinsel he gives everyone a smile to see him as youd see a star love him from where you are hes not for not for not for sale past an open window walks the pretty girl does she see me at her feet its hard to tell but if i ask her she might turn her smile away to see her as id see a star love her from where you are shes not for not for not for sale i guess ill learn to look without a grasping hand minor contentment wears a smile i love her from where i lie hes not for not for not for sale not for sale',\n", " 'original_lyrics': '\\n\\nWords and music by brian may and tim staffell\\n\\nIn the bright shop window sits the polar bear\\nMakes the childrens eyes light up to see him there\\nAmongst the tinsel he gives everyone a smile\\nTo see him as youd see a star\\nLove him from where you are\\nHes not for, not for, not for sale\\nPast an open window walks the pretty girl\\nDoes she see me at her feet its hard to tell\\nBut if I ask her she might turn her smile away\\nTo see her as Id see a star\\nLove her from where you are\\nShes not for, not for, not for sale\\nI guess Ill learn to look\\nWithout a grasping hand\\nMinor contentment wears a smile\\nI love her from where I lie\\nHes not for, not for, not for sale\\nNot for sale\\n\\n'},\n", " {'_id': 2460772,\n", " 'lyrics': \"i went to the dumpster today threw away all my weed and made a commitment to you what kind of woman would i be if i was a decay to you i'm not living for me but for you too god really got me this time joy in my boohoo he hit me when i wasn't expecting it like what it do truth is i was ready for it but was not looking who knew i'm getting my life together and i want you to know its for you for us i'm future fruits you are all i need and more love me baby baby please sun rise again and kiss me i picture us walking together at the park i asked you to take me like norbit hold my hand i'm your girlfriend because you're glued so get ready for a ride i'm not letting you go i don't want to fight i know you and baby we got work to do hold me tight all through the night i'll make love to you say goodbye to those monsters i pray for you for healing and the best love for my man i pray for your happiness and richness in health prosperity and clarity life with lots of love surrounded with family members and healthy bellies a renewed heart and mind body and soul knowledge in light confusion dies awaken your spiritual man i see your wings now divine protection abundance in new life with me here's to ours god really loves you because he gave you me not talking about my beauty even though i'm a hottie these hands are blessed and can relieve all your stress my mind is beautiful and i'll make you look and feel your best that smile they will know it's me good loving and food they will wonder why you left me just tell them you were mine from the beginning always will be you thought you left me oh\",\n", " 'original_lyrics': \"\\n\\nI went to the dumpster today\\nThrew away all my weed and made a commitment to you\\nWhat kind of woman would I be if I was a decay to you\\nI'm not living for me but for you too\\nGod really got me this time, joy in my boohoo\\nHe hit me when I wasn't expecting it, like what it do\\nTruth is I was ready for it, but was not looking, who knew\\nI'm getting my life together and I want you to know its for you, for us, I'm future fruits\\nYou are all I need and more\\nLove me baby, baby, please\\nSun rise again and kiss me\\n\\nI picture us walking together at the park I asked you to take me\\nLike norbit, hold my hand, I'm your girlfriend\\nBecause you're glued so get ready for a ride\\nI'm not letting you go, I don't want to fight\\nI know you and baby we got work to do\\nHold me tight all through the night\\nI'll make love to you\\n\\nSay goodbye to those monsters, I pray for you\\nFor healing and the best love for my man\\nI pray for your happiness and richness in health\\nProsperity and clarity, life with lots of love, surrounded with family members and healthy bellies\\nA renewed heart and mind, body and soul\\nKnowledge in light, confusion dies, awaken your spiritual man, I see your wings now\\nDivine protection, abundance in new life\\nWith me, here's to ours\\n\\nGod really loves you because he gave you me\\nNot talking about my beauty, even though I'm a hottie\\nThese hands are blessed and can relieve all your stress\\nMy mind is beautiful and I'll make you look and feel your best\\nThat smile, they will know it's me\\nGood loving and food, they will wonder why you left me\\nJust tell them you were mine from the beginning\\nAlways will be! You thought you left me?\\nOh\\n\\n\"},\n", " {'_id': 1044802,\n", " 'lyrics': \"queen miscellaneous rock it ============================== queen - rock it (prime jive) ============================== words and music by roger taylor when i hear that rock and roll it gets down to my soul when it's real rock and roll when i hear that rock and roll it gets down to my soul when it's real rock and roll oh rock and roll oh oh oh oh oh oh you really think they like to rock in space well i don't know what do you know what do you hear on the radio coming through the air i said moma i ain't crazy i'm all right - all right hey c'mon baby said it's all right to rock'n'roll on a saturday night i said 'shoot and get your suit and come along with me' i said 'c'mon baby down come and rock with me' i said 'yeah' what do you do to get to feel alive you go downtown and get some of that prime jive i said moma i ain't crazy i'm all right - all right hey c'mon baby said it's all right to rock'n'roll on a saturday night i said 'shoot and get your suit and come along with me' i said 'c'mon baby down come and rock with me' i said 'yeah' we're gonna rock it hey c'mon baby said it's all right to rock'n'roll on a saturday night i said 'shoot and get your suit and come along with me' i said 'c'mon baby down come and rock with me' i said 'yeah' we're gonna rock ittonight (we want some prime jive) (we want some prime jive) we're gonna rock it tonight (we want some prime jive) c'mon honey (we want some prime jive) we're rocking tonight c'mon c'mon c'mon c'mon we're rocking tonight c'mon honey we're rocking tonight get get get get get get some of that prime jive get some of that prime jive c'mon c'mon c'mon c'mon c'mon c'mon honey get some of that prime jive get some of that get get down (down) c'mon honey - c'mon honey - we're gonna rock it tonight\",\n", " 'original_lyrics': \"\\n\\nQueen\\nMiscellaneous\\nRock It\\n==============================\\nQueen - Rock It (Prime Jive)\\n==============================\\nWords and music by Roger Taylor\\nWhen I hear that rock and roll\\nIt gets down to my soul\\nWhen it's real rock and roll\\nWhen I hear that rock and roll\\nIt gets down to my soul\\nWhen it's real rock and roll\\nOh rock and roll\\nOh Oh Oh Oh Oh Oh\\nYou really think they like to rock in space\\nWell I don't know\\nWhat do you know?\\nWhat do you hear\\nOn the radio?\\nComing through the air\\nI said Moma\\nI ain't crazy\\nI'm all right - all right\\nHey c'mon baby said it's all right\\nTo rock'n'roll on a Saturday night\\nI said 'shoot and get your suit and come along with me'\\nI said 'c'mon baby down come and rock with me' I said\\n'yeah'\\nWhat do you do?\\nTo get to feel alive\\nYou go downtown\\nAnd get some of that prime jive\\nI said Moma\\nI ain't crazy\\nI'm all right - all right\\nHey c'mon baby said it's all right\\nTo rock'n'roll on a Saturday night\\nI said 'shoot and get your suit and come along with me'\\nI said 'c'mon baby down come and rock with me' I said\\n'yeah'\\nWe're gonna rock it\\nHey c'mon baby said it's all right\\nTo rock'n'roll on a Saturday night\\nI said 'shoot and get your suit and come along with me'\\nI said 'c'mon baby down come and rock with me' I said\\n'yeah'\\nWe're gonna rock it.......tonight\\n(We want some prime jive)\\n(We want some prime jive)...\\nWe're gonna rock it tonight\\n(We want some prime jive)...\\nC'mon honey\\n(We want some prime jive)\\nWe're rocking tonight\\nC'mon c'mon c'mon c'mon\\nWe're rocking tonight\\nC'mon honey we're rocking tonight\\nGet get get get get\\nGet some of that prime jive\\nGet some of that prime jive\\nC'mon c'mon c'mon c'mon c'mon c'mon honey\\nGet some of that prime jive\\nGet some of that get get down (down)\\nC'mon honey - c'mon honey - we're gonna rock it tonight\\n\\n\"},\n", " {'_id': 310223,\n", " 'lyrics': '{intro} well if you ever plan to motor west just take my way that is the highway that is the best {pre-chorus} get your kicks on route 66 well it winds from chicago to la more than 2000 miles all the way get your kicks on route 66 {chorus} well goes from st louie down to missouri oklahoma city looks oh so pretty you will see amarillo and gallup new mexico flagstaff arizona do not forget winona kingman barstow san bernardino would you get hip to this kindly tip and go take that california trip get your kicks on route 66 {chorus}',\n", " 'original_lyrics': '\\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{Pre-Chorus}\\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}\\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{Chorus}\\n\\n'},\n", " {'_id': 310137,\n", " 'lyrics': 'as i walk along i wonder what went wrong with our love a love that was so strong and as i still walk on i think of the things we have done together while our hearts were young i am a-walking in the rain tears are falling and i feel the pain wishing you were here by me to end this misery and i wonder i wah wah wah wah wonder why why why why why why she ran away and i wonder when she will stay my little runaway a-run run run run a-runaway i am a-walking in the rain tears are falling and i feel the pain wishing you were here by me to end this misery and i wonder i wah wah wah wah wonder why why why why why why she ran away and i wonder when she will stay my little runaway a-run run run run a-runaway run run run run runaway run run run run runaway',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nAs I walk along I wonder\\nWhat went wrong with our love\\nA love that was so strong\\nAnd as I still walk on I think of\\nThe things we have done together\\nWhile our hearts were young\\n\\n[Chorus]\\nI am a-walking in the rain\\nTears are falling and I feel the pain\\nWishing you were here by me\\nTo end this misery and I wonder\\nI wah, wah, wah, wah wonder\\nWhy\\nWhy, why, why, why, why she ran away\\nAnd I wonder when she will stay\\nMy little runaway a-run, run, run, run, a-runaway\\n\\n[Chorus]\\nI am a-walking in the rain\\nTears are falling and I feel the pain\\nWishing you were here by me\\nTo end this misery and I wonder\\nI wah, wah, wah, wah wonder\\nWhy\\nWhy, why, why, why, why she ran away\\nAnd I wonder when she will stay\\nMy little runaway, a-run, run, run, run, a-runaway\\nRun run run run runaway\\nRun run run run runaway\\n\\n'},\n", " {'_id': 309593,\n", " 'lyrics': \"it started off so well they said we made a perfect pair i clothed myself in your glory and your love how i loved you how i cried the years of care and loyalty were nothing but a sham it seems the years belie we lived a lie i love you 'til i die save me save me save me i can't face this life alone save me save me oh i am naked and i am far from home the slate will soon be clean i will erase the memories to start again with somebody new was it all wasted all that love i hang my head and i advertise a soul for sale or rent i have no heart i am cold inside i have no real intent each night i cry i still believe the lie i love you 'til i die\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nIt started off so well\\nThey said we made a perfect pair\\nI clothed myself in your glory and your love\\nHow I loved you\\nHow I cried\\nThe years of care and loyalty\\nWere nothing but a sham it seems\\nThe years belie, we lived a lie\\nI love you 'til I die\\n\\n[Chorus]\\nSave me Save me Save me\\nI can't face this life alone\\nSave me Save me Oh\\nI am naked and I am far from home\\n\\n[Verse 2]\\nThe slate will soon be clean\\nI will erase the memories\\nTo start again with somebody new\\nWas it all wasted\\nAll that love\\nI hang my head and I advertise\\nA soul for sale or rent\\nI have no heart, I am cold inside\\nI have no real intent\\n\\n[Chorus]\\n\\n[Outro]\\nEach night I cry, I still believe the lie\\nI love you 'til I die\\n\\n\"},\n", " {'_id': 309761,\n", " 'lyrics': \"scandal now you've left me all the world's gonna know scandal they're gonna turn our lives into a freak show they'll see the heart achethey'll see the love break they'll hear me pleadingwe'll say for god sakes over and over and over again scandal now you've left me there's no healing the wounds hey scandal and all the world can make us out to be fools here come the bad newsopen the flood gates they'll leave us bleedingwe'll say you cheapskates over and over and over again so let them know when they stare it's just a private affair they'll have us hung in the air and tell me what do they care it's only a life to be twisted and broken they'll see the heart achethey'll see our love break yeah they'll hear me pleadingi'll say for god's sake over and over and over and over again scandal scandal scandal scandal yes you're breaking my heart again scandal yes you're loving on out again today the headlines tomorrow hard times and no-one ever really knows the truth from the lies and in the end the story deeper must hide deeper and deeper and deeper inside scandal scandal scandal scandal\",\n", " 'original_lyrics': \"\\n\\nScandal, now you've left me all the world's gonna know\\nScandal, they're gonna turn our lives into a freak show\\nThey'll see the heart ache,they'll see the love break\\nThey'll hear me pleading,we'll say for god sakes\\nOver and over and over again\\n\\nScandal, now you've left me there's no healing the wounds\\nHey scandal, and all the world can make us out to be fools\\nHere come the bad news,open the flood gates\\nThey'll leave us bleeding,we'll say you cheapskates\\nOver and over and over again\\n\\nSo let them know when they stare it's just a private affair\\nThey'll have us hung in the air and tell me what do they care\\nIt's only a life to be twisted and broken\\nThey'll see the heart ache,they'll see our love break, yeah\\nThey'll hear me pleading,I'll say for God's sake\\nOver and over and over and over again\\n\\nScandal scandal\\n\\nScandal\\nScandal yes you're breaking my heart again\\nScandal yes you're loving on out again\\n\\nToday the headlines tomorrow hard times\\nAnd no-one ever really knows the truth from the lies\\nAnd in the end the story deeper must hide\\nDeeper and deeper and deeper inside\\n\\nScandal scandal\\nScandal scandal\\n\\n\"},\n", " {'_id': 310012,\n", " 'lyrics': \"i like to sit here in the sunshine the trees in the fields are green sublime suspended in time and do not it make you feel small i like to sit here by the fire's light the trees in the fields lie bare to the night the stars burn bright and do not let it make you feel small everyone needs a place they can hide hide away find a space to be alone everyone needs a place they can hide everyone needs to find peace sublime i like to sit here in the autumn time the trees in the fields they rustle in the wind the church bells gently chime gentle on your mind suspended in time and do not it make you feel small everyone needs a place they can hide everyone needs to find peace sublime oh peace of mind everyone needs a place they can hide hide away find a space to be alone everyone needs a place they can hide hide away find a space to be alone everyone needs a place they can hide everyone needs to find - peace sublime oh peace of mind\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nI like to sit here in the sunshine\\nThe trees in the fields are green sublime\\nSuspended in time\\nAnd do not it make you feel small?\\n\\n[Verse 1]\\nI like to sit here by the fire's light\\nThe trees in the fields lie bare to the night\\nThe stars burn bright\\nAnd do not let it make you feel small?\\n\\n[Chorus]\\nEveryone needs a place they can hide\\nHide away find a space to be alone\\nEveryone needs a place they can hide\\nEveryone needs to find peace sublime\\n\\n[Verse 2]\\nI like to sit here in the Autumn time\\nThe trees in the fields they rustle in the wind\\nThe church bells gently chime\\nGentle on your mind\\nSuspended in time\\nAnd do not it make you feel small?\\n\\n[Bridge]\\nEveryone needs a place they can hide\\nEveryone needs to find peace sublime\\nOh peace of mind\\n\\n[Chorus]\\n\\n[Outro]\\nEveryone needs a place they can hide\\nHide away find a space to be alone\\nEveryone needs a place they can hide\\nHide away find a space to be alone\\nEveryone needs a place they can hide\\nEveryone needs to find - peace sublime\\nOh peace of mind\\n\\n\"},\n", " {'_id': 926787,\n", " 'lyrics': \"that's the way i am does everybody want to know this is the way i lead my life - you know wheeling and dealing and a little bit of stealing you know that's the way i grew up that's the only life i know that's the way my mother taught me there you go stealing i gave you the key to my home i left you alone in charge of my heart hey stealing you got me wheeling and dealing you play with my feelings right from the start can't afford to pay my rent i had to use my common sense to get some money i owe - oho this guy said look in my head make some easy bread stealing is the only way that i know stealing yeah only way that i know yeah i like stealing baby stealing i gave you both my heart and my home left you alone now you'll be stealing stealing stealing all my heart you're my baby's heart uh uh baby let 'em bleed you're in charge of my heart you are in charge of my heart you are in charge you are in charge da da da da da da da da da da da da da da da da da da yes you are in charge of my heart i gave you the key and turned on the bed i gave you the key come on i said what have i got what have i got yes i i got the key out of my heart now get that key out of my heart you're in charge of my heart come on\",\n", " 'original_lyrics': \"\\n\\nThat's the way I am\\nDoes everybody want to know\\nThis is the way I lead my life - you know\\nWheeling and dealing\\nAnd a little bit of stealing\\nYou know that's the way I grew up\\nThat's the only life I know\\nThat's the way my mother taught me\\nThere you go\\n\\nStealing\\nI gave you the key to my home\\nI left you alone in charge of my heart\\nHey stealing\\nYou got me wheeling and dealing\\nYou play with my feelings\\nRight from the start\\n\\nCan't afford to pay my rent\\nI had to use my common sense\\nTo get some money I owe - oho\\nThis guy said look in my head\\nMake some easy bread\\nStealing is the only way that I know\\n\\nStealing yeah only way that I know\\nYeah I like stealing baby stealing\\nI gave you both my heart and my home\\nLeft you alone\\nNow you'll be stealing stealing stealing\\nAll my heart\\nYou're my baby's heart\\nUh uh\\n\\nBaby let 'em bleed\\n\\nYou're in charge of my heart\\nYou are in charge of my heart\\nYou are in charge\\nYou are in charge\\n\\nDa da da da da da\\nDa da da da da da\\nDa da da da da da\\n\\nYes you are in charge of my heart\\nI gave you the key\\nAnd turned on the bed\\nI gave you the key\\nCome on I said what have I got\\nWhat have I got\\n\\nYes\\nI, I got the key out of my heart\\nNow get that key out of my heart\\nYou're in charge of my heart\\nCome on\\n\\n\"},\n", " {'_id': 1564714,\n", " 'lyrics': \"words and music by brian may and tim staffell know what i said when i saw you crying hang on that's folly i was reeking the head i believed your lying youre just a bad memory my life was going to be better my why could i never ever see shed step on me well i talked to your friend just the other day i was gonna look and raise a smile and she hid a smile and she ain't like you been asleep from all the journeys a little while my life was going to be better my why could i never ever see shed step on me step on me step on me step on me now its so good i won't waste my time on a two year old picture of you oh now that youre gone everythings fine but you probably think that were through my life was going to be better my why could i never ever see shed step on me step on me step on me step on me now its so good i won't waste my time on a two year old picture of you oh now that youre gone everythings fine but you probably think that were through my life was going to be better my why could i never ever see shed step on me never ever see shed step on me\",\n", " 'original_lyrics': \"\\n\\nWords and music by brian may and tim staffell\\n\\nKnow what I said when I saw you crying\\nHang on that's folly\\nI was reeking the head I believed your lying\\nYoure just a bad memory\\nMy life was going to be better\\nMy why could I never ever see shed step on me\\nWell I talked to your friend just the other day\\nI was gonna look and raise a smile\\nAnd she hid a smile and she ain't like you\\nBeen asleep from all the journeys a little while\\nMy life was going to be better\\nMy why could I never ever see shed step on me\\nStep on me, step on me, step on me\\nNow its so good I won't waste my time\\nOn a two year old picture of you\\nOh now that youre gone everythings fine\\nBut you probably think that were through\\nMy life was going to be better\\nMy why could I never ever see shed step on me\\nStep on me, step on me, step on me\\nNow its so good I won't waste my time\\nOn a two year old picture of you\\nOh now that youre gone everythings fine\\nBut you probably think that were through\\nMy life was going to be better\\nMy why could I never ever see shed step on me\\nNever ever see shed step on me\\n\\n\"},\n", " {'_id': 308926,\n", " 'lyrics': \"you call me up and treat me like a dog you call me up and tear me up inside you've got me on a lead you bring me down you shout around you don't believe that i'm alone sweet lady sweet lady sweet ladystay sweet you say you call me up and feed me all the lines you call me sweet like i'm some kind of cheese waiting on the shelf you eat me up you hold me down i'm just a fool to make you a home sweet lady sweet lady sweet ladystay sweet my sweet lady though it seems like we wait forever stay sweet baby believe and we've got everything we need oh runaway come on yeah yeah yeah yeah sweet lady\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nYou call me up and treat me like a dog\\nYou call me up and tear me up inside\\nYou've got me on a lead\\nYou bring me down\\nYou shout around\\nYou don't believe that I'm alone\\n\\n[Chorus]\\nSweet Lady\\nSweet Lady\\nSweet Lady...Stay sweet\\n\\n[Verse 2]\\nYou say\\nYou call me up and feed me all the lines\\nYou call me sweet like I'm some kind of cheese\\nWaiting on the shelf\\nYou eat me up\\nYou hold me down\\nI'm just a fool to make you a home\\n\\n[Chorus]\\nSweet Lady\\nSweet Lady\\nSweet Lady...Stay sweet\\n\\n[Verse 3]\\nMy Sweet lady\\nThough it seems like we wait forever\\nStay sweet baby\\nBelieve and we've got everything we need\\n\\n[Outro]\\nOh runaway come on\\nYeah yeah\\nYeah yeah\\nSweet lady\\n\\n\"},\n", " {'_id': 309606,\n", " 'lyrics': \"are you ready well are you ready give me your mind baby give me your body give me some time baby let's have a party there is no time for sleeping baby soon it's round your street i am creeping we are going to tear it up stir it up break it up baby you got to tear it up shake it up make it up as you go along tear it up square it up wake it up baby tear it up stir it up stake it out - and you can't go wrong i love you because you are sweet and i love you because you are naughty i love you for you mind but give me your body i want to be a toy at your birthday party wind me up wind me up wind me up let me go baby baby baby are you ready for me baby baby baby are you ready for love are you ready are you ready are you ready for me i love you so near i love you so far i got to tell you baby you are driving me ga ga\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nAre you ready? Well are you ready\\nGive me your mind baby give me your body\\nGive me some time baby let's have a party\\nThere is no time for sleeping baby\\nSoon it's round your street I am creeping\\n\\n[Chorus]\\nWe are going to Tear it up\\nStir it up\\nBreak it up, baby\\nYou got to Tear it up\\nShake it up\\nMake it up as you go along\\nTear it up\\nSquare it up\\nWake it up, baby\\nTear it up\\nStir it up\\nStake it out - and you can't go wrong\\n\\n[Verse 2]\\nI love you because you are sweet and I love you because you are naughty\\nI love you for you mind but give me your body\\nI want to be a toy at your birthday party\\nWind me up, wind me up, wind me up, let me go\\n\\n[Chorus]\\n\\n[Verse 3]\\nBaby baby baby are you ready for me\\nBaby baby baby are you ready for love\\nAre you ready, are you ready, are you ready for me\\nI love you so near, I love you so far\\nI got to tell you baby you are driving me Ga Ga\\n\\n\"},\n", " {'_id': 1634917,\n", " 'lyrics': \"so you feel that you ain't nobody always needed to be somebody put your feet on the ground put your hand on your heart lift your head to the stars and the world's for your taking (all you gotta do is save the world) so you feel it's the end of the story find it all pretty satisfactory well i tell you my friend this might seem like the end but the continuation is yours for the making yes you're a hero (oooh yeah) flash ahaaa he's for every one of us stands for every one of us he saved with a mighty hand (with a mighty hand) every man every woman every child he's the mighty flash ahahhhhhh\",\n", " 'original_lyrics': \"\\n\\nSo you feel that you ain't nobody\\nAlways needed to be somebody\\nPut your feet on the ground\\nPut your hand on your heart\\nLift your head to the stars\\nAnd the world's for your taking\\n\\n(All you gotta do is save the world)\\n\\nSo you feel it's the end of the story\\nFind it all pretty satisfactory\\nWell I tell you my friend\\nThis might seem like the end\\nBut the continuation\\nIs yours for the making\\n\\nYes you're a hero (oooh yeah)\\n\\n[Instrumental]\\n\\nFlash!! Ahaaa\\n\\nHe's for every one of us\\nStands for every one of us\\nHe saved with a mighty hand (with a mighty hand)\\nEvery man every woman\\nEvery child he's the mighty\\n\\nFlash! Ahahhhhhh\\n\\n\"},\n", " {'_id': 310136,\n", " 'lyrics': \"here we go ooh yeah yeah yeah yeah hey i'm the hitman stand aside i'm the hitman i want your life aren't no escaping don't run and hide there goes the neighborhood i'm going to kill for your love that's right hitman now don't you cry i'm just it man and you might get fried gun in my pocket don't get me wrong i'll be your hitman i'm a fool for your love i'm a head shredder that's better baby baby baby i'm a hitman hitman hitman yeah - trouble in the east troubled in the west struggle with the beast - what a thief what a pest come back mother nuke that sucker yeah yeah yeah who knows what i'm talking about waste that brother all right ooh that's the way to do it i'm the hitman i'm your prize but this hitman can cut you down to size love me (baby) don't be so cool love me love me baby i've been to the hitman school yeah yeah you're going to make my day going to blow you away that's when the fun begins (hitman) are you ready for the sting going to waste that thing (hitman) hitman is king go go oh hitman hitman\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nHere we go\\nOoh yeah yeah yeah yeah\\n\\n[Verse 1]\\nHey I'm the hitman\\nStand aside\\nI'm the hitman\\nI want your life\\nAren't no escaping\\nDon't run and hide\\nThere goes the neighborhood\\nI'm going to kill for your love\\nThat's right\\nHitman\\nNow don't you cry\\nI'm just it man\\nAnd you might get fried\\nGun in my pocket\\nDon't get me wrong\\nI'll be your hitman\\nI'm a fool for your love\\nI'm a head shredder\\nThat's better\\nBaby baby baby\\nI'm a hitman hitman hitman\\nYeah - trouble in the East troubled in the West\\nStruggle with the beast - what a thief what a pest\\nCome back mother\\nNuke that sucker\\nYeah yeah yeah\\nWho knows what I'm talking about\\nWaste that brother\\nAll right\\nOoh\\nThat's the way to do it\\nI'm the hitman\\nI'm your prize\\nBut this hitman can cut you down to size\\nLove me (baby)\\nDon't be so cool\\nLove me love me baby\\nI've been to the hitman school\\nYeah yeah\\nYou're going to make my day\\nGoing to blow you away\\nThat's when the fun begins (hitman)\\nAre you ready for the sting\\nGoing to waste that thing (hitman)\\nHitman is king\\n\\n[Outro]\\nGo go\\nOh hitman hitman\\n\\n\"},\n", " {'_id': 309725,\n", " 'lyrics': \"every drop of rain that falls in sahara desert says it all it's a miracle all god's creations great and small the golden gate and the taj mahal that's a miracle test tube babies being born mothers fathers dead and gone it's a miracle we're having a miracle on earth mother nature does it all for us the wonders of this world go on the hanging gardens of babylon captain cook and cain and abel jimi hendrix to the tower of babel it's a miracle it's a miracle it's a miracle it's a miracle the one thing we're all waiting for is peace on earth - an end to war it's a miracle we need - the miracle the miracle we're all waiting for today if every leaf on every tree could tell a story that would be a miracle if every child on every street had clothes to wear and food to eat that's a miracle if all god's people could be free to live in perfect harmony it's a miracle (wonders of this world go on) it's a miracle it's a miracle it's a miracle it's a miracle the one thing (the one thing) we're all waiting for (we're all waiting for) is peace on earth (peace on earth) and an end to war (an end to war) it's a miracle we need - the miracle the miracle peace on earth and end to war today that time will come one day you'll see when we can all be friends that time will come one day you'll see when we can all be friends that time will come one day you'll see when we can all be friends that time will come one day you'll see when we can all be friends\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nEvery drop of rain that falls in Sahara Desert says it all\\nIt's a miracle\\nAll God's creations great and small\\nThe Golden Gate and the Taj Mahal\\nThat's a miracle\\nTest tube babies being born\\nMothers, fathers dead and gone\\nIt's a miracle\\n\\n[Chorus 1]\\nWe're having a miracle on earth\\nMother nature does it all for us\\nThe wonders of this world go on\\nThe hanging Gardens of Babylon\\nCaptain Cook and Cain and Abel\\nJimi Hendrix to the Tower of Babel\\nIt's a miracle it's a miracle it's a miracle\\nIt's a miracle\\n\\n[Chorus 2]\\nThe one thing we're all waiting for is peace on earth - an end\\nTo war\\nIt's a miracle we need - the miracle\\nThe miracle we're all waiting for today\\n\\n[Verse 2]\\nIf every leaf on every tree could tell a story that would be a\\nMiracle\\nIf every child on every street had clothes to wear and food to\\nEat\\nThat's a miracle\\nIf all God's people could be free to live in perfect harmony\\nIt's a miracle\\n\\n[Chorus 1]\\n\\n(wonders of this world go on)\\nIt's a miracle it's a miracle it's a miracle\\nIt's a miracle\\n\\n[Chorus 2]\\nThe one thing (the one thing) we're all waiting for (we're all\\nWaiting for)\\nIs peace on earth (peace on earth) and an end to war (an end\\nTo war)\\nIt's a miracle we need - the miracle\\nThe miracle peace on earth and end to war today\\n\\n[Outro]\\nThat time will come one day you'll see when we can all be\\nFriends\\nThat time will come one day you'll see when we can all be\\nFriends\\nThat time will come one day you'll see when we can all be\\nFriends\\nThat time will come one day you'll see when we can all be\\nFriends\\n\\n\"},\n", " {'_id': 882370,\n", " 'lyrics': \"time waits for nobody time waits for nobody we all must plan our hopes together or we'll have no more future at all time waits for nobody we might as well be deaf and dumb and blind i know that sounds unkind but it seems to me we've not listened to or spoken about it at all the fact that time is running out for us all time waits for nobody time waits for no-one we've got to build this world together or we'll have no more future at all because time - it waits for nobody you don't need me to tell you what's gone wrong (gone wrong gone wrong) you know what's going on but it seems to me we've not cared enough or confided in each other at all (confided in each other at all) it seems that we've all got our backs against the wall (time) time waits for nobody (time) waits for no-one we've got to trust in one another or there'll be no more future at all (time) yeah - time waits for nobody no no - time don't wait for no-one let's learn to be friends with one another or there'll be no more future at all time (time) time (time) waits for nobody waits for nobody time time time time waits for nobody at all time waits for nobody - yeah time don't wait - waits for no-one let us free this world for ever and build a brand new future for us all time waits for nobody nobody nobody for no-one\",\n", " 'original_lyrics': \"\\n\\nTime waits for nobody\\nTime waits for nobody\\nWe all must plan our hopes together\\nOr we'll have no more future at all\\nTime waits for nobody\\nWe might as well be deaf and dumb and blind\\nI know that sounds unkind\\nBut it seems to me we've not listened to\\nOr spoken about it at all\\nThe fact that time is running out for us all\\nTime waits for nobody\\nTime waits for no-one\\nWe've got to build this world together\\nOr we'll have no more future at all\\nBecause time - it waits for nobody\\nYou don't need me to tell you what's gone wrong (gone wrong gone wrong)\\nYou know what's going on\\nBut it seems to me we've not cared enough\\nOr confided in each other at all (confided in each other at all)\\nIt seems that we've all got our backs against the wall\\n(Time) Time waits for nobody\\n(Time) waits for no-one\\nWe've got to trust in one another\\nOr there'll be no more future at all\\n(Time)\\nYeah - Time waits for nobody\\nNo no - Time don't wait for no-one\\nLet's learn to be friends with one another\\nOr there'll be no more future at all\\nTime (time) time (time) waits for nobody waits for nobody\\nTime time time time waits for nobody at all\\nTime waits for nobody - yeah\\nTime don't wait - waits for no-one\\nLet us free this world for ever\\nAnd build a brand new future for us all\\nTime waits for nobody nobody nobody\\nFor no-one\\n\\n\"},\n", " {'_id': 310052,\n", " 'lyrics': 'when the moons rises the dogs will howl look out of your window i will be on the prowl i am not usually a gambling man but oh i just want to hold up my hands and say i am taking a chance on you love whoa i am taking a chance on you love i am not superstitious and i do not wear no charm i do not carry my heart on the sleeve of my arm seven years of bad luck please do not worry me cause when i look in the mirror here is the future i see i am taking a chance on you love whoa i am taking a chance on you love place your bets better yet do not forget what i said roll the dice spin the wheel always remember you have got to keep it real do not believe in voodoo black magic was never my style but i believe you do and it will not take much time to gather the portions that weave your magic spell the moon on the ocean has a secret to tell but anyway i am taking a chance on you love whoa i am taking a chance on you love',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nWhen the moons rises\\nThe dogs will howl\\nLook out of your window\\nI will be on the prowl\\nI am not usually\\nA gambling man\\nBut oh I just want to\\nHold up my hands\\n\\n[Chorus]\\nAnd say I am\\nTaking a chance on you love\\nWhoa I am taking a chance on you love\\n\\n[Verse 2]\\nI am not superstitious\\nAnd I do not wear no charm\\nI do not carry my heart on the sleeve of my arm\\nSeven years of bad luck\\nPlease do not worry me\\nCause when I look in the mirror\\nHere is the future I see\\n\\n[Chorus]\\nI am taking a chance on you love\\nWhoa, I am taking a chance on you love\\n\\n[Verse 3]\\nPlace your bets, Better yet\\nDo not forget, What I said\\nRoll the dice, Spin the wheel\\nAlways remember, You have got to keep it real\\nDo not believe in voodoo\\nBlack magic was never my style\\nBut I believe you do\\nAnd it will not take much time\\nTo gather the portions\\nThat weave your magic spell\\nThe moon on the ocean\\nHas a secret to tell\\n\\n[Chorus]\\nBut anyway I am\\nTaking a chance on you love\\nWhoa I am taking a chance on you love[x2]\\n\\n'},\n", " {'_id': 310024,\n", " 'lyrics': 'they were born with the knowledge of the struggle to survive they were raised learning only ways to stay alive their language is the language of the bullet and the gun if you can see them coming baby better run here come the war boys here come the war boys well they look so pretty as they march and drill it is such a pity that they are dressed to kill soldiers marching two by two when it all comes down they know exactly what to do here come the war war boys war boys children and their toys war boys war boys make lot a noise war boys when the lightning explodes i pray for your soul hop234 well they look so fierce they are going to tear out your heart when they get near we are going to see what they got hold on to your soul friend of mine i will see you in hell some other time here come the boys helping to kill those who deserve to die tell me who decides you and i we have the power',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nThey were born with the knowledge of the struggle to survive\\nThey were raised, learning only ways to stay alive\\nTheir language is the language of the bullet and the gun\\nIf you can see them coming, baby better run\\n\\n[Chorus]\\nHere come the war boys\\nHere come the war boys\\n\\n[Verse 2]\\nWell they look so pretty as they march and drill\\nIt is such, a pity that they are dressed to kill\\nSoldiers marching two by two\\nWhen it all comes down they know exactly what to do\\n\\n[Chorus]\\nHere come the... war\\n\\n[Verse 3]\\nWar boys, war boys, children and their toys\\nWar boys, war boys, make lot a noise\\nWar boys, when the lightning explodes\\nI pray for your soul\\n\\n[Bridge]\\nHop...2...3...4\\n\\nWell they look so fierce they are going to tear out your heart\\nWhen they get near we are going to see what they got\\nHold on to your soul, friend of mine\\nI will see you in hell, some other time\\n\\n[Outro]\\nHere come the boys\\nHelping to kill, those who deserve to die\\nTell me who decides\\nYou and I\\nWe have the power\\n\\n'},\n", " {'_id': 310036,\n", " 'lyrics': \"i believe there is no evil out there we did not have a hand in you believe it is a time for peace and a time for understanding some of us believe that we are chosen and if god is on our side we will win the game and some of us believe that there is a heaven when the trumpets sound and the judges call your name but let us get it straight i believe there is just once chance in this world to hear our brothers you believe there is a better way to listen to each other we do not get what the other guy is saying we hear the words but we do not understand so around the world the same old anger raging and we all cry for shame and the same old tragedy goes down we believe there is a better way to fight there is a way to make our children safe at night we believe there is a war we could be winning but the only way to win it is to give what we need to receive i believe we need a hero to step boldly from the shadows you believe there must be someone on the scene that fits the bill a man or a woman who knows how to say i am sorry with courage in his heart to match his creed a leader who can build a brand new morning and match the tide of changes match the intent with the deed we believe there is a deed of obligation to bring reconciliation to make peace with every nation - in our time we believe there is not a minute we should be wasting when the darkness falls it is too late to fix the crime it is peace that we need every father every mother knows the meaning human treasure that our leaders do forget and the bullets fly in the face of common reason and the pain we give is the legacy in the end we get we believe there is a song that is worth the singing it is a song of truth we are bringing there is a way to share the earth with everyone we believe every creature has a being has a right to respect and feeling to live and breathe and flourish in the sun that's what we believe\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI believe there is no evil out there we did not have a hand in\\nYou believe it is a time for peace and a time for understanding\\nSome of us believe that we are chosen\\nAnd if God is on our side we will win the game\\nAnd some of us believe that there is a heaven\\nWhen the trumpets sound and the judges call your name\\nBut let us get it straight\\nI believe there is just once chance in this world to hear our brothers\\nYou believe there is a better way to listen to each other\\nWe do not get what the other guy is saying\\nWe hear the words but we do not understand\\nSo around the world the same old anger raging\\nAnd we all cry for shame and the same old tragedy goes down\\n\\n[Chorus]\\nWe believe there is a better way to fight\\nThere is a way to make our children safe at night\\nWe believe there is a war we could be winning\\nBut the only way to win it is to give what we need to receive\\n\\n[Verse 2]\\nI believe we need a hero to step boldly from the shadows\\nYou believe there must be someone on the scene that fits the bill\\nA man or a woman who knows how to say I am sorry\\nWith courage in his heart to match his creed\\nA leader who can build a brand new morning\\nAnd match the tide of changes\\nMatch the intent with the deed\\n\\n[Chorus]\\nWe believe there is a deed of obligation\\nTo bring reconciliation\\nTo make peace with every nation - in our time\\nWe believe there is not a minute we should be wasting\\nWhen the darkness falls it is too late to fix the crime\\nIt is peace that we need\\n\\n[Verse 3]\\nEvery father every mother knows the meaning\\nHuman treasure that our leaders do forget\\nAnd the bullets fly in the face of common reason\\nAnd the pain we give is the legacy in the end we get\\n\\n[Chorus]\\nWe believe there is a song that is worth the singing\\nIt is a song of truth we are bringing\\nThere is a way to share the Earth with everyone\\nWe believe every creature has a being\\nHas a right to respect and feeling\\nTo live and breathe and flourish in the sun\\nThat's what we believe\\n\\n\"},\n", " {'_id': 308990,\n", " 'lyrics': \"i'm a simple man with a simple name from this soil my people came in this soil remain oh yeah and we made us our shoes and we trod soft on the land but the immigrant built roads on our blood and sand oh yeah white man white man don't you see the light behind your blackened skies white man white man you took away sight to blind my simple eyes white man white man where you going to hide from the hell you've made oh the red man knows war with his hands and his knives on the bible you swore fought your battle with lies oh yeah leave my body in shame leave my soul in disgrace but by every god's name say your prayers for your race white man white man our country was green and all our rivers wide white man white man you came with a gun and soon our children died white man white man don't you give a light for the blood you've shed what is left of your dream just the words on your stone a man who learned how to teach then forget how to learn\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI'm a simple man\\nWith a simple name\\nFrom this soil my people came\\nIn this soil remain\\nOh yeah\\n\\nAnd we made us our shoes\\nAnd we trod soft on the land\\nBut the immigrant built roads\\nOn our blood and sand\\nOh yeah\\n\\nWhite man, white man\\nDon't you see the light behind your blackened skies\\nWhite man, white man\\nYou took away sight to blind my simple eyes\\nWhite man, white man\\nWhere you going to hide\\nFrom the hell you've made?\\n\\nOh the red man knows war\\nWith his hands and his knives\\nOn the Bible you swore\\nFought your battle with lies\\nOh yeah\\n\\nLeave my body in shame\\nLeave my soul in disgrace\\nBut by every God's name\\nSay your prayers for your race\\n\\nWhite man, white man\\nOur country was green and all our rivers wide\\nWhite man, white man\\nYou came with a gun and soon our children died\\nWhite man, white man\\nDon't you give a light for the blood you've shed?\\n\\nWhat is left of your dream?\\nJust the words on your stone\\nA man who learned how to teach\\nThen forget how to learn\\n\\n\"},\n", " {'_id': 1694587,\n", " 'lyrics': \"so sad her eyes smiling dark eyes so sad her eyes as it began on such a breathless night as this upon my brow the lightest kiss i walked alone and all around the air did say my lady soon will stir this way in sorrow known the white queen walks and the night grows pale stars of lovingmess in her hair needing - unheard pleading - one word so sad my eyes she cannot see how did thee fare what have thee seen the mother of the willow green i call her name and 'neath her window have i stayed i loved the footsteps that she made and when she came white queen how my heart did ache and dry my lips no word would make so still i wait my goddess hear my darkest fear i speak too late it's for evermore that i wait dear friend goodbye no tear in my eyes so sad it ends as it began\",\n", " 'original_lyrics': \"\\n\\nSo sad her eyes\\nSmiling dark eyes\\nSo sad her eyes\\nAs it began\\nOn such a breathless night as this\\nUpon my brow the lightest kiss\\nI walked alone\\nAnd all around the air did say\\nMy lady soon will stir this way\\nIn sorrow known\\nThe white queen walks and\\nThe night grows pale\\nStars of lovingmess in her hair\\nNeeding - unheard\\nPleading - one word\\nSo sad my eyes\\nShe cannot see\\nHow did thee fare, what have thee seen\\nThe mother of the willow green\\nI call her name\\nAnd 'neath her window have i stayed\\nI loved the footsteps that she made\\nAnd when she came\\nWhite queen how my heart did ache\\nAnd dry my lips no word would make\\nSo still i wait\\nMy goddess hear my darkest fear\\nI speak too late\\nIt's for evermore that i wait\\nDear friend goodbye\\nNo tear in my eyes\\nSo sad it ends\\nAs it began\\n\\n\"},\n", " {'_id': 308989,\n", " 'lyrics': \"music is playing in the darkness and a lantern goes swinging by shadows flickering my heart's jittering just you and i not tonight come tomorrow when everything's sunny and bright (sunny and bright) no no no come tomorrow cos then we'll be waiting for the moonlight we'll go walking in the moonlight walking in the moonlight laughter ringing in the darkness people drinking for days gone by time don't mean a thing when you're by my side please stay a while you know i never could foresee the future years you know i never could see where life was leading me but will we be together for ever what will be my love can't you see that i just don't know no no not tonight come tomorrow when everything's gonna be alright wait and see if tomorrow we'll be as happy as we're feeling tonight i can hear the music in the darkness floating softly to where to lie no more questions now let's enjoy tonight just you and i just you and i\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nMusic is playing in the darkness\\nAnd a lantern goes swinging by\\nShadows flickering\\nMy heart's jittering\\nJust you and I\\nNot tonight\\nCome tomorrow\\nWhen everything's sunny and bright (sunny and bright)\\nNo No No\\nCome tomorrow\\nCos then we'll be waiting for the moonlight\\n\\n[Chorus]\\nWe'll go walking in the moonlight\\nWalking in the moonlight\\n\\n[Verse 2]\\nLaughter ringing in the darkness\\nPeople drinking for days gone by\\nTime don't mean a thing\\nWhen you're by my side\\nPlease stay a while\\nYou know I never could foresee the future years\\nYou know I never could see\\nWhere life was leading me\\nBut will we be together for ever\\nWhat will be my love, can't you see that I just don't know\\nNo no not tonight\\nCome tomorrow\\nWhen everything's gonna be alright\\nWait and see\\nIf tomorrow\\nWe'll be as happy as we're feeling tonight\\n\\n[Chorus]\\n\\n[Verse 3]\\nI can hear the music in the darkness\\nFloating softly to where to lie\\nNo more questions now\\nLet's enjoy tonight\\nJust you and I\\nJust you and I\\n\\n\"},\n", " {'_id': 309869,\n", " 'lyrics': \"action this street honey is a mean street living in this street honey needs a mean streak we've got criminals living in this street but there's a heartbeat pulse that keeps on pumping like a jukebox playing the same dead record or a radio in the corner keeps blaring i gotta feeling this world is using me this town honey is a dead town living in this town honey is a showdown but there's a heartbeat pulse that keep in pumping some sunshine ray through a crack in a shutter or a sight of a light at the end of a tunnel still there's a feeling this world is using me action this day action this night we've got to learn to learn to live to love you can't say it ain't right action this day action this night you've got the power you've got the power you've got the power to love and to live you can't say it ain't right your mind honey is a bleak place living in your mind's living in a bleak place your mind is coming from a rat race but there's a heartbeat pulse that keeps on pumping like a jukebox playing the same dead record or a radio in the corner keeps blaring i gotta feeling that just won't quit this world is using me action this day action this night we've got to learn to learn to live to love you can't say it ain't right action this day action this night you've got the power you've got the power you've got the power to love and to live you can't say it ain't right action action this day\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nAction\\nThis street honey is a mean street\\nLiving in this street honey needs a mean\\nStreak\\n\\n[Verse 1]\\nWe've got criminals living in this street\\nBut there's a heartbeat pulse that keeps on\\nPumping\\nLike a jukebox playing the same dead record\\nOr a radio in the corner keeps blaring\\nI gotta feeling, this world is using me\\nThis town honey is a dead town\\nLiving in this town honey is a showdown\\nBut there's a heartbeat pulse that keep in\\nPumping\\n\\n[Verse 2]\\nSome sunshine ray through a crack in a\\nShutter\\nOr a sight of a light at\\nThe end of a tunnel\\nStill there's a feeling, this world is using me\\n\\n[Pre-Chorus]\\nAction this day\\nAction this night\\nWe've got to learn to learn to live to love\\nYou can't say it ain't right\\n\\n[Chorus]\\nAction this day\\nAction this night\\nYou've got the power, you've got the power\\nYou've got the power to love and to live\\nYou can't say it ain't right\\n\\n[Verse 3]\\nYour mind honey is a bleak place\\nLiving in your mind's living in a bleak place\\nYour mind is coming from a rat race\\nBut there's a heartbeat pulse that keeps on\\nPumping\\nLike a jukebox playing the same dead record\\nOr a radio in the corner keeps blaring\\nI gotta feeling that just won't quit, this\\nWorld is using me\\n\\n[Pre-Chorus]\\nAction this day\\nAction this night\\nWe've got to learn to learn to live to love\\nYou can't say it ain't right\\n\\n[Chorus]\\nAction this day\\nAction this night\\nYou've got the power, you've got the power\\nYou've got the power to love and to live\\nYou can't say it ain't right\\n\\n[Outro]\\nAction\\nAction this day\\n\\n\"},\n", " {'_id': 311614,\n", " 'lyrics': \"they were talking in whispers in bear skins and fur captain scott and his heroes to be to have laboured so long to have made it this far ooh it's been such a long ride ooh you know it's been a long way for a human human human for a human body you see can you believe it happens now it happens here do you believe do you believe or really care can you believe it happens now it happens here to a human human with a human body you see there ain't nobody gets out of this moonlight today is surprisingly fair oh oh oh oh woo woo we've got problems the lone ranger can't fix the invisible man couldn't see it takes a tough guy to learn some new tricks ooh it takes such a long time ooh it's been such a long way for a human human human for a human body you see can you believe it happens now it happens here do you believe do you believe or really care can you believe it happens now it happens here to a human human with a human body you see you know it's been such a long while it's been such a long while takes such a long time it takes such a long time it's been such a long way been such a long way it's been such a long while been such a long while yeah yeah yeah yeah yeah yeah it's going tobe a long ride\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nThey were talking in whispers\\nIn bear skins and fur\\nCaptain Scott and his heroes to be\\nTo have laboured so long\\nTo have made it this far\\nOoh it's been such a long ride\\nOoh you know it's been a long way\\nFor a human human human\\nFor a human body you see\\nCan you believe it happens?\\nNow it happens here\\nDo you believe do you believe or really care\\nCan you believe it happens?\\nNow it happens here\\nTo a human human\\nWith a human body you see\\nThere ain't nobody gets out of this moonlight\\nToday is surprisingly fair\\nOh oh oh oh woo woo\\nWe've got problems the Lone Ranger can't fix\\nThe invisible man couldn't see\\nIt takes a tough guy\\nTo learn some new tricks\\nOoh it takes such a long time\\nOoh it's been such a long way\\nFor a human human human\\nFor a human body you see\\nCan you believe it happens?\\nNow it happens here\\nDo you believe do you believe or really care\\nCan you believe it happens?\\nNow it happens here\\nTo a human human\\nWith a human body you see\\n\\n[Outro]\\nYou know it's been such a long while\\nIt's been such a long while\\nTakes such a long time\\nIt takes such a long time\\nIt's been such a long way\\nBeen such a long way\\nIt's been such a long while\\nBeen such a long while\\nYeah yeah yeah yeah yeah yeah!\\nIt's going tobe a long ride\\n\\n\"},\n", " {'_id': 309616,\n", " 'lyrics': \"it's a kind of magic it's a kind of magic a kind of magic - no way one dream one soul one prize one goal one golden glance of what should be it's a kind of magic one shaft of light that shows the way no mortal man can win this day it's a kind of magic the bell that rings inside your mind is challenging the doors of time it's a kind of magic the waiting seems eternity the day will dawn of sanity ooh ooh ooh ooh is this a kind of magic it's a kind of magic there can be only one this rage that lasts a thousand years will soon be done this flame that burns inside of me i'm hearing secret harmonies it's a kind of magic the bell that rings inside your mind is challenging the doors of time it's a kind of magic it's a kind of magic this rage that lasts a thousand years will soon be will soon be will soon be done this is (this is) a kind (a kind) of magic (yeah) there can be only one one one one this rage that lasts a thousand years will soon be done - done magic - it's a kind of magic it's a kind of magic magic magic magic (magic) ha ha ha haa - it's magic ha haa yeah yeah wooh\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nIt's a kind of magic\\nIt's a kind of magic\\nA kind of magic - no way\\n\\n[Verse 1]\\nOne dream, one soul, one prize\\nOne goal, one golden glance of what should be\\nIt's a kind of magic\\nOne shaft of light that shows the way\\nNo mortal man can win this day\\nIt's a kind of magic\\nThe bell that rings inside your mind\\nIs challenging the doors of time\\nIt's a kind of magic\\nThe waiting seems eternity\\nThe day will dawn of sanity\\nOoh ooh ooh ooh\\nIs this a kind of magic?\\nIt's a kind of magic\\nThere can be only one\\nThis rage that lasts a thousand years\\nWill soon be done\\nThis flame that burns inside of me\\nI'm hearing secret harmonies\\nIt's a kind of magic\\nThe bell that rings inside your mind\\nIs challenging the doors of time\\n\\n[Chorus]\\nIt's a kind of magic\\nIt's a kind of magic\\n\\n[Verse 2]\\nThis rage that lasts a thousand years\\nWill soon be, will soon be, will soon be done\\nThis is (this is) a kind (a kind) of magic (yeah)\\nThere can be only one one one one\\nThis rage that lasts a thousand years\\nWill soon be done - done\\n\\n[Chorus]\\nMagic - it's a kind of magic\\nIt's a kind of magic\\nMagic magic magic (magic)\\nHa ha ha haa - it's magic\\nHa haa\\nYeah yeah\\nWooh\\n\\n\"},\n", " {'_id': 2209228,\n", " 'lyrics': \"it's a kind of magic it's a kind of magic a kind of magic - no way one dream one soul one prize one goal one golden glance of what should be it's a kind of magic one shaft of light that shows the way no mortal man can win this day it's a kind of magic the bell that rings inside your mind is challenging the doors of time it's a kind of magic the waiting seems eternity the day will dawn of sanity ooh ooh ooh ooh is this a kind of magic it's a kind of magic there can be only one this rage that lasts a thousand years will soon be done this flame that burns inside of me i'm hearing secret harmonies it's a kind of magic the bell that rings inside your mind is challenging the doors of time it's a kind of magic it's a kind of magic this rage that lasts a thousand years will soon be will soon be will soon be done this is (this is) a kind (a kind) of magic (yeah) there can be only one one one one this rage that lasts a thousand years will soon be done - done magic - it's a kind of magic it's a kind of magic magic magic magic (magic) ha ha ha haa - it's magic ha haa yeah yeah wooh it's a kind of magic\",\n", " 'original_lyrics': \"\\n\\nIt's a kind of magic\\nIt's a kind of magic\\nA kind of magic - no way\\n\\nOne dream, one soul, one prize\\nOne goal, one golden glance of what should be\\nIt's a kind of magic\\n\\nOne shaft of light that shows the way\\nNo mortal man can win this day\\nIt's a kind of magic\\nThe bell that rings inside your mind\\nIs challenging the doors of time\\nIt's a kind of magic\\n\\nThe waiting seems eternity\\nThe day will dawn of sanity\\nOoh ooh ooh ooh\\nIs this a kind of magic?\\nIt's a kind of magic\\nThere can be only one\\nThis rage that lasts a thousand years\\nWill soon be done\\n\\nThis flame that burns inside of me\\nI'm hearing secret harmonies\\nIt's a kind of magic\\nThe bell that rings inside your mind\\nIs challenging the doors of time\\n\\nIt's a kind of magic\\nIt's a kind of magic\\n\\nThis rage that lasts a thousand years\\nWill soon be, will soon be, will soon be done\\nThis is (this is) a kind (a kind) of magic (yeah)\\nThere can be only one one one one\\nThis rage that lasts a thousand years\\nWill soon be done - done\\n\\nMagic - it's a kind of magic\\nIt's a kind of magic\\nMagic magic magic (magic)\\nHa ha ha haa - it's magic\\nHa haa\\nYeah yeah\\nWooh\\nIt's a kind of magic\\n\\n\"},\n", " {'_id': 1145053,\n", " 'lyrics': \"queen classic queen a kind of magic (taylor) it's a kind of magic it's a kind of magic a kind of magic one dream one soul one prize one goal one golden glance of what should be it's a kind of magic one shaft of light that shows the way no mortal man can win this day it's a kind of magic the bell that rings inside your mind it's a challenging the doors of time it's a kind of magic the waiting seems eternity the day will dawn of sanity it's a kind of magic there can be only one this rage that lasts a thousand years will soon be gone this flame that burns inside of me i'm hearing secret harmonies it's a kind of magic the bell that rings inside your mind is challenging the doors of time it's a kind of magic it's a kind of magic this rage that lasts a thousand years will soon be will soon be will soon be gone this is a kind of magic tere can only be one this life that lasts a thousand years will soon be gone magic - it's a kind of magic it's a kind of magic magic magic magic magic it's magic it's a kind of magic\",\n", " 'original_lyrics': \"\\n\\nQueen\\nClassic Queen\\nA Kind Of Magic (Taylor)\\nIt's a kind of magic\\nIt's a kind of magic\\nA kind of magic\\nOne dream, one soul, one prize\\nOne goal, one golden glance of what should be\\nIt's a kind of magic\\nOne shaft of light that shows the way\\nNo mortal man can win this day\\nIt's a kind of magic\\nThe bell that rings inside your mind\\nIt's a challenging the doors of time\\nIt's a kind of magic\\nThe waiting seems eternity\\nThe day will dawn of sanity\\nIt's a kind of magic\\nThere can be only one\\nThis rage that lasts a thousand years\\nWill soon be gone\\nThis flame that burns inside of me\\nI'm hearing secret harmonies\\nIt's a kind of magic\\nThe bell that rings inside your mind\\nIs challenging the doors of time\\nIt's a kind of magic\\nIt's a kind of magic\\nThis rage that lasts a thousand years\\nWill soon be will soon be\\nWill soon be gone\\nThis is a kind of magic\\nTere can only be one\\nThis life that lasts a thousand years\\nWill soon be gone\\nMagic - it's a kind of magic\\nIt's a kind of magic\\nMagic, magic, magic, magic\\nIt's magic\\nIt's a kind of magic\\n\\n\"},\n", " {'_id': 309003,\n", " 'lyrics': \"she came without a farthing a babe without a name so much ado about nothing is what she'd try to say so much ado my lover so many games we played through every fleeted summer through every precious day all dead all dead all the dreams we had and i wonder why i still live on all dead all dead and alone i'm spared my sweeter half instead all dead and gone all dead all dead all dead at the rainbow's end and still i hear her own sweet song all dead all dead take me back again you know my little friend's all dead and gone her ways are always with me i wander all the while but please you must forgive me i am old but still a child all dead all dead but i should not grieve in time it comes to everyone all dead all dead but in hope i breathe of course i don't believe you're dead and gone all dead and gone\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nShe came without a farthing\\nA babe without a name\\nSo much ado about nothing\\nIs what she'd try to say\\nSo much ado my lover\\nSo many games we played\\nThrough every fleeted summer\\nThrough every precious day\\n\\n[Chorus]\\nAll dead all dead\\nAll the dreams we had\\nAnd I wonder why I still live on\\nAll dead all dead\\nAnd alone I'm spared\\nMy sweeter half instead\\nAll dead and gone all dead\\n\\n[Verse 2]\\nAll dead all dead\\nAt the rainbow's end\\nAnd still I hear her own sweet song\\nAll dead all dead\\nTake me back again\\nYou know my little friend's\\nAll dead and gone\\n\\n[Verse 3]\\nHer ways are always with me\\nI wander all the while\\nBut please you must forgive me\\nI am old but still a child\\n\\n[Chorus]\\nAll dead all dead\\nBut I should not grieve\\nIn time it comes to everyone\\nAll dead all dead\\nBut in hope I breathe\\nOf course I don't believe\\nYou're dead and gone\\nAll dead and gone\\n\\n\"},\n", " {'_id': 310117,\n", " 'lyrics': \"so all you people give freely make welcome inside your homes thank god you people give freely don't turn your back on the lesson of the lord all prime ministers (yeah) and majesty around the world open your eyes look touch and feel rule with your heart (rule with your heart ) live with your conscience (live with your conscience) and love love love love and be love love and be free we're all god's people (we're all god's people) got to face up better grow up got to stand tall and be strong got to face up better grow up got to face up better grow up got to stand tall and be strong got to face up better grow up we're all god's people (got to face up) (better grow up) (got to face up) (better grow up) yeah yeah - yeah - yes there was this magic light i said to myself i'd better go to bed and have an early night then i then i then i then i went into a dream rule with your heart and live with your conscience we're all god's people give freely (yeah) make welcome inside your homes let us be thankful he's so incredible we're all god's we're all god's people we're all god's we're all god's people\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nSo all you people give freely\\nMake welcome inside your homes\\nThank God you people give freely\\nDon't turn your back on the lesson of the Lord\\nAll prime ministers (yeah) and majesty around the world\\nOpen your eyes look touch and feel\\nRule with your heart (rule with your heart )\\nLive with your conscience (live with your conscience)\\nAnd love love\\nLove love and be\\nLove love and be free\\nWe're all God's people (we're all God's people)\\n\\n[Chorus 1]\\nGot to face up\\nBetter grow up\\nGot to stand tall and be strong\\nGot to face up\\nBetter grow up\\n\\n[Chorus 1]\\nGot to face up\\nBetter grow up\\nGot to stand tall and be strong\\nGot to face up\\nBetter grow up\\nWe're all God's people\\n(Got to face up)\\n(Better grow up)\\n(Got to face up)\\n(Better grow up)\\nYeah\\n\\n[Verse 2]\\nYeah - yeah - yes there was this magic light\\nI said to myself\\nI'd better go to bed and have an early night\\nThen I then I then I then I went into a dream\\nRule with your heart and live with your conscience\\nWe're all God's people give freely (yeah)\\nMake welcome inside your homes\\nLet us be thankful, He's so incredible\\n\\n[Outro]\\nWe're all God's[x3]\\nWe're all God's people\\nWe're all God's\\nWe're all God's people[x2]\\n\\n\"},\n", " {'_id': 310198,\n", " 'lyrics': \"it's winter-fall red skies are gleaming oh sea-gulls are flying over swans are floating by smoking chimney-tops am i dreaming am i dreaming the nights draw in there's a silky moon up in the sky yeah children are fantasising grown-ups are standing by what a super feeling am i dreaming am i dreaming woh-woh-woh-woh (dreaming) so quiet and peaceful (dreaming) tranquil and blissful (dreaming) there's a kind of magic in the air (dreaming) what a truly magnificent view (dreaming) a breathtaking scene with the dreams of the world in the palm of your hand (dreaming) a cosy fireside chat (dreaming) a little this a little that (dreaming) sound of merry laughter skippin' by (dreaming) gentle rain beatin' on my face (dreaming) what an extraordinary place and the dream of the child is the hope of the hope of the man it's all so beautiful like a landscape painting in the sky yeah mountains are zooming higher uh little girls scream and cry my world is spinning and spinning and spinning it's unbelievable sends me reeling am i dreaming am i dreaming oooh - it's bliss\",\n", " 'original_lyrics': \"\\n\\nIt's winter-fall\\nRed skies are gleaming, oh\\nSea-gulls are flying over\\nSwans are floating by\\nSmoking chimney-tops\\nAm I dreaming?\\nAm I dreaming...?\\n\\nThe nights draw in\\nThere's a silky moon up in the sky, yeah\\nChildren are fantasising\\nGrown-ups are standing by\\nWhat a super feeling\\nAm I dreaming?\\nAm I dreaming...?\\nWoh-woh-woh-woh\\n\\n(Dreaming) So quiet and peaceful\\n(Dreaming) Tranquil and blissful\\n(Dreaming) There's a kind of magic in the air\\n(Dreaming) What a truly magnificent view\\n(Dreaming) A breathtaking scene\\nWith the dreams of the world\\nIn the palm of your hand\\n\\n(Dreaming) A cosy fireside chat\\n(Dreaming) A little this, a little that\\n(Dreaming) Sound of merry laughter skippin' by\\n(Dreaming) Gentle rain beatin' on my face\\n(Dreaming) What an extraordinary place!\\nAnd the dream of the child\\nIs the hope of the, hope of the man\\n\\nIt's all so beautiful\\nLike a landscape painting in the sky, yeah\\nMountains are zooming higher, uh\\nLittle girls scream and cry\\nMy world is spinning and spinning and spinning\\nIt's unbelievable\\nSends me reeling\\nAm I dreaming?\\nAm I dreaming...?\\n\\nOooh - it's bliss\\n\\n\"},\n", " {'_id': 1324285,\n", " 'lyrics': \"words and music by buddy holly you don't like crazy music you don't like rockin' you just want to go to a movie show and sit their holdin' hands you're so square baby i don't care i don't know why my heart blips i only know it does i only want to love you baby i guess its just because you're so square baby i don't care you don't know any dance steps but i do-a-hoo-hoo i only know why i love you like i do-a-do-a-do-a-do you don't like crazy music you don't like rockin' you just want to go to a movie show and sit their holdin' hands you're so square baby i don't care baby i don't care baby i don't care\",\n", " 'original_lyrics': \"\\n\\nWords and music by buddy holly\\nYou don't like crazy music, you don't like rockin'\\nYou just want to go to a movie show, and sit their holdin' hands\\nYou're so square, baby i don't care\\nI don't know why my heart blips, i only know it does\\nI only want to love you baby, i guess its just because\\nYou're so square, baby i don't care\\nYou don't know any dance steps, but i do-a-hoo-hoo\\nI only know why i love you like i do-a-do-a-do-a-do\\nYou don't like crazy music, you don't like rockin'\\nYou just want to go to a movie show, and sit their holdin' hands\\nYou're so square, baby i don't care\\nBaby i don't care, baby i don't care\\n\\n\"},\n", " {'_id': 2060657,\n", " 'lyrics': \"back chat back chat you burn all my energy back chat back chat criticising all you see back chat back chat analysing what i say back chat back chat and you always get your way oh yeah see what yuo've done to me back chat back chat you're driving me insane it's a battle to the end knock you down you come again talk back talk back you've got me on the rock twisting every word i say wind me up and get your way fat chance i have of making a romance if i'm every going to win i'll have to get the last word in take it from here twisting every word i say wind me up and get your way back chat back chat you burn all my energy back chat back chat criticising all you see back chat back chat analysing what i say back chat back chat and you always get your way wake up stand up and drag yourself on out get down get ready scream and shout back off be cool and learn to change your ways cos you're talking in your sleep and you are walking in a dase don't push your luck i'm ready to attack cos when i'm trying to talk to you all you do is just talk back you stand so tall you don't frighting me at all don't talk back don't talk back don't talk back just leave me alone back chat back chat you burn all my energy back chat back chat criticising all you see back chat back chat analysing what i say back chat back chat and you always get your way yes you do\",\n", " 'original_lyrics': \"\\n\\nBack Chat Back Chat\\nYou burn all my energy\\nBack Chat Back Chat\\nCriticising all you see\\nBack Chat Back Chat\\nAnalysing what I say\\nBack Chat Back Chat\\nAnd you always get your way\\nOh yeah see what yuo've done to me\\nBack Chat Back Chat\\nYou're driving me insane\\nIt's a battle to the end, knock you down you come again\\nTalk back, talk back you've got me on the rock\\nTwisting every word I say\\nWind me up and get your way\\nFat chance I have of making a romance\\nIf I'm every going to win\\nI'll have to get the last word in\\nTake it from here\\nTwisting every word I say\\nWind me up and get your way\\nBack Chat Back Chat\\nYou burn all my energy\\nBack Chat Back Chat\\nCriticising all you see\\nBack Chat Back Chat\\nAnalysing what I say\\nBack Chat Back Chat\\nAnd you always get your way\\nWake up stand up and drag yourself on out\\nGet down get ready\\nScream and shout\\nBack off, be cool\\nAnd learn to change your ways\\nCos you're talking in your sleep\\nAnd you are walking in a dase\\nDon't push your luck\\nI'm ready to attack\\nCos when I'm trying to talk to you\\nAll you do is just talk back\\nYou stand so tall, you don't frighting me at all\\nDon't talk back, don't talk back, don't talk back\\nJust leave me alone\\nBack Chat Back Chat\\nYou burn all my energy\\nBack Chat Back Chat\\nCriticising all you see\\nBack Chat Back Chat\\nAnalysing what I say\\nBack Chat Back Chat\\nAnd you always get your way\\nYes you do...\\n\\n\"},\n", " {'_id': 1708105,\n", " 'lyrics': \"far far from the light here the night creatures call in the cold breath they howl and the hollow tears theyre calling you ill be there though maybe you won't see my babe ill still care no mater where ill still be there when you make to the other side lord i'm going back back to the light back to the dreams that are paved with gold back to the light back to the land where the sunshine heals my soul deep deep in the night when the world fils with tears and the wind grows colder and colder it grows and the fire dimes with the same old fears ill be there no matter what youre going through in the dark i care i'm holding on i'm hoping on its still the same old me inside# lord i'm going back back to the light back to the dreams that are paved with gold back to the light back to the land where the sunshine heals my soul on and on searching for the clearer view winning and loosing an inner war wondering what we do it for though the road seems never ending hold on to the hope i'm sending through no matter where youre going to ill be there i'm holding on believe it well be walking in the light cos therell be no place left to hide back to the light back to the dreams that are paved with gold back to the light back to the land where the sunshine heals my soul let me hear you babes - yeah yeah yeah\",\n", " 'original_lyrics': \"\\n\\nFar, far from the light\\nHere the night creatures call\\nIn the cold breath they howl\\nAnd the hollow tears, theyre calling you\\n\\nIll be there, though maybe you won't see my babe\\nIll still care, no mater where Ill still be there\\nWhen you make to the other side\\n\\nLord I'm going back, back to the light\\nBack to the dreams that are paved with gold\\nBack to the light\\nBack to the land, where the sunshine heals my soul\\n\\nDeep, deep in the night\\nWhen the world fils with tears\\nAnd the wind grows, colder and colder it grows\\nAnd the fire dimes, with the same old fears\\n\\nIll be there, no matter what youre going through\\nIn the dark I care, I'm holding on, I'm hoping on\\nIts still the same old me inside#\\n\\nLord I'm going back, back to the light\\nBack to the dreams that are paved with gold\\nBack to the light\\nBack to the land, where the sunshine heals my soul\\n\\nOn and on, searching for the clearer view\\nWinning and loosing an inner war\\nWondering what we do it for\\nThough the road seems never ending\\nHold on to the hope I'm sending through\\n\\nNo matter where youre going to\\nIll be there\\nI'm holding on, believe it\\nWell be walking in the light\\nCos therell be no place left to hide\\n\\nBack to the light\\nBack to the dreams that are paved with gold\\nBack to the light\\nBack to the land, where the sunshine heals my soul\\nLet me hear you babes - yeah, yeah, yeah\\n\\n\"},\n", " {'_id': 308909,\n", " 'lyrics': \"daddy cool with a ninety dollar smile took my money out of gratitude and he get right out of town - well i got to getty up steady up shoot him down got to hit that latitude - babe big bad leroy brown he got no common sense - no no he got no brains but he sure got to lot of style can't stand no more in this here jail i got to rid myself of this sentence got to get out the heat step into the shade got to get me there dead or alive - babe wooh wooh big bad leroy wooh wooh wooh wooh big bad leroy - brown - well big mama lulu belle she had a nervous breakdown (she had a nervous breakdown) leroy's taken her honey chile away but she met him down at the station put a shot gun to his head and unless i be mistaken this is what she said big bad big boy big bad leroy brown i'm going to get that cutie pie\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nDaddy Cool with a ninety dollar smile\\nTook my money out of gratitude\\nAnd he get right out of town - well\\n\\n[Verse 1]\\nI got to getty up, steady up, shoot him down\\nGot to hit that latitude - babe\\n\\n[Chorus]\\n\\n[Verse 2]\\nBig bad Leroy Brown he got no common\\nSense - no, no\\nHe got no brains but he sure got to lot of style\\nCan't stand no more in this here jail\\nI got to rid myself of this sentence\\nGot to get out the heat, step into the shade\\nGot to get me there dead or alive - babe\\nWooh, wooh, big bad Leroy, wooh, wooh\\nWooh, wooh, big bad Leroy - Brown - well\\n\\n[Chorus]\\n\\n[Verse 3]\\nBig Mama Lulu Belle she had a nervous breakdown\\n(She had a nervous breakdown)\\nLeroy's taken her honey chile away\\nBut she met him down at the station\\nPut a shot gun to his head\\nAnd unless I be mistaken\\nThis is what she said\\nBig bad, big boy, big bad Leroy Brown\\nI'm going to get that cutie pie\\n\\n[Chorus]\\n\\n\"},\n", " {'_id': 98471,\n", " 'lyrics': \"bicycle bicycle bicycle i want to ride my bicycle bicycle bicycle i want to ride my bicycle i want to ride my bike i want to ride my bicycle i want to ride it where i like you say black i say white you say bark i say bite you say shark i say hey man jaws was never my scene and i don't like star wars you say rolls i say royce you say god give me a choice you say lord i say christ i don't believe in peter pan frankenstein or superman all i wanna do is bicycle bicycle bicycle i want to ride my bicycle bicycle bicycle i want to ride my bicycle i want to ride my bike i want to ride my bicycle i want to ride my bicycle races are coming your way so forget all your duties oh yeah fat bottomed girls they'll be riding today so look out for those beauties oh yeah on your marks get set go bicycle race bicycle race bicycle race bicycle bicycle bicycle want to ride my bicycle bicycle bicycle bicycle bicycle race you say coke i say caine you say john i say wayne hot dog i say cool it man i don't wanna be the president of america you say smile i say cheese cartier i say please income tax i say jesus i don't wanna be a candidate for vietnam or watergate cause all i want to do is bicycle bicycle bicycle i want to ride my bicycle bicycle bicycle i want to ride my bicycle i want to ride my bike i want to ride my bicycle i want to ride it where i like\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nBicycle bicycle bicycle\\nI want to ride my bicycle bicycle bicycle\\nI want to ride my bicycle\\nI want to ride my bike\\nI want to ride my bicycle\\nI want to ride it where I like\\n\\n[Verse 1]\\nYou say black; I say white\\nYou say bark; I say bite\\nYou say shark; I say, Hey man\\nJaws was never my scene\\nAnd I don't like Star Wars\\nYou say Rolls; I say Royce\\nYou say God; give me a choice!\\nYou say Lord; I say Christ!\\nI don't believe in Peter Pan\\nFrankenstein or Superman\\nAll I wanna do is\\n\\n[Chorus]\\nBicycle bicycle bicycle\\nI want to ride my bicycle bicycle bicycle\\nI want to ride my bicycle\\nI want to ride my bike\\nI want to ride my bicycle\\nI want to ride my\\n\\n[Bridge]\\nBicycle races are coming your way\\nSo forget all your duties oh yeah!\\nFat bottomed girls they'll be riding today\\nSo look out for those beauties oh yeah\\nOn your marks! Get set! Go!\\nBicycle race bicycle race bicycle race\\nBicycle bicycle bicycle want to ride my bicycle\\nBicycle bicycle bicycle\\nBicycle race\\n\\n[Verse 2]\\nYou say coke; I say caine\\nYou say John; I say Wayne\\nHot dog, I say, Cool it man\\nI don't wanna be the President of America\\nYou say smile; I say cheese\\nCartier; I say please\\nIncome tax; I say Jesus\\nI don't wanna be a candidate\\nFor Vietnam or Watergate\\nCause all I want to do is\\n\\n[Chorus]\\nBicycle bicycle bicycle\\nI want to ride my bicycle bicycle bicycle\\nI want to ride my bicycle\\nI want to ride my bike\\nI want to ride my bicycle\\nI want to ride it where I like\\n\\n\"},\n", " {'_id': 309833,\n", " 'lyrics': \"give me body - give me - body - body give me your body don't talk baby don't talk body language give me your body just give me your body give me your body don't talk body language you got red lips snakes in your eyes long legs great thighs you've got the cutest ass i've ever seen knock me down for a six anytime look at me - i got of case of body language body language - body language - yeah sexy body sexy sexy body i want your body baby you're hot body language body language body language body language body language body language body language body language body language\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nGive me, body - give me - body - body\\nGive me your body\\n\\n[Chorus]\\nDon't talk, Baby don't talk\\nBody language\\nGive me your body\\nJust give me your body\\nGive me your body\\nDon't talk\\nBody language\\n\\n[Verse 1]\\nYou got red lips\\nSnakes in your eyes\\nLong legs, great thighs\\nYou've got the cutest ass I've ever seen\\nKnock me down for a six anytime\\nLook at me - I got of case of body language\\n\\n[Outro]\\nBody language - body language - yeah\\nSexy body, sexy, sexy body\\nI want your body\\nBaby you're hot\\nBody language body language body language\\nBody language body language body language\\nBody language body language body language\\n\\n\"},\n", " {'_id': 1063,\n", " 'lyrics': \"is this the real life is this just fantasy caught in a landslide no escape from reality open your eyes look up to the skies and see i'm just a poor boy i need no sympathy because i'm easy come easy go little high little low any way the wind blows doesn't really matter to me to me mama just killed a man put a gun against his head pulled my trigger now he's dead mama life had just begun but now i've gone and thrown it all away mama ooh didn't mean to make you cry if i'm not back again this time tomorrow carry on carry on as if nothing really matters too late my time has come sends shivers down my spine body's aching all the time goodbye everybody i've got to go gotta leave you all behind and face the truth mama ooh (any way the wind blows) i don't want to die i sometimes wish i'd never been born at all i see a little silhouetto of a man scaramouche scaramouche will you do the fandango thunderbolt and lightning very very fright'ning me (galileo) galileo (galileo) galileo galileo figaro magnifico i'm just a poor boy nobody loves me he's just a poor boy from a poor family spare him his life from this monstrosity easy come easy go will you let me go bismillah no we will not let you go (let him go) bismillah we will not let you go (let him go) bismillah we will not let you go (let me go) will not let you go (let me go) will not let you go (let me go) ah no no no no no no no (oh mamma mia mamma mia) mamma mia let me go beelzebub has a devil put aside for me for me for me so you think you can stone me and spit in my eye so you think you can love me and leave me to die oh baby can't do this to me baby just gotta get out just gotta get right outta here nothing really matters anyone can see nothing really matters nothing really matters to me any way the wind blows\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nIs this the real life? Is this just fantasy?\\nCaught in a landslide, no escape from reality\\nOpen your eyes, look up to the skies and see\\nI'm just a poor boy, I need no sympathy\\nBecause I'm easy come, easy go, little high, little low\\nAny way the wind blows doesn't really matter to me, to me\\n\\n[Verse 1]\\nMama, just killed a man\\nPut a gun against his head, pulled my trigger, now he's dead\\nMama, life had just begun\\nBut now I've gone and thrown it all away\\nMama, ooh, didn't mean to make you cry\\nIf I'm not back again this time tomorrow\\nCarry on, carry on as if nothing really matters\\n\\n[Verse 2]\\nToo late, my time has come\\nSends shivers down my spine, body's aching all the time\\nGoodbye, everybody, I've got to go\\nGotta leave you all behind and face the truth\\nMama, ooh, (any way the wind blows)\\nI don't want to die\\nI sometimes wish I'd never been born at all\\n\\n[Guitar Solo]\\n\\n[Verse 3]\\nI see a little silhouetto of a man\\nScaramouche, Scaramouche, will you do the Fandango?\\nThunderbolt and lightning, very, very fright'ning me\\n(Galileo.) Galileo. (Galileo.) Galileo. Galileo figaro magnifico\\nI'm just a poor boy, nobody loves me\\nHe's just a poor boy from a poor family\\nSpare him his life from this monstrosity\\nEasy come, easy go, will you let me go?\\nBismillah! No, we will not let you go\\n(Let him go!) Bismillah! We will not let you go\\n(Let him go!) Bismillah! We will not let you go\\n(Let me go.) Will not let you go\\n(Let me go.) Will not let you go. (Let me go.) Ah\\nNo, no, no, no, no, no, no\\n(Oh mamma mia, mamma mia) Mamma mia, let me go\\nBeelzebub has a devil put aside for me, for me, for me!\\n\\n[Verse 4]\\nSo you think you can stone me and spit in my eye?\\nSo you think you can love me and leave me to die?\\nOh, baby, can't do this to me, baby!\\nJust gotta get out, just gotta get right outta here!\\n\\n[Guitar Solo]\\n\\n[Outro]\\nNothing really matters, anyone can see\\nNothing really matters\\nNothing really matters to me\\nAny way the wind blows\\n\\n\"},\n", " {'_id': 308871,\n", " 'lyrics': \"happy little day jimmy went away met his little jenny on a public holiday a happy pair they made so decorously laid neath the gay illuminations all along the promenade it's so good to know there's still a little magic in the air i'll weave my spell jenny will you stay - tarry with me pray nothing 'ere need come between us tell me love what do you say oh no i must away to my mum in disarray if my mother should discover how i spent my holiday it would be of small avail to talk of magic in the air i'll say farewell o rock of ages do not crumble love is breathing still o lady moon shine down a little people magic if you will jenny pines away writes a letter everyday we must ever be together nothing can my love erase oh no i'm compromised i must apologize if my lady should discover how i spent my holidays\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nHappy little day, Jimmy went away\\nMet his little Jenny on a public holiday\\nA happy pair they made, so decorously laid\\nNeath the gay illuminations all along the promenade\\nIt's so good to know there's still a little magic in the air\\nI'll weave my spell\\n\\n[Guitar solo]\\n\\nJenny will you stay - tarry with me pray\\nNothing 'ere need come between us tell me love, what\\nDo you say\\nOh no I must away to my Mum in disarray\\nIf my mother should discover how I spent my holiday\\nIt would be of small avail to talk of magic in the air\\nI'll say farewell\\n\\n[Guitar solo]\\n\\nO Rock of Ages, do not crumble, love is breathing still\\nO Lady Moon, shine down a little people magic if you will\\n\\n[Guitar solo]\\n\\nJenny pines away, writes a letter everyday\\nWe must ever be together, nothing can my love erase\\nOh no I'm compromised, I must apologize\\nIf my lady should discover how I spent my holidays\\n\\n\"},\n", " {'_id': 1225509,\n", " 'lyrics': \"happy little day jimmy went away met his little jenny on a public holiday a happy pair they made so decorously laid 'neath the gay illuminations all along the promenade it's so good to know there's still a little magic in the air i'll weave my spell jenny will you stay tarry with me pray nothing e'er need come between us tell me love what do you say oh no i must away to my mum in disarray if my mother should discover how i spent my holiday it would be of small avail to talk of magic in the air i'll say farewell oh rock of ages do not crumble love is breathing still oh lady moon shine down a little people magic if you will jenny pines away writes a letter ev'ry day we must ever be together nothing can my love erase oh no i'm compromised i must apologize if my lady should discover how i spent my holidays\",\n", " 'original_lyrics': \"\\n\\nHappy little day Jimmy went away\\nMet his little Jenny on a public holiday\\nA happy pair they made so decorously laid\\n'Neath the gay illuminations all along the promenade\\nIt's so good to know there's still a little magic in the air\\nI'll weave my spell\\nJenny will you stay tarry with me pray\\nNothing e'er need come between us\\nTell me love what do you say?\\nOh no I must away to my mum in disarray\\nIf my mother should discover how I spent my holiday\\nIt would be of small avail to talk of magic in the air\\nI'll say farewell\\nOh rock of ages do not crumble\\nLove is breathing still\\nOh lady moon shine down\\nA little people magic if you will\\nJenny pines away writes a letter ev'ry day\\nWe must ever be together\\nNothing can my love erase\\nOh no I'm compromised\\nI must apologize if my lady should discover\\nHow I spent my holidays\\n\\n\"},\n", " {'_id': 308907,\n", " 'lyrics': \"bring back bring back bring back that leroy brown yeah bet your bottom dollar bill you're a playboy yeah yeah daddy cool with a ninety dollar smile (oh yeah) took my money out of gratitude and he get right out of town well i got to getty up steady up shoot him down got to hit that latitude babe bring back bring back bring back that leroy brown yeah big bad leroy brown - he got no common sense no no he got no brains but he sure got to lot of style can't stand no more in this here jail i got to rid myself of this sentence got to get out of the heat step into the shade got to get me there dead or alive babe woo woo big bad leroy woo woo woo woo big bad leroy brown bring back bring back bring back that leroy brown yeah big mama lulu belle - she had a nervous breakdown she had a nervous breakdown leroy's taken her honey chile away but she met him down at the station ooo-hoo put a shotgun to his head and unless i be mistaken this is what she said big bad big boy big bad leroy brown i'm going to get that cutie pie bring back bring back bring back that leroy brown yeah big bad caused a mighty fine sensation yeah yeah gone and got himself elected president (we want leroy for president) next time you got to hit a bitty baddy weather this time like a shimmy shammy leather he's a big boy bad boy leroy i don't care where you get him from bring that big bad leroy back want him back\",\n", " 'original_lyrics': \"\\n\\n[Chorus][X2]\\nBring back, bring back, bring back that Leroy Brown, yeah!\\n\\n[Verse 1]\\nBet your bottom dollar bill you're a playboy, yeah, yeah!\\nDaddy cool, with a ninety dollar smile (oh yeah)\\nTook my money out of gratitude\\nAnd he get right out of town\\nWell, I got to getty up steady up, shoot him down\\nGot to hit that latitude, babe\\n\\n[Chorus][X2]\\nBring back, bring back, bring back that Leroy Brown, yeah!\\n\\n[Verse 2]\\nBig, bad Leroy Brown - he got no common sense\\nNo, no, he got no brains, but he sure got to lot of style\\nCan't stand no more in this, here, jail\\nI got to rid myself of this sentence\\nGot to get out of the heat, step into the shade\\nGot to get me there dead or alive, babe\\nWoo, woo, big, bad Leroy, woo, woo\\nWoo, woo, big, bad Leroy Brown\\n\\n[Chorus][X2]\\nBring back, bring back, bring back that Leroy Brown, yeah!\\n\\n[Verse 3]\\nBig mama Lulu Belle - she had a nervous breakdown\\nShe had a nervous breakdown\\nLeroy's taken her honey chile away\\nBut she met him down at the station, ooo-hoo\\nPut a shotgun to his head, and, unless I be mistaken\\nThis is what she said\\nBig bad big boy, big bad Leroy Brown\\nI'm going to get that cutie pie\\n\\nBring back, bring back, bring back that Leroy Brown, yeah!\\n\\nBig bad caused a mighty fine sensation, yeah, yeah!\\nGone and got himself elected President\\n(We want Leroy for President)\\nNext time you got to hit a bitty baddy weather\\nThis time like a shimmy shammy leather\\nHe's a big boy, bad boy Leroy\\nI don't care where you get him from\\nBring that big, bad Leroy back\\nWant him back\\n\\n\"},\n", " {'_id': 309941,\n", " 'lyrics': \"calling all girls calling all boys calling all people on streets around the world take this message a message for you this message is old yeah this message is true this message is love take a message of love far and near take a message of love for all to hear for all to hear some sleepless nights in wait for you some foreign presence you feel comes creeping through some stream of hope the whole world through spread like some silent disease you'll get yours too this message is love for all to hear calling all girls calling all boys\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nCalling all girls\\nCalling all boys\\nCalling all people on streets\\nAround the world\\n\\n[Pre-Chorus]\\nTake this message\\nA message for you\\nThis message is old yeah\\nThis message is true\\nThis message is\\nLove\\n\\n[Chorus]\\nTake a message of love\\nFar and near\\nTake a message of love\\nFor all to hear\\nFor all to hear\\n\\n[Verse 1]\\nSome sleepless nights in wait for you\\nSome foreign presence you feel, comes\\nCreeping through\\nSome stream of hope\\nThe whole world through\\nSpread like some silent disease\\nYou'll get yours too\\nThis message is\\nLove\\n\\n[Chorus]\\n\\n[Outro]\\nFor all to hear\\nCalling all girls\\nCalling all boys\\n\\n\"},\n", " {'_id': 1238663,\n", " 'lyrics': \"queen hot space calling all girls (taylor) calling all girls calling all boys calling all people on streets around the world take this message a message for you this message is old yeah this message is true this message is love take a message of love far and near take a message of love for all to hear for all to hear some sleepless nights in wait for you some foreign presence you feel comes creeping through some stream of hope the whole world through spread like some silent disease you'll get yours too this message is love take a message of love far and near take a message of love for all to hear for all to hear calling all girls calling all boys\",\n", " 'original_lyrics': \"\\n\\nQueen\\nHot Space\\nCalling All Girls (Taylor)\\nCalling all girls\\nCalling all boys\\nCalling all people on streets\\nAround the world\\nTake this message\\nA message for you\\nThis message is old yeah\\nThis message is true\\nThis message is\\nLove\\nTake a message of love\\nFar and near\\nTake a message of love\\nFor all to hear\\nFor all to hear\\nSome sleepless nights in wait for you\\nSome foreign presence you feel, comes\\nCreeping through\\nSome stream of hope\\nThe whole world through\\nSpread like some silent disease\\nYou'll get yours too\\nThis message is\\nLove\\nTake a message of love\\nFar and near\\nTake a message of love\\nFor all to hear\\nFor all to hear\\nCalling all girls\\nCalling all boys\\n\\n\"},\n", " {'_id': 310096,\n", " 'lyrics': \"oh yeah have got no hope got no idea what to do or why i am here i want to get my face on your tv i want to be heard i want to be seen i have got nothing no nothing nothing to show (make me a celebrity) i want to be a face on tv (i want to be on your screen) then you can see i am a c-lebrity i want to get my features in magazines see this creature on every street on every screen write my life story before i'm twenty-one i have got to tell the world they may say i am dumb - but er have got nothing no nothing nothing to show (make me a celebrity) i want to be a face on tv (i want to be on your screen) then you can see i am a c-lebrity (yeah) i want to be a star in a broadway musical they are going to love me i cannot sing or dance at all some may say i am lackadaisical and if i was real good i would stand no chance at all - but i i want to be a face on tv (yeah i want to be on your screen) then you can see i am a c-lebrity (then you can say) then you can say you knew me one day (and then you will see) then you will see i am a c-lebrity (oh oh oh) c c-lebrity want to be a c-c-c-lebrity (make my dream come true) c c-lebrity want to be a c-c-c-c-lebrity i want to be heard i want to be seen on every tv screen yeh\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nOh yeah\\nHave got no hope, got no idea\\nWhat to do or why I am here\\nI want to get my face on your T.V\\nI want to be heard\\nI want to be seen\\n\\n[Pre-Chorus]\\nI have got nothing, no, nothing\\nNothing to show\\n(Make me a celebrity!)\\n\\n[Chorus]\\nI want to be\\nA face on T.V\\n(I want to be on your screen)\\nThen you can see\\nI am a C-lebrity\\n\\n[Verse 2]\\nI want to get my features in magazines\\nSee this creature on every street on every screen\\nWrite my life story before I'm twenty-one\\nI have got to tell the world\\nThey may say I am dumb - but er\\n\\n[Pre-Chorus]\\nHave got nothing, no nothing\\nNothing to show\\n(Make me a celebrity!)\\n\\n[Chorus]\\nI want to be\\nA face on T.V\\n(I want to be on your screen)\\nThen you can see\\nI am a C-lebrity\\n(Yeah!)\\n\\n[Verse 3]\\nI want to be a star in a Broadway musical\\nThey are going to love me, I cannot sing or dance at all\\nSome may say I am lackadaisical and if I was real good\\nI would stand no chance at all - but I\\nI want to be\\nA face on T.V\\n(yeah, I want to be on your screen)\\nThen you can see\\nI am a C-lebrity\\n(Then you can say)\\nThen you can say\\nYou knew me one day\\n(And then you will see)\\nThen you will see\\nI am a C-lebrity\\n(Oh oh oh)\\n\\n[Outro]\\nC, c-lebrity\\nWant to be a c-c-c-lebrity\\n(Make my dream come true)\\nC, c-lebrity\\nWant to be a c-c-c-c-lebrity\\nI want to be heard\\nI want to be seen on every T.V. screen\\nYeh\\n\\n\"},\n", " {'_id': 309981,\n", " 'lyrics': 'what planet is this mmmh let there be rock and roll it is a saturday night and i am home alone with the music on quiet i am flying solo then my feet start moving to the sound of the beat put the music up loud hear it in the street then the neighbours start banging on my front door throw the door wide open saying what is your point come on in let us rock this joint we got the whole house rocking to the mighty power of rock and roll we dance out of the door dance into the street and all the people are swaying to the musical beat we rock down the road and down to the town and all the people stare and smile and get down then the police man is saying \"stop this noise\" but the beat takes over now he is one of the boys the beat\\'s taken over now he is one of the boys come on down let us rock this town let us go let it roll are you ready said are you ready the cosmos rocks across seven seas through the panama now they are rocking on beaches and they are rocking in bars do not ask me how and do not ask me why from miami beach down to old bondi there is a rock and roll fever in every place next thing you know they\\'ll be rocking out in space come on down let us rock this place come on down and sock it to me we got the whole world rocking to the mighty mighty mighty power we got the cosmos rocking we got the universe rocking we got the cosmos rocking to the might power of rock and roll',\n", " 'original_lyrics': '\\n\\n[Intro]\\nWhat planet is this, mmmh?\\nLet there be rock and roll\\n\\n[Verse 1]\\nIt is a Saturday night and I am home alone\\nWith the music on quiet I am flying solo\\nThen my feet start moving to the sound of the beat\\nPut the music up loud hear it in the street\\nThen the neighbours start banging on my front door\\nThrow the door wide open saying what is your point\\nCome on in let us rock this joint\\n\\n[Chorus]\\nWe got the whole house rocking[x5]\\nTo the mighty power of rock and roll\\n\\n[Verse 2]\\nWe dance out of the door, dance into the street\\nAnd all the people are swaying to the musical beat\\nWe rock down the road and down to the town\\nAnd all the people stare and smile and get down\\nThen the police man is saying \"stop this noise\"\\nBut the beat takes over now he is one of the boys\\nThe beat\\'s taken over now he is one of the boys\\nCome on down let us rock this town\\n\\n[Chorus]\\n\\n[Bridge]\\nLet us go\\nLet it roll\\nAre you ready?\\nSaid are you ready?\\nThe Cosmos Rocks\\n\\n[Verse 3]\\nAcross seven seas through the Panama\\nNow they are rocking on beaches and they are rocking in bars\\nDo not ask me how and do not ask me why\\nFrom Miami Beach down to old Bondi\\nThere is a rock and roll fever in every place\\nNext thing you know they\\'ll be rocking out in space\\n\\n\\n[Chorus]\\nCome on down let us rock this place\\nCome on down and\\nSock it to me\\n\\n[Outro]\\nWe got the whole world rocking[x5]\\nTo the mighty mighty mighty power\\nWe got the cosmos rocking[x2]\\nWe got the universe rocking\\nWe got the cosmos rocking[x2]\\nTo the might power of rock and roll\\n\\n'},\n", " {'_id': 433386,\n", " 'lyrics': \"{intro} this thing called love i just can't handle it this thing called love i must get round to it i ain't ready crazy little thing called love this thing (this thing) called love (called love) it cries (like a baby) in a cradle all night it swings (woo woo) it jives (woo woo) it shakes all over like a jelly fish i kinda like it crazy little thing called love there goes my baby she knows how to rock 'n' roll she drives me crazy she gives me hot and cold fever then she leaves me in a cool cool sweat {break} i gotta be cool relax get hip and get on my tracks take a back seat hitch-hike and take a long ride on my motorbike until i'm ready crazy little thing called love {bridge} i gotta be cool relax get hip and get on my tracks take a back seat (ah hum) hitch-hike (ah hum) and take a long ride on my motorbike until i'm ready (ready freddie) crazy little thing called love this thing called love i just can't handle it this thing called love i must get round to it i ain't ready ooh ooh ooh ooh crazy little thing called love crazy little thing called love yeah yeah crazy little thing called love yeah yeah crazy little thing called love yeah yeah crazy little thing called love yeah yeah\",\n", " 'original_lyrics': \"\\n\\n{Intro}\\n\\nThis thing called love, I just can't handle it\\nThis thing called love, I must get round to it\\nI ain't ready\\nCrazy little thing called love\\n\\nThis thing (this thing)\\nCalled love (called love)\\nIt cries (like a baby)\\nIn a cradle all night\\nIt swings (woo woo)\\nIt jives (woo woo)\\nIt shakes all over like a jelly fish\\nI kinda like it\\nCrazy little thing called love\\n\\nThere goes my baby\\nShe knows how to rock 'n' roll\\nShe drives me crazy\\nShe gives me hot and cold fever\\nThen she leaves me in a cool cool sweat\\n\\n{Break}\\n\\nI gotta be cool, relax, get hip\\nAnd get on my tracks\\nTake a back seat, hitch-hike\\nAnd take a long ride on my motorbike\\nUntil I'm ready\\nCrazy little thing called love\\n\\n{Bridge}\\n\\nI gotta be cool, relax, get hip\\nAnd get on my tracks\\nTake a back seat (ah hum), hitch-hike (ah hum)\\nAnd take a long ride on my motorbike\\nUntil I'm ready (ready Freddie)\\nCrazy little thing called love\\n\\nThis thing called love, I just can't handle it\\nThis thing called love, I must get round to it\\nI ain't ready\\nOoh ooh ooh ooh\\n\\nCrazy little thing called love\\nCrazy little thing called love, yeah, yeah\\nCrazy little thing called love, yeah, yeah\\nCrazy little thing called love, yeah, yeah\\nCrazy little thing called love, yeah, yeah...\\n\\n\"},\n", " {'_id': 1340966,\n", " 'lyrics': \"ooh you make me live whatever this world can give to me it's you you're all i see ooh you make me live now honey ooh you make me live oh you're the best friend that i ever had i've been with you such a long time you're my sunshine and i want you to know that my feelings are true i really love you (ooh) oh you're my best friend ooh you make me live ooh i've been wandering round but i still come back to you (still come back to you) in rain or shine you've stood by me girl i'm happy at home (happy at home) you're my best friend ooh you make me live whenever this world is cruel to me i got you to help me forgive - oo oo ooh ooh you make me live now honey ooh you make me live oh you're the first one when things turn out bad you know i'll never be lonely you're my only one and i love the thing i really love the things that you do oh you're my best friend oh ooh you make me live i'm happy (happy at home) you're my best friend oh oh you're my best friend ooh you make me live oo oo ooh you you're my best friend ---\",\n", " 'original_lyrics': \"\\n\\nOoh, you make me live\\nWhatever this world can give to me\\nIt's you, you're all I see\\nOoh, you make me live now honey\\nOoh, you make me live\\nOh, you're the best friend\\nThat I ever had\\nI've been with you such a long time\\nYou're my sunshine\\nAnd I want you to know\\nThat my feelings are true\\nI really love you\\n(ooh) oh, you're my best friend\\nOoh, you make me live\\nOoh, I've been wandering round\\nBut I still come back to you (still come back to you)\\nIn rain or shine\\nYou've stood by me girl\\nI'm happy at home (happy at home)\\nYou're my best friend\\nOoh, you make me live\\nWhenever this world is cruel to me\\nI got you, to help me forgive - oo oo ooh\\nOoh, you make me live now honey\\nOoh, you make me live\\nOh, you're the first one\\nWhen things turn out bad\\nYou know I'll never be lonely\\nYou're my only one\\nAnd I love the thing\\nI really love the things that you do\\nOh, you're my best friend\\nOh, ooh, you make me live\\nI'm happy (happy at home)\\nYou're my best friend\\nOh, oh, you're my best friend\\nOoh, you make me live\\nOo oo ooh\\nYou, you're my best friend\\n---\\n\\n\"},\n", " {'_id': 1977230,\n", " 'lyrics': \"this thing called love i just can't handle it this thing called love i must get round to it i ain't ready crazy little thing called love this (this thing) called love (called love) it cries (like a baby) in a cradle all night it swings (woo woo) it jives (woo woo) it shakes all over like a jelly fish i kinda like it crazy little thing called love there goes my baby she knows how to rock n roll she drives me crazy she gives me hot and cold fever then she leaves me in a cool cool sweat i gotta be cool relax get hip get on my tracks take a back seat hitch-hike and take a long ride on my motor bike until i'm ready crazy little thing called love i gotta be cool relax get hip get on my tracks take a back seat hitch-hike and take a long ride on my motor bike until i'm ready (ready freddie) crazy little thing called love this thing called love i just can't handle it this thing called love i must get round to it i ain't ready crazy little thing called love\",\n", " 'original_lyrics': \"\\n\\nThis thing called love I just can't handle it\\nThis thing called love I must get round to it\\nI ain't ready\\nCrazy little thing called love\\nThis (this thing) called love\\n(called love)\\nIt cries (like a baby)\\nIn a cradle all night\\nIt swings (woo woo)\\nIt jives (woo woo)\\nIt shakes all over like a jelly fish\\nI kinda like it\\nCrazy little thing called love\\n\\nThere goes my baby\\nShe knows how to rock n roll\\nShe drives me crazy\\nShe gives me hot and cold fever\\nThen she leaves me in a cool cool sweat\\n\\nI gotta be cool relax, get hip\\nGet on my tracks\\nTake a back seat, hitch-hike\\nAnd take a long ride on my motor bike\\nUntil I'm ready\\nCrazy little thing called love\\n\\nI gotta be cool relax, get hip\\nGet on my tracks\\nTake a back seat, hitch-hike\\nAnd take a long ride on my motor bike\\nUntil I'm ready (ready Freddie)\\nCrazy little thing called love\\n\\nThis thing called love I just can't handle it\\nThis thing called love I must get round to it\\nI ain't ready\\nCrazy little thing called love\\n\\n\"},\n", " {'_id': 1944099,\n", " 'lyrics': \"this thing called love i just can't handle it this thing called love i must get round to it i ain't ready crazy little thing called love this (this thing) called love (called love) it cries (like a baby) in a cradle all night it swings (woo woo) it jives (woo woo) it shakes all over like a jelly fish i kinda like it crazy little thing called love there goes my baby she knows how to rock n roll she drives me crazy she gives me hot and cold fever then she leaves me in a cool cool sweat i gotta be cool relax get hip get on my tracks take a back seat hitch-hike and take a long ride on my motor bike until i'm ready crazy little thing called love i gotta be cool relax get hip get on my tracks take a back seat hitch-hike and take a long ride on my motor bike until i'm ready (ready freddie) crazy little thing called love this thing called love i just can't handle it this thing called love i must get round to it i ain't ready crazy little thing called love\",\n", " 'original_lyrics': \"\\n\\nThis thing called love I just can't handle it\\nThis thing called love I must get round to it\\nI ain't ready\\nCrazy little thing called love\\nThis (this thing) called love\\n(called love)\\nIt cries (like a baby)\\nIn a cradle all night\\nIt swings (woo woo)\\nIt jives (woo woo)\\nIt shakes all over like a jelly fish\\nI kinda like it\\nCrazy little thing called love\\n\\nThere goes my baby\\nShe knows how to rock n roll\\nShe drives me crazy\\nShe gives me hot and cold fever\\nThen she leaves me in a cool cool sweat\\n\\nI gotta be cool relax, get hip\\nGet on my tracks\\nTake a back seat, hitch-hike\\nAnd take a long ride on my motor bike\\nUntil I'm ready\\nCrazy little thing called love\\n\\nI gotta be cool relax, get hip\\nGet on my tracks\\nTake a back seat, hitch-hike\\nAnd take a long ride on my motor bike\\nUntil I'm ready (ready Freddie)\\nCrazy little thing called love\\n\\nThis thing called love I just can't handle it\\nThis thing called love I must get round to it\\nI ain't ready\\nCrazy little thing called love\\n\\n\"},\n", " {'_id': 1977162,\n", " 'lyrics': \"this thing called love i just can't handle it this thing called love i must get round to it i ain't ready crazy little thing called love this (this thing) called love (called love) it cries (like a baby) in a cradle all night it swings (woo woo) it jives (woo woo) it shakes all over like a jelly fish i kinda like it crazy little thing called love there goes my baby she knows how to rock n roll she drives me crazy she gives me hot and cold fever then she leaves me in a cool cool sweat i gotta be cool relax get hip get on my tracks take a back seat hitch-hike and take a long ride on my motor bike until i'm ready crazy little thing called love i gotta be cool relax get hip get on my tracks take a back seat hitch-hike and take a long ride on my motor bike until i'm ready (ready freddie) crazy little thing called love this thing called love i just can't handle it this thing called love i must get round to it i ain't ready crazy little thing called love\",\n", " 'original_lyrics': \"\\n\\nThis thing called love I just can't handle it\\nThis thing called love I must get round to it\\nI ain't ready\\nCrazy little thing called love\\nThis (this thing) called love\\n(called love)\\nIt cries (like a baby)\\nIn a cradle all night\\nIt swings (woo woo)\\nIt jives (woo woo)\\nIt shakes all over like a jelly fish\\nI kinda like it\\nCrazy little thing called love\\n\\nThere goes my baby\\nShe knows how to rock n roll\\nShe drives me crazy\\nShe gives me hot and cold fever\\nThen she leaves me in a cool cool sweat\\n\\nI gotta be cool relax, get hip\\nGet on my tracks\\nTake a back seat, hitch-hike\\nAnd take a long ride on my motor bike\\nUntil I'm ready\\nCrazy little thing called love\\n\\nI gotta be cool relax, get hip\\nGet on my tracks\\nTake a back seat, hitch-hike\\nAnd take a long ride on my motor bike\\nUntil I'm ready (ready Freddie)\\nCrazy little thing called love\\n\\nThis thing called love I just can't handle it\\nThis thing called love I must get round to it\\nI ain't ready\\nCrazy little thing called love\\n\\n\"},\n", " {'_id': 309027,\n", " 'lyrics': \"fool always jumping never happy where you land fool got my business make your living where you can hurry down the highway hurry down the road hurry past the people staring hurry hurry hurry hurry leave on time leave on time never got your ticket but you leave on time leave on time leave on time going to get your ticket but you leave on time put it in your pocket but you never can tell leave on time leave on time shake that rattle going to leave on time leave on time leave on time fight your battle but you leave on time leave on time leave on time never got a minute no you never got a minute no you never never got on no matter fool got no business hanging round and telling lies fool you got no reasons but you got no compromise stamping got to get out got to get out got to get out oh you know i'm going crazy leave on time leave on time got to get ahead but you leave on time leave on time leave on time going to head on ahead but you leave on time leave on time leave on time you're running in the red but you never can tell leave on time leave on time got to get rich going to leave on time leave on time leave on time but you can't take it with you when you leave on time leave on time leave on time got to keep yourself alive got to leave on time got to leave on time leave on time dead on time you're dead\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nFool always jumping never happy where you land\\nFool got my business make your living where you can\\nHurry down the highway\\nHurry down the road\\nHurry past the people staring\\nHurry hurry hurry hurry\\n\\n[Pre-Chorus]\\nLeave on time leave on time\\nNever got your ticket but you leave on time\\nLeave on time leave on time\\nGoing to get your ticket but you leave on time\\nPut it in your pocket but you never can tell\\n\\n[Chorus]\\nLeave on time leave on time\\nShake that rattle going to leave on time\\nLeave on time leave on time\\nFight your battle but you leave on time\\nLeave on time leave on time\\nNever got a minute no you never got a minute\\nNo you never never got on no matter\\n\\n[Verse 2]\\nFool got no business hanging round and telling lies\\nFool you got no reasons but you got no compromise\\nStamping\\nGot to get out got to get out got to get out\\nOh you know I'm going crazy\\n\\n[Chorus]\\nLeave on time leave on time\\nGot to get ahead but you leave on time\\nLeave on time leave on time\\nGoing to head on ahead but you leave on time\\nLeave on time leave on time\\nYou're running in the red but you never can tell\\n\\n[Chorus]\\nLeave on time leave on time\\nGot to get rich going to leave on time\\nLeave on time leave on time\\nBut you can't take it with you when you leave on time\\nLeave on time leave on time\\nGot to keep yourself alive got to leave on time\\nGot to leave on time leave on time\\n\\n[Outro]\\nDead on time\\nYou're Dead\\n\\n\"},\n", " {'_id': 877839,\n", " 'lyrics': \"queen jazz dead on time (may) fool always jumping never happy where you land fool got my bus'ness make your living where you can hurry down the highway hurry down the road hurry past the people staring hurry hurry hurry hurry leave on time leave on time never got your ticket but you leave on time leave on time leave on time gonna get your ticket but you leave on time put it in your pocket but you never can tell leave on time leave on time shake that rattle gonna leave on time leave on time leave on time fight your battle but you leave on time leave on time leave on time never got a minute no you never got a minute no you never never got on no matter fool got no bus'ness hanging round and telling lies fool you got no reasons but you got no compromise stamping gotta get out gotta get out gotta get out oh you know i'm going crazy leave on time leave on time gotta get ahead but you leave on time leave on time leave on time gonna head on ahead but you leave on time leave on time leave on time you're running in the red but you never can tell leave on time leave on time gotta get rich gonna leave on time leave on time leave on time but you can't take it with you when you leave on time leave on time leave on time got to keep yourself alive gotta leave on time gotta leave on time leave on time dead on time 'you're dead'\",\n", " 'original_lyrics': \"\\n\\nQueen\\nJazz\\nDead On Time (May)\\nFool always jumping never happy where you land\\nFool got my bus'ness make your living where you can\\nHurry down the highway\\nHurry down the road\\nHurry past the people staring\\nHurry hurry hurry hurry\\nLeave on time leave on time\\nNever got your ticket but you leave on time\\nLeave on time leave on time\\nGonna get your ticket but you leave on time\\nPut it in your pocket but you never can tell\\nLeave on time leave on time\\nShake that rattle gonna leave on time\\nLeave on time leave on time\\nFight your battle but you leave on time\\nLeave on time leave on time\\nNever got a minute no you never got a minute\\nNo you never never got on no matter\\nFool got no bus'ness hanging round and telling lies\\nFool you got no reasons but you got no compromise\\nStamping\\nGotta get out gotta get out gotta get out\\nOh you know I'm going crazy\\nLeave on time leave on time\\nGotta get ahead but you leave on time\\nLeave on time leave on time\\nGonna head on ahead but you leave on time\\nLeave on time leave on time\\nYou're running in the red but you never can tell\\nLeave on time leave on time\\nGotta get rich gonna leave on time\\nLeave on time leave on time\\nBut you can't take it with you when you leave on time\\nLeave on time leave on time\\nGot to keep yourself alive gotta leave on time\\nGotta leave on time leave on time\\nDead on time\\n'You're Dead'\\n\\n\"},\n", " {'_id': 159920,\n", " 'lyrics': \"you suck my blood like a leech you break the law and you breach screw my brain till it hurts you've taken all my money - and you want more misguided old mule with your pigheaded rules with your narrow-minded cronies who are fools of the first division death on two legs you're tearing me apart death on two legs you never had a heart of your own kill joy bad guy big talking small fry you're just an old barrow boy have you found a new toy to replace me can you face me but now you can kiss my ass goodbye feel good are you satisfied do you feel like suicide (i think you should) is your conscience all right does it plague you at night do you feel good (feel good) talk like a big business tycoon but you're just a hot-air balloon so no one gives you a damn you're just an overgrown schoolboy let me tan your hide a dog with disease you're the king of the sleaze put your money where your mouth is mr know-all was the fin on your back part of the deal (shark) (you never did right from the start) insane should be put inside you're a sewer rat decaying in a cesspool of pride should be made unemployed then make yourself null and void make me feel good i feel good\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nYou suck my blood like a leech\\nYou break the law and you breach\\nScrew my brain till it hurts\\nYou've taken all my money - and you want more\\nMisguided old mule\\nWith your pigheaded rules\\nWith your narrow-minded cronies who are fools of the first division\\n\\n[Chorus]\\nDeath on two legs\\nYou're tearing me apart\\nDeath on two legs\\nYou never had a heart of your own\\n\\nKill joy, Bad guy\\nBig talking, Small fry\\nYou're just an old barrow boy\\nHave you found a new toy to replace me\\nCan you face me\\nBut now you can kiss my ass goodbye\\n\\nFeel good, are you satisfied?\\nDo you feel like... suicide? (I think you should)\\n\\nIs your conscience all right?\\nDoes it plague you at night?\\nDo you feel good? (Feel good)\\n\\n[Verse 2]\\nTalk like a big business tycoon\\nBut you're just a hot-air balloon\\nSo no one gives you a damn\\nYou're just an overgrown schoolboy\\nLet me tan your hide\\nA dog with disease\\nYou're the king of the sleaze\\nPut your money where your mouth is Mr. Know-All\\nWas the fin on your back part of the deal? (Shark!)\\n\\n[Chorus]\\n\\n(You never did, right from the start)\\n\\n[Outro]\\nInsane, should be put inside\\nYou're a sewer rat decaying in a cesspool of pride\\nShould be made unemployed\\nThen make yourself null and void\\nMake me feel good, I feel good\\n\\n\"},\n", " {'_id': 1460833,\n", " 'lyrics': \"hey you say you won't you can't give me any more love you say you will you can forgive me but i doubt it you make me high when i talk on the phone you know i gotta ring up your number when i know you ain't home coz you gotta hold on me baby like a dog with a bone hey hey dog with a bone one more time yeah hey you say you won't you can't give me any more love but you that say you will you can forgive me but i doubt it you make me high when you talk on the phone you know i gotta ring up your number when youre never ever home you gotta hold on me baby like a dog with a bone yeah dog with a bone he was telling me you talk down the phone ring up your number when i know you ain't home you gotta hold on me baby like a dog with a bone yeah like a dog with a bone yeah dog with a bone you say you won't you can't give me any more love but you say you will you can forgive me but i doubt you make me high when you talk on the phone i gotta ring up your number when i know you ain't home you gotta hold on me baby like a dog with a bone hold on me baby i won't let go like a dog with a bone don't let go you gotta hello fan club sorry it hasnt got me on it must have ruined it for all of you but there you go hello john here i hope youre having a good time and jacky in return for us doing this musical offering for you is after weve finished shes going to come on and do a strip for you hey i hope everybodys having a good time (good time good time good time) i hope everybodys having a having a good time (good time good time good time) having a good time yes before i heard all this nonsense wheres the microphone which one hello its brian here fraid i've lost my voice because i've been bellowing god i wish someone would shut that bloody guitarist up its dreadful well actually wed love to be with you were sorry were not with you but were too busy making silly noises and thinking up new chords like this one and having mid life crises and things you see its all very easy for you but we have a lot of work to do so were going to play you this song instead it does like this dog with a bone\",\n", " 'original_lyrics': \"\\n\\nHey, you say you won't you can't give me any more love\\nYou say you will you can forgive me but I doubt it\\nYou make me high when I talk on the phone\\nYou know I gotta ring up your number when I know you ain't home\\nCoz you gotta hold on me baby like a dog with a bone\\nHey hey\\nDog with a bone\\n\\nOne more time yeah\\n\\nHey you say you won't you can't give me any more love\\nBut you that say you will you can forgive me but I doubt it\\nYou make me high when you talk on the phone\\nYou know I gotta ring up your number when youre never ever home\\nYou gotta hold on me baby, like a dog with a bone, yeah\\nDog with a bone\\n\\nHe was telling me\\n\\nYou talk down the phone\\nRing up your number when I know you ain't home\\nYou gotta hold on me baby, like a dog with a bone\\nYeah\\nLike a dog with a bone, yeah\\nDog with a bone\\n\\nYou say you won't you can't give me any more love\\nBut you say you will you can forgive me but I doubt\\nYou make me high when you talk on the phone\\nI gotta ring up your number when I know you ain't home\\nYou gotta hold on me baby\\nLike a dog with a bone\\n\\nHold on me baby\\nI won't let go\\nLike a dog with a bone\\nDon't let go\\nYou gotta\\n\\nHello fan club. Sorry it hasnt got me on it\\nMust have ruined it for all of you, but there you go\\n\\nHello, john here. I hope youre having a good time\\nAnd jacky, in return for us doing this musical offering for you\\nIs after weve finished shes going to come on and do a strip for you\\n\\nHey, I hope everybodys having a good time (good time good time good time)\\nI hope everybodys having a having a good time (good time good time good time)\\n\\nHaving a good time, yes, before I heard all this nonsense\\nWheres the microphone, which one? Hello its brian here\\nFraid I've lost my voice because I've been bellowing\\nGod, I wish someone would shut that bloody guitarist up, its dreadful\\nWell actually wed love to be with you, were sorry were not with you but were too busy\\nMaking silly noises and thinking up new chords like this one and having mid life crises and things\\nYou see its all very easy for you but we have a lot of work to do so were going to play you this song instead\\nIt does like this\\n\\nDog with a bone\\n\\n\"},\n", " {'_id': 1446784,\n", " 'lyrics': \"don't lose your head don't lose your head don't lose your head (don't lose your head) no don't lose your head (don't lose your head) hear what i say don't lose your way - yeah remember love's stronger remember love walks tall (don't lose your head don't lose your head) don't lose your heart (don't lose your heart) no don't lose your heart (don't lose your heart) (hear what i say) hear what i say - yeah (don't lose your way) don't lose your way - yeah remember love's stronger remember love walks through walls don't drink and drive my car don't get breathalyzed don't lose your head if you make it to the top and you wanna stay alive don't lose your head oooh (don't lose your head) don't lose your head (don't lose your head) no don't lose your head (don't lose your head) (hear what i say) hear what i say - yeah (don't lose your way - hey) don't lose your way - yeah remember love's stronger remember love conquers all (don't lose your head don't lose your head) (don't lose your head don't lose your head) don't lose your head (don't lose your head) don't lose your head - yeah yeah (don't lose your head) don't lose your head (don't lose your head don't lose your head) don't lose your head (don't lose your don't lose your don't lose your don't lose your don't lose your don't lose your don't lose your don't lose your head)\",\n", " 'original_lyrics': \"\\n\\nDon't lose your head\\nDon't lose your head\\nDon't lose your head (Don't lose your head)\\nNo don't lose your head (Don't lose your head)\\nHear what I say\\nDon't lose your way - yeah\\nRemember, love's stronger, remember love walks tall\\n(Don't lose your head, Don't lose your head)\\nDon't lose your heart (Don't lose your heart)\\nNo don't lose your heart (Don't lose your heart)\\n(Hear what I say) Hear what I say - yeah\\n(Don't lose your way) Don't lose your way - yeah\\nRemember, love's stronger, remember love walks through walls\\nDon't drink and drive my car\\nDon't get breathalyzed\\nDon't lose your head\\nIf you make it to the top and you wanna stay alive\\nDon't lose your head\\nOooh (Don't lose your head)\\nDon't lose your head (Don't lose your head)\\nNo don't lose your head (Don't lose your head)\\n(Hear what I say) Hear what I say - yeah\\n(Don't lose your way - hey) Don't lose your way - yeah\\nRemember, love's stronger, remember love conquers all\\n(Don't lose your head, Don't lose your head)\\n(Don't lose your head, Don't lose your head)\\nDon't lose your head\\n(Don't lose your head)\\nDon't lose your head - yeah yeah\\n(Don't lose your head)\\nDon't lose your head\\n(Don't lose your head, Don't lose your head)\\nDon't lose your head\\n(Don't lose your, don't lose your, don't lose your, don't lose your\\nDon't lose your, don't lose your, don't lose your, don't lose your head)\\n\\n\"},\n", " {'_id': 205311,\n", " 'lyrics': \"tonight i'm going to have myself a real good time i feel alive and the world i'll turn it inside out yeah and floating around in ecstasy so don't stop me now don't stop me cause i'm having a good time having a good time i'm a shooting star leaping through the sky like a tiger defying the laws of gravity i'm a racing car passing by like lady godiva i'm going to go go go there's no stopping me i'm burning through the sky yeah two hundred degrees that's why they call me mister fahrenheit i'm traveling at the speed of light i want to make a supersonic man out of you don't stop me now i'm having such a good time i'm having a ball don't stop me now if you want to have a good time just give me a call don't stop me now (because i'm having a good time) don't stop me now (yes i'm having a good time) i don't want to stop at all yeah i'm a rocket ship on my way to mars on a collision course i am a satellite i'm out of control i am a sex machine ready to reload like an atom bomb about to oh oh oh oh oh explode i'm burning through the sky yeah two hundred degrees that's why they call me mister fahrenheit i'm traveling at the speed of light i want to make a supersonic woman of you don't stop me don't stop me don't stop me (hey hey hey) don't stop me don't stop me ooh ooh ooh (i like it) don't stop me don't stop me (have a good time good time) don't stop me don't stop me oh yeah i'm burning through the sky yeah two hundred degrees that's why they call me mister fahrenheit i'm traveling at the speed of light i want to make a supersonic man out of you don't stop me now i'm having such a good time i'm having a ball don't stop me now if you want to have a good time just give me a call don't stop me now (because i'm having a good time) don't stop me now (yes i'm having a good time) i don't want to stop at all don't stop me now i'm having such a good time i'm having a ball don't stop me now if you want to have a good time just give me a call don't stop me now (because i'm having a good time) don't stop me now (yes i'm having a good time) i don't want to stop at all\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nTonight I'm going to have myself a real good time\\nI feel alive\\nAnd the world I'll turn it inside out, yeah\\nAnd floating around in ecstasy\\nSo don't stop me now\\nDon't stop me\\nCause I'm having a good time\\nHaving a good time\\n\\n[Verse 1]\\nI'm a shooting star leaping through the sky\\nLike a tiger defying the laws of gravity\\nI'm a racing car passing by like Lady Godiva\\nI'm going to go go go\\nThere's no stopping me\\n\\n[Pre-Chorus]\\nI'm burning through the sky yeah\\nTwo hundred degrees\\nThat's why they call me Mister Fahrenheit\\nI'm traveling at the speed of light\\nI want to make a supersonic man out of you\\n\\n[Chorus]\\nDon't stop me now I'm having such a good time\\nI'm having a ball\\nDon't stop me now\\nIf you want to have a good time just give me a call\\nDon't stop me now (because I'm having a good time)\\nDon't stop me now (Yes I'm having a good time)\\nI don't want to stop at all\\n\\n[Verse 2]\\nYeah, I'm a rocket ship on my way to Mars\\nOn a collision course\\nI am a satellite I'm out of control\\nI am a sex machine ready to reload\\nLike an atom bomb about to\\nOh oh oh oh oh explode\\n\\n[2nd Pre-Chorus]\\nI'm burning through the sky yeah\\nTwo hundred degrees\\nThat's why they call me Mister Fahrenheit\\nI'm traveling at the speed of light\\nI want to make a supersonic woman of you\\n\\n[Bridge]\\nDon't stop me, don't stop me, don't stop me (Hey, hey, hey)\\nDon't stop me, don't stop me, ooh, ooh, ooh (I like it)\\nDon't stop me, don't stop me (Have a good time, good time)\\nDon't stop me, don't stop me, oh yeah\\n\\n[Guitar Solo]\\n\\n[Pre-Chorus]\\nI'm burning through the sky yeah\\nTwo hundred degrees\\nThat's why they call me Mister Fahrenheit\\nI'm traveling at the speed of light\\nI want to make a supersonic man out of you\\n\\n[Chorus]\\nDon't stop me now I'm having such a good time\\nI'm having a ball\\nDon't stop me now\\nIf you want to have a good time just give me a call\\nDon't stop me now (because I'm having a good time)\\nDon't stop me now (Yes I'm having a good time)\\nI don't want to stop at all\\nDon't stop me now I'm having such a good time\\nI'm having a ball\\nDon't stop me now\\nIf you want to have a good time just give me a call\\nDon't stop me now (because I'm having a good time)\\nDon't stop me now (Yes I'm having a good time)\\nI don't want to stop at all\\n\\n\"},\n", " {'_id': 310056,\n", " 'lyrics': \"if you're searching out for something don't try so hard if you're feeling kind of nothing don't try so hard when your problems seem like mountains you feel the need to find some answers you can leave it for another day don't try so hard but if you fall and take a tumble it won't be far if you fail you mustn't grumble thank your lucky stars just savour every mouthful and treasure every moment when the storms are raging round you stay right where you are oh don't try so hard oh don't take it all to heart it's only fools they make these rules don't try so hard one day you'll be a sergeant major oh you'll be so proud screaming out your bloody orders hey but not too loud polish all your shiny buttons dress as lamb instead of mutton but you never had to try to stand out from the crowd oh what a beautiful world this is the life for me oh what a beautiful world it's the simple life for me oh don't try so hard oh don't take it all to heart it's only fools - they make these rules don't try so hard\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nIf you're searching out for something\\nDon't try so hard\\nIf you're feeling kind of nothing\\nDon't try so hard\\nWhen your problems seem like mountains\\nYou feel the need to find some answers\\nYou can leave it for another day\\nDon't try so hard\\nBut if you fall and take a tumble it won't be far\\nIf you fail you mustn't grumble\\nThank your lucky stars\\nJust savour every mouthful\\nAnd treasure every moment\\nWhen the storms are raging round you\\nStay right where you are\\n\\n[Chorus]\\nOh don't try so hard\\nOh don't take it all to heart\\nIt's only fools they make these rules\\nDon't try so hard\\n\\n[Verse 2]\\nOne day you'll be a sergeant major\\nOh you'll be so proud\\nScreaming out your bloody orders\\nHey but not too loud\\nPolish all your shiny buttons\\nDress as lamb instead of mutton\\nBut you never had to try to stand out from the crowd\\n\\n[Bridge]\\nOh what a beautiful world\\nThis is the life for me\\nOh what a beautiful world\\nIt's the simple life for me\\n\\n[Chorus]\\nOh don't try so hard\\nOh don't take it all to heart\\nIt's only fools - they make these rules\\nDon't try so hard[x3]\\n\\n\"},\n", " {'_id': 243232,\n", " 'lyrics': \"don't do it don't you try it don't do that don't don't don't don't do that you got a good thing going now don't do it don't do it don't don't try suicide nobody's worth it don't try suicide nobody cares don't try suicide you are just going to hate it don't try suicide nobody gives a damn so you think it's the easy way out think you are going to slash your wrists this time baby when you do it all you do is get on my tits don't do that try try try baby don't do that you got a good thing going now don't do it don't do it don't don't try suicide nobody's worth it don't try suicide nobody cares don't try suicide you are just going to hate it don't try suicide nobody gives a damn you need help look at yourself you need help you need life so don't hang yourself it's ok ok ok ok you just can't be a prick teaser all of the time a little bit attention - you got it need some affection - you got it suicide suicide suicide bid suicide suicide suicide bid huh suicide don't do it don't do it don't do it baby don't do it don't do it don't - do it don't put your neck on the line don't drown on me babe blow your brains out don't do that don't do that you got a good thing going now don't do it don't do it don't don't try suicide nobody's worth it don't try suicide nobody cares don't try suicide you are just going to hate it don't try suicide nobody gives nobody gives nobody gives a damn\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nDon't do it, don't you try it\\nDon't do that, don't, don't, don't\\n\\n[Chorus]\\nDon't do that\\nYou got a good thing going now\\nDon't do it, don't do it\\nDon't!\\nDon't try suicide\\nNobody's worth it\\nDon't try suicide\\nNobody cares\\nDon't try suicide\\nYou are just going to hate it\\nDon't try suicide\\nNobody gives a damn\\n\\n[Verse 1]\\nSo you think it's the easy way out\\nThink you are going to slash your wrists\\nThis time\\nBaby when you do it all you do is\\nGet on my tits\\nDon't do that\\nTry try try baby\\n\\n[Chorus]\\nDon't do that\\nYou got a good thing going now\\nDon't do it, don't do it\\nDon't!\\nDon't try suicide\\nNobody's worth it\\nDon't try suicide\\nNobody cares\\nDon't try suicide\\nYou are just going to hate it\\nDon't try suicide\\nNobody gives a damn\\n\\n[Verse 2]\\nYou need help\\nLook at yourself you need help\\nYou need life\\nSo don't hang yourself\\nIt's ok, ok, ok, ok\\nYou just can't be a prick teaser all of the time\\nA little bit attention - you got it\\nNeed some affection - you got it\\nSuicide suicide suicide bid\\nSuicide suicide suicide bid\\nHuh suicide\\n\\n[Bridge]\\nDon't do it, don't do it, don't do it, baby\\nDon't do it, don't do it, don't - do it!\\n\\n[Verse 3]\\nDon't put your neck on the line\\nDon't drown on me babe\\nBlow your brains out\\nDon't do that\\n\\n[Chorus]\\nDon't do that\\nYou got a good thing going now\\nDon't do it, don't do it\\nDon't!\\nDon't try suicide\\nNobody's worth it\\nDon't try suicide\\nNobody cares\\nDon't try suicide\\nYou are just going to hate it\\nDon't try suicide\\nNobody gives\\nNobody gives\\nNobody gives a damn\\n\\n\"},\n", " {'_id': 897577,\n", " 'lyrics': \"queen the game don't try suicide (mercury) ok don't do it don't you try it baby don't do that don't don't don't don't do that you got a good thing going now don't do it don't do it don't don't try suicide nobody's worth it don't try suicide nobody cares don't try suicide just gonna hate it don't try suicide nobody gives a damn so you think it's the easy way out think you're gonna slash your wrists this time baby when you do it all you do is get on my tits don't do that try try try baby don't do that - you got a good thing going now don't do it don't do it - don't chorus you need help look at yourself you need help you need life so don't hang yourself it's ok ok ok ok you just can't be a prick teaser all of the time a little bit attention - you got it need some affection - you got it suicide suicide suicide bid suicide suicide sucide bid suicide don't do it don't do it don't do it babe don't do it don't do it don't-do it don't put your neck on the line don't drown on me babe blow your brains out - don't do that - yeah chorus nobody gives - nobody gives nobody gives a damn\",\n", " 'original_lyrics': \"\\n\\nQueen\\nThe Game\\nDon't Try Suicide (Mercury)\\nOk\\nDon't do it Don't you try it baby\\nDon't do that Don't Don't Don't\\nDon't do that\\nYou got a good thing going now\\nDon't do it Don't do it\\nDon't\\nDon't try suicide\\nNobody's worth it\\nDon't try suicide\\nNobody cares\\nDon't try suicide\\nJust gonna hate it\\nDon't try suicide\\nNobody gives a damn\\nSo you think it's the easy way out\\nThink you're gonna slash your wrists\\nThis time\\nBaby when you do it all you do is\\nGet on my tits\\nDon't do that try try try baby\\nDon't do that - you got a good thing going now\\nDon't do it Don't do it - Don't\\nChorus\\nYou need help\\nLook at yourself you need help\\nYou need life\\nSo don't hang yourself\\nIt's o.k. o.k. o.k. o.k\\nYou just can't be a prick teaser all of the time\\nA little bit attention - you got it\\nNeed some affection - you got it\\nSuicide suicide suicide bid\\nSuicide suicide sucide bid\\nSuicide\\nDon't do it Don't do it Don't do it babe\\nDon't do it Don't do it Don't-do it\\nDon't put your neck on the line\\nDon't drown on me babe\\nBlow your brains out -\\nDon't do that - yeah\\nChorus\\nNobody gives - nobody gives\\nNobody gives a damn\\n\\n\"},\n", " {'_id': 309517,\n", " 'lyrics': \"take me to the room where the red's all red take me out of my head's what i said take me to the room where the green's all green and from what i've seen it's hot it's-a mean i'm gonna use my stack it's gotta be mack gonna get me on the track got a dragon on my back owwwww take me to the room where the beat's all round gonna eat that sound yeah yeah yeah yeah take me to the room where the black's all white and the white's all black take me back to the shack (shack) she don't take no prisoners she gonna give me the business got a dragon on my back hey it's a dragon attack get down nice and slow hey hey alright low down - she don't take no prisoners go down - gonna give me the business no time - yeah chained to the rack show time - got a dragon on my back show down - go find another customer slow down - i got to make my way\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nTake me to the room where the red's all red\\nTake me out of my head's what I said\\nTake me to the room where the green's all green\\nAnd from what I've seen it's hot, it's-a mean\\n\\nI'm gonna use my stack\\nIt's gotta be Mack\\nGonna get me on the track\\nGot a dragon on my back\\n\\nOwwwww\\nTake me to the room where the beat's all round\\nGonna eat that sound, yeah, yeah, yeah, yeah\\nTake me to the room where the black's all white\\nAnd the white's all black, take me back to the shack (shack)\\n\\nShe don't take no prisoners\\nShe gonna give me the business\\nGot a dragon on my back\\nHey, it's a dragon attack\\n\\nGet down\\n\\nNice and slow\\nHey Hey!\\nAlright!\\n\\nLow Down - She don't take no prisoners\\nGo Down - Gonna give me the business\\nNo time - Yeah chained to the rack!\\nShow time - Got a Dragon on my back\\nShow down - Go find another customer\\nSlow down - I got to make my way\\n\\n\"},\n", " {'_id': 309031,\n", " 'lyrics': \"oh i used to be your baby used to be your pride and joy you used to take me dancing just like any other boy but now you've found another partner you've left me like a broken toy oh it's someone else you're taking someone else you're playing to honey though i'm aching know just what i have to do if i can't have you when i'm waking i'll go to sleep and dream i'm with you oh take me take me take me to the dreamer's ball i'll be right on time and i'll dress so fine you're going to love me when you see me i won't have to worry take me take me promise not to wake me 'till it's morning it's all been true what you say about that hey honey you gonna take me to that dreamer's ball i'd like that right on down forty-second street way down down town dreamer's town oh take me take me take me i'm your plaything thing now you make my life worthwhile with the slightest smile or destroy me with a barely perceptible whisper gently take me remember i'll be dreaming of my baby at the dreamer's ball take me hold me remember what you told me you'd meet me at the dreamer's ball i'll meet you at the dreamer's ball\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nOh I used to be your baby\\nUsed to be your pride and joy\\nYou used to take me dancing\\nJust like any other boy\\nBut now you've found another partner\\nYou've left me like a broken toy\\n\\nOh it's someone else you're taking\\nSomeone else you're playing to\\nHoney though I'm aching\\nKnow just what I have to do\\nIf I can't have you when I'm waking\\nI'll go to sleep and dream I'm with you\\n\\nOh take me take me take me\\nTo the dreamer's ball\\nI'll be right on time and I'll dress so fine\\nYou're going to love me when you see me\\nI won't have to worry\\nTake me take me\\nPromise not to wake me 'till it's morning\\nIt's all been true\\n\\nWhat you say about that hey honey?\\nYou gonna take me to that dreamer's ball?\\nI'd like that\\nRight on down forty-second street\\nWay down down town dreamer's town\\n\\nOh take me take me take me\\nI'm your plaything thing now\\nYou make my life worthwhile\\nWith the slightest smile\\nOr destroy me with a barely perceptible whisper\\nGently take me remember I'll be dreaming of my baby\\nAt the dreamer's ball\\n\\nTake me hold me\\nRemember what you told me\\nYou'd meet me at the dreamer's ball\\nI'll meet you at the dreamer's ball\\n\\n\"},\n", " {'_id': 85260,\n", " 'lyrics': \"are you gonna take me home tonight oh down beside that red firelight are you gonna let it all hang out fat bottomed girls you make the rockin' world go round i was just a skinny lad never knew no good from bad but i knew life before i left my nursery left alone with big fat fanny she was such a naughty nanny hey big woman you made a bad boy out of me i've been singing with my band across the wire across the land i seen every blue-eyed floozy on the way but their beauty and their style went kind of smooth after a while take me to them lardy ladies every time come on oh won't you take me home tonight oh down beside your red firelight oh and you give it all you got fat bottomed girls you make the rocking world go round fat bottomed girls you make the rocking world go round hey listen here now your mortgages and homes i've got stiffness in my bones ain't no beauty queens in this locality i tell you oh but i still get my pleasure still got my greatest treasure hey big woman you gonna make a big man of me now get this are you gonna take me home tonight (please) oh down beside that red firelight are you gonna let it all hang out fat bottomed girls you make the rocking world go round (yeah) fat bottomed girls you make the rocking world go round get on your bikes and ride ooh yeah oh yeah them fat bottomed girls fat bottomed girls yeah yeah yeah alright ride 'em cowboy fat bottomed girls yes yes\",\n", " 'original_lyrics': \"\\n\\n[Intro: Queen]\\nAre you gonna take me home tonight\\nOh down beside that red firelight?\\nAre you gonna let it all hang out?\\nFat bottomed girls\\nYou make the rockin' world go round\\n\\n[Verse 1: Freddie Mercury]\\nI was just a skinny lad\\nNever knew no good from bad\\nBut I knew life before I left my nursery\\nLeft alone with big fat Fanny\\nShe was such a naughty nanny\\nHey big woman you made a bad boy out of me\\n\\n[Verse 2]\\nI've been singing with my band\\nAcross the wire, across the land\\nI seen every blue-eyed floozy on the way\\nBut their beauty and their style\\nWent kind of smooth after a while\\nTake me to them lardy ladies every time\\nCome on\\n\\n[Chorus: Queen]\\nOh won't you take me home tonight\\nOh down beside your red firelight?\\nOh and you give it all you got\\nFat bottomed girls\\nYou make the rocking world go round\\nFat bottomed girls\\nYou make the rocking world go round\\n\\n[Verse 2: Freddie Mercury]\\nHey listen here\\nNow your mortgages and homes\\nI've got stiffness in my bones\\nAin't no beauty queens in this locality\\nI tell you\\nOh but I still get my pleasure\\nStill got my greatest treasure\\nHey big woman you gonna make a big man of me\\nNow get this\\n\\n[Chorus: Queen]\\nAre you gonna take me home tonight (please)\\nOh down beside that red firelight?\\nAre you gonna let it all hang out?\\nFat bottomed girls\\nYou make the rocking world go round (yeah)\\nFat bottomed girls\\nYou make the rocking world go round\\n\\nGet on your bikes and ride\\n\\n[Outro]\\nOoh yeah\\nOh yeah\\nThem fat bottomed girls\\nFat bottomed girls\\nYeah yeah yeah\\nAlright\\nRide 'em cowboy\\nFat bottomed girls\\nYes, yes\\n\\n\"},\n", " {'_id': 1335220,\n", " 'lyrics': \"queen jazz fat bottomed girls (may) are you gonna take me home tonight ah down beside that red fire light are you gonna let it all hang out fat bottomed girls you make the rocking world go round hey i was just a skinny lad never knew no good from bad but i knew love before i left my nursery left alone with big fat fanny she was such a naughty nanny heap big woman you made a bad boy out of me hey hey i've been singing with my band across the wire across the land i've seen every blue eyed floozy on the way but their beauty and their style went kind of smooth after a while take me to them lovely ladies every time oh won't you take me home tonight oh down beside your red firelight oh and you give it all you got fat bottomed girls you make the rocking world go round fat bottomed girls you make the rocking world go round hey listen here now your mortgages and homes and the stiffness in your bones ain't no beauty queens in this locality (i tell you) oh but i still get my pleasure still get my greatest treasure heap big woman you made a bad boy out of me oh you gonna take me home tonight (please) oh down beside that red firelight oh you gonna let it all hang out fat bottomed girls you make the rocking world go round fat bottomed girls you make the rocking world go round get on your bikes and ride fat bottomed girls fat bottomed girls\",\n", " 'original_lyrics': \"\\n\\nQueen\\nJazz\\nFat Bottomed Girls (May)\\nAre you gonna take me home tonight?\\nAh down beside that red fire light\\nAre you gonna let it all hang out?\\nFat bottomed girls you make the rocking world go round\\nHey I was just a skinny lad\\nNever knew no good from bad\\nBut I knew love before I left my nursery\\nLeft alone with big fat Fanny\\nShe was such a naughty nanny\\nHeap big woman you made a bad boy out of me\\nHey hey!\\nI've been singing with my band\\nAcross the wire across the land\\nI've seen every blue eyed floozy on the way\\nBut their beauty and their style\\nWent kind of smooth after a while\\nTake me to them lovely ladies every time\\nOh won't you take me home tonight\\nOh down beside your red firelight\\nOh and you give it all you got\\nFat bottomed girls you make the rocking world go round\\nFat bottomed girls you make the rocking world go round\\nHey listen here\\nNow your mortgages and homes\\nAnd the stiffness in your bones\\nAin't no beauty queens in this locality (I tell you)\\nOh but I still get my pleasure\\nStill get my greatest treasure\\nHeap big woman you made a bad boy out of me\\nOh you gonna take me home tonight (Please)\\nOh down beside that red firelight\\nOh you gonna let it all hang out?\\nFat bottomed girls you make the rocking world go round\\nFat bottomed girls you make the rocking world go round\\nGet on your bikes and ride\\nFat bottomed girls\\nFat bottomed girls\\n\\n\"},\n", " {'_id': 1981787,\n", " 'lyrics': \"ah you gonna take me home tonight ah down beside that red firelight are you gonna let it all hang out fat bottomed girls you make the rockin' world go round hey i was just a skinny lad never knew no good from bad but i knew life before i left my nursery left alone with big fat fannys she was such a naughty nanny heap big woman you made a bad boy out of me hey hey whoo i've been singing with my band across the wire across the land i seen ev'ry blue eyed floozy on the way but their beauty and their style went kind of smooth after a while take me to them dirty ladies every time shawn oh won't you take me home tonight oh down beside your red firelight oh and you give it all you got fat bottomed girls you make the rockin' world go round fat bottomed girls you make the rockin' world go round hey listen here now your mortgages and homes i got stiffness in the bones ain't no beauty queens in this locality i tell you oh but i still get my pleasure still got my greatest treasure heap big woman you gone made a big man of me now get this oh you gonna take me home tonight oh down beside that red firelight oh you gonna let it all hang out fat bottomed girls you make the rockin' world go round fat bottomed girls you make the rockin' world go round get on your bikes and ride ooh yeah oh yeah them fat bottomed girls fat bottomed girls yeah yeah yeah yeah all right ride 'em cowboys fat bottomed girls yes yes\",\n", " 'original_lyrics': \"\\n\\nAh, you gonna take me home tonight\\nAh, down beside that red firelight\\nAre you gonna let it all hang out\\nFat bottomed girls, you make the rockin' world go round\\nHey, I was just a skinny lad, never knew no good from bad\\nBut I knew life before I left my nursery\\nLeft alone with big fat fannys, she was such a naughty nanny\\nHeap big woman you made a bad boy out of me\\nHey, hey\\nWhoo\\nI've been singing with my band, across the wire, across the land\\nI seen ev'ry blue eyed floozy on the way\\nBut their beauty and their style went kind of smooth after a while\\nTake me to them dirty ladies every time, Shawn\\nOh, won't you take me home tonight?\\nOh, down beside your red firelight\\nOh, and you give it all you got\\nFat bottomed girls, you make the rockin' world go round\\nFat bottomed girls, you make the rockin' world go round\\nHey, listen here\\nNow your mortgages and homes, I got stiffness in the bones\\nAin't no beauty queens in this locality, I tell you\\nOh, but I still get my pleasure still got my greatest treasure\\nHeap big woman, you gone made a big man of me, now get this\\nOh, you gonna take me home tonight\\nOh, down beside that red firelight\\nOh, you gonna let it all hang out\\nFat bottomed girls you make the rockin' world go round\\nFat bottomed girls you make the rockin' world go round\\nGet on your bikes and ride\\nOoh yeah, oh yeah, them fat bottomed girls\\nFat bottomed girls, yeah yeah yeah, yeah\\nAll right\\nRide 'em cowboys\\nFat bottomed girls\\nYes, yes\\n\\n\"},\n", " {'_id': 308842,\n", " 'lyrics': \"a word in your ear from father to son hear the words that i say i fought with you fought on your side long before you were born joyful the sound the word goes around from father to son to son and the voice is so clear time after time it leaps calling you calling you on don't destroy what you see your country to be just keep on building on the ground that's been won kings will be crowned the word goes around from father to son to son won't you hear us sing our family song ba ba ba ba ba ba ba ba now we hand it on but i've heard it all before take this letter that i give you take it sonny hold it high you won't understand a word that's in it but you'll write it all again before you die a word in your ear from father to son funny you don't hear a single word i say but my letter to you will stay by your side through the years till the loneliness is gone sing if you will - but the air you breathe i live to give you joyful the sound the word goes around from father to son to son kings will be crowned the word goes around from father to son to son\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nA word in your ear, from father to son\\n\\n[Verse 1]\\nHear the words that I say\\nI fought with you, fought on your side\\nLong before you were born\\n\\n[Chorus 1]\\nJoyful the sound, the word goes around\\nFrom father to son, to son\\n\\n[Verse 2]\\nAnd the voice is so clear, time after time it leaps\\nCalling you, calling you on\\nDon't destroy what you see, your country to be\\nJust keep on building on the ground that's been won\\n\\n[Chorus 2]\\nKings will be crowned, the word goes around\\nFrom father to son, to son\\n\\n[Verse 3]\\nWon't you hear us sing\\nOur family song?\\nBa ba ba ba ba ba ba ba\\nNow we hand it on\\nBut I've heard it all before\\nTake this letter that I give you\\nTake it sonny, hold it high\\nYou won't understand a word that's in it\\nBut you'll write it all again before you die\\nA word in your ear from father to son\\nFunny you don't hear a single word I say\\nBut my letter to you, will stay by your side\\nThrough the years till the loneliness is gone\\nSing if you will -\\nBut the air you breathe I live to give you\\n\\n[Chorus 1][x2]\\nJoyful the sound, the word goes around\\nFrom father to son, to son\\n\\n[Chorus 2]\\nKings will be crowned, the word goes around\\nFrom father to son, to son\\n\\n\"},\n", " {'_id': 311630,\n", " 'lyrics': \"wooh gotta rid of this feeling i'm feeling done yes i've going to gid rid of this feeling that's under my charm yes i've been waiting so long i've just got to get ah yes got to get a feeling feeling babe yes i feel it i feel it this feeling's driving me mad i can't stand it now that i'm here i've got to give you all that i ever had sure do now that i'm here i can see you so clearly it's the way i should say it it's not what i say it's the way that i say it it's not how i play it's the way that i play it oooh ooh ooh yeah i feel ow oooh got to get rid of this feeling i'm feeling inside yeah oh i've got to i've got to i've got to get rid of this feeling the feeling is driving me mad oh now that i'm here i've got to give you all that i ever had stop yes\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nWooh\\n\\n[Chorus]\\nGotta rid of this feeling I'm feeling done\\nYes, I've going to gid rid of this feeling that's under my charm, yes\\nI've been waiting so long, I've just got to get ah [?]\\nYes, got to get a, feeling, feeling babe\\nYes, I feel it, I feel it, this feeling's driving me mad, I can't stand it\\nNow that I'm here, I've got to give you all that I ever had, sure do\\n\\n[Verse 1]\\nNow that I'm here\\nI can see you so clearly\\nIt's the way I should say it\\nIt's not what I say it's the way that I say it\\nIt's not how I play it's the way that I play it\\nOooh, ooh, ooh, yeah, I feel\\nOw\\n\\n[Outro]\\nOooh, got to get rid of this feeling I'm feeling inside, yeah\\nOh, I've got to, I've got to, I've got to get rid of this feeling, the feeling is driving me mad\\nOh, now that I'm here, I've got to give you all that I ever had, stop\\nYes\\n\\n\"},\n", " {'_id': 1844340,\n", " 'lyrics': \"yeah when the spirit moves you you've got to feel it baby baby when i think about you i think about love darlin' i don't live without you and your love if i had those golden dreams of my yesterday i would wrap you in the heaven and feel it dying all the way i feel like makin' i feel like makin' love feel like makin' love feel like makin' love feel like makin' love to you baby if i think about you i think about love baby baby baby if i to live without you i live without love and if i had the sun and moon and they were shinin' you know i would give you both night and day love satisfying i feel like feel like makin' love i feel like makin' love feel like makin' love feel like makin' love to you and if i had the sun and moon and they were shinin' you know i would give you both night and day love satisfying i want to give you the sun i want to give you the moon and all the stars above 'cause i feel like makin' love feel like makin' love i feel like makin' love i feel like makin' love feel like makin' love to you feel like makin' love feel like makin' love feel like makin' love feel like makin' love to you yeah i feel like\",\n", " 'original_lyrics': \"\\n\\nYeah, when the spirit moves you\\nYou've got to feel it, baby\\n\\nBaby, when I think about you\\nI think about love\\nDarlin', I don't live without you\\nAnd your love\\n\\nIf I had those golden dreams of my yesterday\\nI would wrap you in the heaven and feel it dying all the way\\n\\nI feel like makin'\\nI feel like makin' love\\nFeel like makin' love\\nFeel like makin' love\\nFeel like makin' love to you\\n\\nBaby, if I think about you\\nI think about love\\nBaby, baby, baby, if I to live without you\\nI live without love\\n\\nAnd if I had the sun and moon\\nAnd they were shinin'\\nYou know I would give you both night and day\\nLove satisfying\\n\\nI feel like\\nFeel like makin' love\\nI feel like makin' love\\nFeel like makin' love\\nFeel like makin' love to you\\n\\nAnd if I had the sun and moon\\nAnd they were shinin'\\nYou know I would give you both night and day\\nLove satisfying\\n\\nI want to give you the sun\\nI want to give you the moon and all the stars above\\n\\n'Cause I feel like makin' love\\nFeel like makin' love\\nI feel like makin' love\\nI feel like makin' love\\nFeel like makin' love to you\\n\\nFeel like makin' love\\nFeel like makin' love\\nFeel like makin' love\\nFeel like makin' love to you\\n\\nYeah, I feel like\\n\\n\"},\n", " {'_id': 309007,\n", " 'lyrics': \"hey you boy hey you hey you boy think that you know what you're doin´ you think you're gonna to set things to rights you're just another picture on a teenage wall you're just another sucker ready for a fall you gotta fight from the inside attack from the rear fight from the inside you can't win with your hands tied fight from the inside uhhhhhh uhhhhhh ahhhhhh fight from the inside right down the line hey you boy hey you hey you boy think that you know what you're doin´ you think that out in the streets is all free you're just another money-spinner tool you're just another fool you gotta fight from the inside attack from the rear fight from the inside you can't win with your hands tied fight from the inside uhhhhhh uhhhhhh ahhhhhh fight from the inside right down the line right down the line right down the line\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nHey you boy, hey you\\nHey you boy, think that you know what you're doin´\\nYou think you're gonna to set things to rights\\nYou're just another picture on a teenage wall\\nYou're just another sucker ready for a fall\\n\\n[Chorus]\\nYou gotta\\nFight from the inside\\nAttack from the rear\\nFight from the inside\\nYou can't win with your hands tied\\nFight from the inside\\nUhhhhhh\\nUhhhhhh\\nAhhhhhh\\nFight from the inside\\nRight down the line\\n\\n[Verse 2]\\nHey you boy, hey you\\nHey you boy, think that you know what you're doin´\\nYou think that out in the streets is all free\\nYou're just another money-spinner tool\\nYou're just another, fool\\n\\n[Chorus]\\nYou gotta\\nFight from the inside\\nAttack from the rear\\nFIght from the inside\\nYou can't win with your hands tied\\nFight from the inside\\nUhhhhhh\\nUhhhhhh\\nAhhhhhh\\nFight from the inside\\nRight down the line\\nRight down the line\\nRight down the line\\n\\n\"},\n", " {'_id': 2821678,\n", " 'lyrics': \"flash ah ah saviour of the universe flash ah ah he'll save ev'ry one of us seemingly there is no reason for these extraordinary intergalactical upsets what's happening flash only dr hans zarkov formerly at nasa has provided any explanation flash ah ah he's a miracle this mornings unprecedented solar eclipse is no cause for alarm flash - ah ah- king of the impossible he's for ev'ry one of us stand for ev'ry one of us he'll save with a mighty hand ev'ry man ev'ry woman ev'ry child with a mighty flash general kaka flash gordon approaching what do you mean flash gordon approaching open fire all weapons dispatch war rocket ajax to bring back his body flash ah ah gordon's alive flash ah ah he'll save ev'ry one of us just a man with a man's courage he knows nothing but a man but he can never fail no one but the pure in heart may find the golden grail oh oh oh oh flash flash i love you but we only have fourteen hours to save the earth flash\",\n", " 'original_lyrics': \"\\n\\nFlash, Ah, ah, Saviour of the universe\\nFlash, Ah, ah, He'll save ev'ry one of us\\nSeemingly there is no reason for these\\nExtraordinary intergalactical upsets\\nWhat's happening Flash?\\nOnly Dr. Hans Zarkov formerly at N.A.S.A\\nHas provided any explanation\\nFlash , Ah, ah, He's a miracle\\nThis mornings unprecedented solar eclipse\\nIs no cause for alarm\\nFlash -, Ah, ah,- King of the impossible\\nHe's for ev'ry one of us\\nStand for ev'ry one of us\\nHe'll save with a mighty hand\\nEv'ry man ev'ry woman ev'ry child\\nWith a mighty Flash\\nGeneral Kaka Flash Gordon approaching\\nWhat do you mean Flash Gordon approaching?\\nOpen fire all weapons\\nDispatch war rocket Ajax to bring back his body\\nFlash, , Ah, ah\\nGordon's alive\\nFlash, , Ah, ah, He'll save ev'ry one of us\\nJust a man with a man's courage\\nHe knows nothing but a man\\nBut he can never fail\\nNo one but the pure in heart\\nMay find the golden grail oh oh oh oh\\nFlash Flash I love you\\nBut we only have fourteen hours to save the Earth\\nFlash\\n\\n\"},\n", " {'_id': 308880,\n", " 'lyrics': \"dislocate your spine if you don't sign he says i'll have you seeing double mesmerize you when he's tongue-tied simply with those eyes synchronize your minds and see the beast within him rise don't look back don't look back it's a rip-off flick of the wrist and you're dead baby blow him a kiss and you're mad flick of the wrist - he'll eat your heart out a dig in the ribs and then a kick in the head he's taken an arm and taken a leg all this time honey baby you've been had intoxicate your brain with what i'm saying if not you'll lie in knee-deep trouble prostitute yourself he says castrate your human pride sacrifice your leisure days let me squeeze you till you've dried don't look back don't look back it's a rip-off work my fingers to my bones i scream with pain i still make no impression seduce you with his money-make machine cross-collateralize (big-time money money) reduce you to a muzak-fake machine then the last goodbye it's a rip-off flick of the wrist and you're dead baby blow him a kiss and you're mad flick of the wrist - he'll eat your heart out a dig in the ribs and then a kick in the head he's taken an arm and taken a leg all this time honey baby you've been had\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nDislocate your spine if you don't sign he says\\nI'll have you seeing double\\nMesmerize you when he's tongue-tied\\nSimply with those eyes\\nSynchronize your minds and see\\nThe beast within him rise\\n\\n[Chorus 1]\\nDon't look back\\nDon't look back\\nIt's a rip-off\\n\\n[Chorus 2]\\nFlick of the wrist and you're dead baby\\nBlow him a kiss and you're mad\\nFlick of the wrist - he'll eat your heart out\\nA dig in the ribs and then a kick in the head\\nHe's taken an arm and taken a leg\\nAll this time honey\\nBaby you've been had\\n\\n[Verse 2]\\nIntoxicate your brain with what I'm saying\\nIf not you'll lie in knee-deep trouble\\nProstitute yourself he says\\nCastrate your human pride\\nSacrifice your leisure days\\nLet me squeeze you till you've dried\\n\\n[Chorus 1]\\nDon't look back\\nDon't look back\\nIt's a rip-off\\n\\n\\n\\n[Verse 3]\\nWork my fingers to my bones\\nI scream with pain\\nI still make no impression\\nSeduce you with his money-make machine\\nCross-collateralize, (big-time money, money)\\nReduce you to a muzak-fake machine\\nThen the last goodbye\\nIt's a rip-off\\n\\n[Chorus 2]\\nFlick of the wrist and you're dead baby\\nBlow him a kiss and you're mad\\nFlick of the wrist - he'll eat your heart out\\nA dig in the ribs and then a kick in the head\\nHe's taken an arm and taken a leg\\nAll this time honey\\nBaby you've been had\\n\\n\"},\n", " {'_id': 1567470,\n", " 'lyrics': \"queen sheer heart attack flick of the wrist (mercury) dislocate your spine if you don't sign he says i'll have you seeing double mesmerize you when he's tongue-tied simply with those eyes synchronize your minds and see the beast within him rise don't look back don't look back it's a rip-off flick of the wrist and you're dead baby blow him a kiss and you're mad flick of the wrist - he'll eat your heart out a dig in the ribs and then a kick in the head he's taken an arm and taken a leg all this time honey baby you've been had intoxicate your brain with what i'm saying if not you'll lie in knee-deep trouble prostitute yourself he says castrate your human pride sacrifice your leisure days let me squeeze you till you've dried don't look back don't look back it's a rip-off work my fingers to my bones i scream with pain i still make no impression seduce you with his money-make machine cross-collateralize (big-time money money) reduce you to a muzak-fake machine then the last goodbye it's a rip-off flick of the wrist and you're dead baby blow him a kiss and you're mad flick of the wrist - he'll eat your heart out a dig in the ribs and then a kick in the head he's taken an arm and taken a leg all this time honey baby you've been had\",\n", " 'original_lyrics': \"\\n\\nQueen\\nSheer Heart Attack\\nFlick Of The Wrist (Mercury)\\nDislocate your spine if you don't sign he says\\nI'll have you seeing double\\nMesmerize you when he's tongue-tied\\nSimply with those eyes\\nSynchronize your minds and see\\nThe beast within him rise\\nDon't look back\\nDon't look back\\nIt's a rip-off\\nFlick of the wrist and you're dead baby\\nBlow him a kiss and you're mad\\nFlick of the wrist - he'll eat your heart out\\nA dig in the ribs and then a kick in the head\\nHe's taken an arm and taken a leg\\nAll this time honey\\nBaby you've been had\\nIntoxicate your brain with what I'm saying\\nIf not you'll lie in knee-deep trouble\\nProstitute yourself he says\\nCastrate your human pride\\nSacrifice your leisure days\\nLet me squeeze you till you've dried\\nDon't look back\\nDon't look back\\nIt's a rip-off\\nWork my fingers to my bones\\nI scream with pain\\nI still make no impression\\nSeduce you with his money-make machine\\nCross-collateralize, (big-time money, money)\\nReduce you to a muzak-fake machine\\nThen the last goodbye\\nIt's a rip-off\\nFlick of the wrist and you're dead baby\\nBlow him a kiss and you're mad\\nFlick of the wrist - he'll eat your heart out\\nA dig in the ribs and then a kick in the head\\nHe's taken an arm, and taken a leg\\nAll this time honey\\nBaby you've been had\\n\\n\"},\n", " {'_id': 309664,\n", " 'lyrics': \"another red letter day so the pound has dropped and the children are creating the other half ran away taking all the cash and leaving you with the lumber got a pain in the chest doctors on strike what you need is a rest it's not easy love but you've got friends you can trust friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hand because friends will be friends right till the end now it's a beautiful day the postman delivered a letter from your lover only a phone call away you tried to track him down but somebody stole his number as a matter of fact you're getting used to life without him in your way it's so easy now because you got friends you can trust friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hand because friends will be friends right till the end friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hand cos right till the end - friends will be friends\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nAnother red letter day\\nSo the pound has dropped and the children are creating\\nThe other half ran away\\nTaking all the cash and leaving you with the lumber\\nGot a pain in the chest\\nDoctors on strike what you need is a rest\\n\\n[Chorus]\\nIt's not easy love, but you've got friends you can trust\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hand because friends will be friends right till the end\\n\\n[Verse 2]\\nNow it's a beautiful day\\nThe postman delivered a letter from your lover\\nOnly a phone call away\\nYou tried to track him down but somebody stole his number\\nAs a matter of fact\\nYou're getting used to life without him in your way\\n\\n[Chorus][x2]\\nIt's so easy now, because you got friends you can trust\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hand because friends will be friends right till the end\\n\\n[Verse 3]\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hand cos right till the end -\\nFriends will be friends\\n\\n\"},\n", " {'_id': 2008427,\n", " 'lyrics': \"friends will be friends another red letter day so the pound has dropped and the children are creating the other half run away taking all the cash and leaving you with the lumber got a pain in the chest doctors on strike what you need is a rest it's not easy love but you've got friends you can trust friends will be friends when you're in need of love they give care and attention friends will be friends when you're through with life and all hope is lost hold out your hand cos friends will be friends right till the end now it's a beautiful day the postman delivered a letter from your lover only a phone call away you tried to track him down but somebody stole his number as a matter of fact you're getting used to life without him in your way it's so easy now cos you got friends you can trust friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hand cos friends will be friends right till the end it's so easy now cos you got friends you can trust friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hand cos friends will be friends right till the end friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hand cos right till the end - friends will be friends\",\n", " 'original_lyrics': \"\\n\\nFriends will be friends\\n\\nAnother red letter day\\nSo the pound has dropped and the children are creating\\nThe other half run away\\nTaking all the cash and leaving you with the lumber\\nGot a pain in the chest\\nDoctors on strike what you need is a rest\\n\\nIt's not easy love, but you've got friends you can trust\\nFriends will be friends\\nWhen you're in need of love they give care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hand cos friends will be friends right till the end\\n\\nNow it's a beautiful day\\nThe postman delivered a letter from your lover\\nOnly a phone call away\\nYou tried to track him down but somebody stole his number\\nAs a matter of fact\\nYou're getting used to life without him in your way\\n\\nIt's so easy now, cos you got friends you can trust\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hand cos friends will be friends right till the end\\n\\nIt's so easy now, cos you got friends you can trust\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hand cos friends will be friends right till the end\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hand cos right till the end -\\nFriends will be friends\\n\\n\"},\n", " {'_id': 308867,\n", " 'lyrics': \"funny how love is everywhere just look and see funny how love is anywhere you're bound to be funny how love is every song in every key funny how love is coming home in time for tea funny funny funny funny how love is the end of lies when the truth begins tomorrow comes tomorrow beings tomorrow brings love in the shape of things that's what love is that's what love is funny how love is can break your heart so suddenly funny how love came tumbling down with adam and eve funny how love is running wild and feeling free funny how live is coming home in time for tea funny funny funny from the earth below to the heavens above that's how far and funny is love at any time anywhere if you got to make love do it everywhere that's what love is that's what love is funny how love is everywhere just look and see funny how love is anywhere you're bound to be funny how love is every song and every key funny how love is when you got to hurry home because you're late for tea funny funny funny how love is tomorrow comes tomorrow brings tomorrow brings love in the shape of things at any time anywhere if you got to make love do it everywhere that's what love is that's what love is\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nFunny how love is everywhere just look and see\\nFunny how love is anywhere you're bound to be\\nFunny how love is every song in every key\\nFunny how love is coming home in time for tea\\n\\n[Verse 1]\\nFunny, funny, funny\\nFunny how love is the end of lies when the truth begins\\nTomorrow comes tomorrow beings\\nTomorrow brings love in the shape of things\\nThat's what love is, that's what love is\\nFunny how love is can break your heart so suddenly\\nFunny how love came tumbling down with Adam and Eve\\nFunny how love is running wild and feeling free\\nFunny how live is coming home in time for tea\\nFunny, funny, funny\\nFrom the earth below to the heavens above\\nThat's how far and funny is love\\nAt any time, anywhere\\nIf you got to make love do it everywhere\\nThat's what love is, that's what love is\\n\\n[Chorus]\\nFunny how love is everywhere just look and see\\nFunny how love is anywhere you're bound to be\\nFunny how love is every song and every key\\nFunny how love is when you got to hurry home\\n\\n[Verse 2]\\nBecause you're late for tea\\nFunny, funny, funny how love is\\nTomorrow comes, tomorrow brings\\nTomorrow brings love in the shape of things\\nAt any time, anywhere\\nIf you got to make love do it everywhere\\nThat's what love is, that's what love is\\n\\n\"},\n", " {'_id': 309009,\n", " 'lyrics': \"get down make love you take my body i give you heat you say you're hungry i give you meat i suck your mind you blow my head make love inside your bed everybody get down make love every time i get hot you want to cool down every time i get high you say you want to come down you say it's enough in fact it's too much every time i get a - get down get down make love i can squeeze - you can shake me i can feel - when you break me come on so heavy - when you take me - you make love you make love you make love you make love you can make everybody get down make love get down make love every time i get high you want to come down every time i get hot you say you want to cool down you say it's enough in fact it's too much every time i want to get down get down get down\",\n", " 'original_lyrics': \"\\n\\n[Chorus 1][x4]\\nGet down make love\\n\\n[Verse 1]\\nYou take my body\\nI give you heat\\nYou say you're hungry\\nI give you meat\\nI suck your mind\\nYou blow my head\\nMake love Inside your bed\\nEverybody get down make love\\n\\n[Chorus 1][x3]\\n\\n[Chorus 2]\\nEvery time I get hot\\nYou want to cool down\\nEvery time I get high\\nYou say you want to come down\\nYou say it's enough\\nIn fact it's too much\\nEvery time I get a - Get down, get down\\nMake love\\n\\n[Verse 2]\\nI can squeeze - You can shake me\\nI can feel - when you break me\\nCome on so heavy - when you take me -\\nYou make love, you make love, you make love, you make love\\nYou can make everybody get down make love\\nGet down make love\\n\\n[Chorus 2]\\nEvery time I get high\\nYou want to come down\\nEvery time I get hot\\nYou say you want to cool down\\nYou say it's enough\\nIn fact it's too much\\nEvery time I want to, get down, get down get down\\n\\n[Chorus 1][x3]\\n\\n\"},\n", " {'_id': 309683,\n", " 'lyrics': \"here i am i'm the master of your destiny i am the one the only one i am the god of kingdom come give me the prize just give me the prize give me your kings let me squeeze them in my hands your puny princes your so-called leaders of your land i'll eat them whole before i'm done the battle's fought and the game is won i am the only one i am the god of kingdom come give me the prize just give me the prize move over i said move over hey hey hey clear the way there's no escape from my authority i tell you i am the one the only one i am the god of kingdom come give me the prize just give me the prize i am the only one i am the god of kingdom come give me the prize\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nHere I am, I'm the master of your destiny\\nI am the one the only one, I am the god of kingdom come\\nGive me the prize, just give me the prize\\nGive me your kings, let me squeeze them in my hands\\nYour puny princes\\nYour so-called leaders of your land\\nI'll eat them whole before I'm done\\nThe battle's fought and the game is won\\nI am the only one\\nI am the god of kingdom come\\nGive me the prize, just give me the prize\\nMove over, I said move over\\nHey, hey, hey clear the way\\nThere's no escape from my authority I tell you\\nI am the one the only one, I am the god of kingdom come\\nGive me the prize, just give me the prize\\nI am the only one\\nI am the god of kingdom come\\nGive me the prize\\n\\n\"},\n", " {'_id': 1525565,\n", " 'lyrics': \"words and music by brian may 'garage and water from the sprinklers it also left a man's decapitated body lying on the floor next to his own severed head a head which at this time has no name' kurgan 'i know his name' here i am i'm the master of your destiny i am the one the only one i am the god of kingdom come gimme the prize just gimme the prize give me your kings let me squeeze them in my hands your puny princes your so called leaders of your land i'll eat them whole before i'm done the battle's fought and the game is won i am the one the only one i am the god of kingdom come gimme the prize just gimme the prize kurgan 'now you die' kurgan 'i have something to say it's better to burn out than to fade away there can be only one' move over i said move over hey hey hey clear the way there's no escape from my authority - didn't i tell you i am the one the only one i am the god of kingdom come gimme the prize just gimme the prize i am the one the only one i am the god of kingdom come gimme the prize kurgan 'there can be only one'\",\n", " 'original_lyrics': \"\\n\\nWords and music by Brian May\\n\\n'..garage and water from the sprinklers\\nIt also left a man's decapitated body lying on the floor\\nNext to his own severed head, a head which at this time has no name'\\n\\nKurgan: 'I know his name'\\n\\nHere I am, I'm the master of your destiny\\nI am the one, the only one, I am the god of kingdom come\\nGimme the prize, just gimme the prize\\nGive me your kings let me squeeze them in my hands\\nYour puny princes\\nYour so called leaders of your land\\nI'll eat them whole before I'm done\\nThe battle's fought and the game is won\\nI am the one the only one\\nI am the god of kingdom come\\nGimme the prize just gimme the prize\\n\\nKurgan: 'Now you die'\\n\\nKurgan: 'I have something to say: it's better to burn out than to fade away... there can be only one'\\n\\nMove over, I said move over\\nHey hey hey clear the way\\nThere's no escape from my authority - didn't I tell you\\nI am the one the only one, I am the god of kingdom come\\nGimme the prize just gimme the prize\\nI am the one the only one\\nI am the god of kingdom come\\nGimme the prize\\n\\nKurgan: 'There can be only one'\\n\\n\"},\n", " {'_id': 1932008,\n", " 'lyrics': \"garage and water from the sprinklers it also left a man's decapitated body lying on the floor next to his own severed heada head which at this time has no name i know his name here i am i'm the master of your destiny (ha-ha) i am the one the only one i am the god of kingdom come gimme the prize just gimme the prize give me your kings let me squeeze them in my hands your puny princes your so-called leaders of your land i'll eat them whole before i'm done the battle's fought and the game is won i am the one the only one i am the god of kingdom come gimme the prize just gimme the prize (the prize) now you die i have something to sayit's better to burn out than to fade away there can be only one move over i said move over hey hey hey clear the way there's no escape from my authority (didn't i tell you) i am the one the only one i am the god of kingdom come gimme the prize just gimme the prize i am the one the only one i am the god of kingdom come just gimme the prize there can be only one\",\n", " 'original_lyrics': \"\\n\\n..garage and water from the sprinklers. It also left a man's decapitated body lying on the floor next to his own severed head...a head which at this time has no name\\n\\nI know his name\\n\\nHere I am!\\nI'm the master of your destiny (Ha-ha!)\\nI am the one, the only one\\nI am the god of Kingdom Come\\nGimme the prize!\\nJust gimme the prize!\\nGive me your kings\\nLet me squeeze them in my hands\\nYour puny princes\\nYour so-called leaders of your land\\n\\nI'll eat them whole before I'm done\\nThe battle's fought and the game is won\\nI am the one, the only one\\nI am the god of Kingdom Come\\nGimme the prize!\\nJust gimme the prize! (The prize.)\\n\\nNow you die\\n\\nI have something to say...it's better to burn out than to fade away!\\n\\nThere can be only one!\\n\\nMove over!\\nI said move over!\\nHey, hey, hey! Clear the way\\nThere's no escape from my authority (Didn't I tell you?)\\nI am the one, the only one\\nI am the god of Kingdom Come\\nGimme the prize just gimme the prize\\nI am the one, the only one\\nI am the god of Kingdom Come\\nJust gimme the prize\\n\\nThere can be only one\\n\\n\"},\n", " {'_id': 308943,\n", " 'lyrics': \"take good care of what you've got my father said to me as he puffed his pipe and baby b he dandled on his knee don't fool with fools who'll turn away keep all good company oo hoo oo hoo take care of those you call your own and keep good company soon i grew and happy too my very good friends and me we'd play all day with sally j the girl from number four and very soon i begged her won't you keep me company now marriage is an institution sure my wife and i our needs and nothing more all my friends by a year by and by disappear but we're safe enough behind our door i flourished in my humble trade my reputation grew the work devoured my waking hours but when my time was through reward of all my efforts my own limited company i hardly noticed sally as we parted company all through the years in the end it appears there was never really anyone but me now i'm old i puff my pipe but no-one's there to see i ponder on the lesson of my life's insanity take care of those you call your own and keep good company\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nTake good care of what you've got\\nMy father said to me\\nAs he puffed his pipe and Baby B\\nHe dandled on his knee\\nDon't fool with fools who'll turn away\\nKeep all Good Company\\nOo Hoo Oo Hoo\\n\\n[Chorus]\\nTake care of those you call your own\\nAnd keep Good Company\\n\\n[Verse 2]\\nSoon I grew and happy too\\nMy very good friends and me\\nWe'd play all day with Sally J\\nThe girl from number four\\nAnd very soon I begged her won't you\\nKeep me Company\\n\\n[Bridge]\\nNow marriage is an institution sure\\nMy wife and I our needs and nothing more\\nAll my friends by a year\\nBy and by disappear\\nBut we're safe enough behind our door\\n\\n[Verse 3]\\nI flourished in my humble trade\\nMy reputation grew\\nThe work devoured my waking hours\\nBut when my time was through\\nReward of all my efforts my own\\nLimited Company\\n\\n[Link]\\nI hardly noticed Sally as we\\nParted Company\\n\\n[Bridge]\\nAll through the years in the end it appears\\nThere was never really anyone but me\\n\\n[Verse 4]\\nNow I'm old I puff my pipe\\nBut no-one's there to see\\nI ponder on the lesson of\\nMy life's insanity\\n\\n[Chorus]\\nTake care of those you call your own\\nAnd keep Good Company\\n\\n\"},\n", " {'_id': 266848,\n", " 'lyrics': 'i can dim the lights and sing you songs full of sad things we can do the tango just for two i can serenade and gently play on your heart strings be your valentino just for you \"ooh love ooh lover boy what\\'re you doing tonight hey boy\" set my alarm turn on my charm that\\'s because i\\'m a good old-fashioned lover boy ooh let me feel your heartbeat (grow faster faster) ooh can you feel my love heat (ohh) come on and sit on my hot-seat of love and tell me how do you feel right after-all i\\'d like for you and i to go romancing say the word your wish is my command “ooh love ooh lover boy what’re you doing tonight hey boy” write my letter feel much better i’ll use my fancy patter on the telephone when i\\'m not with you think of you always i miss you (i miss those long hot summer nights) when i\\'m not with you think of me always love you love you hey boy where do you get it from hey boy where did you go i learned my passion in the good old fashioned school of lover boys dining at the ritz we\\'ll meet at nine (12345678 9 o\\'clock) precisely i will pay the bill you taste the wine driving back in style in my saloon will do quite nicely just take me back to yours that will be fine (come on and get it) \"ooh love (there he goes again) ooh lover boy (who\\'s my good old fashioned lover boy wohh wohh) what\\'re you doing tonight hey boy\" everything\\'s all right just hold on tight that\\'s because i\\'m a good old-fashioned (fashioned) lover boy',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nI can dim the lights and sing you songs full of sad things\\nWe can do the tango, just for two\\nI can serenade and gently play on your heart strings\\nBe your Valentino, just for you\\n\\n[Chorus 1]\\n\"Ooh love, Ooh lover boy\\nWhat\\'re you doing tonight? Hey boy\"\\nSet my alarm, turn on my charm\\nThat\\'s because I\\'m a good old-fashioned lover boy\\n\\n[Verse 2]\\nOoh let me feel your heartbeat (grow faster, faster)\\nOoh can you feel my love heat? (Ohh)\\nCome on and sit on my hot-seat of love\\nAnd tell me how do you feel right after-all\\nI\\'d like for you and I to go romancing\\nSay the word, your wish is my command\\n\\n[Chorus 2]\\n“Ooh love, Ooh lover boy\\nWhat’re you doing tonight? Hey boy”\\nWrite my letter, feel much better\\nI’ll use my fancy patter on the telephone\\n\\n[Bridge]\\nWhen I\\'m not with you\\nThink of you always\\nI miss you (I miss those long hot summer nights)\\nWhen I\\'m not with you\\nThink of me always\\nLove you, Love you\\nHey boy where do you get it from?\\nHey boy where did you go?\\nI learned my passion in the good old\\nFashioned school of lover boys\\n\\n[Guitar Solo]\\n\\n[Verse 3]\\nDining at the Ritz we\\'ll meet at nine (1,2,3,4,5,6,7,8, 9 o\\'clock) precisely\\nI will pay the bill, you taste the wine\\nDriving back in style, in my saloon will do quite nicely\\nJust take me back to yours, that will be fine (Come on and get it)\\n\\n[Chorus 3]\\n\"Ooh love (there he goes again)\\nOoh lover boy (who\\'s my good old fashioned lover boy wohh wohh)\\nWhat\\'re you doing tonight, hey boy\"\\nEverything\\'s all right, just hold on tight\\nThat\\'s because I\\'m a good old-fashioned (fashioned) lover boy\\n\\n'},\n", " {'_id': 308686,\n", " 'lyrics': \"great king rat died today born on the twenty first of may died syphilis forty four on his birthday every second word he swore yes he was the son of a whore always wanted by the law wouldn't you like to know wouldn't you like to know people great king rat was a dirty old man and a dirty old man was he now what did i tell you would you like to see where will i be tomorrow will i beg or will i borrow i don't care i don't care anyway come on come on the time is right the man is evil and that is right i told you ah yes i told you and that's no lie oh no no wouldn't you like to know wouldn't you like to know people great king rat was a dirty old man and a dirty old man was he now what did i tell you would you like to see wouldn't you like to know wouldn't you like to know people great king rat was a dirty old man and a dirty old man was he now what did i tell you would you like to see now listen all you people put out the good and keep the bad don't believe all you read in the bible you sinners get in line saints you leave far behind very soon you're gonna be his disciple don't listen to what mama says not a word not a word mama says or else you'll find yourself being the rival the great lord before he died knelt sinners by his side and said you're going to realize tomorrow no i'm not going to tell you what you already know cause time and time again the old man said it all a long time ago come come on the time is right this evil man will fight i told you once before wouldn't you like to know wouldn't you like to know people great king rat was a dirty old man and a dirty old man was he now what did i tell you would you like to see\",\n", " 'original_lyrics': \"\\n\\nGreat King Rat died today\\n\\nBorn on the twenty first of May\\nDied syphilis forty four on his birthday\\nEvery second word he swore\\nYes he was the son of a whore\\nAlways wanted by the law\\n\\nWouldn't you like to know?\\nWouldn't you like to know people?\\nGreat King Rat was a dirty old man\\nAnd a dirty old man was he\\nNow what did I tell you\\nWould you like to see?\\n\\nWhere will I be tomorrow?\\nWill I beg or will I borrow?\\nI don't care I don't care anyway\\nCome on come on the time is right\\nThe man is evil and that is right\\nI told you ah yes I told you\\nAnd that's no lie oh no no\\n\\nWouldn't you like to know?\\nWouldn't you like to know people?\\nGreat King Rat was a dirty old man\\nAnd a dirty old man was he\\nNow what did I tell you\\nWould you like to see?\\n\\nWouldn't you like to know?\\nWouldn't you like to know people?\\nGreat King Rat was a dirty old man\\nAnd a dirty old man was he\\nNow what did I tell you\\nWould you like to see?\\n\\nNow listen all you people\\nPut out the good and keep the bad\\nDon't believe all you read in the Bible\\nYou sinners get in line\\nSaints you leave far behind\\nVery soon you're gonna be his disciple\\nDon't listen to what mama says\\nNot a word not a word mama says\\nOr else you'll find yourself being the rival\\nThe great Lord before He died\\nKnelt sinners by his side\\nAnd said you're going to realize tomorrow\\nNo I'm not going to tell you\\nWhat you already know\\nCause time and time again\\nThe old man said it all a long time ago\\nCome come on the time is right\\nThis evil man will fight\\nI told you once before\\n\\nWouldn't you like to know?\\nWouldn't you like to know people?\\nGreat King Rat was a dirty old man\\nAnd a dirty old man was he\\nNow what did I tell you\\nWould you like to see?\\n\\n\"},\n", " {'_id': 1016512,\n", " 'lyrics': \"queen queen great king rat (mercury) great king rat died today born on the twenty first of may died syphillis forty four on his birthday every second word he swore yes he was the son of a whore always wanted by the law wouldn't you like to know wouldn't you like to know people great king rat was a dirty old man and a dirty old man was he now what did i tell you would you like to see where will i be tomorrow will i beg or will i borrow i don't care i don't care anyway come on come on the time is right i told you ah yes i told you and that's no lie oh no no no wouldn't you like to know wouldn't you like to know wouldn't you like to know great king rat was a dirty old man and a dirty old man was he now what did i tell you would you like to see wouldn't you like to know wouldn't you like to know people great king rat was a dirty old man and a dirty old man was he now what did i tell you would you like to see now listen all you people put out the good and keep the bad don't believe all you read in the bible you sinners get in line saints you leave far behind very soon you're gonna be h don't listen to what mama says not a word not a word mama says or else you'll find yourself being the rival the great lord before he died knelt sinners by his side and said you're gonna realise tomorrow no i'm not gonna tell you what you already know 'cause time and time again the old man said it all a long time ago come come on the time is right this evil man will fight i told you once before wouldn't you like to know wouldn't you like to know just like i said before great king rat was a dirty old man and a dirty old man was he the last time i tell you would you like to see\",\n", " 'original_lyrics': \"\\n\\nQueen\\nQueen\\nGreat King Rat (Mercury)\\nGreat King Rat died today\\nBorn on the twenty first of May\\nDied syphillis forty four on his birthday\\nEvery second word he swore\\nYes he was the son of a whore\\nAlways wanted by the law\\nWouldn't you like to know?\\nWouldn't you like to know people?\\nGreat King Rat was a dirty old man\\nAnd a dirty old man was he\\nNow what did I tell you\\nWould you like to see?\\nWhere will I be tomorrow?\\nWill I beg or will I borrow?\\nI don't care I don't care anyway\\nCome on come on the time is right\\nI told you ah yes I told you\\nAnd that's no lie oh no no no\\nWouldn't you like to know?\\nWouldn't you like to know?\\nWouldn't you like to know?\\nGreat King Rat was a dirty old man\\nAnd a dirty old man was he\\nNow what did I tell you?\\nWould you like to see?\\nWouldn't you like to know?\\nWouldn't you like to know people?\\nGreat King Rat was a dirty old man\\nAnd a dirty old man was he\\nNow what did I tell you?\\nWould you like to see?\\nNow listen all you people\\nPut out the good and keep the bad\\nDon't believe all you read in the Bible\\nYou sinners get in line\\nSaints you leave far behind\\nVery soon you're gonna be h\\nDon't listen to what mama says\\nNot a word not a word mama says\\nOr else you'll find yourself being the rival\\nThe great Lord before He died\\nKnelt sinners by his side\\nAnd said you're gonna realise tomorrow\\nNo I'm not gonna tell you\\nWhat you already know\\n'Cause time and time again\\nThe old man said it all a long time ago\\nCome come on the time is right\\nThis evil man will fight\\nI told you once before\\nWouldn't you like to know?\\nWouldn't you like to know?\\nJust like I said before\\nGreat King Rat was a dirty old man\\nAnd a dirty old man was he\\nThe last time I tell you?\\nWould you like to see?\\n\\n\"},\n", " {'_id': 1973175,\n", " 'lyrics': \"she keeps her moet et chandon in her pretty cabinet 'let them eat cake' she says just like marie antoinette a built-in remedy for kruschev and kennedy at anytime an invitation you can't decline caviar and cigarettes well versed in etiquette extraordinarily nice she's a killer queen gunpowder gelatine dynamite with a laserbeam guaranteed to blow your mind anytime ooh recommended at the price insatiable an appetite wanna try to avoid complications she never kept the same address in conversation she spoke just like a baroness met a man from china went down to geisha minah then again incidentally if you're that way inclined perfume came naturally from paris for cars she couldn't care less fastidious and precise she's a killer queen gunpowder gelatine dynamite with a laserbeam guaranteed to blow your mind anytime drop of a hat she's as willing as playful as a pussy cat then momentarily out of action temporarily out of gas to absolutely drive you wild wild she's all out to get you she's a killer queen gunpowder gelatine dynamite with a laserbeam guaranteed to blow your mind anytime ooh recommended at the price insatiable an appetite wanna try you wanna try\",\n", " 'original_lyrics': \"\\n\\nShe Keeps Her Moet Et Chandon\\nIn Her Pretty Cabinet\\n'let Them Eat Cake' She Says\\nJust Like Marie Antoinette\\n\\nA Built-in Remedy\\nFor Kruschev And Kennedy\\nAt Anytime An Invitation\\nYou Can't Decline\\n\\nCaviar And Cigarettes\\nWell Versed In Etiquette\\nExtraordinarily Nice\\n\\nShe's A Killer Queen\\nGunpowder, Gelatine\\nDynamite With A Laserbeam\\nGuaranteed To Blow Your Mind\\nAnytime\\n\\nOoh, Recommended At The Price\\nInsatiable An Appetite\\nWanna Try?\\n\\nTo Avoid Complications\\nShe Never Kept The Same Address\\nIn Conversation\\nShe Spoke Just Like A Baroness\\n\\nMet A Man From China\\nWent Down To Geisha Minah\\nThen Again Incidentally\\nIf You're That Way Inclined\\n\\nPerfume Came Naturally From Paris\\nFor Cars She Couldn't Care Less\\nFastidious And Precise\\n\\nShe's A Killer Queen\\nGunpowder, Gelatine\\nDynamite With A Laserbeam\\nGuaranteed To Blow Your Mind\\nAnytime\\n\\nDrop Of A Hat She's As Willing As\\nPlayful As A Pussy Cat\\nThen Momentarily Out Of Action\\nTemporarily Out Of Gas\\nTo Absolutely Drive You Wild, Wild...\\nShe's All Out To Get You\\n\\nShe's A Killer Queen\\nGunpowder, Gelatine\\nDynamite With A Laserbeam\\nGuaranteed To Blow Your Mind\\nAnytime\\n\\nOoh, Recommended At The Price\\nInsatiable An Appetite\\nWanna Try?\\nYou Wanna Try...\\n\\n\"},\n", " {'_id': 309695,\n", " 'lyrics': \"here we stand or here we fall history won't care at all make the bed light the light lady mercy won't be home tonight you don't waste no time at all don't hear the bell but you answer the call it comes to you as to us all we are just waiting for the hammer to fall oh every night and every day a little piece of you is falling away but lift your face the western way build your muscles as your body decays tow the line and play their game let the anaesthetic cover it all untill one day they call your name you know it is time for the hammer to fall rich or poor or famous for your truth it is all the same (oh no oh no) lock your door but rain is pouring through your window pane (oh no) baby now your struggle's all vain for we who grew up tall and proud in the shadow of the mushroom cloud convinced our voices can't be heard we just want to scream it louder and louder what the hell are we fighting for just surrender and it won't hurt at all you just got time to say your prayers while you are waiting for the hammer to fall it's gonna fall hammeryou knowhammer to fall waiting for the hammer to fall now baby while you're waiting for the hammer to fall give it to me one more time\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nHere we stand or here we fall\\nHistory won't care at all\\nMake the bed, light the light\\nLady Mercy won't be home tonight\\n\\n[Chorus]\\nYou don't waste no time at all\\nDon't hear the bell but you answer the call\\nIt comes to you as to us all\\nWe are just waiting\\nFor the hammer to fall\\n\\n[Verse 2]\\nOh every night, and every day\\nA little piece of you is falling away\\nBut lift your face, the Western Way\\nBuild your muscles as your body decays\\n\\n[Verse 3]\\nTow the line and play their game\\nLet the anaesthetic cover it all\\nUntill one day they call your name\\nYou know it is time for the Hammer to Fall\\nRich or poor or famous for\\nYour truth it is all the same (oh no oh no)\\nLock your door but rain is pouring\\nThrough your window pane (oh no)\\nBaby now your struggle's all vain\\nFor we who grew up tall and proud\\nIn the shadow of the Mushroom Cloud\\nConvinced our voices can't be heard\\nWe just want to scream it louder and louder\\n\\n[Verse 4]\\nWhat the hell are we fighting for\\nJust surrender and it won't hurt at all\\nYou just got time to say your prayers\\nWhile you are waiting for the Hammer to Fall\\n\\nIt's gonna fall\\nHammer..you know..hammer to fall\\nWaiting for the hammer to fall now baby\\nWhile you're waiting for the hammer to fall\\n\\nGive it to me one more time\\n\\n\"},\n", " {'_id': 1038532,\n", " 'lyrics': \"queen live at wembley hammer to fall (may) here we stand or here we fall history don't care at all make the bed light the light lady mercy won't be home tonight chorus you don't waste no time at all don't hear the bell but you answer the call it comes to you as to us all we're just waiting for the hammer to fall oh every night and every day a little piece of you is falling away but lift your face the western way -- build your muscles as your body decays chorus tow the line and play their game let the anaesthetic cover it all till one day they call your name then it's time for the hammer to fall rich or poor or famous for your truth it's all the same oh no oh no lock your door 'cause rain is pouring through your window pane oh no baby now your struggle's all vain for we who grew up tall and proud in the shadow of the mushroom cloud convinced our voices can't be heard we just wanna scream it louder and louder chorus what the hell are we fighting for just surrender and it won't hurt at all you just got time to say your prayers while you're waiting for the hammer to hammer to fall waiting for the hammer to hammer to hammer to fall\",\n", " 'original_lyrics': \"\\n\\nQueen\\nLive At Wembley\\nHammer To Fall (May)\\nHere we stand or here we fall\\nHistory don't care at all\\nMake the bed, light the light\\nLady Mercy won't be home tonight\\nCHORUS\\nYou don't waste no time at all\\nDon't hear the bell but you answer the call\\nIt comes to you as to us all\\nWe're just waiting\\nFor the hammer to fall\\nOh every night, and every day\\nA little piece of you is falling away\\nBut lift your face, the Western Way --\\nBuild your muscles as your body decays\\nCHORUS\\nTow the line and play their game\\nLet the anaesthetic cover it all\\nTill one day they call your name\\nThen it's time for the Hammer to Fall\\nRich or poor or famous for\\nYour truth it's all the same\\nOh no, oh no\\nLock your door 'cause rain is pouring\\nThrough your window pane\\nOh no\\nBaby now your struggle's all vain\\nFor we who grew up tall and proud\\nIn the shadow of the mushroom cloud\\nConvinced our voices can't be heard\\nWe just wanna scream it louder and louder\\nCHORUS\\nWhat the hell are we fighting for?\\nJust surrender and it won't hurt at all\\nYou just got time to say your prayers\\nWhile you're waiting for the Hammer to hammer to fall\\nWaiting for the Hammer to hammer to hammer to fall\\n\\n\"},\n", " {'_id': 309826,\n", " 'lyrics': \"don't let go don't lose your mystique wait a little longer tomorrow brings another feast don't let go don't lose your reputation thank god you're still alive you're still in one piece hang on in there don't lose your appetite hang on in there forget the danger signs pray for that magical moment (straight ahead) and it will appear don't fight for lost emotions wait for the sunrise and everything will seem so clear (look straight ahead look straight ahead) hang on in there (hang on in there) hang on in there (hang on in there) your wish will be granted all your problems will disappear don't be a fool you haven't reached your peak you got a fast car racing up inside you your life is incomplete hang on in there hang there pray for that magical moment and it will appear (wait for that moment) wait for the sunrise (ah) just wait and see and it will seem so clear (duh duh bap bee dee bup bup bup duh da dup dee da) hey and let's go let's go okay now do the change up yeah hang in there hang on in there yeah hang on in there yeah (instrumental fade-out)\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nDon't let go\\nDon't lose your mystique\\nWait a little longer\\nTomorrow brings another feast\\nDon't let go\\nDon't lose your reputation\\nThank God you're still alive\\nYou're still in one piece\\nHang on in there, don't lose your appetite\\nHang on in there, forget the danger signs\\nPray for that magical moment (straight ahead) and it will appear\\nDon't fight for lost emotions!\\nWait for the sunrise\\nAnd everything will seem so clear\\n(Look straight ahead, look straight ahead!)\\nHang on in there (hang on in there)\\nHang on in there (hang on in there)\\nYour wish will be granted\\nAll your problems will disappear\\nDon't be a fool\\nYou haven't reached your peak\\nYou got a fast car racing up inside you\\nYour life is incomplete\\nHang on in there\\nHang there!\\nPray for that magical moment and it will appear!\\n(Wait for that moment)\\nWait for the sunrise\\n(Ah...)\\nJust wait and see, and it will seem so clear\\n(duh duh bap bee dee bup bup bup, duh da dup dee da)\\nHey!\\nAnd let's go, let's go!\\nOkay now do the change up\\nYeah!\\nHang in there!\\nHang on in there!\\nYeah, hang on in there!\\n\\n[Outro]\\nYeah!\\n\\n(Instrumental Fade-out)\\n\\n\"},\n", " {'_id': 2070914,\n", " 'lyrics': \"and you're rushing headlong you've got a new goal and you're rushing headlong out of control and you think you're so strong but there ain't no stopping and there's nothin' you can do about it nothin' you can do no there's nothin' you can do about it no there's nothin you can nothin' you can nothin' you can do about it and you're rushing headlong you've got a new goal and you're rushing headlong out of control and you think you're so strong but there ain't no stopping no there's nothin' you can do about it yeah hey he used to be a man with a stick in his hand hoop diddy diddy - hoop diddy do she used to be a woman with a hot dog stand hoop diddy diddy - hoop diddy do now you've got soup in the laundry bag now you've got strings you're gonna lose your rag you're gettin' in a fight then it ain't so groovy when you're screaming in the night let me out of this cheap b movie headlong down the highway and you're rushing headlong out of control and you think you're so strong but there ain't no stopping and you can't stop rockin' and there's nothin you can nothin' you can nothin' you can do about it when a red hot man meets a white hot lady hoop diddy diddy - hoop diddy do soon the fire starts raging gets you more than half crazy hoop diddy diddy - hoop diddy do now they start freaking everywhere you turn you can't start walking cause your feet got burned it ain't no time to figure wrong from right cause reason's out of the window better hold on tight you're rushing headlong headlong out of control - yeah and you think you're so strong but there ain't no stopping and there's nothin you nothin' you nothin' you can do about it at all yeah yeah alright - go and you're rushing headlong down the highway and you're rushing headlong out of control and you think you're so strong but there ain't no stopping there's nothin nothin' nothin' you can do about it ah ha headlong yeah yeah yeah headlong headlong headlong\",\n", " 'original_lyrics': \"\\n\\nAnd you're rushing headlong you've got a new goal\\nAnd you're rushing headlong out of control\\nAnd you think you're so strong\\nBut there ain't no stopping\\nAnd there's nothin' you can do about it\\nNothin' you can do no there's nothin' you can do about it\\nNo there's nothin you can nothin' you can nothin' you can do about it\\nAnd you're rushing headlong you've got a new goal\\nAnd you're rushing headlong out of control\\nAnd you think you're so strong\\nBut there ain't no stopping no there's nothin' you can do about it\\nYeah\\nHey he used to be a man with a stick in his hand\\nHoop diddy diddy - hoop diddy do\\nShe used to be a woman with a hot dog stand\\nHoop diddy diddy - hoop diddy do\\nNow you've got soup in the laundry bag\\nNow you've got strings you're gonna lose your rag\\nYou're gettin' in a fight\\nThen it ain't so groovy when you're screaming in the night\\nLet me out of this cheap B movie\\nHeadlong down the highway and you're rushing\\nHeadlong out of control\\nAnd you think you're so strong\\nBut there ain't no stopping and you can't stop rockin'\\nAnd there's nothin you can nothin' you can nothin' you can do about it\\nWhen a red hot man meets a white hot lady\\nHoop diddy diddy - hoop diddy do\\nSoon the fire starts raging gets you more than half crazy\\nHoop diddy diddy - hoop diddy do\\nNow they start freaking everywhere you turn\\nYou can't start walking cause your feet got burned\\nIt ain't no time to figure wrong from right\\nCause reason's out of the window better hold on tight\\nYou're rushing headlong\\nHeadlong out of control - yeah\\nAnd you think you're so strong\\nBut there ain't no stopping\\nAnd there's nothin you nothin' you nothin' you can do about it at all\\nYeah yeah\\nAlright - go\\nAnd you're rushing headlong down the highway\\nAnd you're rushing headlong out of control\\nAnd you think you're so strong\\nBut there ain't no stopping\\nThere's nothin nothin' nothin' you can do about it\\nAh ha\\nHeadlong\\nYeah yeah yeah\\nHeadlong\\nHeadlong\\nHeadlong\\n\\n\"},\n", " {'_id': 310169,\n", " 'lyrics': \"this could be heaven this could be heaven this could be heaven for everyone in these days of cool reflection you come to me and everything seems alright in these days of cold affections you sit by me and everything's fine this could be heaven for everyone this world could be fed this world could be fun this could be heaven for everyone this world could be free this world could be one in this world of cool deception just your smile can smooth my ride these troubled days of cruel rejection hmm you come to me soothe my troubled mind yeah this could be heaven for everyone this world could be fed this world could be fun this should be love for everyone yeah this world should be free this world could be one we should bring love to our daughters and sons love love love this could be heaven for everyone you know that this could be heaven for everyone this could be heaven for everyone listen - what people do to other souls they take their lives - destroy their goals their basic pride and dignity is stripped and torn and shown no pity when this should be heaven for everyone\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nThis could be heaven\\nThis could be heaven\\nThis could be heaven for everyone\\n\\n[Verse 1]\\nIn these days of cool reflection\\nYou come to me and everything seems alright\\nIn these days of cold affections\\nYou sit by me and everything's fine\\n\\n[Chorus]\\nThis could be heaven for everyone\\nThis world could be fed, this world could be fun\\nThis could be heaven for everyone\\nThis world could be free, this world could be one\\n\\n[Verse 2]\\nIn this world of cool deception\\nJust your smile can smooth my ride\\nThese troubled days of cruel rejection, hmm\\nYou come to me, soothe my troubled mind\\n\\n[Chorus]\\nYeah, this could be heaven for everyone\\nThis world could be fed, this world could be fun\\nThis should be love for everyone, yeah\\nThis world should be free, this world could be one\\nWe should bring love to our daughters and sons\\nLove, love, love, this could be heaven for everyone\\n\\n[Bridge]\\nYou know that\\nThis could be heaven for everyone\\nThis could be heaven for everyone\\n\\n[Verse 3]\\nListen - what people do to other souls\\nThey take their lives - destroy their goals\\nTheir basic pride and dignity\\nIs stripped and torn and shown no pity\\nWhen this should be heaven for everyone\\n\\n\"},\n", " {'_id': 1955321,\n", " 'lyrics': \"this could be heaven this could be heaven this could be heaven this could be heaven this could be heaven for everyone in these days of cool reflection (reflection) you come to me and everything seems alright in these days of cold affections you sit by me and everything's fine this could be heaven for everyone this world could be fed this world could be fun this could be heaven for everyone this world could be free this world could be one in this world of cool deception just your smile can smooth my ride these troubled days of cruel rejection you come to me soothe my troubled mind yeah this could be heaven for everyone this world could be fed this world could be fun this should be love for everyone (yeah) this world should be free this world could be one we should bring love to our daughters and sons love love love love this could be heaven for everyone you know that (this could be heaven for everyone) yes (this could be heaven for everyone) this could be heaven for everyone listen what people do to other souls they take their lives destroy their goals their basic pride and dignity is stripped and torn and shown no pity when this should be heaven for everyone this could be heaven this could be heaven this could be heaven for everyone this could be heaven could be heaven for everyone this could be heaven (this could be heaven) this could be heaven could be heaven for everyone this could be heaven (this could be heaven) this could be heaven could be heaven for everyone this could be heaven this could be heaven for everyone this could be heaven this could be heaven this could be heaven for everyone for everyone\",\n", " 'original_lyrics': \"\\n\\nThis could be heaven\\nThis could be heaven\\nThis could be heaven\\nThis could be heaven\\nThis could be heaven for everyone\\n\\nIn these days of cool reflection (reflection)\\nYou come to me and everything seems alright\\nIn these days of cold affections\\nYou sit by me and everything's fine\\n\\nThis could be heaven for everyone\\nThis world could be fed\\nThis world could be fun\\nThis could be heaven for everyone\\nThis world could be free\\nThis world could be one\\n\\nIn this world of cool deception\\nJust your smile can smooth my ride\\nThese troubled days of cruel rejection\\nYou come to me, soothe my troubled mind\\nYeah this could be heaven for everyone\\n\\nThis world could be fed\\nThis world could be fun\\nThis should be love for everyone (yeah)\\nThis world should be free\\nThis world could be one\\nWe should bring love to our daughters and sons\\nLove, love, love, love\\nThis could be heaven for everyone\\n\\nYou know that\\n(this could be heaven for everyone)\\nYes!\\n(this could be heaven for everyone)\\n\\nThis could be heaven for everyone\\n\\nListen\\nWhat people do to other souls\\nThey take their lives, destroy their goals\\nTheir basic pride and dignity\\nIs stripped and torn and shown no pity\\nWhen this should be heaven for everyone\\n\\nThis could be heaven\\nThis could be heaven\\nThis could be heaven for everyone\\nThis could be heaven\\nCould be heaven for everyone\\nThis could be heaven\\n(this could be heaven)\\nThis could be heaven\\nCould be heaven for everyone\\nThis could be heaven\\n(this could be heaven)\\nThis could be heaven\\nCould be heaven for everyone\\nThis could be heaven\\nThis could be heaven for everyone\\nThis could be heaven\\nThis could be heaven\\nThis could be heaven...\\nFor everyone\\nFor everyone\\n\\n\"},\n", " {'_id': 1189994,\n", " 'lyrics': \"this could be heaven this could be heaven this could be heaven for everyone in these days of cool reflection you come to me and everything seems alright in these days of cold affections you sit by me - and everything's fine this could be heaven for everyone this world could be fed this world can be fun this could be heaven for everyone this world could be free this world can be one in this world of cool deception just your smile can smooth my ride these troubled days of cruel rejection hmm you come to me soothe my troubled mind yeah this could be heaven for everyone this world could be fed this world can be fun this should be love for everyone this world should be free this world can be one we should bring love to our daughters and sons love love love this could be heaven for everyone you know that this could be heaven for everyone this could be heaven for everyone listen - what people do to other souls they take their lives - destroy their goals their basic pride and dignity is stripped and torn and shown no pity when this should be heaven for everyone\",\n", " 'original_lyrics': \"\\n\\nThis could be heaven\\nThis could be heaven\\nThis could be heaven for everyone\\nIn these days of cool reflection\\nYou come to me and everything seems alright\\nIn these days of cold affections\\nYou sit by me - and everything's fine\\nThis could be heaven for everyone\\nThis world could be fed, this world can be fun\\nThis could be heaven for everyone\\nThis world could be free, this world can be one\\nIn this world of cool deception\\nJust your smile can smooth my ride\\nThese troubled days of cruel rejection, hmm\\nYou come to me, soothe my troubled mind\\nYeah, this could be heaven for everyone\\nThis world could be fed, this world can be fun\\nThis should be love for everyone\\nThis world should be free, this world can be one\\nWe should bring love to our daughters and sons\\nLove, love, love, this could be heaven for everyone\\nYou know that\\nThis could be heaven for everyone\\nThis could be heaven for everyone\\nListen - what people do to other souls\\nThey take their lives - destroy their goals\\nTheir basic pride and dignity\\nIs stripped and torn and shown no pity\\nWhen this should be heaven for everyone\\n\\n\"},\n", " {'_id': 1728756,\n", " 'lyrics': 'words and music by gene pitney i said \"hello mary lou goodbye heart sweet mary lou i\\'m so in love with you i knew mary lou we\\'d never part so hello mary lou goodbye heart\" you passed me by one sunny day flashed those big brown eyes my way and oo i wanted you forever more now i\\'m not one that gets around i swear my feet stuck to the ground and though i never did see you before i said \"hello mary lou goodbye heart sweet mary lou i\\'m so in love with you i knew mary lou we\\'d never part so hello mary lou goodbye heart\" so hello mary lou goodbye heart\" so hello mary lou goodbye heart\"',\n", " 'original_lyrics': '\\n\\nWords and music by gene pitney\\n\\nI said \"hello mary lou\\nGoodbye heart\\nSweet mary lou\\nI\\'m so in love with you\\nI knew mary lou\\nWe\\'d never part\\nSo hello mary lou\\nGoodbye heart\"\\n\\nYou passed me by one sunny day\\nFlashed those big brown eyes my way\\nAnd oo i wanted you forever more\\nNow i\\'m not one that gets around\\nI swear my feet stuck to the ground\\nAnd though i never did see you before\\n\\nI said \"hello mary lou\\nGoodbye heart\\nSweet mary lou\\nI\\'m so in love with you\\nI knew mary lou\\nWe\\'d never part\\nSo hello mary lou\\nGoodbye heart\"\\nSo hello mary lou\\nGoodbye heart\"\\nSo hello mary lou\\nGoodbye heart\"\\n\\n'},\n", " {'_id': 1320288,\n", " 'lyrics': \"i say hello mary lou (goodbye heart) sweet mary lou i'm so in love with you i knew mary lou we'd never part so hello mary lou (goodbye heart) you passed me by one sunny day flashed those big brown eyes my way ooh i wanted you forever more hey i'm not one that get's around swear my feet stuck to the ground and though i never did see you no more yeah neah i said hello mary lou (goodbye heart) sweet mary lou i'm so in love with you hey i knew mary lou we'd never part so hello mary lou (goodbye heart) so hello mary lou (goodbye heart) one more time yes hello mary lou (goodbye heart) hey wait a minute one minute ah i need my fucking water i don't care let's go right give us the right key for fuck's sake\",\n", " 'original_lyrics': \"\\n\\nI say hello Mary Lou (goodbye heart)\\nSweet Mary Lou I'm so in love with you\\nI knew Mary Lou we'd never part\\nSo hello Mary Lou (goodbye heart)\\nYou passed me by one sunny day\\nFlashed those big brown eyes my way\\nOoh, I wanted you forever more\\nHey, I'm not one that get's around\\nSwear my feet stuck to the ground\\nAnd though I never did see you no more\\nYeah neah\\nI said hello Mary Lou (goodbye heart)\\nSweet Mary Lou I'm so in love with you\\nHey, I knew Mary Lou we'd never part\\nSo hello Mary Lou (goodbye heart)\\nSo hello Mary Lou (goodbye heart)\\nOne more time\\nYes, hello Mary Lou (goodbye heart)\\nHey, wait a minute\\nOne minute\\nAh, I need my fucking water\\nI don't care, let's go\\nRight, give us the right key for fuck's sake\\n\\n\"},\n", " {'_id': 1963659,\n", " 'lyrics': 'i said \"hello mary lou goodbye heart sweet mary lou i\\'m so in love with you i knew mary lou we\\'d never part so hello mary lou goodbye heart\" you passed me by one sunny day flashed those big brown eyes my way and oo i wanted you forever more now i\\'m not one that gets around i swear my feet stuck to the ground and though i never did see you before i said \"hello mary lou goodbye heart sweet mary lou i\\'m so in love with you i knew mary lou we\\'d never part so hello mary lou goodbye heart\" so hello mary lou goodbye heart\" so hello mary lou goodbye heart\"',\n", " 'original_lyrics': '\\n\\nI said \"Hello Mary Lou\\nGoodbye heart\\nSweet Mary Lou\\nI\\'m so in love with you\\nI knew Mary Lou\\nWe\\'d never part\\nSo Hello Mary Lou\\nGoodbye heart\"\\n\\nYou passed me by one sunny day\\nFlashed those big brown eyes my way\\nAnd oo I wanted you forever more\\nNow I\\'m not one that gets around\\nI swear my feet stuck to the ground\\nAnd though I never did see you before\\n\\nI said \"Hello Mary Lou\\nGoodbye heart\\nSweet Mary Lou\\nI\\'m so in love with you\\nI knew Mary Lou\\nWe\\'d never part\\nSo Hello Mary Lou\\nGoodbye heart\"\\nSo Hello Mary Lou\\nGoodbye heart\"\\nSo Hello Mary Lou\\nGoodbye heart\"\\n\\n'},\n", " {'_id': 1937633,\n", " 'lyrics': 'i said \"hello mary lou goodbye heart sweet mary lou i\\'m so in love with you i knew mary lou we\\'d never part so hello mary lou goodbye heart\" you passed me by one sunny day flashed those big brown eyes my way and oo i wanted you forever more now i\\'m not one that gets around i swear my feet stuck to the ground and though i never did see you before i said \"hello mary lou goodbye heart sweet mary lou i\\'m so in love with you i knew mary lou we\\'d never part so hello mary lou goodbye heart\" so hello mary lou goodbye heart\" so hello mary lou goodbye heart\"',\n", " 'original_lyrics': '\\n\\nI said \"Hello Mary Lou\\nGoodbye heart\\nSweet Mary Lou\\nI\\'m so in love with you\\nI knew Mary Lou\\nWe\\'d never part\\nSo Hello Mary Lou\\nGoodbye heart\"\\n\\nYou passed me by one sunny day\\nFlashed those big brown eyes my way\\nAnd oo I wanted you forever more\\nNow I\\'m not one that gets around\\nI swear my feet stuck to the ground\\nAnd though I never did see you before\\n\\nI said \"Hello Mary Lou\\nGoodbye heart\\nSweet Mary Lou\\nI\\'m so in love with you\\nI knew Mary Lou\\nWe\\'d never part\\nSo Hello Mary Lou\\nGoodbye heart\"\\nSo Hello Mary Lou\\nGoodbye heart\"\\nSo Hello Mary Lou\\nGoodbye heart\"\\n\\n'},\n", " {'_id': 1681743,\n", " 'lyrics': \"just walking down the street one cloudless sunny day just minding my business thinking my thoughts nothing much to say when suddenly i got hit imagine my surprise your smile came up and zapped me right between the eyes i'd never seen anything to compare with your smile i'd never seen anything that came within miles my heart got hijacked by you stuck in the traffic stuck at the lights what do i see some stupid bimbo in a fast car next to me she takes off imagine my disgust like a bat out of hell i get to eat her dust i never had known anything to compare with her laugh i'd never known anything that counted by half my heart got hijacked by you hijack my heart hijack my heart steals my heart hijack my heart hijack my heart look at the cities look at the streets what do you see look at the faces look at the people they all want to be suddenly hit by something they don't get to choose it comes out of nowhere right out of the blue i'd never seen anything to compare with your smile i'd never seen anything that came within miles my heart got hijacked by you hijack my heart now you really got a hold on me you hijacked my heart don't you know you won't let me be stole my heart threw away the key oooee baby what's become of me you hijacked my heart now you really got a hold on me hijack my heart\",\n", " 'original_lyrics': \"\\n\\nJust walking down the street one cloudless sunny day\\nJust minding my business thinking my thoughts\\nNothing much to say\\nWhen suddenly I got hit\\nImagine my surprise\\nYour smile came up and zapped me right between the eyes\\nI'd never seen anything to compare with your smile\\nI'd never seen anything that came within miles\\nMy heart got hijacked by you\\n\\nStuck in the traffic\\nStuck at the lights what do I see\\nSome stupid bimbo in a fast car next to me\\nShe takes off\\nImagine my disgust\\nLike a bat out of hell\\nI get to eat her dust\\nI never had known anything to compare with her laugh\\nI'd never known anything that counted by half\\nMy heart got hijacked by you\\n\\nHijack my heart\\nHijack my heart\\nSteals my heart\\n\\nHijack my heart\\nHijack my heart\\n\\nLook at the cities\\nLook at the streets what do you see\\nLook at the faces look at the people they all want to be\\nSuddenly hit by something they don't get to choose\\nIt comes out of nowhere\\nRight out of the blue\\nI'd never seen anything to compare with your smile\\nI'd never seen anything that came within miles\\nMy heart got hijacked by you\\n\\nHijack my heart\\nNow you really got a hold on me\\nYou hijacked my heart\\nDon't you know you won't let me be\\nStole my heart\\nThrew away the key\\nOooee baby what's become of me\\nYou hijacked my heart\\nNow you really got a hold on me\\nHijack my heart\\n\\n\"},\n", " {'_id': 2075506,\n", " 'lyrics': \"just walking down the street one cloudless sunny day just minding my business thinking my thoughts nothing much to say when suddenly i got hit imagine my suprise your smile came up and zapped me right between the eyes i'd never seen anything to compare with your smile i'd never seen anything that came within miles my heart got hijacked by you stuck in the traffic stuck at the lights what do i see some stupid bimbo in a fast car next to me she takes off imagine my disgust like a bat out of hell i get to eat her dust i never had known anything to compare with her laugh i'd never known anything that counted by half my heart got hijacked by you hijack my heart hijack my heart steals my heart hijack my heart hijack my heart look at the cities look at the streets what do you see look at the faces look at the people they all want to be suddenly hit by something they don't get to choose it comes out of nowhere right out of the blue i'd never seen anything to compare with your smile i'd never seen anything that came within miles my heart got hijacked by you hijack my heart now you really got a hold on me you hijacked my heart don't you know you won't let me be stole my heart threw away the key oooee baby what's become of me you hijacked my heart now you really got a hold on me hijack my heart\",\n", " 'original_lyrics': \"\\n\\nJust walking down the street one cloudless sunny day\\nJust minding my business thinking my thoughts\\nNothing much to say\\nWhen suddenly I got hit\\nImagine my suprise\\nYour smile came up and zapped me right between the eyes\\nI'd never seen anything to compare with your smile\\nI'd never seen anything that came within miles\\nMy heart got hijacked by you\\nStuck in the traffic\\nStuck at the lights what do I see\\nSome stupid bimbo in a fast car next to me\\nShe takes off\\nImagine my disgust\\nLike a bat out of hell\\nI get to eat her dust\\nI never had known anything to compare with her laugh\\nI'd never known anything that counted by half\\nMy heart got hijacked by you\\nHijack my heart\\nHijack my heart\\nSteals my heart\\nHijack my heart\\nHijack my heart\\nLook at the cities\\nLook at the streets what do you see\\nLook at the faces look at the people they all want to be\\nSuddenly hit by something they don't get to choose\\nIt comes out of nowhere\\nRight out of the blue\\nI'd never seen anything to compare with your smile\\nI'd never seen anything that came within miles\\nMy heart got hijacked by you\\nHijack my heart\\nNow you really got a hold on me\\nYou hijacked my heart\\nDon't you know you won't let me be\\nStole my heart\\nThrew away the key\\nOooee baby what's become of me\\nYou hijacked my heart\\nNow you really got a hold on me\\nHijack my heart\\n\\n\"},\n", " {'_id': 1472531,\n", " 'lyrics': \"(freddie) when all the salt is taken from the sea i stand dethroned i'm naked and i plea the way your finger points so solidly is anybody there to believe in me to hear my plea and take care of me how can i go on from day to day who can make me strong in every way where can i be safe where can i belong in this great big world of sadness how can i forget those beautiful dreams that we shared they're lost and they're nowhere to be found how can i go on (monserrat) sometimes i start to crawl but in my eyes i cannot see when people fly by me i hide myself down near the ground is anybody there to look for me (freddie) la-da-da-da-da precious love hear my plea-yeah how can i go on from day to day who can make me strong in every way where can i be safe where can i belong in this great big world of sadness how can i forget those beautiful dreams that we shared\",\n", " 'original_lyrics': \"\\n\\n(Freddie)\\nWhen all the salt is taken from the sea\\nI stand dethroned\\nI'm naked and I plea\\nThe way your finger points so solidly\\nIs anybody there to believe in me\\nTo hear my plea\\nAnd take care of me\\n\\n[Chorus:]\\nHow can I go on\\nFrom day to day\\nWho can make me strong\\nIn every way\\nWhere can I be safe\\nWhere can I belong\\nIn this great big world\\nOf sadness\\nHow can I forget\\nThose beautiful dreams that we shared\\nThey're lost and they're nowhere to be found\\nHow can I go on\\n(Monserrat)\\nSometimes I start to crawl\\nBut in my eyes\\nI cannot see\\nWhen people fly by me\\nI hide myself down near the ground\\nIs anybody there\\nTo look for me\\n(Freddie)\\nLa-da-da-da-da precious love\\nHear my plea-yeah!\\n\\n[Chorus:]\\nHow can I go on\\nFrom day to day\\nWho can make me strong\\nIn every way\\nWhere can I be safe\\nWhere can I belong\\nIn this great big world\\nOf sadness\\nHow can I forget\\nThose beautiful dreams that we shared\\n\\n\"},\n", " {'_id': 1183761,\n", " 'lyrics': \"words and music by phil spector ellie greenwich and jeff barry this is the way i always dreamed it would be the way that it iso-ohwhen you are holding me i never had a love of my own maybe that's why when we're all alone i can hear music i can hear music sounds of the city baby seem to disappear oh well i can hear music sweet sweet music when ever you touch me baby whenever you're near loving you it keeps me satisfied and i can't explainoh nothe way i'm feeling inside you look at me we kiss and then i close my eyes and here it comes again i can hear music i can hear music sounds of the city baby seem to disappear oh well i can hear music sweet sweet music when ever you touch me baby whenever you're near i can hear music sweet sweet music when ever you touch me baby whenever you're near i can hear music sweet sweet music when ever you touch me baby whenever you're near\",\n", " 'original_lyrics': \"\\n\\nWords and music by Phil Spector, Ellie Greenwich and Jeff Barry\\nThis is the way I always dreamed it would be\\nThe way that it is,o-oh,when you are holding me\\nI never had a love of my own\\nMaybe that's why when we're all alone\\nI can hear music\\nI can hear music\\nSounds of the city baby seem to disappear\\nOh well I can hear music\\nSweet sweet music\\nWhen ever you touch me baby\\nWhenever you're near\\nLoving you it keeps me satisfied\\nAnd I can't explain,oh no,the way I'm feeling inside\\nYou look at me we kiss and then\\nI close my eyes and here it comes again\\nI can hear music\\nI can hear music\\nSounds of the city baby seem to disappear\\nOh well I can hear music\\nSweet sweet music\\nWhen ever you touch me baby\\nWhenever you're near\\nI can hear music\\nSweet sweet music\\nWhen ever you touch me baby\\nWhenever you're near\\nI can hear music\\nSweet sweet music\\nWhen ever you touch me baby\\nWhenever you're near\\n\\n\"},\n", " {'_id': 310050,\n", " 'lyrics': \"i can't live with you but i can't live without you i can't let you stay ooh but i can't live if you go away i don't know just how it goes all i know is i can't live with you yeah i'm having a hard time i'm walking a fine line between hope and despair you may think that i don't care but i travelled a long road to get hold of my sorrow i tried to catch a dream but nothing's what it seems love is saying baby it's all right when deep inside you're really petrified lover turns to hater on this escalator i can't live with you but i can't live without you i can't let you stay ooh but i can't live if you go away i don't know just how it goes all i know is i can't live with you we're stuck in a bad place we're trapped in a rat race and we can't escape maybe there's been some mistake we're trying to make a high score we're walking through a closed door and nobody's winning we're just sinning against ourselves hold on baby tell me it's all right anger's breaking from the hurt inside passions screaming hotter doing what we got to do - yeah i can't live with you i can't live with you i can't live i can't live i can't i can't live with you but baby i'll never ever leave you i can't live with you but i can't live without you because i'm in love with you oooh and everything about you i can't live with you no i just can't live i just can't live i can't live with you yeah and i can't live without you through the madness through the tears we've still got each other for a million years - yeah oooh yeah yeah - i can't live without you - yeah yeah i can't live without you yeah yeah oh oh oh i can't live without you i can't live without you i can't live without you oh oh i can't live without you baby baby baby without you i can't live without you\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nI can't live with you\\nBut I can't live without you\\nI can't let you stay\\nOoh but I can't live if you go away\\nI don't know just how it goes\\nAll I know is I can't live with you\\n\\n[Verse 1]\\nYeah I'm having a hard time\\nI'm walking a fine line between hope and despair\\nYou may think that I don't care\\nBut I travelled a long road to get hold of my sorrow\\nI tried to catch a dream\\nBut nothing's what it seems\\nLove is saying baby it's all right\\nWhen deep inside you're really petrified\\nLover turns to hater\\nOn this escalator\\n\\n[Chorus]\\nI can't live with you\\nBut I can't live without you\\nI can't let you stay\\nOoh but I can't live if you go away\\nI don't know just how it goes\\nAll I know is I can't live with you\\n\\n[Verse 2]\\nWe're stuck in a bad place\\nWe're trapped in a rat race\\nAnd we can't escape\\nMaybe there's been some mistake\\nWe're trying to make a high score\\nWe're walking through a closed door\\nAnd nobody's winning\\nWe're just sinning against ourselves\\n\\n[Bridge]\\nHold on baby tell me it's all right\\nAnger's breaking from the hurt inside\\nPassions screaming hotter\\nDoing what we got to do - yeah\\n\\nI can't live with you I can't live with you\\nI can't live I can't live\\nI can't I can't live with you\\nBut baby I'll never ever leave you\\n\\nI can't live with you\\nBut I can't live without you\\nBecause I'm in love with you\\nOooh and everything about you\\n\\nI can't live with you\\nNo I just can't live I just can't live\\nI can't live with you\\nYeah and I can't live without you\\nThrough the madness through the tears\\nWe've still got each other\\nFor a million years - yeah\\n\\nOooh yeah\\nYeah - I can't live without you - yeah yeah\\nI can't live without you\\nYeah yeah oh oh oh\\nI can't live without you\\nI can't live without you\\nI can't live without you\\nOh oh I can't live without you baby baby baby\\nWithout you\\nI can't live without you\\n\\n\"},\n", " {'_id': 2223019,\n", " 'lyrics': \"i can't live with you but i can't live without you i can't let you stay ooh but i can't live if you go away i don't know just how it goes all i know is i can't live with you yeah i'm having a hard time i'm walking a fine line between hope and despair you may think that i don't care but i travelled a long road to get hold of my sorrow i tried to catch a dream but nothing's what it seems love is saying baby it's all right when deep inside you're really petrified lover turns to hater on this escalator i can't live with you - yeah but i can't live without you i can't breathe if you stay but i can't bear you to go away i don't know what time it is all i know is i can't live with you we're stuck in a bad place we're trapped in a rat race and we can't escape maybe there's been some mistake we're trying to make a high score we're walking through a closed door and nobody's winning we're just sinning against ourselves hold on baby tell me it's all right anger's breaking from the hurt inside passions screaming hotter doin' what we gotta do - yeah i can't live with you i can't live with you i can't live i can't live i can't i can't live with you but baby i'll never ever leave you i can't live with you but i can't live without you cause i'm in love with you ooh and everything about you i can't live with you no i just can't live i just can't live i can't live with you yeah and i can't live without you through the madness through the tears we've still got each other for a million years - yeah ooh yeah yeah - i can't live without you - yeah yeah i can't live without you yeah yeah oh oh oh i can't live without you x3 oh oh i can't live without you baby baby baby without you i can't live without you\",\n", " 'original_lyrics': \"\\n\\nI can't live with you\\nBut I can't live without you\\nI can't let you stay\\nOoh but I can't live if you go away\\nI don't know just how it goes\\nAll I know is I can't live with you\\nYeah I'm having a hard time\\nI'm walking a fine line between hope and despair\\nYou may think that I don't care\\nBut I travelled a long road to get hold of my sorrow\\nI tried to catch a dream\\nBut nothing's what it seems\\nLove is saying baby it's all right\\nWhen deep inside you're really petrified\\nLover turns to hater\\nOn this escalator\\nI can't live with you - yeah\\nBut I can't live without you\\nI can't breathe if you stay\\nBut I can't bear you to go away\\nI don't know what time it is\\nAll I know is I can't live with you\\nWe're stuck in a bad place\\nWe're trapped in a rat race\\nAnd we can't escape\\nMaybe there's been some mistake\\nWe're trying to make a high score\\nWe're walking through a closed door\\nAnd nobody's winning\\nWe're just sinning against ourselves\\nHold on baby tell me it's all right\\nAnger's breaking from the hurt inside\\nPassions screaming hotter\\nDoin' what we gotta do - yeah\\nI can't live with you I can't live with you\\nI can't live I can't live\\nI can't I can't live with you\\nBut baby I'll never ever leave you\\nI can't live with you\\nBut I can't live without you\\nCause I'm in love with you\\nOoh and everything about you\\nI can't live with you\\nNo I just can't live I just can't live\\nI can't live with you\\nYeah and I can't live without you\\nThrough the madness through the tears\\nWe've still got each other\\nFor a million years - yeah\\nOoh yeah\\nYeah - I can't live without you - yeah yeah\\nI can't live without you\\nYeah yeah oh oh oh\\nI can't live without you x3\\nOh oh I can't live without you baby baby baby\\nWithout you\\nI can't live without you\\n\\n\"},\n", " {'_id': 1748384,\n", " 'lyrics': \"keep your chin up when you're feelin' lonely don't let them get you down ain't no use in your sitting all alone hangin' around for someone to call ooh they won't come knocking at all don't run and hide even if it hurts you inside so i said give as good as you get if you can't beat 'em join 'em you'd better do it 'cause it makes you feel good if you can't beat 'em join 'em you're never gonna help yourself come on get up you're feelin' good keep your fingers off my money don't try and pull me down you're takin' me out to wine and dine me tryin' to wind me 'round and around invite me to your little contract ha ha rumor has it that you could play dirty i'll tell you what i'll do about that i'm playing at the wrong game yeah if you can't beat 'em join 'em you'd better do it 'cause it makes you feel good if you can't beat 'em join 'em you're never gonna help yourself if you can't beat 'em join 'em you'd better do it 'cause it makes you feel good if you can't beat 'em join 'em it's everyone for themselves move on out\",\n", " 'original_lyrics': \"\\n\\nKeep your chin up when you're feelin' lonely\\nDon't let them get you down\\nAin't no use in your sitting all alone\\nHangin' around for someone to call\\nOoh they won't come knocking at all\\nDon't run and hide\\nEven if it hurts you inside\\nSo I said\\nGive as good as you get\\nIf you can't beat 'em, join 'em\\nYou'd better do it\\n'Cause it makes you feel good\\nIf you can't beat 'em, join 'em\\nYou're never gonna help yourself\\nCome on\\nGet up\\nYou're feelin' good\\nKeep your fingers off my money\\nDon't try and pull me down\\nYou're takin' me out to wine and dine me\\nTryin' to wind me 'round and around\\nInvite me to your little contract Ha! Ha!\\nRumor has it that you could play dirty\\nI'll tell you what I'll do about that\\nI'm playing at the wrong game yeah!\\nIf you can't beat 'em, join 'em\\nYou'd better do it\\n'Cause it makes you feel good\\nIf you can't beat 'em, join 'em\\nYou're never gonna help yourself\\nIf you can't beat 'em, join 'em\\nYou'd better do it\\n'Cause it makes you feel good\\nIf you can't beat 'em, join 'em\\nIt's everyone for themselves\\nMove on out\\n\\n\"},\n", " {'_id': 309022,\n", " 'lyrics': \"keep your chin up when you're feeling lonely don't let them get you down isn’t no use in sitting all alone hanging around for someone to call oh they won't come knocking at all don't run and hide even if it hurts you inside so i said give as good as you get if you can't beat them join them you better do it because it makes you feel good if you can't beat them join them you're never going to help yourself keep your fingers off my money don't try and pull me down you're taking me out to wine and dine me trying to wind me round and around invite me to your little contract ha ha rumor has it that you could play dirty i tell you what i'll do about that i'm playing at the wrong game yeah if you can't beat them join them you better do it because it makes you feel good if you can't beat them join them you're never going to help yourself if you can't beat them join them you've got to do it because it makes you feel good if you can't beat them join them it's everyone for themselves\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nKeep your chin up when you're feeling lonely\\nDon't let them get you down\\nIsn’t no use in sitting all alone\\nHanging around for someone to call\\nOh they won't come knocking at all\\nDon't run and hide even if it hurts you inside\\nSo I said give as good as you get\\n\\n[Chorus]\\nIf you can't beat them join them\\nYou better do it because it makes you feel good\\nIf you can't beat them join them\\nYou're never going to help yourself\\n\\n[Verse 2]\\nKeep your fingers off my money\\nDon't try and pull me down\\nYou're taking me out to wine and dine me\\nTrying to wind me round and around\\nInvite me to your little contract Ha! Ha!\\nRumor has it that you could play dirty\\nI tell you what I'll do about that\\nI'm playing at the wrong game yeah!\\n\\n[Chorus]\\nIf you can't beat them join them\\nYou better do it because it makes you feel good\\nIf you can't beat them join them\\nYou're never going to help yourself\\n\\n[Chorus]\\nIf you can't beat them join them\\nYou've got to do it because it makes you feel good\\nIf you can't beat them join them\\nIt's everyone for themselves\\n\\n\"},\n", " {'_id': 2095278,\n", " 'lyrics': \"i took my baby dancing to see a heavy band i never saw my baby 'till the encore she had the singer by the hand i didn't wanna cry 'cause i had to be cool i didn't wanna tell you that you're too cruel did you have to run off with that dog-gone fool all i gotta do is think about you ev'ry night and day i go crazy all i gotta do is get my hands on you you better stay away from me baby i wouldn't mind the postman if the neighbours didn't know or the gas man the electric man - man to fix the car i'd have to let it go but you had to bring me down for a rock 'n roll clone leave me like a sucker standing all alone did you have to run off with that rolling stone go ahead fool all i gotta do is think about you ev'ry night and day i go crazy all i gotta do is get my hands on you you better stay away from me baby so i ain't gonna go and see the rolling stones no more no more i don't wanna go and see queen no more no more so i ain't gonna go and see the rolling stones no more no more i don't wanna go and see queen no more no more i don't wanna hurt you like you've been a-hurting me but you know that i'll be watching rolling on the floor next time you're on tv had enough of your pretending that you know where it's at coming on to all the boys like a real spoilt brat to think that i nearly let you get away with all that no way man all i gotta do is think about you every night and day i go crazy all i gotta do is get my hands on you you better stay away from me baby ooh you'd better stay away from me baby baby baby crazy crazy crazy crazy\",\n", " 'original_lyrics': \"\\n\\nI took my baby dancing to see a heavy band\\nI never saw my baby 'till the encore\\nShe had the singer by the hand\\nI didn't wanna cry 'cause I had to be cool\\nI didn't wanna tell you that you're too cruel\\nDid you have to run off with that dog-gone fool?\\nAll I gotta do is think about you\\nEv'ry night and day I go crazy\\nAll I gotta do is get my hands on you\\nYou better stay away from me baby\\nI wouldn't mind the postman if the neighbours didn't know\\nOr the gas man the electric man - man to fix the car\\nI'd have to let it go\\nBut you had to bring me down for a rock 'n roll clone\\nLeave me like a sucker standing all alone\\nDid you have to run off with that rolling stone?\\nGo ahead fool!\\nAll I gotta do is think about you\\nEv'ry night and day I go crazy\\nAll I gotta do is get my hands on you\\nYou better stay away from me baby\\n\\nSo I ain't gonna go and see the Rolling Stones no more\\nNo more\\nI don't wanna go and see Queen no more no more\\nSo I ain't gonna go and see the Rolling Stones no more\\nNo more\\nI don't wanna go and see Queen no more no more\\nI don't wanna hurt you\\nLike you've been a-hurting me\\nBut you know that I'll be watching\\nRolling on the floor next time you're on TV\\nHad enough of your pretending that you know where it's at\\nComing on to all the boys like a real spoilt brat\\nTo think that I nearly let you get away with all that\\nNo way man\\nAll I gotta do is think about you\\nEvery night and day I go crazy\\nAll I gotta do is get my hands on you\\nYou better stay away from me baby\\nOoh you'd better stay away from me baby\\nBaby baby crazy crazy crazy crazy...\\n\\n\"},\n", " {'_id': 1516376,\n", " 'lyrics': \"queen the works i go crazy (may) i took my baby to see a heavy band but i never saw my baby 'till the encore she had the singer by the hand i didn't wanna cry 'cause i had to be cool i didn't wanna tell you that you're too cruel did you have to run off with that dog-gone fool all i gotta do is think about you ev'ry night and day i go crazy all i gotta do is get my hands on you you better stay away from me baby i wouldn't mind the postman if the neighbours didn't know or the gas man the electric man - man to fix the car i'd have to let it go but you had to bring me down for a rock 'n roll clone leave me like a sucker standing all alone did you have to run off with that rolling stone all i gotta do is think about you ev'ry night and day i go crazy all i gotta do is get my hands on you you better stay away from me baby so i ain't gonna go and see the rolling stones no more no more i don't wanna go see queen no more no more now i don't wanna hurt you like you been a-hurting me but you know that i'll be watching rolling on the floor next time you're on tv had enough of your pretending that you know where it's at coming on to all the boys like a real spoilt brat to think that i nearly let you get away with all that no way man all i gotta do is think about you ev'ry night and day i go crazy all i gotta do is get my hands on you\",\n", " 'original_lyrics': \"\\n\\nQueen\\nThe Works\\nI Go Crazy (May)\\nI took my baby to see a heavy band\\nBut I never saw my baby 'till the encore\\nShe had the singer by the hand\\nI didn't wanna cry 'cause I had to be cool\\nI didn't wanna tell you that you're too cruel\\nDid you have to run off with that dog-gone fool?\\nAll I gotta do is think about you\\nEv'ry night and day I go crazy\\nAll I gotta do is get my hands on you\\nYou better stay away from me baby\\nI wouldn't mind the postman if the neighbours didn't know\\nOr the gas man the electric man - man to fix the car\\nI'd have to let it go\\nBut you had to bring me down for a rock 'n roll clone\\nLeave me like a sucker standing all alone\\nDid you have to run off with that rolling stone?\\nAll I gotta do is think about you\\nEv'ry night and day I go crazy\\nAll I gotta do is get my hands on you\\nYou better stay away from me baby\\nSo I ain't gonna go and see the Rolling Stones no more\\nNo more\\nI don't wanna go see Queen no more no more\\nNow I don't wanna hurt you like you been a-hurting me\\nBut you know that I'll be watching\\nRolling on the floor next time you're on TV\\nHad enough of your pretending that you know where it's at\\nComing on to all the boys like a real spoilt brat\\nTo think that I nearly let you get away with all that\\nNo way man\\nAll I gotta do is think about you\\nEv'ry night and day I go crazy\\nAll I gotta do is get my hands on you\\n\\n\"},\n", " {'_id': 1343092,\n", " 'lyrics': \"i guess were falling out you stabbed your knife right in my back was it just something that i might have said does this mean we're falling out i guess this means that our love has fallen out if you wanna make a go i guess we're falling out it was just one gone and gone away i guess we're falling out guess we're falling out da da da i wanna stay (an ad-libbed verse) i guess we're falling out it was just one long race i guess we're falling out falling out yeah yeah yeah falling out falling out yeah two three four make it a whole a whole a hey on and on and on babe ohh yeah yeah it's a falling out hey make it a whole a whole a hey on and on and on babe ohh yeah yeah it's a falling out falling out yeah two three four i guess we're falling out it was just one gone and gone away i guess we're falling out guess we're falling out da da da i wanna stay\",\n", " 'original_lyrics': \"\\n\\nI Guess were Falling out\\nYou stabbed your knife right in my back\\nWas it just something that I might have said\\nDoes this mean we're falling out\\nI guess this means that our love has fallen out\\nIf you wanna make a go\\nI guess we're falling out\\nIt was just one gone and gone away\\nI guess we're falling out\\nGuess we're falling out\\nDa, da, da, I wanna stay\\n\\n(An ad-libbed verse)\\nI guess we're falling out\\nIt was just one long race\\nI guess we're falling out\\nFalling out\\nYeah, yeah, yeah, falling out, falling out, yeah\\nTwo, three, four\\nMake it a whole, a whole, a hey\\nOn, and on, and on babe\\nOhh\\nYeah, yeah, it's a\\nFalling out\\nHey\\nMake it a whole, a whole, a hey\\nOn, and on, and on babe\\nOhh\\nYeah, yeah it's a\\nFalling out, falling out, yeah\\nTwo, three, four\\nI guess we're falling out\\nIt was just one gone and gone away\\nI guess we're falling out\\nGuess we're falling out\\nDa, da, da, I wanna stay\\n\\n\"},\n", " {'_id': 1843874,\n", " 'lyrics': \"imagine there's no heaven it's easy if you try no hell below us above us only sky imagine all the people living for today imagine there's no countries it isn't hard to do nothing to kill or die for and no religion too imagine all the people living life in peace you you may say i'm a dreamer but i'm not the only one i hope some day you'll join us and the world will be as one imagine no possessions i wonder if you can no need for greed or hunger a brotherhood of man imagine all the people sharing all the world you you may say i'm a dreamer but i'm not the only one i hope some day you'll join us and the world will live as one\",\n", " 'original_lyrics': \"\\n\\nImagine there's no heaven\\nIt's easy if you try\\nNo hell below us\\nAbove us only sky\\nImagine all the people living for today\\nImagine there's no countries\\nIt isn't hard to do\\nNothing to kill or die for\\nAnd no religion too\\nImagine all the people living life in peace\\nYou, you may say\\nI'm a dreamer, but I'm not the only one\\nI hope some day you'll join us\\nAnd the world will be as one\\nImagine no possessions\\nI wonder if you can\\nNo need for greed or hunger\\nA brotherhood of man\\nImagine all the people sharing all the world\\nYou, you may say\\nI'm a dreamer, but I'm not the only one\\nI hope some day you'll join us\\nAnd the world will live as one\\n\\n\"},\n", " {'_id': 201716,\n", " 'lyrics': \"when the outside temperature rises and the meaning is oh so clear one thousand and one yellow daffodils begin to dance in front of you - oh dear are they trying to tell you something you're missing that one final screw you're simply not in the pink my dear to be honest you haven't got a clue i'm going slightly mad i'm going slightly mad it finally happened - happened it finally happened - ooh oh it finally happened - i'm slightly mad oh dear i'm one card short of a full deck i'm not quite the shilling one wave short of a shipwreck i'm not at my usual top billing i'm coming down with a fever i'm really out to sea this kettle is boiling over i think i'm a banana tree oh dear i'm going slightly mad i'm going slightly mad it finally happened happened it finally happened uh huh it finally happened i'm slightly mad - oh dear i'm knitting with only one needle unravelling fast its true i'm driving only three wheels these days but my dear how about you i'm going slightly mad i'm going slightly mad it finally happened it finally happened oh yes it finally happened i'm slightly mad just very slightly mad and there you have it\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nWhen the outside temperature rises\\nAnd the meaning is oh so clear\\nOne thousand and one yellow daffodils\\nBegin to dance in front of you - oh dear\\nAre they trying to tell you something?\\nYou're missing that one final screw\\nYou're simply not in the pink my dear\\nTo be honest you haven't got a clue\\n\\n[Chorus]\\nI'm going slightly mad\\nI'm going slightly mad\\nIt finally happened - happened\\nIt finally happened - ooh oh\\nIt finally happened - I'm slightly mad\\nOh dear!\\n\\n[Verse 2]\\nI'm one card short of a full deck\\nI'm not quite the shilling\\nOne wave short of a shipwreck\\nI'm not at my usual top billing\\nI'm coming down with a fever\\nI'm really out to sea\\nThis kettle is boiling over\\nI think I'm a banana tree\\n\\n[Chorus]\\nOh dear, I'm going slightly mad\\nI'm going slightly mad\\nIt finally happened, happened\\nIt finally happened uh huh\\nIt finally happened I'm slightly mad - oh dear!\\n\\n[Verse 3]\\nI'm knitting with only one needle\\nUnravelling fast its true\\nI'm driving only three wheels these days\\nBut my dear how about you?\\n\\n[Chorus]\\nI'm going slightly mad\\nI'm going slightly mad\\nIt finally happened\\nIt finally happened oh yes\\nIt finally happened\\nI'm slightly mad!\\nJust very slightly mad!\\nAnd there you have it!\\n\\n\"},\n", " {'_id': 2259405,\n", " 'lyrics': \"queen classic queen i'm going slightly mad (queen) when the outside temperature rises and the meaning is oh so clear one thousand and one yellow daffodils begin to dance in front of you - oh dear are they trying to tell you something you're missing that one final screw you're simply not in the pink my dear to be honest you haven't got a clue i'm going slightly mad i'm going slightly mad it finally happened - happened it finally happened - ooh oh it finally happened - i'm slightly mad oh dear i'm one card short of a full deck i'm not quite the shilling one wave short of a shipwreck i'm not at my usual top billing i'm coming down with a fever i'm really out to sea this kettle is boiling over i think i'm a banana tree oh dear i'm going slightly mad i'm going slightly mad it finally happened happened it finally happened uh huh it finally happened i'm slightly mad - oh dear i'm knitting with only one needle unravelling fast its true i'm driving only three wheels these days but my dear how about you i'm going slightly mad i'm going slightly mad it finally happened it finally happened oh yes it finally happened i'm slightly mad just very slightly mad and there you have it\",\n", " 'original_lyrics': \"\\n\\nQueen\\nClassic Queen\\nI'm Going Slightly Mad (Queen)\\nWhen the outside temperature rises\\nAnd the meaning is oh so clear\\nOne thousand and one yellow daffodils\\nBegin to dance in front of you - oh dear\\nAre they trying to tell you something?\\nYou're missing that one final screw\\nYou're simply not in the pink my dear\\nTo be honest you haven't got a clue\\nI'm going slightly mad\\nI'm going slightly mad\\nIt finally happened - happened\\nIt finally happened - ooh oh\\nIt finally happened - I'm slightly mad\\nOh dear!\\nI'm one card short of a full deck\\nI'm not quite the shilling\\nOne wave short of a shipwreck\\nI'm not at my usual top billing\\nI'm coming down with a fever\\nI'm really out to sea\\nThis kettle is boiling over\\nI think I'm a banana tree\\nOh dear, I'm going slightly mad\\nI'm going slightly mad\\nIt finally happened, happened\\nIt finally happened uh huh\\nIt finally happened I'm slightly mad - oh dear!\\nI'm knitting with only one needle\\nUnravelling fast its true\\nI'm driving only three wheels these days\\nBut my dear how about you?\\nI'm going slightly mad\\nI'm going slightly mad\\nIt finally happened\\nIt finally happened oh yes\\nIt finally happened\\nI'm slightly mad!\\nJust very slightly mad!\\nAnd there you have it!\\n\\n\"},\n", " {'_id': 308921,\n", " 'lyrics': \"the machine of a dream such a clean machine with the pistons a pumping and the hubcaps all gleam when i'm holding your wheel all i hear is your gear when my hand's on your grease gun oh it's like a disease son i'm in love with my car got to feel for my automobile get a grip on my boy racer roll bar such a thrill when your radials squeal told my girl i just had to forget her rather buy me a new carburetor so she made tracks saying this is the end now cars don't talk back they're just four wheeled friends now when i'm holding your wheel all i hear is your gear when i'm cruising in overdrive don't have to listen to no run of the mill talk jive i'm in love with my car got to feel for my automobile i'm in love with my car string back gloves in my automolove\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nThe machine of a dream\\nSuch a clean machine\\nWith the pistons a pumping\\nAnd the hubcaps all gleam\\nWhen I'm holding your wheel\\nAll I hear is your gear\\nWhen my hand's on your grease gun\\nOh it's like a disease son\\n\\nI'm in love with my car\\nGot to feel for my automobile\\nGet a grip on my boy racer roll bar\\nSuch a thrill when your radials squeal\\n\\nTold my girl I just had to forget her\\nRather buy me a new carburetor\\nSo she made tracks saying this is the end now\\nCars don't talk back\\nThey're just four wheeled friends now\\n\\nWhen I'm holding your wheel\\nAll I hear is your gear\\nWhen I'm cruising in overdrive\\nDon't have to listen to no run of the mill talk jive\\n\\n[Outro]\\nI'm in love with my car\\nGot to feel for my automobile\\nI'm in love with my car\\nString back gloves in my automolove\\n\\n\"},\n", " {'_id': 913611,\n", " 'lyrics': \"in my defence what is there to say all the mistakes we made must be faced today it's not easy now knowing where to start while the world we love tears itself apart i'm just a singer with a song how can i try to right the wrong for just a singer with a melody i'm caught in between with a fading dream in my defence what is there to say we destroy the love - it's our way we never listen enough never face the truth then like a passing song love is here and then it's gone i'm just a singer with a song how can i try to right the wrong for just a singer with a melody i'm caught in between with a fading dream i'm just a singer with a song how can i try to right the wrong i'm just a singer with a melody i'm caught in between with a fading dream caught in between with a fading dream caught in between with a fading dream oh what on earth oh what on earth how do i try do we live or die oh help me god please help me\",\n", " 'original_lyrics': \"\\n\\nIn my defence what is there to say\\nAll the mistakes we made must be faced today\\nIt's not easy now knowing where to start\\nWhile the world we love tears itself apart\\nI'm just a singer with a song\\nHow can I try to right the wrong\\nFor just a singer with a melody\\nI'm caught in between\\nWith a fading dream\\nIn my defence what is there to say\\nWe destroy the love - it's our way\\nWe never listen enough never face the truth\\nThen like a passing song\\nLove is here and then it's gone\\nI'm just a singer with a song\\nHow can I try to right the wrong\\nFor just a singer with a melody\\nI'm caught in between\\nWith a fading dream\\nI'm just a singer with a song\\nHow can I try to right the wrong\\nI'm just a singer with a melody\\nI'm caught in between with a fading dream\\nCaught in between with a fading dream\\nCaught in between with a fading dream\\nOh what on earth\\nOh what on earth\\nHow do I try\\nDo we live or die\\nOh help me God\\nPlease help me\\n\\n\"},\n", " {'_id': 309029,\n", " 'lyrics': \"monday the start of my holiday freedom for just one week feels good to get away ooh tuesday i saw her down on the beach i stood and watched a while and she looked and smiled at me wednesday i didn't see her i hoped that she'd be back tomorrow and then on thursday my luck had changed she stood there all alone i went and asked her name i never thought that this could happen to me in only seven days it would take a hundred or more for memories to fade i wish friday could last forever i held her close to me i couldn't bear to leave her there saturday just twenty four hours oh no i'm going back home on sunday ooh so sad alone\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nMonday the start of my holiday\\nFreedom for just one week\\nFeels good to get away ooh\\n\\nTuesday I saw her down on the beach\\nI stood and watched a while\\nAnd she looked and smiled at me\\n\\nWednesday I didn't see her\\nI hoped that she'd be back tomorrow\\nAnd then on Thursday my luck had changed\\nShe stood there all alone\\nI went and asked her name\\nI never thought that this could happen to me\\nIn only seven days\\nIt would take a hundred or more\\nFor memories to fade\\n\\nI wish Friday could last forever\\nI held her close to me\\nI couldn't bear to leave her there\\n\\nSaturday just twenty four hours\\nOh no I'm going back home on Sunday\\nOoh so sad alone\\n\\n\"},\n", " {'_id': 308918,\n", " 'lyrics': \"it's so easy but i can't do it so risky - but i got to chance it it's so funny there's nothing to laugh about my money that's all you want to talk about i can see what you want me to be but i'm no fool it's in the lap of the gods wo wo la la la wo i can see what you want me to be but i'm no fool no beginning there's no ending there's no meaning in my pretending believe me life goes on and on and on forgive me when i ask you where do i belong you say i can't set you free from me but that's not true it's in the lap of the gods wo wo la la la wo wo wo la la wah wah ooh but that's not true\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nIt's so easy, but I can't do it\\nSo risky - But I got to chance it\\nIt's so funny, there's nothing to laugh about\\nMy money, that's all you want to talk about\\nI can see what you want me to be\\nBut I'm no fool\\n\\n[Chorus]\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nI can see what you want me to be\\nBut I'm no fool\\n\\n[Verse 2]\\nNo beginning, there's no ending\\nThere's no meaning in my pretending\\nBelieve me, life goes on and on and on\\nForgive me when I ask you where do I belong\\nYou say I can't set you free from me\\nBut that's not true\\n\\n[Chorus]\\n\\n[Outro]\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nWo wo la la\\nWah wah ooh\\nBut that's not true\\n\\n\"},\n", " {'_id': 2126730,\n", " 'lyrics': \"its so easy but i can't do it so risky but i gotta chance it its so funny theres nothing to laugh about my money that's all you want to talk about i can see what you want me to be but i'm no fool its in the lap of the gods wo wo la la la i can see what you want me to be but i'm no fool no beginning theres no ending theres no meaning in my pretending believe me life goes on and on and on forgive me when i ask you where do i belong you say i (you can do it) can't (you can do it you can go and) set you free from me but that's not true its in the lap of the gods wo wo la la la i can see what you want me to be but i'm no fool its in the lap of the gods wo wo la la la wo wo wo la la wo wo wooh but that's not true its in the lap of the gods wo wo la la la wo wo wo la la wo wo wooh but i'm no fool its in the lap of the gods wo wo la la la wo wo wo la la wo wo wooh its in the lap of the gods wo wo la la la wo wo wo la la wo wo wooh but i'm no fool its in the lap of the gods wo wo la la la wo wo wo la la wo wo wooh\",\n", " 'original_lyrics': \"\\n\\nIts so easy but I can't do it\\nSo risky but I gotta chance it\\nIts so funny theres nothing to laugh about\\nMy money that's all you want to talk about\\nI can see what you want me to be\\nBut I'm no fool\\n\\nIts in the lap of the gods\\nWo wo la la la\\nI can see what you want me to be\\nBut I'm no fool\\n\\nNo beginning theres no ending\\nTheres no meaning in my pretending\\nBelieve me life goes on and on and on\\nForgive me when I ask you where do I belong\\nYou say I (you can do it) can't (you can do it\\nYou can go and) set you free from me\\nBut that's not true\\n\\nIts in the lap of the gods\\nWo wo la la la\\nI can see what you want me to be\\nBut I'm no fool\\nIts in the lap of the gods\\nWo wo la la la wo\\nWo wo la la wo wo wooh\\nBut that's not true\\nIts in the lap of the gods\\nWo wo la la la wo\\nWo wo la la wo wo wooh\\nBut I'm no fool\\nIts in the lap of the gods\\nWo wo la la la wo\\nWo wo la la wo wo wooh\\nIts in the lap of the gods\\nWo wo la la la wo\\nWo wo la la wo wo wooh\\nBut I'm no fool\\nIts in the lap of the gods\\nWo wo la la la wo\\nWo wo la la wo wo wooh\\n\\n\"},\n", " {'_id': 1989801,\n", " 'lyrics': \"it's so easy but i can't do it so risky but i gotta chance it it's so funny there's nothing to laugh about my money that's all you want to talk about i can see what you want me to be but i'm no fool it's in the lap of the gods wo wo la la la wo i can see what you want me to be but i'm no fool no beginning there's no ending there's no meaning in my pretending believe me life goes on and on and forgive me when i ask you where do i belong you say i (you can do it) can't (you can do it) set you free from me but that's not true it's in the lap of the gods wo wo la la la wo i can see what you want me to be but i'm no fool it's in the lap of the gods wo wo la la la wo wo wo la la wah wah oooh but that's not true it's in the lap of the gods wo wo la la la wo wo wo la la wah wah oooh but i'm no fool it's in the lap of the gods wo wo la la la wo wo wo la la wah wah oooh it's in the lap of the gods wo wo la la la wo wo wo la la wah wah oooh but i'm no fool it's in the lap of the gods wo wo la la la wo wo wo la la wah wah oooh\",\n", " 'original_lyrics': \"\\n\\nIt's so easy, but I can't do it\\nSo risky, but I gotta chance it\\nIt's so funny, there's nothing to laugh about\\nMy money, that's all you want to talk about\\nI can see what you want me to be\\nBut I'm no fool\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nI can see what you want me to be\\nBut I'm no fool\\nNo beginning, there's no ending\\nThere's no meaning in my pretending\\nBelieve me, life goes on and on and\\nForgive me when I ask you where do I belong\\nYou say I (you can do it)\\nCan't (you can do it) set you free from me\\nBut that's not true\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nI can see what you want me to be\\nBut I'm no fool\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nWo wo la la\\nWah wah oooh\\nBut that's not true\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nWo wo la la\\nWah wah oooh\\nBut I'm no fool\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nWo wo la la\\nWah wah oooh\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nWo wo la la\\nWah wah oooh\\nBut I'm no fool\\nIt's in the lap of the Gods\\nWo wo la la la wo\\nWo wo la la\\nWah wah oooh\\n\\n\"},\n", " {'_id': 309699,\n", " 'lyrics': \"just think of all those hungry mouths we have to feed take a look at all the suffering we breed so many lonely faces scattered all around searching for what they need is this the world we created what did we do it for is this the world we invaded against the law so it seems in the end is this what we're all living for today the world that we created you know that everyday a helpless child is born who needs some loving care inside a happy home somewhere a wealthy man is sitting on his throne waiting for life to go by is this the world we created we made it on our own is this the world we devasted right to the bone if there is a god in the sky looking down what can he think of what we've done to the world that he created\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nJust think of all those hungry mouths we have to feed\\nTake a look at all the suffering we breed\\nSo many lonely faces scattered all around\\nSearching for what they need\\n\\n[Chorus 1]\\nIs this the world we created\\nWhat did we do it for\\nIs this the world we invaded\\nAgainst the law\\nSo it seems in the end\\nIs this what we're all living for today\\nThe world that we created\\n\\n[Verse 2]\\nYou know that everyday a helpless child is born\\nWho needs some loving care inside a happy home\\nSomewhere a wealthy man is sitting on his throne\\nWaiting for life to go by\\n\\n[Chorus 2]\\nIs this the world we created, we made it on our own\\nIs this the world we devasted, right to the bone\\nIf there is a God in the sky looking down\\nWhat can he think of what we've done\\nTo the world that He created\\n\\n\"},\n", " {'_id': 1246340,\n", " 'lyrics': \"queen live at wembley is this the world we created (mercury may) just look of all those hungry mouths we have to feed take a look at all the suffering we breed so many lonely faces scattered all around searching for what they need is this the world we created we made it on our own is this the world we invaded against the law so it seems in the end is this what we are living for today world that we created you know that every day a helpless child is born who needs some loving care inside a happy home somewhere a wealthy man is sitting on his throne waiting for life to go by is this the world we created we made it on our own is this the world we devasted right to the bone if there's a god in the sky looking down what can he think of what we've done to the world that he created\",\n", " 'original_lyrics': \"\\n\\nQueen\\nLive At Wembley\\nIs This The World We Created? (Mercury, May)\\nJust look of all those hungry mouths we have to feed\\nTake a look at all the suffering we breed\\nSo many lonely faces scattered all around\\nSearching for what they need\\nIs this the world we created, we made it on our own\\nIs this the world we invaded\\nAgainst the law\\nSo it seems in the end\\nIs this what we are living for today\\nWorld that we created\\nYou know that every day a helpless child is born\\nWho needs some loving care inside a happy home\\nSomewhere a wealthy man is sitting on his throne\\nWaiting for life to go by\\nIs this the world we created, we made it on our own\\nIs this the world we devasted, right to the bone\\nIf there's a God in the sky looking down\\nWhat can he think of what we've done\\nTo the world that He created\\n\\n\"},\n", " {'_id': 323371,\n", " 'lyrics': \"it's a beautiful day the sun is shining i feel good and no-one's gonna to stop me now oh yeah it's a beautiful day i feel good i feel right i feel good i feel right and no-one no-one's gonna stop me now no-one's gonna stop me now no-one's gonna stop me now yeah no-one's gonna stop me now no no no no-one's gonna stop me now no-one's gonna stop me now yeah no-one no-one no-one's gonna stop me now no-one no-one's gonna stop me now no-one's gonna stop me now yeah no no no no-one's gonna stop me now no-one's gonna stop me now no-one no-one yeah\",\n", " 'original_lyrics': \"\\n\\nIt's a beautiful day\\nThe sun is shining\\nI feel good\\nAnd no-one's gonna to stop me now, oh yeah\\n\\nIt's a beautiful day\\nI feel good, I feel right\\nI feel good, I feel right\\nAnd no-one, no-one's gonna stop me now\\nNo-one's gonna stop me now\\nNo-one's gonna stop me now yeah\\nNo-one's gonna stop me now no no no\\n\\nNo-one's gonna stop me now\\nNo-one's gonna stop me now\\nYeah\\n\\nNo-one, no-one, no-one's gonna stop me now\\nNo-one\\n\\nNo-one's gonna stop me now\\nNo-one's gonna stop me now yeah no no no\\n\\nNo-one's gonna stop me now\\nNo-one's gonna stop me now\\nNo-one, no-one\\nYeah\\n\\n\"},\n", " {'_id': 309625,\n", " 'lyrics': \"i don't want my freedom there's no reason for living with a broken heart this is a tricky situation i've only got myself to blame it's just a simple fact of life it can happen to anyone you win - you lose it's a chance you have to take with love oh yeah i fell in love but now you say it's over and i'm falling apart it's a hard life to be true lovers together to love and live forever in each others hearts it's a long hard fight to learn to care for each other to trust in one another right from the start when you're in love i try and mend the broken pieces i try to fight back the tears they say it's just a state of mind but it happens to everyone how it hurts deep inside when your love has cut you down to size life is tough - on your own now i'm waiting for something to fall from the skies i'm waiting for love it's a hard life true lovers together to love and live forever in each others hearts it's a long hard fight to learn to care for each other to trust in one another right from the start when you're in love it's a hard life in a world that's filled with sorrow there are people searching for love in every way it's a long hard fight but i'll always live for tomorrow i'll look back on myself and say i did it for love yes i did it for love for love i did it for love\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nI don't want my freedom\\nThere's no reason for living with a broken heart\\n\\n[Verse 1]\\nThis is a tricky situation\\nI've only got myself to blame\\nIt's just a simple fact of life\\nIt can happen to anyone\\nYou win - you lose\\nIt's a chance you have to take with love\\nOh yeah, I fell in love\\nBut now you say it's over and I'm falling apart\\n\\n[Chorus]\\nIt's a hard life\\nTo be true lovers together\\nTo love and live forever in each others hearts\\nIt's a long hard fight\\nTo learn to care for each other\\nTo trust in one another right from the start\\nWhen you're in love\\n\\n[Verse 2]\\nI try and mend the broken pieces\\nI try to fight back the tears\\nThey say it's just a state of mind\\nBut it happens to everyone\\nHow it hurts deep inside\\nWhen your love has cut you down to size\\nLife is tough - on your own\\nNow I'm waiting for something to fall from the skies\\nI'm waiting for love\\n\\n[Chorus]\\nIt's a hard life\\nTrue lovers together\\nTo love and live forever in each others hearts\\nIt's a long hard fight\\nTo learn to care for each other\\nTo trust in one another right from the start\\nWhen you're in love\\n\\n[Solo]\\n\\n[Outro]\\nIt's a hard life\\nIn a world that's filled with sorrow\\nThere are people searching for love in every way\\nIt's a long hard fight\\nBut I'll always live for tomorrow\\nI'll look back on myself and say I did it for love\\nYes, I did it for love\\nFor love\\nI did it for love\\n\\n\"},\n", " {'_id': 1171181,\n", " 'lyrics': \"queen greatest hits ii it's a hard life (mercury) i don't want my freedom there's no reason for living with a broken heart this is a tricky situation -- i've only got myself to blame it's just a simple fact of life it can happen to anyone -- you win -- you lose it's a chance you have to take with love oh yeah -- i fell in love but now you say it's over and i'm falling apart it's a hard life to be true lovers together to love and live forever in each others hearts -- it's a long hard fight to learn to care for each other to trust in one another right from the start when you're in love -- i try and mend the broken pieces i try to fight back the tears they say it's just a state of mind but it happens to everyone -- how it hurts -- deep inside when your love has cut you down to size life is tough -- on your own now i'm waiting for something to fall from the skies waiting for love yes it's a hard life two lovers together to love and live forever in each others hearts it's a long hard fight to learn to care for each other to trust in one another -- right from the start when you're in love -- yes it's a hard life in a world that's filled with sorrow there are people searching for love in every way -- it's a long hard fight -- but i'll always live for tomorrow i'll look back on myself and say i did it for love yes i did it for love -- for love -- oh i did it for love\",\n", " 'original_lyrics': \"\\n\\nQueen\\nGreatest Hits II\\nIt's A Hard Life (Mercury)\\nI don't want my freedom\\nThere's no reason for living with a broken heart\\nThis is a tricky situation --\\nI've only got myself to blame\\nIt's just a simple fact of life\\nIt can happen to anyone --\\nYou win -- you lose\\nIt's a chance you have to take with love\\nOh yeah -- I fell in love\\nBut now you say it's over and I'm falling apart\\nIt's a hard life\\nTo be true lovers together\\nTo love and live forever in each others hearts --\\nIt's a long hard fight\\nTo learn to care for each other\\nTo trust in one another right from the start\\nWhen you're in love --\\nI try and mend the broken pieces\\nI try to fight back the tears\\nThey say it's just a state of mind\\nBut it happens to everyone --\\nHow it hurts -- deep inside\\nWhen your love has cut you down to size\\nLife is tough -- on your own\\nNow I'm waiting for something to fall from the skies\\nWaiting for love\\nYes it's a hard life\\nTwo lovers together\\nTo love and live forever in each others hearts\\nIt's a long hard fight\\nTo learn to care for each other\\nTo trust in one another -- right from the start\\nWhen you're in love --\\nYes it's a hard life\\nIn a world that's filled with sorrow\\nThere are people searching for love in every way --\\nIt's a long hard fight --\\nBut I'll always live for tomorrow\\nI'll look back on myself and say I did it for love\\nYes I did it for love -- for love -- oh I did it for love\\n\\n\"},\n", " {'_id': 1970005,\n", " 'lyrics': \"queen a kind of magic a kind of magic it's a kind of magic it's a kind of magic a kind of magic one dream one soul one prize one goal one golden glance of what should be it's a kind of magic one shaft of light that shows the way no mortal man can win this day it's a mind of magic the bell that rings inside your mind it's a challenging the doors of time it's a kind of magic the waiting seems eternity the day will dawn of sanity it's a kind of magic there can be only one this rage that lasts a thousand years will soon be gone this flame that burns inside of me i'm hearing secret harmonies it's a kind of magic the bell that rings inside your mind is challenging the doors of time it's a kind of magic it's a kind of magic this rage that lasts a thousand years will soon be will soon be will soon be gone this is a kind of magic tere can only be one this life that lasts a thousand years will soon be gone magic - it's a kind of magic it's a kind of magic magic magic magic magic it's magic it's a kind of magic\",\n", " 'original_lyrics': \"\\n\\nQueen\\nA Kind Of Magic\\nA Kind Of Magic\\nIt's a kind of magic\\nIt's a kind of magic\\nA kind of magic\\nOne dream, one soul, one prize\\nOne goal, one golden glance of what should be\\nIt's a kind of magic\\nOne shaft of light that shows the way\\nNo mortal man can win this day\\nIt's a mind of magic\\nThe bell that rings inside your mind\\nIt's a challenging the doors of time\\nIt's a kind of magic\\nThe waiting seems eternity\\nThe day will dawn of sanity\\nIt's a kind of magic\\nThere can be only one\\nThis rage that lasts a thousand years\\nWill soon be gone\\nThis flame that burns inside of me\\nI'm hearing secret harmonies\\nIt's a kind of magic\\nThe bell that rings inside your mind\\nIs challenging the doors of time\\nIt's a kind of magic\\nIt's a kind of magic\\nThis rage that lasts a thousand years\\nWill soon be will soon be\\nWill soon be gone\\nThis is a kind of magic\\nTere can only be one\\nThis life that lasts a thousand years\\nWill soon be gone\\nMagic - it's a kind of magic\\nIt's a kind of magic\\nMagic, magic, magic, magic\\nIt's magic\\nIt's a kind of magic\\n\\n\"},\n", " {'_id': 107721,\n", " 'lyrics': 'i want it all i want it all i want it all and i want it now adventure seeker on an empty street just an alley creeper light on his feet a young fighter screaming with no time for doubt with the pain and anger can\\'t see a way out \"it isn\\'t much i\\'m asking\" i heard him say \"got to find me a future move out of my way\" i want it all i want it all i want it all and i want it now i want it all i want it all i want it all and i want it now listen all you people come gather round i got to get me a game plan got to shake you to the ground just give me what i know is mine people do you hear me just give me the sign it isn\\'t much i\\'m asking if you want the truth here\\'s to the future for the dreams of youth i want it all i want it all i want it all and i want it now i want it all i want it all i want it all and i want it now i\\'m a man with a one-track mind so much to do in one lifetime (people do you hear me) not a man for compromise and \\'wheres\\' and \\'whys\\' and living lies so i\\'m living it all (yes i\\'m living it all) and i\\'m giving it all (and i\\'m giving it all) it ain\\'t much i\\'m asking if you want the truth here\\'s to the future hear the cry of youth i want it all i want it all i want it all and i want it now i want it all i want it all i want it all and i want it now i want it i want it i want it',\n", " 'original_lyrics': '\\n\\n[Intro: Queen]\\nI want it all, I want it all, I want it all, and I want it now\\n\\n[Verse 1: Freddie Mercury]\\nAdventure seeker on an empty street,\\nJust an alley creeper, light on his feet\\nA young fighter screaming, with no time for doubt\\nWith the pain and anger can\\'t see a way out\\n\"It isn\\'t much I\\'m asking,\" I heard him say\\n\"Got to find me a future. Move out of my way\"\\n\\n[Chorus: Queen]\\nI want it all, I want it all, I want it all, and I want it now\\nI want it all, I want it all, I want it all, and I want it now\\n\\n[Verse 2: Freddie Mercury]\\nListen all you people, come gather round\\nI got to get me a game plan, got to shake you to the ground\\nJust give me what I know is mine\\nPeople do you hear me? Just give me the sign\\nIt isn\\'t much I\\'m asking, if you want the truth\\nHere\\'s to the future for the dreams of youth\\n\\n[Chorus: Queen]\\nI want it all, I want it all, I want it all, and I want it now\\nI want it all, I want it all, I want it all, and I want it now\\n\\n[Bridge: Brian May (and Freddie Mercury)]\\nI\\'m a man with a one-track mind\\nSo much to do in one lifetime (people do you hear me?)\\nNot a man for compromise and \\'wheres\\' and \\'whys\\' and living lies\\nSo I\\'m living it all (yes I\\'m living it all)\\nAnd I\\'m giving it all (and I\\'m giving it all)\\n\\n[Guitar Solo]\\n\\n[Verse 3: Freddie Mercury]\\nIt ain\\'t much I\\'m asking, if you want the truth\\nHere\\'s to the future, hear the cry of youth\\n\\n[Chorus: Queen]\\nI want it all, I want it all, I want it all, and I want it now\\nI want it all, I want it all, I want it all, and I want it now\\n\\nI want it\\n\\n[Outro: Freddie Mercury]\\nI want it, I want it!\\n\\n'},\n", " {'_id': 1989867,\n", " 'lyrics': \"i want it all (heyey) i want it all i want it all and i want it now adventure seeker on an empty street just an alley creeper light on his feet a young fighter screaming with no time for doubt with the pain and anger can't see a way out it ain't much i'm asking i heard him say gotta find me a future move out of my way i want it all i want it all i want it all and i want it now i want it all i want it all i want it all and i want it now listen all you people come gather round i gotta get me a game plan gotta shake you to the ground just give me what i know is mine people do you hear me just give me the sign it ain't much i'm asking if you want the truth here's to the future for the dreams of youth i want it all i want it all i want it all and i want it now i want it all (yes i want it all) i want it all (hey) i want it all and i want it now i'm a man with a one track mind so much to do in one life time people do you hear me not a man for compromise and where's and why's and living lies so i'm living it all yes i'm living it all and i'm giving it all and i'm giving it all it ain't much i'm asking if you want the truth here's to the future hear the cry of youth i want it all i want it all i want it all and i want it now i want it all (yeah yeah yeah) i want it all i want it all and i want it now and i want it now i want it i want it\",\n", " 'original_lyrics': \"\\n\\nI want it all (Heyey)\\nI want it all\\nI want it all\\nAnd I want it now\\n\\nAdventure seeker\\nOn an empty street\\nJust an alley creeper\\nLight on his feet\\nA young fighter screaming\\nWith no time for doubt\\nWith the pain and anger\\nCan't see a way out\\nIt ain't much I'm asking\\nI heard him say\\nGotta find me a future\\nMove out of my way\\n\\nI want it all\\nI want it all\\nI want it all\\nAnd I want it now\\nI want it all\\nI want it all\\nI want it all\\nAnd I want it now\\n\\nListen all you people\\nCome gather round\\nI gotta get me a game plan\\nGotta shake you to the ground\\nJust give me\\nWhat I know is mine\\nPeople do you hear me\\nJust give me the sign\\nIt ain't much I'm asking\\nIf you want the truth\\nHere's to the future\\nFor the dreams of youth\\n\\nI want it all\\nI want it all\\nI want it all\\nAnd I want it now\\nI want it all (Yes, I want it all)\\nI want it all (Hey)\\nI want it all\\nAnd I want it now\\n\\nI'm a man with a one track mind\\nSo much to do in one life time\\nPeople do you hear me\\nNot a man for compromise\\nAnd where's and why's and living lies\\nSo I'm living it all\\nYes I'm living it all\\nAnd I'm giving it all\\nAnd I'm giving it all\\n\\nIt ain't much I'm asking\\nIf you want the truth\\nHere's to the future\\nHear the cry of youth\\nI want it all\\nI want it all\\nI want it all\\nAnd I want it now\\nI want it all (Yeah yeah yeah)\\nI want it all\\nI want it all\\nAnd I want it now\\n\\nAnd I want it\\nNow\\nI want it\\nI want it\\n\\n\"},\n", " {'_id': 1209993,\n", " 'lyrics': \"adventure seeker on an empty street just an alley creeper light on his feet a young fighter screaming with no time for doubt with the pain and anger can't see a way out it ain't much i'm asking i heard him say gotta find me a future move out of my way i want it all i want it all i want it all and i want it now i want it all i want it all i want it all and i want it now listen all you people come gather round i gotta get me a game plan gotta shake you to the ground just give me what i know is mine people do you hear me just give me the sign it ain't much i'm asking if you want the truth here's to the future for the dreams of youth i want it all (give it all) i want it all i want it all and i want it now i want it all (yes i want it all) i want it all (hey) i want it all and i want it now i'm a man with a one track mind so much to do in one life time (people do you hear me) not a man for compromise and where's and why's and living lies so i'm living it all (yes i'm living it all) and i'm giving it all (and i'm giving it all) yeah yeah yeah yeah yeah yeah i want it all all all all it ain't much i'm asking if you want the truth here's to the future hear the cry of youth (hear the cry hear the cry of youth) i want it all i want it all i want it all and i want it now i want it all (yeah yeah yeah) i want it all i want it all and i want it now i want it now i want it i want it\",\n", " 'original_lyrics': \"\\n\\nAdventure seeker on an empty street\\nJust an alley creeper light on his feet\\nA young fighter screaming with no time for doubt\\nWith the pain and anger can't see a way out\\nIt ain't much I'm asking I heard him say\\nGotta find me a future move out of my way\\nI want it all I want it all I want it all and I want it now\\nI want it all I want it all I want it all and I want it now\\nListen all you people come gather round\\nI gotta get me a game plan gotta shake you to the ground\\nJust give me what I know is mine\\nPeople do you hear me just give me the sign\\nIt ain't much I'm asking if you want the truth\\nHere's to the future for the dreams of youth\\nI want it all (give it all) I want it all I want it all and I want it now\\nI want it all (yes I want it all) I want it all (hey)\\nI want it all and I want it now\\nI'm a man with a one track mind\\nSo much to do in one life time (people do you hear me)\\nNot a man for compromise and where's and why's and living lies\\nSo I'm living it all (yes I'm living it all)\\nAnd I'm giving it all (and I'm giving it all)\\nYeah yeah\\nYeah yeah yeah yeah\\nI want it all all all all\\nIt ain't much I'm asking if you want the truth\\nHere's to the future\\nHear the cry of youth (hear the cry hear the cry of youth)\\nI want it all I want it all I want it all and I want it now\\nI want it all (yeah yeah yeah) I want it all I want it all and I want it\\nNow\\nI want it\\nNow\\nI want it I want it\\n\\n\"},\n", " {'_id': 1988913,\n", " 'lyrics': 'you can\\'t stop it you can\\'t stop it you can\\'t stop it the world is in my pocket you can\\'t stop it you can\\'t stop it you can\\'t stop it i want to profit you got what i want and i need it right now give it to me baby i don\\'t care how i hold my money with my left got the world in my right pocket smoke a stoke in my right in between counting my profits poker face as i soak up the taste of display of women on my sofa doing the type of things i love so much but so what i\\'m sleazy it\\'s not easy being joe smut with more bucks than you can count more than what\\'s in your clutch i could fund a small war and start a recession the big dog the boss hog what i want is the question i want it all i want it all i need it all right now i want it all i gotta get it i got gots to get it yo- i want it all i want it all i need it all right now i want it all i want it all and i want it now you got what i want and i need it right now give it to me baby i don\\'t care how i want it all i want it all i want it all i want it all if i don\\'t get what i want then i\\'ll take it in blood the queasy thug whose greed and lust just like cheap drugs that keep me buzzed the heat and fuzz couldn\\'t touch me i\\'m out of reach because i\\'m eating lunch with a shady bunch about to meet the judge when people see me they point and whisper \"he\\'s corrupt\" he couldn\\'t care less he\\'s fearless he\\'ll give the reaper hugs and as a kid he never took crap from no one mud on his face such a disgrace cussin at grown-ups buddy you\\'re a boy make a big noise playin\\' in the street gonna be a big man someday you got mud on yo\\' face you big disgrace kickin\\' your can all over the place i want it all i want it all i need it all right now i want it all i gotta get it i got gots to get it yo- i want it all i want it all i need it all right now i want it all i want it all and i want it now don\\'t you know who i am i\\'m a big boss with big balls everybody knows me i\\'m a big deal you should kneel and crawl when you approach me i got big bucks big cars i\\'m bigger than all the universe and its stars i could buy your life whatever it costs name your price give me what i need then get lost i could buy the blue from the sky i\\'m a rich hog give me it now i\\'m not the guy you want to piss off by any means i get what i want and i want it all (rock with me guitar please i’m egotistical i’m a narcissist i’m a big deal power and profit yeah power and profit) you got what i want and i need it right now give it to me baby i don\\'t care how i got the world in my pocket and it\\'s still not enough for me i want it all and i want it right now i want it all and i want it right now i want it all and i want it right now i want it all and i want it right now i want it all and i want it right now and i want it right now i want it all i need it and i don\\'t care how i gotta get it i got gots to get it now i could feel it coming it\\'s any moment now i want it all and i want it now it\\'s so intense i’m breaking you can\\'t hold me down i gotta get it i got gots to get it now i could feel it coming it\\'s any moment now i want it all and i want it now you can’t stop it (i want it all) you can’t stop it i want to profit the world is in my pocket (right now) you can’t stop it (i want it all) you can’t stop it you can’t stop it i want to profit you can’t stop it (i want it all) you can’ stop it i want to profit the world is in my pocket (right now) you can’t stop it (i want it all) you can’t stop it you can\\'t stop it (i want it all and i want it now) i want to profit you can’t stop it (i want it all) you can’ stop it i want to profit the world is in my pocket (right now) you can’t stop it (i want it all) you can’t stop it you can\\'t stop it (i want it all and i want it now) i want to profit',\n", " 'original_lyrics': '\\n\\nYou can\\'t stop it, you can\\'t stop it, you can\\'t stop it, the world is in my pocket\\nYou can\\'t stop it, you can\\'t stop it, you can\\'t stop it, I want to profit\\nYou got what I want and I need it right now, give it to me baby I don\\'t care how\\n\\nI hold my money with my left, got the world in my right pocket\\nSmoke a stoke in my right in between counting my profits\\nPoker face as I soak up the taste of display of women on my sofa\\nDoing the type of things I love so much\\nBut so what, I\\'m sleazy it\\'s not easy being Joe Smut\\nWith more bucks than you can count, more than what\\'s in your clutch\\nI could fund a small war and start a recession, the big dog, the boss hog\\nWhat I want is the question:\\n\\nI want it all, I want it all, I need it all right now, I want it all\\nI gotta get it, I got gots to get it, yo-\\nI want it all, I want it all, I need it all right now\\nI want it all, I want it all and I want it now\\n\\nYou got what I want and I need it right now, give it to me baby\\nI don\\'t care how\\nI want it all, I want it all\\nI want it all, I want it all\\n\\nIf I don\\'t get what I want then I\\'ll take it in blood the queasy thug\\nWhose greed and lust just like cheap drugs that keep me buzzed\\nThe heat and fuzz couldn\\'t touch me I\\'m out of reach because\\nI\\'m eating lunch with a shady bunch, about to meet the judge\\nWhen people see me, they point and whisper \"he\\'s corrupt\"\\nHe couldn\\'t care less, he\\'s fearless, he\\'ll give the reaper hugs\\nAnd as a kid he never took crap from no one\\nMud on his face, such a disgrace, cussin at grown-ups\\n\\nBuddy you\\'re a boy make a big noise\\nPlayin\\' in the street gonna be a big man someday\\nYou got mud on yo\\' face\\nYou big disgrace\\nKickin\\' your can all over the place\\n\\nI want it all, I want it all, I need it all right now\\nI want it all, I gotta get it, I got gots to get it, yo-\\nI want it all, I want it all I need it all right now\\nI want it all, I want it all and I want it now\\n\\nDon\\'t you know who I am? I\\'m a big boss with big balls, everybody knows me\\nI\\'m a big deal, you should kneel, and crawl when you approach me\\nI got big bucks, big cars, I\\'m bigger than all the universe and its stars\\nI could buy your life whatever it costs\\nName your price, give me what I need then get lost\\nI could buy the blue from the sky I\\'m a rich hog\\nGive me it now, I\\'m not the guy you want to piss off\\nBy any means, I get what I want and I want it all\\n\\n(Rock with me, guitar please. I’m egotistical. I’m a narcissist. I’m a big deal\\nPower and profit, yeah, power and profit.)\\n\\nYou got what I want and I need it right now, give it to me baby I don\\'t care how\\nI got the world in my pocket and it\\'s still not enough for me\\nI want it all and I want it right now\\nI want it all and I want it right now\\nI want it all and I want it right now\\nI want it all and I want it right now\\nI want it all and I want it right now\\nAnd I want it right now\\n\\nI want it all, I need it and I don\\'t care how\\nI gotta get it, I got gots to get it now\\nI could feel it coming, it\\'s any moment now\\nI want it all and I want it now\\nIt\\'s so intense I’m breaking, you can\\'t hold me down\\nI gotta get it, I got gots to get it now\\nI could feel it coming, it\\'s any moment now\\nI want it all and I want it now\\n\\nYou can’t stop it (I want it all) you can’t stop it\\nI want to profit, the world is in my pocket (right now)\\nYou can’t stop it (I want it all) you can’t stop it\\nYou can’t stop it, I want to profit\\n\\nYou can’t stop it (I want it all) you can’ stop it\\nI want to profit, the world is in my pocket (right now)\\nYou can’t stop it (I want it all) you can’t stop it\\nYou can\\'t stop it (I want it all and I want it now), I want to profit\\n\\nYou can’t stop it (I want it all) you can’ stop it\\nI want to profit, the world is in my pocket (right now)\\nYou can’t stop it (I want it all) you can’t stop it\\nYou can\\'t stop it (I want it all and I want it now), I want to profit\\n\\n'},\n", " {'_id': 309671,\n", " 'lyrics': \"i want to break free i want to break free i want to break free from your lies you are so self satisfied i don't need you i have got to break free god knows god knows i want to break free i've fallen in love i've fallen in love for the first time and this time i know it's for real i've fallen in love yeah god knows god knows i've fallen in love it's strange but it's true yeah i can't get over the way you love me like you do but i have to be sure when i walk out that door oh how i want to be free baby oh how i want to be free oh how i want to break free but life still goes on i can't get used to living without living without living without you by my side i don't want to live alone hey god knows got to make it on my own so baby can't you see i've got to break free i have got to break free i want to break free yeah i want i want i want i want to break free\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI want to break free\\nI want to break free\\nI want to break free from your lies\\nYou are so self satisfied I don't need you\\nI have got to break free\\nGod knows, God knows I want to break free\\n\\n[Verse 2]\\nI've fallen in love\\nI've fallen in love for the first time\\nAnd this time I know it's for real\\nI've fallen in love, yeah\\nGod knows, God knows I've fallen in love\\n\\n[Bridge]\\nIt's strange but it's true, yeah\\nI can't get over the way you love me like you do\\nBut I have to be sure\\nWhen I walk out that door\\nOh how I want to be free, baby\\nOh how I want to be free\\nOh how I want to break free\\n\\n[Verse 3]\\nBut life still goes on\\nI can't get used to living without, living without\\nLiving without you by my side\\nI don't want to live alone, hey\\nGod knows, got to make it on my own\\nSo baby can't you see?\\nI've got to break free\\n\\n[Outro]\\nI have got to break free\\nI want to break free, yeah\\nI want, I want, I want, I want to break free\\n\\n\"},\n", " {'_id': 1360069,\n", " 'lyrics': \"i want to break free i want to break free i want to break free from your lies you're so self satisfied i don't need you i've got to break free god knows god knows i want to break free i've fallen in love i've fallen in love for the first time and this time i know it's for real i've fallen in love god knows god knows i've fallen in love it's strange but it's true hey i can't get over the way you love me like you do but i have to be sure when i walk out that door oh how i want to be free baby oh how i want to be free oh how i want to break free but life still goes on i can't get used to living without living without living without you by my side i don't want to live alone god knows got to make it on my own so baby can't you see i've got to break free i've got to break free i want to break free i want i want i want i want to break free i want to break i want to break i want to break free god knows i want i want god knows i want i want to break free i want to break free i want to break free all we hear is radio gaga you just gotta be strong and believe in yourself forget all the sadness 'cause love is all you need\",\n", " 'original_lyrics': \"\\n\\nI want to break free, I want to break free\\nI want to break free from your lies\\nYou're so self satisfied, I don't need you\\nI've got to break free\\nGod knows\\nGod knows I want to break free\\nI've fallen in love\\nI've fallen in love for the first time\\nAnd this time I know it's for real\\nI've fallen in love\\nGod knows\\nGod knows I've fallen in love\\nIt's strange but it's true, hey\\nI can't get over the way\\nYou love me like you do\\nBut I have to be sure\\nWhen I walk out that door\\nOh, how I want to be free, baby\\nOh, how I want to be free\\nOh, how I want to break free\\nBut life still goes on\\nI can't get used to living without\\nLiving without\\nLiving without you by my side\\nI don't want to live alone\\nGod knows, got to make it on my own\\nSo baby can't you see\\nI've got to break free\\nI've got to break free\\nI want to break free\\nI want, I want, I want\\nI want to break free\\nI want to break\\nI want to break, I want to break free\\nGod knows, I want, I want\\nGod knows, I want, I want to break free\\nI want to break free\\nI want to break free\\nAll we hear is radio gaga\\nYou just gotta be strong and believe in yourself\\nForget all the sadness\\n'Cause love is all you need\\n\\n\"},\n", " {'_id': 1844011,\n", " 'lyrics': \"i've fallen in love yeah god knows god knows i've fallen in love it's strange but it's true hey i can get over the way you love me like you do but i have to be sure when i walk out that door oh how i want to break free baby oh how i want to break free oh i want to break free but life still goes on i can't get used to living without living without living without you by my side i don't want to live alone hey god knows got to make it on my own so baby can´t you see i've got to break free i've got to break free i want to break free yeah i want i want i want i want to break free\",\n", " 'original_lyrics': \"\\n\\nI've fallen in love, yeah\\nGod knows\\nGod knows I've fallen in love\\nIt's strange but it's true\\nHey , I can get over the way you love me\\nLike you do\\nBut I have to be sure\\nWhen I walk out that door\\nOh, how I want to break free, baby\\nOh, how I want to break free\\nOh, I want to break free\\nBut life still goes on\\nI can't get used to living without\\nLiving without, living without you\\nBy my side\\nI don't want to live alone, hey\\nGod knows\\nGot to make it on my own\\nSo baby can´t you see\\nI've got to break free\\nI've got to break free\\nI want to break free, yeah\\nI want, I want, I want\\nI want to break free\\n\\n\"},\n", " {'_id': 1962538,\n", " 'lyrics': \"i want to break free i want to break free i want to break free from your lies you're so self satisfied i don't need you i've got to break free god knows god knows i want to break free i've fallen in love i've fallen in love for the first time and this time i know it's for real i've fallen in love yea god knows god knows i've fallen in love it's strange but it's true hey yea i can't get over the way you love me like you do but i have to be sure when i walk out that door oh how i want to be free baby oh how i want to be free oh how i want to break free but life still goes on i can't get used to livin' without livin' without livin' without you by my side i don't want to live alone hey god knows got to make it on my own so baby can't you see i've got to break free i've got to break free i want to break free yea i want i want i want i want to break free\",\n", " 'original_lyrics': \"\\n\\nI want to break free\\nI want to break free\\nI want to break free from your lies\\nYou're so self satisfied, I don't need you\\nI've got to break free\\nGod knows, God knows I want to break free\\nI've fallen in love\\nI've fallen in love for the first time\\nAnd this time I know it's for real\\nI've fallen in love yea\\nGod knows, God knows I've fallen in love\\nIt's strange but it's true, hey yea\\nI can't get over the way you love me like you do\\nBut I have to be sure\\nWhen I walk out that door\\nOh how I want to be free baby\\nOh how I want to be free\\nOh how I want to break free\\nBut life still goes on\\nI can't get used to livin' without livin' without\\nLivin' without you by my side\\nI don't want to live alone, hey\\nGod knows, got to make it on my own\\nSo baby can't you see\\nI've got to break free\\nI've got to break free\\nI want to break free, yea\\nI want, I want, I want\\nI want to break free \\n\\n\"},\n", " {'_id': 310167,\n", " 'lyrics': \"i was born to love you with every single beat of my heart yes i was born to take care of you every single day i was born to love you with every single beat of my heart yes i was born to take care of you every single day of my life you are the one for me i am the man for you you were made for me you're my ecstasy if i was given every opportunity i'd kill for your love so take a chance with me let me romance with you i'm caught in a dream and my dream's come true it's so hard to believe this is happening to me an amazing feeling coming through i want to love you i love every little thing about you i want to love you love you love you born - to love you born - to love you yes i was born to love you born - to love you born - to love you every single day - of my life an amazing feeling coming through yes i was born to love you every single day of my life go i love you babe yes i was born to love you i want to love you love you love you i want to love you i get so lonely lonely lonely yeah i want to love you yeah give it to me\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nI was born to love you\\nWith every single beat of my heart\\nYes, I was born to take care of you\\nEvery single day\\nI was born to love you\\nWith every single beat of my heart\\nYes, I was born to take care of you\\nEvery single day of my life\\n\\n[Verse 1]\\nYou are the one for me\\nI am the man for you\\nYou were made for me\\nYou're my ecstasy\\nIf I was given every opportunity\\nI'd kill for your love\\n\\n[Verse 2]\\nSo take a chance with me\\nLet me romance with you\\nI'm caught in a dream\\nAnd my dream's come true\\nIt's so hard to believe\\nThis is happening to me\\nAn amazing feeling\\nComing through\\n\\n[Chorus]\\n\\n[Verse 3]\\nI want to love you\\nI love every little thing about you\\nI want to love you, love you, love you\\nBorn - to love you\\nBorn - to love you\\nYes I was born to love you\\nBorn - to love you\\nBorn - to love you\\nEvery single day - of my life\\n\\n[Solo]\\n\\nAn amazing feeling\\nComing through\\n\\n[Chorus]\\n\\nYes I was born to love you\\nEvery single day of my life\\n\\n[Verse 4]\\nGo, I love you babe\\nYes I was born to love you\\nI want to love you, love you, love you\\nI want to love you\\nI get so lonely, lonely, lonely\\nYeah, I want to love you\\nYeah, give it to me\\n\\n\"},\n", " {'_id': 1173259,\n", " 'lyrics': \"queen made in heaven i was born to love you (freddie mercury) i was born to love you with every single beat of my heart yes i was born to take care of you every single day (chorus) i was born to love you with every single beat of my heart yes i was born to take care of you every single day of my life you are the one for me i am the man for you you were made for me you're my ecstasy if i was given every opportunity i'd kill for your love so take a chance with me let me romance with you i'm caught in a dream and my dream's come true it's so hard to believe this is happening to me an amazing feeling coming through - (chorus) i wanna love you i love every little thing about you i wanna love you love you love you born - to love you born - to love you yes i was born to love you born - to love you born - to love you every single day - of my life an amazing feeling comin' through (chorus) yes i was born to love you every single day of my life go i love you babe yes i was born to love you i wanna love you love you love you i wanna love you i get so lonely lonely lonely yeah i wan't to love you yeah give it to me\",\n", " 'original_lyrics': \"\\n\\nQueen\\nMade In Heaven\\nI Was Born To Love You (Freddie Mercury)\\nI was born to love you\\nWith every single beat of my heart\\nYes, I was born to take care of you\\nEvery single day...\\n\\n(chorus:)\\nI was born to love you\\nWith every single beat of my heart\\nYes, I was born to take care of you\\nEvery single day of my life\\nYou are the one for me\\nI am the man for you\\nYou were made for me\\nYou're my ecstasy\\nIf I was given every opportunity\\nI'd kill for your love\\nSo take a chance with me\\nLet me romance with you\\nI'm caught in a dream\\nAnd my dream's come true\\nIt's so hard to believe\\nThis is happening to me\\nAn amazing feeling\\nComing through -\\n\\n(chorus)\\nI wanna love you\\nI love every little thing about you\\nI wanna love you, love you, love you\\nBorn - to love you\\nBorn - to love you\\nYes I was born to love you\\nBorn - to love you\\nBorn - to love you\\nEvery single day - of my life\\nAn amazing feeling\\nComin' through\\n\\n(chorus)\\nYes I was born to love you\\nEvery single day of my life\\nGo, I love you babe\\nYes, I was born to love you\\nI wanna love you, love you, love you\\nI wanna love you\\nI get so lonely, lonely, lonely\\nYeah, I wan't to love you\\nYeah, give it to me\\n\\n\"},\n", " {'_id': 1641252,\n", " 'lyrics': \"the prison band was there and they began to wail the band was jumpin' and the joint began to swing you should've heard those knocked out jailbirds sing let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock spider murphy played the tenor saxophone little joe was blowin' on the slide trombone the drummer boy from illinois went crash boom bang the whole rhythm section was the purple gang let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock number forty seven said to number three you're the cutest jailbird i ever did see i sure would be delighted with your company come on and do the jailhouse rock with me lets rock everybody lets rock everybody in the whole cell block was dancin' to the jailhouse rock the sad sack was a sittin' on a block of stone way over in the corner weepin' all alone the warden said hey buddy don't you be no square if you can't find a partner use a wooden chair let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock shifty henry said to bugs for heavens sake no ones lookin' nows our chance to make a break bugsy turned to shifty and he said nix nix i wanna stick around a while and get my kicks let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock\",\n", " 'original_lyrics': \"\\n\\nThe prison band was there and they began to wail\\nThe band was jumpin' and the joint began to swing\\nYou should've heard those knocked out jailbirds sing\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nSpider Murphy played the tenor saxophone\\nLittle Joe was blowin' on the slide trombone\\nThe drummer boy from Illinois went crash, boom, bang\\nThe whole rhythm section was the purple gang\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nNumber forty seven said to number three\\nYou're the cutest jailbird I ever did see\\nI sure would be delighted with your company\\nCome on and do the jailhouse rock with me\\n\\nLets rock, everybody, lets rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nThe sad sack was a sittin' on a block of stone\\nWay over in the corner, weepin' all alone\\nThe warden said, hey, buddy, don't you be no square\\nIf you can't find a partner use a wooden chair\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nShifty Henry said to bugs, for heavens sake\\nNo ones lookin', nows our chance to make a break\\nBugsy turned to shifty and he said, nix, nix\\nI wanna stick around a while and get my kicks\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\n\"},\n", " {'_id': 1948384,\n", " 'lyrics': \"the prison band was there and they began to wail the band was jumpin' and the joint began to swing you should've heard those knocked out jailbirds sing let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock spider murphy played the tenor saxophone little joe was blowin' on the slide trombone the drummer boy from illinois went crash boom bang the whole rhythm section was the purple gang let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock number forty seven said to number three you're the cutest jailbird i ever did see i sure would be delighted with your company come on and do the jailhouse rock with me lets rock everybody lets rock everybody in the whole cell block was dancin' to the jailhouse rock the sad sack was a sittin' on a block of stone way over in the corner weepin' all alone the warden said hey buddy don't you be no square if you can't find a partner use a wooden chair let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock shifty henry said to bugs for heavens sake no ones lookin' nows our chance to make a break bugsy turned to shifty and he said nix nix i wanna stick around a while and get my kicks let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock\",\n", " 'original_lyrics': \"\\n\\nThe prison band was there and they began to wail\\nThe band was jumpin' and the joint began to swing\\nYou should've heard those knocked out jailbirds sing\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nSpider Murphy played the tenor saxophone\\nLittle Joe was blowin' on the slide trombone\\nThe drummer boy from Illinois went crash, boom, bang\\nThe whole rhythm section was the purple gang\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nNumber forty seven said to number three\\nYou're the cutest jailbird I ever did see\\nI sure would be delighted with your company\\nCome on and do the jailhouse rock with me\\n\\nLets rock, everybody, lets rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nThe sad sack was a sittin' on a block of stone\\nWay over in the corner, weepin' all alone\\nThe warden said, hey, buddy, don't you be no square\\nIf you can't find a partner use a wooden chair\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nShifty Henry said to bugs, for heavens sake\\nNo ones lookin', nows our chance to make a break\\nBugsy turned to shifty and he said, nix, nix\\nI wanna stick around a while and get my kicks\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\n\"},\n", " {'_id': 2002952,\n", " 'lyrics': \"the prison band was there and they began to wail the band was jumpin' and the joint began to swing you should've heard those knocked out jailbirds sing let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock spider murphy played the tenor saxophone little joe was blowin' on the slide trombone the drummer boy from illinois went crash boom bang the whole rhythm section was the purple gang let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock number forty seven said to number three you're the cutest jailbird i ever did see i sure would be delighted with your company come on and do the jailhouse rock with me lets rock everybody lets rock everybody in the whole cell block was dancin' to the jailhouse rock the sad sack was a sittin' on a block of stone way over in the corner weepin' all alone the warden said hey buddy don't you be no square if you can't find a partner use a wooden chair let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock shifty henry said to bugs for heavens sake no ones lookin' nows our chance to make a break bugsy turned to shifty and he said nix nix i wanna stick around a while and get my kicks let's rock everybody let's rock everybody in the whole cell block was dancin' to the jailhouse rock\",\n", " 'original_lyrics': \"\\n\\nThe prison band was there and they began to wail\\nThe band was jumpin' and the joint began to swing\\nYou should've heard those knocked out jailbirds sing\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nSpider Murphy played the tenor saxophone\\nLittle Joe was blowin' on the slide trombone\\nThe drummer boy from Illinois went crash, boom, bang\\nThe whole rhythm section was the purple gang\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nNumber forty seven said to number three\\nYou're the cutest jailbird I ever did see\\nI sure would be delighted with your company\\nCome on and do the jailhouse rock with me\\n\\nLets rock, everybody, lets rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nThe sad sack was a sittin' on a block of stone\\nWay over in the corner, weepin' all alone\\nThe warden said, hey, buddy, don't you be no square\\nIf you can't find a partner use a wooden chair\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\nShifty Henry said to bugs, for heavens sake\\nNo ones lookin', nows our chance to make a break\\nBugsy turned to shifty and he said, nix, nix\\nI wanna stick around a while and get my kicks\\n\\nLet's rock, everybody, let's rock\\nEverybody in the whole cell block\\nWas dancin' to the jailhouse rock\\n\\n\"},\n", " {'_id': 309684,\n", " 'lyrics': \"this is the only life for me surround myself around my own fantasy you just gotta be strong and believe in yourself forget all the sadness ´cause love is all you need (love is all you need) do you know what it is like to be alone in this world when you are down and out on your luck and you are a failure wake up screaming in the middle of the night you think it has all been a waste of time it's been a bad year you start believing everything's gonna to be alright next minute you are down and you are flat on your back a brand new day's beginning get that sunny feeling and you are on your way just believe - just keep passing the open windows just believe - just keep passing the open windows do you know how it feels when you don't have a friend without a job and no money to spend you are a stranger all you think about is suicide one of these days you are going to lose the fight you better keep out of danger - yeah that same old feeling just keeps burning deep inside you keep telling yourself it's going to be the end oh get yourself together things are looking better everyday just believe - just keep passing the open windows just believe - just keep passing the open windows this is the only life for me surround myself around my own fantasy you just got to be strong and believe in yourself forget all the sadness ´cause love is all you need just believe - just keep passing the open windows just believe - just keep passing the open windows you just gotta be strong and believe in yourself forget all the sadness cause love is all you need love is all you need baby love is all you need just believe - just keep passing the open windows just believe - just keep passing the open windows just keep passing the open windows (8x)\",\n", " 'original_lyrics': \"\\n\\nThis is the only life for me\\nSurround myself around my own fantasy\\nYou just gotta be strong and believe in yourself\\nForget all the sadness ´cause love is all you need (love is all you need)\\n\\nDo you know what it is like to be alone in this world\\nWhen you are down and out on your luck and you are a failure\\nWake up screaming in the middle of the night\\nYou think it has all been a waste of time\\nIt's been a bad year\\nYou start believing everything's gonna to be alright\\nNext minute you are down and you are flat on your back\\nA brand new day's beginning\\nGet that sunny feeling and you are on your way\\n\\nJust believe - just keep passing the open windows\\nJust believe - just keep passing the open windows\\n\\nDo you know how it feels when you don't have a friend\\nWithout a job and no money to spend\\nYou are a stranger\\nAll you think about is suicide\\nOne of these days you are going to lose the fight\\nYou better keep out of danger - yeah\\nThat same old feeling just keeps burning deep inside\\nYou keep telling yourself it's going to be the end\\nOh get yourself together\\nThings are looking better everyday\\n\\nJust believe - just keep passing the open windows\\nJust believe - just keep passing the open windows\\n\\nThis is the only life for me\\nSurround myself around my own fantasy\\nYou just got to be strong and believe in yourself\\nForget all the sadness ´cause love is all you need\\n\\nJust believe - just keep passing the open windows\\nJust believe - just keep passing the open windows\\n\\nYou just gotta be strong and believe in yourself\\nForget all the sadness cause love is all you need\\nLove is all you need, baby, love is all you need\\n\\nJust believe - just keep passing the open windows\\nJust believe - just keep passing the open windows\\nJust keep passing the open windows (8x)\\n\\n\"},\n", " {'_id': 308676,\n", " 'lyrics': \"i was told a million times of all the troubles in my way mind you grow a little wiser little better every day but if i crossed a million rivers and i rode a million miles then i'd still be where i started bread and butter for a smile well i sold a million mirrors in a shop in alley way but i never saw my face in any window any day well they say your folks are telling you to be a super star but i tell you just be satisfied to stay right where you are keep yourself alive keep yourself alive it'll take you all your time and a money honey you'll survive well i've loved a million women in a belladonnic haze and i ate a million dinners brought to me on silver trays give me everything i need to feed my body and my soul and i'll grow a little bigger maybe that can be my goal i was told a million times of all the people in my way how i had to keep on trying and get better every day but if i crossed a million rivers and i rode a million miles then i'd still be where i started still be where i started keep yourself alive keep yourself alive it'll take you all your time and a money honey you'll survive keep yourself alive keep yourself alive it'll take you all your time and money to keep me satisfied do you think you're better every day no i just think i'm two steps nearer to my grave keep yourself alive keep yourself alive mm you take your time and take your money keep yourself alive keep yourself alive keep yourself alive all you people keep yourself alive keep yourself alive keep yourself alive it'll take you all your time and a money to keep me satisfied keep yourself alive keep yourself alive all you people keep yourself alive take you all your time and money honey you will survive keep you satisfied keep you satisfied\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI was told a million times\\nOf all the troubles in my way\\nMind you grow a little wiser\\nLittle better every day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nBread and butter for a smile\\nWell I sold a million mirrors\\nIn a shop in Alley Way\\nBut I never saw my face\\nIn any window any day\\nWell they say your folks are telling you\\nTo be a super star\\nBut I tell you just be satisfied\\nTo stay right where you are\\n\\n[Chorus]\\nKeep yourself alive keep yourself alive\\nIt'll take you all your time and a money\\nHoney you'll survive\\n\\n[Verse 2]\\nWell I've loved a million women\\nIn a belladonnic haze\\nAnd I ate a million dinners\\nBrought to me on silver trays\\nGive me everything I need\\nTo feed my body and my soul\\nAnd I'll grow a little bigger\\nMaybe that can be my goal\\nI was told a million times\\nOf all the people in my way\\nHow I had to keep on trying\\nAnd get better every day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nStill be where I started\\n\\n[Chorus]\\nKeep yourself alive keep yourself alive\\nIt'll take you all your time and a money\\nHoney you'll survive\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and money\\nTo keep me satisfied\\n\\n[Bridge]\\nDo you think you're better every day\\nNo I just think I'm two steps nearer to my grave\\n\\n[Chorus]\\nKeep yourself alive\\nKeep yourself alive mm\\nYou take your time and take your money\\nKeep yourself alive\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and a money\\nTo keep me satisfied\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\nTake you all your time and money honey\\nYou will survive\\n\\n[Outro]\\nKeep you satisfied\\nKeep you satisfied\\n\\n\"},\n", " {'_id': 874526,\n", " 'lyrics': \"queen classic queen keep yourself alive (may) i was told a million times of all the troubles in my way how i had to keep on trying little better ev'ry day but if i crossed a million rivers and i rode a million miles then i'd still be where i started bread and butter for a smile well i sold a million mirrors in a shop in alley way but i never saw my face in any window any day well they say your folks are telling you to be a super star but i tell you just be satisfied to stay right where you are keep yourself alive keep yourself alive it'll take you all your time and a money honey you'll survive well i've loved a million women in a belladonic haze and i ate a million dinners brought to me on silver trays give me ev'rything i need to feed my body and my soul and i'll grow a little bigger maybe that can be my goal i was told a million times of all the people in my way how i had to keep on trying and get better ev'ry day but if i crossed a million rivers and i rode a million miles then i'd still be where i started still be where i started keep yourself alive keep yourself alive it'll take you all your time and money honey you'll survive keep yourself alive keep yourself alive it'll take you all your time and money to keep me satisfied do you think you're better ev'ry day no i just think i'm two steps nearer to my grave keep yourself alive keep yourself alive mm you take your time and take your money keep yourself alive keep yourself alive keep yourself alive all you people keep yourself alive keep yourself alive keep yourself alive it'll take you all your time and a money to keep me satisfied keep yourself alive keep yourself alive all you people keep yourself alive take you all your time and money honey you will survive keep you satisfied keep you satisfied\",\n", " 'original_lyrics': \"\\n\\nQueen\\nClassic Queen\\nKeep Yourself Alive (May)\\nI was told a million times\\nOf all the troubles in my way\\nHow I had to keep on trying\\nLittle better ev'ry day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nBread and butter for a smile\\nWell I sold a million mirrors\\nIn a shop in Alley Way\\nBut I never saw my face\\nIn any window any day\\nWell they say your folks are telling you\\nTo be a super star\\nBut I tell you just be satisfied\\nTo stay right where you are\\nKeep yourself alive keep yourself alive\\nIt'll take you all your time and a money\\nHoney you'll survive\\nWell I've loved a million women\\nIn a belladonic haze\\nAnd I ate a million dinners\\nBrought to me on silver trays\\nGive me ev'rything I need\\nTo feed my body and my soul\\nAnd I'll grow a little bigger\\nMaybe that can be my goal\\nI was told a million times\\nOf all the people in my way\\nHow I had to keep on trying\\nAnd get better ev'ry day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nStill be where I started\\nKeep yourself alive keep yourself alive\\nIt'll take you all your time and money honey\\nYou'll survive\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and money\\nTo keep me satisfied\\nDo you think you're better ev'ry day\\nNo I just think I'm two steps nearer to my grave\\nKeep yourself alive\\nKeep yourself alive mm\\nYou take your time and take your money\\nKeep yourself alive\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and a money\\nTo keep me satisfied\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\nTake you all your time and money honey\\nYou will survive\\nKeep you satisfied\\nKeep you satisfied\\n\\n\"},\n", " {'_id': 2012898,\n", " 'lyrics': \"i was told a million times of all the troubles in my way might you grow a little wiser little better ev'ry day but if i crossed a million rivers and i rode a million miles then i'd still be where i started bread and butter for a smile well i sold a million mirrors in a shop in alley way but i never saw my face in any window any day now they say your folks are telling you be a superstar but i tell you just be satisfied and stay right where you are keep yourself alive keep yourself alive take you all your time and a money keep you satisfied well i've loved a million women in a belladonic haze and i ate a million dinners brought to me on silver trays give me ev'rything i need to feed my body and my soul and i'll grow a little bigger maybe that can be my goal i was told a million times of all the people in my way how i had to keep on trying and get better ev'ry day but if i crossed a million rivers and i rode a million miles then i'd still be where i started same as when i started keep yourself alive keep yourself alive it'll take you all your time and a money to keep yourselves alive keep yourself alive keep yourself alive it'll take you all your time and a money honey you'll survive do you think you're better ev'ry day no i think i'm two steps nearer to my grave keep yourself alive keep yourself alive all you people keep yourself alive keep yourself alive keep yourself alive all you people keep yourself alive keep yourself alive keep yourself alive take you all your time and money honey you'll survive keep yourself alive keep yourself alive all you people keep yourself alive take you all your time and money honey keep yourself alive\",\n", " 'original_lyrics': \"\\n\\nI was told a million times\\nOf all the troubles in my way\\nMight you grow a little wiser\\nLittle better ev'ry day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nBread and butter for a smile\\nWell I sold a million mirrors\\nIn a shop in Alley Way\\nBut I never saw my face\\nIn any window any day\\nNow they say your folks are telling you\\nBe a superstar\\nBut I tell you just be satisfied\\nAnd stay right where you are\\n\\nKeep yourself alive\\nKeep yourself alive\\nTake you all your time and a money\\nKeep you satisfied\\n\\nWell I've loved a million women\\nIn a belladonic haze\\nAnd I ate a million dinners\\nBrought to me on silver trays\\nGive me ev'rything I need\\nTo feed my body and my soul\\nAnd I'll grow a little bigger\\nMaybe that can be my goal\\nI was told a million times\\nOf all the people in my way\\nHow I had to keep on trying\\nAnd get better ev'ry day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nSame as when I started\\n\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and a money\\nTo keep yourselves alive\\n\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and a money\\nHoney you'll survive\\n\\nDo you think you're better ev'ry day?\\nNo I think I'm two steps nearer to my grave\\n\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\n\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\n\\nKeep yourself alive\\nKeep yourself alive\\nTake you all your time and money\\nHoney you'll survive\\n\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\nTake you all your time and money\\nHoney, keep yourself alive\\n\\n\"},\n", " {'_id': 1982873,\n", " 'lyrics': \"i was told a million times of all the troubles in my way might you grow a little wiser little better ev'ry day but if i crossed a million rivers and i rode a million miles then i'd still be where i started bread and butter for a smile well i sold a million mirrors in a shop in alley way but i never saw my face in any window any day now they say your folks are telling you be a superstar but i tell you just be satisfied and stay right where you are keep yourself alive keep yourself alive take you all your time and a money keep you satisfied well i've loved a million women in a belladonic haze and i ate a million dinners brought to me on silver trays give me ev'rything i need to feed my body and my soul and i'll grow a little bigger maybe that can be my goal i was told a million times of all the people in my way how i had to keep on trying and get better ev'ry day but if i crossed a million rivers and i rode a million miles then i'd still be where i started same as when i started keep yourself alive keep yourself alive it'll take you all your time and a money to keep yourselves alive keep yourself alive keep yourself alive it'll take you all your time and a money honey you'll survive do you think you're better ev'ry day no i think i'm two steps nearer to my grave keep yourself alive keep yourself alive all you people keep yourself alive keep yourself alive keep yourself alive all you people keep yourself alive keep yourself alive keep yourself alive take you all your time and money honey you'll survive keep yourself alive keep yourself alive all you people keep yourself alive take you all your time and money honey keep yourself alive\",\n", " 'original_lyrics': \"\\n\\nI was told a million times\\nOf all the troubles in my way\\nMight you grow a little wiser\\nLittle better ev'ry day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nBread and butter for a smile\\nWell I sold a million mirrors\\nIn a shop in Alley Way\\nBut I never saw my face\\nIn any window any day\\nNow they say your folks are telling you\\nBe a superstar\\nBut I tell you just be satisfied\\nAnd stay right where you are\\n\\nKeep yourself alive\\nKeep yourself alive\\nTake you all your time and a money\\nKeep you satisfied\\n\\nWell I've loved a million women\\nIn a belladonic haze\\nAnd I ate a million dinners\\nBrought to me on silver trays\\nGive me ev'rything I need\\nTo feed my body and my soul\\nAnd I'll grow a little bigger\\nMaybe that can be my goal\\nI was told a million times\\nOf all the people in my way\\nHow I had to keep on trying\\nAnd get better ev'ry day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nSame as when I started\\n\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and a money\\nTo keep yourselves alive\\n\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and a money\\nHoney you'll survive\\n\\nDo you think you're better ev'ry day?\\nNo I think I'm two steps nearer to my grave\\n\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\n\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\n\\nKeep yourself alive\\nKeep yourself alive\\nTake you all your time and money\\nHoney you'll survive\\n\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\nTake you all your time and money\\nHoney, keep yourself alive\\n\\n\"},\n", " {'_id': 309715,\n", " 'lyrics': \"who said my party was all over huh huh i'm in pretty good shape the best years of my life are like a supernova huh huh perpetual craze i said that everybody drank my wine - you get my drift and then we took a holiday on khashoggi's ship - well we really had a good good time they was all so sexy we was bad we was blitzed all in all it was a pretty good trip {hook} this big bad sucker with a fist as big as your head wanted to get me i said go away i said kiss my ass honey he pulled out a gun wanted to arrest me i said uh uh babe now listen no-one stops my party no-one stops my party no-one no-one no-one stops my party just like i said we were phased we was pissed just having a total eclipse bup bup badabup badibup bup bup bedabup bedadee hey that's good oooh wooh wooh wooh wooh wooh wooh hah this one's on me so let us do it just right this here one party don't get started 'till midnight yeah {outro} hey hah everybody's party to the left party to the right lay mine in the middle do it all night alright alright hey two within the middle with you (sounds like=widdu) we're going buddy hey uhh hey huh (v faintly in the background) alright hey left - right left right no-one stops my aaahh\",\n", " 'original_lyrics': \"\\n\\nWho said my party was all over, huh, huh\\nI'm in pretty good shape\\nThe best years of my life are like a supernova\\nHuh, huh, perpetual craze, I said that\\nEverybody drank my wine - you get my drift\\nAnd then we took a holiday on khashoggi's Ship - well\\nWe really had a good good time they was all so sexy\\nWe was bad, we was blitzed\\nAll in all it was a pretty good trip\\n\\n{Hook}\\nThis big bad sucker with a fist as big as your head\\nWanted to get me, I said go away\\nI said kiss my ass honey\\nHe pulled out a gun, wanted to arrest me\\nI said uh, uh, babe\\nNow listen no-one stops my party\\nNo-one stops my party\\nNo-one, no-one, no-one stops my party\\nJust like I said\\nWe were phased, we was pissed\\nJust having a total eclipse\\n\\nBup bup, badabup, badibup bup bup bedabup bedadee hey\\nThat's good\\nOooh\\nWooh wooh wooh wooh wooh wooh\\nHah\\nThis one's on me so let us do it just right\\nThis here one party don't get started 'till midnight\\nYeah\\n\\n{Outro}\\n\\nHey!\\nHah!\\nEverybody's\\nParty to the left\\nParty to the right\\nLay mine in the middle\\nDo it all night, Alright Alright\\nHey\\nTwo within the middle with you (sounds like=widdu)\\nWe're going buddy\\nHey uhh\\nHey huh\\n(v. faintly in the background) Alright\\nHey\\nLeft - right\\nLeft right\\nNo-one stops my... Aaahh\\n\\n\"},\n", " {'_id': 75244,\n", " 'lyrics': \"she keeps moet et chandon in her pretty cabinet 'let them eat cake' she says just like marie antoinette a built-in remedy for khrushchev and kennedy at anytime an invitation you can't decline caviar and cigarettes well versed in etiquette extraordinarily nice she's a killer queen gunpowder gelatine dynamite with a laser beam guaranteed to blow your mind anytime recommended at the price insatiable an appetite want to try to avoid complications she never kept the same address in conversation she spoke just like a baroness met a man from china went down to geisha minah (killer killer she's a killer queen) then again incidentally if you're that way inclined perfume came naturally from paris (naturally) for cars she couldn't care less fastidious and precise she's a killer queen gunpowder gelatine dynamite with a laser beam guaranteed to blow your mind anytime drop of a hat she's as willing as playful as a pussy cat then momentarily out of action temporarily out of gas to absolutely drive you wild wild she's all out to get you she's a killer queen gunpowder gelatine dynamite with a laser beam guaranteed to blow your mind anytime recommended at the price insatiable an appetite want to try want to try\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nShe keeps Moet et Chandon\\nIn her pretty cabinet\\n'Let them eat cake' she says\\nJust like Marie Antoinette\\nA built-in remedy\\nFor Khrushchev and Kennedy\\nAt anytime an invitation\\nYou can't decline\\nCaviar and cigarettes\\nWell versed in etiquette\\nExtraordinarily nice\\n\\n[Chorus]\\nShe's a Killer Queen\\nGunpowder, gelatine\\nDynamite with a laser beam\\nGuaranteed to blow your mind\\nAnytime\\n\\n[Post-Chorus]\\nRecommended at the price\\nInsatiable an appetite\\nWant to try?\\n\\n[Verse 2]\\nTo avoid complications\\nShe never kept the same address\\nIn conversation\\nShe spoke just like a baroness\\nMet a man from China\\nWent down to Geisha Minah\\n(Killer, killer, she's a killer Queen)\\nThen again incidentally\\nIf you're that way inclined\\nPerfume came naturally from Paris (naturally)\\nFor cars she couldn't care less\\nFastidious and precise\\n\\n[Chorus]\\nShe's a Killer Queen\\nGunpowder, gelatine\\nDynamite with a laser beam\\nGuaranteed to blow your mind\\nAnytime\\n\\n[Guitar Solo]\\n\\n[Bridge]\\nDrop of a hat she's as willing as\\nPlayful as a pussy cat\\nThen momentarily out of action\\nTemporarily out of gas\\nTo absolutely drive you wild, wild\\nShe's all out to get you\\n\\n[Chorus]\\nShe's a Killer Queen\\nGunpowder, gelatine\\nDynamite with a laser beam\\nGuaranteed to blow your mind\\nAnytime\\n\\n[Outro]\\nRecommended at the price\\nInsatiable an appetite\\nWant to try?\\nWant to try?\\n\\n\"},\n", " {'_id': 309968,\n", " 'lyrics': \"don't touch me now don't hold me now don't break the spell darling now you are near look in my eyes and speak to me the special promises i want to hear las palabras de amor let me hear the words of love despacito mi amor love me slow and gently one foolish world so many souls senselessly hurled through the never ending cold and all for fear and all for greed speak any tongue but for god's sake we need las palabras de amor let me hear the words of love despacito mi amor let me know this night and evermore this room is bare this night is cold we're far apart and i'm growing old but while we live we'll meet again so then my love we may whisper once more it's you i adore las palabras de amor let me hear the words of love despacito mi amor touch me now las palabras de amor let us share the words of love for evermore for evermore\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nDon't touch me now\\nDon't hold me now\\nDon't break the spell darling, now you are\\nNear\\n\\n[Verse 1]\\nLook in my eyes\\nAnd speak to me\\nThe special promises I want to hear\\nLas palabras de amor\\nLet me hear the words of love\\nDespacito mi amor\\nLove me slow and gently\\nOne foolish world, so many souls\\nSenselessly hurled through the never ending\\nCold\\n\\n[Bridge]\\nAnd all for fear, and all for greed\\nSpeak any tongue but for God's sake we\\nNeed\\n\\n[Chorus]\\nLas palabras de amor\\nLet me hear the words of love\\nDespacito mi amor\\nLet me know, this night and evermore\\n\\n[Verse 2]\\nThis room is bare\\nThis night is cold\\nWe're far apart and I'm growing old\\nBut while we live, we'll meet again\\nSo then my love we may whisper once more\\n\\n[Chorus]\\nIt's you I adore\\nLas palabras de amor\\nLet me hear the words of love\\nDespacito mi amor\\n\\n[Outro]\\nTouch me now\\nLas palabras de amor\\nLet us share the words of love\\nFor evermore\\nFor evermore\\n\\n\"},\n", " {'_id': 159923,\n", " 'lyrics': \"{intro} i go out to work on a monday morning tuesday i go off to honeymoon i'll be back again before it's time for sunny-down i'll be lazing on a sunday afternoon bicycling on every wednesday evening thursday i go waltzing to the zoo i come from london town i'm just an ordinary guy fridays i go painting in the louvre i'm bound to be proposing on a saturday night (there he goes again) i'll be lazing on a sunday lazing on a sunday lazing on a sunday afternoon {outro}\",\n", " 'original_lyrics': \"\\n\\n{Intro}\\n\\nI go out to work on a Monday morning\\nTuesday I go off to honeymoon\\nI'll be back again before it's time for Sunny-down\\nI'll be lazing on a Sunday afternoon\\nBicycling on every Wednesday evening\\nThursday I go waltzing to the Zoo\\nI come from London town, I'm just an ordinary guy\\nFridays I go painting in the Louvre\\nI'm bound to be proposing on a Saturday night (There he goes again)\\nI'll be lazing on a Sunday\\nLazing on a Sunday\\nLazing on a Sunday Afternoon\\n\\n{Outro}\\n\\n\"},\n", " {'_id': 309035,\n", " 'lyrics': \"i take a step outside and i breathe the air and i slam the door and i'm on my way i won't lay no blame i won't call you names because i've made my break and i won't look back i've turned my back on those endless games i'm all through with ties i'm all tired of tears i'm a happy man don't it look that way shaking dust from my shoes there's a road ahead and there's no way back home (no way back home) oh but i have leaving home isn’t easy oh i never thought it would be easy leaving on your own oh is the main thing calling me back leaving home isn’t easy on the one your leaving home stay my love my love please stay stray my love what's wrong my love what's right my love oh leaving home isn’t easy i thought how could i think of leaving leaving on your own still trying to persuade me that leaving home isn’t necessary leave the only way leaving home isn’t easy but may be the only way\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI take a step outside\\nAnd I breathe the air\\nAnd I slam the door\\nAnd I'm on my way\\nI won't lay no blame\\nI won't call you names\\nBecause I've made my break\\nAnd I won't look back\\nI've turned my back\\nOn those endless games\\n\\nI'm all through with ties\\nI'm all tired of tears\\nI'm a happy man\\nDon't it look that way?\\nShaking dust from my shoes\\nThere's a road ahead\\nAnd there's no way back home (no way back home)\\nOh but I have\\n\\nLeaving home isn’t easy\\nOh I never thought it would be easy\\nLeaving on your own\\nOh is the main thing calling me back?\\nLeaving home isn’t easy\\nOn the one your leaving home\\n\\nStay my love my love please stay\\nStray my love what's wrong my love?\\nWhat's right my love?\\nOh leaving home isn’t easy\\nI thought how could I think of leaving\\nLeaving on your own\\nStill trying to persuade me that\\nLeaving home isn’t necessary\\nLeave the only way\\nLeaving home isn’t easy\\nBut may be the only way\\n\\n\"},\n", " {'_id': 309024,\n", " 'lyrics': \"let me welcome you ladies and gentlemen i would like to say hello are you ready for some entertainment are you ready for a show going to rock going to roll you get you dancing in the aisles jazz and a razzmatazz you with a little bit of style come on let me entertain you let me entertain you let me entertain you i've come here to sell you my body i can show you some good merchandise i'll pull you and pill you i'll crueladeville you and to thrill you i'll use any device we'll give you crazy performance we'll give you grounds for divorce we'll give you piece de resistance and a tour de force of course we found the right location got a lot of pretty lights the sound and amplification listen hey if you need a fix if you want a high stick ells see to that with elektra and emi we'll show you where it's at so come on just take a look at the menu we give you rock a la carte we'll breakfast at tiffany's we'll sing to you in japanese we're only here to entertain you if you want to see some action you get nothing but the best the s and m attraction we've got the pleasure chest chicago and new orleans we get you on the line if you dig the new york scene we'll have a son of a bitch of a time come on\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nLet me welcome you ladies and gentlemen\\nI would like to say hello\\nAre you ready for some entertainment?\\nAre you ready for a show?\\nGoing to rock going to roll you\\nGet you dancing in the aisles\\nJazz and a razzmatazz you\\nWith a little bit of style\\n\\n[Chorus]\\nCome on let me entertain you\\nLet me entertain you let me entertain you\\n\\n[Verse 2]\\nI've come here to sell you my body\\nI can show you some good merchandise\\nI'll pull you and pill you\\nI'll crueladeville you\\nAnd to thrill you I'll use any device\\nWe'll give you crazy performance\\nWe'll give you grounds for divorce\\nWe'll give you piece de resistance\\nAnd a tour de force of course\\nWe found the right location\\nGot a lot of pretty lights\\nThe sound and amplification listen\\nHey if you need a fix if you want a high\\nStick ells see to that\\nWith Elektra and EMI\\nWe'll show you where it's at\\nSo come on\\n\\n[Chorus]\\n\\n[Verse 3]\\nJust take a look at the menu\\nWe give you rock a la carte\\nWe'll breakfast at Tiffany's\\nWe'll sing to you in Japanese\\nWe're only here to entertain you\\nIf you want to see some action\\nYou get nothing but the best\\nThe S and M attraction\\nWe've got the pleasure chest\\nChicago and New Orleans\\nWe get you on the line\\nIf you dig the New York scene\\nWe'll have a son of a bitch of a time\\nCome on\\n\\n\"},\n", " {'_id': 1957544,\n", " 'lyrics': \"hey it's a sellout let me welcome you ladies and gentlemen i would like to say hello are you ready for some entertainment are you ready for a show gonna rock you gonna roll you get you dancing in the aisles jazz you razzmatazz you with a little bit of style c'mon let me entertain you let me entertain you let me entertain you let me entertain you i've come here to sell you my body i can show you some good merchandise i'll pull you and i'll pill you i'll cruela-de-ville you and to thrill you i'll use any device we'll give you crazy performance we'll give you grounds for divorce we'll give you piece de resistance and a tour de force of course we found the right location got a lot of pretty lights the sound and amplification listen hey if you need a fix if you want a high stickells see to that with electra and emi we'll show you where it's at so c'mon let me entertain you let me entertain you let me entertain you let me entertain you just take a look at the menu we give you rock a la carte we'll breakfast at tiffany's we'll sing to you in japanese we're only here to entertain you if you want to see some action you get nothing but the best the s and m attraction we've got the pleasure chest chicago down to new orleans we get you on the line if you dig the new york scene we'll have a son of a bitch of a time c'mon let me entertain let me entertain let me entertain you tonight (hey where's my backstage pass) (that was great) (what an outrageous costume) (hey that brian may is out of sight man) (not many not many) (i've always wanted to be a groupie)\",\n", " 'original_lyrics': \"\\n\\nHey, it's a sellout\\nLet me welcome you ladies and gentlemen, I would like to say hello\\nAre you ready for some entertainment?, Are you ready for a show?\\nGonna rock you gonna roll you, get you dancing in the aisles\\nJazz you razzmatazz you, with a little bit of style\\n\\nC'mon let me entertain you, let me entertain you\\nLet me entertain you, let me entertain you\\n\\nI've come here to sell you my body, I can show you some good merchandise\\nI'll pull you and I'll pill you, I'll Cruela-de-ville you\\nAnd to thrill you I'll use any device\\n\\nWe'll give you crazy performance, we'll give you grounds for divorce\\nWe'll give you piece de resistance, and a tour de force\\nOf course\\n\\nWe found the right location, got a lot of pretty lights\\nThe sound and amplification listen\\nHey if you need a fix, if you want a high, Stickells see to that\\nWith Electra and EMI, We'll show you where it's at\\nSo c'mon\\n\\nLet me entertain you, let me entertain you\\nLet me entertain you, let me entertain you\\n\\nJust take a look at the menu, we give you rock a la carte\\nWe'll breakfast at Tiffany's, we'll sing to you in Japanese\\nWe're only here to entertain you\\nIf you want to see some action, you get nothing but the best\\nThe S and M attraction, We've got the pleasure chest\\nChicago down to New Orleans, We get you on the line\\nIf you dig the New York scene\\nWe'll have a son of a bitch of a time\\nC'mon, Let me entertain, let me entertain\\nLet me entertain you... tonight\\n\\n(Hey where's my backstage pass)\\n(That was great)\\n(What an outrageous costume)\\n(Hey that Brian May is out of sight man)\\n(Not many not many)\\n(I've always wanted to be a groupie)\\n\\n\"},\n", " {'_id': 1861130,\n", " 'lyrics': \"when people talk of love i'll lead the conversation i'll say i feel just fine happy with my situation but when i look away people know my mind is straying to where i once belonged dreaming about your heart again yeah (your heart again) yeah your heart again let me in your heart again listen to me honey we like to face the blues i give you satisfaction (it's your heart again) despair was on your mind i gave you the right direction (it's your heart again) so don't you walk away remember it's my heart you're breaking you forget we were in love now my heart is only filled with pain (your heart again) uh your heart again (heart again) let me in your heart again oh my love i want you to stay don't leave me now or i just fade away oh my love don't hurt me this way oh forgive me babe do not ever tell me goodbye tell me yes oh don't let me wait too long or i'll lose my mind when people talk of love i have no hesitation (it's your heart again) tell me what you're dreaming of i'll hold that conversation for you babe (it's your heart again) but when i look away uh people know my mind is straying baby to where i once belonged just let me in your heart again (heart again) your heart again (heart again) oh let me in your heart again (your heart again) open the doors for me babe to your heart again let me in hey love let me love (ooooh) let me live and love in your heart again\",\n", " 'original_lyrics': \"\\n\\nWhen people talk of love\\nI'll lead the conversation\\nI'll say I feel just fine\\nHappy with my situation\\nBut when I look away\\nPeople know my mind is straying\\nTo where I once belonged\\nDreaming about your heart again, yeah\\n(Your heart again) yeah\\nYour heart again\\nLet me in your heart again\\nListen to me honey\\nWe like to face the blues\\nI give you satisfaction\\n(It's your heart again)\\nDespair was on your mind\\nI gave you the right direction\\n(It's your heart again)\\nSo don't you walk away\\nRemember it's my heart you're breaking\\nYou forget we were in love\\nNow my heart is only filled with pain\\n(Your heart again) uh\\nYour heart again (heart again)\\nLet me in your heart again\\nOh, my love\\nI want you to stay\\nDon't leave me now\\nOr I just fade away\\nOh, my love\\nDon't hurt me this way\\nOh Forgive me, babe\\nDo not ever tell me goodbye\\nTell me yes\\nOh\\nDon't let me wait too long\\nOr I'll lose my mind\\nWhen people talk of love\\nI have no hesitation\\n(It's your heart again)\\nTell me what you're dreaming of\\nI'll hold that conversation for you, babe\\n(It's your heart again)\\nBut when I look away, uh\\nPeople know my mind is straying, baby\\nTo where I once belonged\\nJust let me in your heart again (heart again)\\nYour heart again (heart again)\\nOh, let me in your heart again (your heart again)\\nOpen the doors for me, babe\\nTo your heart again\\nLet me in\\nHey love\\nLet me love (ooooh)\\nLet me live, and love in your heart again\\n\\n\"},\n", " {'_id': 2050719,\n", " 'lyrics': \"ooh woohooo yeh when people talk of love i'll lead the conversation i'll say i feel just fine happy with my situation but when i look away ha people know my mind is straying to where i once belonged dreaming about your heart again (your heart again) yeh (your heart again) let me in your heart again listen to me honey we laugh to face the blues i give your satisfaction (it's your heart again) despair was on your mind i gave you the right direction (it's your heart again) sometimes you walk away remember it's my heart your breaking you forget we were in love now my heart is only filled with pain (your heart again) oh (your heart again) let me in your heart again oh my love i want you to stay don't leave me now or i just fade away all my love don't hurt me this way oh forgive me babe do not ever tell me goodbye woohoo tell me yes oh don't let me wait too long or i'll lose my mind when people talk of love i have no hesitation (it's your heart again) tell me what your dreaming of i'll hold that conversation for you best (it's your heart again) but when i look away ha people know my mind is straying baby to where i once belonged just let me in your heart again (you heart again) (your heart again) oh let me in your heart again open the doors for me babe to your heart again let me in hey live let me live woohoo let me live and live in your heart again\",\n", " 'original_lyrics': \"\\n\\nOoh\\nWoohooo\\nYeh\\nWhen People Talk Of Love\\nI'll Lead The Conversation\\nI'll Say I Feel Just Fine\\nHappy With My Situation\\nBut When I Look Away ha\\nPeople Know My Mind Is Straying\\nTo Where I Once Belonged\\nDreaming About Your Heart Again\\n(Your Heart Again)\\nYeh\\n(Your Heart Again)\\nLet Me In Your Heart Again\\nListen to me honey\\nWe Laugh To Face The Blues\\nI Give Your Satisfaction\\n(It's Your Heart Again)\\nDespair Was On Your Mind\\nI Gave You The Right Direction\\n(It's Your Heart Again)\\nSometimes You Walk Away\\nRemember It's My Heart Your Breaking\\nYou Forget We Were In Love\\nNow My Heart Is Only Filled With Pain\\n(Your Heart Again)\\nOh\\n(Your Heart Again)\\nLet Me In Your Heart Again\\nOh My Love\\nI Want You To Stay\\nDon't Leave Me Now\\nOr I Just Fade Away\\nAll My Love!\\nDon't Hurt Me This Way\\nOh\\nForgive me babe\\nDo not ever tell me goodbye\\nWoohoo\\nTell me yes\\nOh\\nDon't Let Me Wait Too Long\\nOr I'll Lose My Mind\\nWhen People Talk Of Love\\nI Have No Hesitation\\n(It's Your Heart Again)\\nTell Me What Your Dreaming Of\\nI'll Hold That Conversation For You Best\\n(It's Your Heart Again)\\nBut when I Look Away ha\\nPeople Know My Mind Is Straying\\nBaby To Where I Once Belonged\\nJust Let Me In Your Heart Again\\n(You heart again)\\n(your Heart Again)\\nOh\\nLet Me In Your Heart Again\\nOpen The Doors For Me Babe\\nTo Your Heart Again\\nLet Me In!\\nHey Live\\nLet Me Live\\nWoohoo\\nLet Me live And Live In Your Heart Again\\n\\n\"},\n", " {'_id': 310163,\n", " 'lyrics': \"three four take a peace of my heart take a peace of my soul let me live oh yeah why don't you take another little piece of my heart why don't you take it and break it and tear it all apart all i do is give all you do is take baby why don't you give me a brand new start so let me live (so let me live) let me live (leave me alone) let me live oh baby and make a brand new start why don't you take another little piece of my soul why don't you shape it and shake it until you're really in control all you do is take and all i do is give all that i'm asking is a chance to live (so let me live) - so let me live (leave me alone) - let me live let me live why don't you let me make a brand new start and it's a long hard struggle but you can always depend on me and if you're ever in trouble - hey you know where i will be why don't you take another little piece of my life why don't you twist it and turn it and cut it like a knife all you do is live all i do is die why can't we just be friends stop live in a lie so let me live (so let me live) let me live (leave me alone) please let me live (why don't you live a little) oh yeah baby (why don't you give a little more) (that's right baby) let me live please let me live oh yeah baby let me live and make a brand new start let me live (let me live) oh yeah (let me live) come on (let me live) take a little piece of my heart now baby take a little piece of my heart now baby take a little piece of my soul now baby take a little piece of my life now baby in your heart oh baby (take another piece take another piece take another piece take another piece) please let me live (take another piece take another piece take another piece take another piece) why don't you take another piece take another piece of my heart oh yeah baby make a brand new start oh baby baby baby baby baby baby baby baby all you do is take (let me live) let me live\",\n", " 'original_lyrics': \"\\n\\n[John Deacon]\\nThree, four\\n\\n\\nTake a peace of my heart\\nTake a peace of my soul\\nLet me live\\nOh yeah\\n\\n[Verse 1: Freddie Mercury]\\nWhy don't you take another little piece of my heart\\nWhy don't you take it and break it\\nAnd tear it all apart\\nAll I do is give\\nAll you do is take\\nBaby why don't you give me\\nA brand new start\\n\\n[Chorus]\\nSo let me live (so let me live)\\nLet me live (leave me alone)\\nLet me live, oh baby\\nAnd make a brand new start\\n\\n[Verse 2: Roger Taylor]\\nWhy don't you take another little piece of my soul\\nWhy don't you shape it and shake it\\nUntil you're really in control\\nAll you do is take\\nAnd all I do is give\\nAll that I'm asking\\nIs a chance to live\\n\\n[Chorus: Freddie Mercury]\\n(So let me live) - So let me live\\n(Leave me alone) - Let me live, let me live\\nWhy don't you let me make a brand new start\\n\\n[Verse 3: Roger Taylor &Brian May]\\nAnd it's a long hard struggle\\nBut you can always depend on me\\nAnd if you're ever in trouble - hey\\nYou know where I will be\\nWhy don't you take another little piece of my life\\nWhy don't you twist it, and turn it\\nAnd cut it like a knife\\nAll you do is live\\nAll I do is die\\nWhy can't we just be friends\\nStop live in a lie\\n\\n[Chorus: Freddie Mercury]\\nSo let me live (So let me live)\\nLet me live (Leave me alone)\\nPlease let me live\\n(Why don't you live a little)\\nOh yeah baby\\n(Why don't you give a little more)\\n(That's right baby)\\nLet me live\\nPlease let me live\\nOh yeah baby, let me live\\nAnd make a brand new start\\nLet me live (let me live)\\nOh yeah (let me live)\\nCome on (let me live)\\n\\n[Verse #4]\\nTake a little piece of my heart now baby\\nTake a little piece of my heart now baby\\nTake a little piece of my soul now baby\\nTake a little piece of my life now baby\\n\\nIn your heart, oh baby\\n(Take another piece, take another piece, take another piece, take another piece)\\nPlease let me live\\n(Take another piece, take another piece, take another piece, take another piece)\\nWhy don't you take another piece\\nTake another piece of my heart\\nOh yeah baby\\nMake a brand new start\\nOh baby baby, baby baby, baby baby, baby baby\\nAll you do is take\\n(Let me live)\\nLet me live\\n\\n\"},\n", " {'_id': 1602886,\n", " 'lyrics': \"queen made in heaven let me live (queen) why don't you take another little piece of my heart why don't you take it and break it and tear it all apart all i do is give all you do is take baby why don't you give me a brand new start so let me live (so let me live) let me live (leave me alone) let me live oh baby and make a brand new start why don't you take another little piece of my soul why don't you shape it and shake it 'til you're really in control all you do is take and all i do is give all that i'm askin' is a chance to live (so let me live) - so let me live (leave me alone) - let me live let me live why don't you let me make a brand new start and it's a long hard struggle but you can always depend on me and if you're ever in trouble - hey you know where i will be why don't you take another little piece of my life why don't you twist it and turn it and cut it like a knife all you do is live all i do is die why can't we just be friends stop livin' a lie so let me live (so let me live) let me live (leave me alone) please let me live (why don't you live a little) oh yeah baby (why don't you give a little love) let me live please let me live oh yeah baby let me live and make a brand new start take another little piece of my heart now baby take another little piece of my heart now baby take another little piece of my soul now baby take another little piece of my life now baby in your heart oh baby (take another piece take another piece) please let me live (take another piece take another piece) why don't you take another piece take another little piece of my heart oh yeah baby make a brand new start all you do is take let me live\",\n", " 'original_lyrics': \"\\n\\nQueen\\nMade In Heaven\\nLet Me Live (Queen)\\nWhy don't you take another little piece of my heart\\nWhy don't you take it and break it\\nAnd tear it all apart\\nAll I do is give\\nAll you do is take\\nBaby why don't you give me\\nA brand new start\\nSo let me live (so let me live)\\nLet me live (leave me alone)\\nLet me live, oh baby\\nAnd make a brand new start\\nWhy don't you take another little piece of my soul\\nWhy don't you shape it and shake it\\n'til you're really in control\\nAll you do is take\\nAnd all I do is give\\nAll that I'm askin'\\nIs a chance to live\\n(So let me live) - so let me live\\n(Leave me alone) - let me live, let me live\\nWhy don't you let me make a brand new start\\nAnd it's a long hard struggle\\nBut you can always depend on me\\nAnd if you're ever in trouble - hey\\nYou know where I will be\\nWhy don't you take another little piece of my life\\nWhy don't you twist it, and turn it\\nAnd cut it like a knife\\nAll you do is live\\nAll I do is die\\nWhy can't we just be friends\\nStop livin' a lie\\nSo let me live (so let me live)\\nLet me live (leave me alone)\\nPlease let me live\\n(Why don't you live a little)\\nOh yeah baby\\n(Why don't you give a little love...?)\\nLet me live\\nPlease let me live\\nOh yeah baby, let me live\\nAnd make a brand new start\\nTake another little piece of my heart now baby\\nTake another little piece of my heart now baby\\nTake another little piece of my soul now baby\\nTake another little piece of my life now baby\\nIn your heart, oh baby\\n(Take another piece, take another piece)\\nPlease let me live\\n(Take another piece, take another piece)\\nWhy don't you take another piece\\nTake another little piece of my heart\\nOh yeah baby\\nMake a brand new start\\nAll you do is take\\nLet me live\\n\\n\"},\n", " {'_id': 2100416,\n", " 'lyrics': \"i was told a million times of all the troubles in my way tried to grow a little wiser little better ev'ry day but if i crossed a million rivers and i rode a million miles then i'd still be where i started bread and butter for a smile well i sold a million mirrors in a shop in alley way but i never saw my face in any window any day well they say your folks are telling you to be a superstar but i tell you just be satisfied to stay right where you are keep yourself alive keep yourself alive it'll take you all your time and a money honey you'll survive well i've loved a million women in a belladonic haze and i ate a million dinners brought to me on silver trays give me ev'rything i need to feed my body and my soul and i'll grow a little bigger maybe that can be my goal i was told a million times of all the people in my way how i had to keep on trying and get better ev'ry day but if i crossed a million rivers and i rode a million miles then i'd still be where i started same as when i started keep yourself alive keep yourself alive it'll take you all your time and a money to keep me satisfied do you think you're better ev'ry day no i think i'm two steps nearer to my grave keep yourself alive keep yourself alive mm you take your time and take more money keep yourself alive keep yourself alive keep yourself alive all you people keep yourself alive keep yourself alive keep yourself alive it'll take you all your time and money to keep me satisfied keep yourself alive keep yourself alive all you people keep yourself alive take you all your time and money honey you'll survive keep you satisfied x2\",\n", " 'original_lyrics': \"\\n\\nI was told a million times\\nOf all the troubles in my way\\nTried to grow a little wiser\\nLittle better ev'ry day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nBread and butter for a smile\\nWell I sold a million mirrors\\nIn a shop in Alley Way\\nBut I never saw my face\\nIn any window any day\\nWell they say your folks are telling you\\nTo be a superstar\\nBut I tell you just be satisfied\\nTo stay right where you are\\n\\n[Refrain]:\\nKeep yourself alive keep yourself alive\\nIt'll take you all your time and a money\\nHoney you'll survive\\nWell I've loved a million women\\nIn a belladonic haze\\nAnd I ate a million dinners\\nBrought to me on silver trays\\nGive me ev'rything I need\\nTo feed my body and my soul\\nAnd I'll grow a little bigger\\nMaybe that can be my goal\\nI was told a million times\\nOf all the people in my way\\nHow I had to keep on trying\\nAnd get better ev'ry day\\nBut if I crossed a million rivers\\nAnd I rode a million miles\\nThen I'd still be where I started\\nSame as when I started\\n\\n[Refrain]\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and a money\\nTo keep me satisfied\\nDo you think you're better ev'ry day?\\nNo I think I'm two steps nearer to my grave\\nKeep yourself alive\\nKeep yourself alive mm\\nYou take your time and take more money\\nKeep yourself alive\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\nKeep yourself alive\\nKeep yourself alive\\nIt'll take you all your time and money\\nTo keep me satisfied\\nKeep yourself alive\\nKeep yourself alive\\nAll you people keep yourself alive\\nTake you all your time and money\\nHoney you'll survive\\nKeep you satisfied x2\\n\\n\"},\n", " {'_id': 309661,\n", " 'lyrics': \"machines it's a machines world don't tell me i ain't got no soul when the machines take over it ain't no place for rock and roll they tell me i don't care but deep inside i'm just a man they freeze me they burn me they squeeze me they stress me with smoke-blackened pistons of steel they compress me but no-one but no-one but no-one can wrest me away back to humans we have no disease no troubles of mind no thank you please no regard for the time we never cry we never retreat we have no conception of love or defeat what's that machine noise it's bytes and mega chips for tea it's that machine boys with random access memory never worry never mind not for money not for gold it's software it's hardware it's heartbeat is time-share it's midwife's a disk drive it's sex-life is quantised it's self-perpetuating a parahumanoidarianised back to humans back to humans back to machines living in a new world thinking in the past living in a new world how you gonna last machine world it's a machine's world change back to humans\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nMachines...\\nIt's a machines world\\nDon't tell me I ain't got no soul\\nWhen the machines take over\\nIt ain't no place for rock and roll\\n\\n[Verse 2]\\nThey tell me I don't care\\nBut deep inside I'm just a man\\nThey freeze me they burn me\\nThey squeeze me they stress me\\nWith smoke-blackened pistons of steel they compress me\\nBut no-one, but no-one, but no-one can wrest me away\\nBack to Humans\\n\\n[Verse 3]\\nWe have no disease, no troubles of mind\\nNo thank you please, no regard for the time\\nWe never cry, we never retreat\\nWe have no conception of love or defeat\\n\\n[Verse 4]\\nWhat's that Machine noise\\nIt's bytes and mega chips for tea\\nIt's that Machine, boys\\nWith Random Access Memory\\nNever worry, never mind\\nNot for money, not for gold\\n\\n[Verse 5]\\nIt's software it's hardware\\nIt's heartbeat is time-share\\nIt's midwife's a disk drive\\nIt's sex-life is quantised\\nIt's self-perpetuating a parahumanoidarianised\\n\\nBack to Humans\\nBack to Humans\\n\\nBack to Machines\\n\\n[Verse 6]\\nLiving in a new world\\nThinking in the past\\nLiving in a new world\\nHow you gonna last\\nMachine world[?]\\nIt's a Machine's world[?]\\n\\n[Outro]\\nChange\\nBack to Humans\\n\\n\"},\n", " {'_id': 310162,\n", " 'lyrics': \"i'm taking my ride with destiny willing to play my part living with painful memories loving with all my heart made in heaven made in heaven it was all ment to be yeah made in heaven made in heaven that's what they say can't you see oh i know i know i know that it's true yes it's really meant to be deep in my heart i'm having to learn to pay the price they're turning me upside down waiting for possibilities don't see too many around made in heaven made in heaven it's for all to see made in heaven made in heaven that's what everybody says everybody says to me it was really meant to be yeah yeah when stormy weather comes around it was made in heaven when sunny skies break through behind the clouds i wish it could last forever yeah wish it could last forever forever made in heaven i'm playing my role in history looking to find my goal taking in all this misery but giving in all my soul made in heaven made in heaven it was all meant to be yeah made in heaven made in heaven that's what everybody says wait and see it was really ment to be so plain to see yeah everybody everybody everybody tells me so yes it was plain to see yes it was ment to be written in the stars written in the stars\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI'm taking my ride with destiny\\nWilling to play my part\\nLiving with painful memories\\nLoving with all my heart\\n\\n[Chorus]\\nMade in heaven, made in heaven\\nIt was all ment to be, yeah\\nMade in heaven, made in heaven\\nThat's what they say\\nCan't you see\\nOh I know, I know, I know that it's true\\nYes it's really meant to be\\nDeep in my heart\\n\\n[Verse 2]\\nI'm having to learn to pay the price\\nThey're turning me upside down\\nWaiting for possibilities\\nDon't see too many around\\n\\n[Chorus]\\nMade in heaven, made in heaven\\nIt's for all to see\\nMade in heaven, made in heaven\\nThat's what everybody says\\nEverybody says to me\\nIt was really meant to be\\nYeah, yeah\\nWhen stormy weather comes around\\nIt was made in heaven\\nWhen sunny skies break through behind the clouds\\nI wish it could last forever, yeah\\nWish it could last forever, forever\\n\\n[Verse 3]\\nMade in heaven\\nI'm playing my role in history\\nLooking to find my goal\\nTaking in all this misery\\nBut giving in all my soul\\n\\n[Chorus]\\nMade in heaven, made in heaven\\nIt was all meant to be, yeah\\nMade in heaven, made in heaven\\nThat's what everybody says\\nWait and see, it was really ment to be\\nSo plain to see\\nYeah, everybody, everybody, everybody tells me so\\nYes it was plain to see, yes it was ment to be\\nWritten in the stars...\\nWritten in the stars...\\n\\n\"},\n", " {'_id': 308837,\n", " 'lyrics': \"i've been there before a long time ago but this time i wear no sandals ages past i gave all you people food and water three feet tall so very small i'm no trouble i bring thunder and lightning sun and the rain for all the people in the land a message of love i bring you from up above all you children gather around come join your hands and sing along they call me mad the swine i guess i'm mad the swine i've come to save you save you mad the swine mad the swine so all you people gather around hold out your hands and praise the lord i walk upon the water just as before i help the meek and the mild the believers and the blind and all the creatures great and small let me take you to the river without a fall then one day you'll realize you're all the same within his eyes that's all i've got to say just like before\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI've been there before\\nA long time ago\\nBut this time I wear no sandals\\nAges past I gave all you people\\nFood and water\\nThree feet tall, so very small\\nI'm no trouble\\nI bring thunder and lightning\\nSun and the rain\\nFor all the people in the land\\nA message of love\\nI bring you from up above\\nAll you children gather around\\nCome join your hands and sing along\\n\\n[Chorus]\\nThey call me mad the swine\\nI guess I'm mad the swine\\nI've come to save you\\nSave you\\nMad the swine\\nMad the swine\\nSo all you people gather around\\nHold out your hands and praise the lord\\n\\n[Verse 2]\\nI walk upon the water\\nJust as before\\nI help the meek and the mild\\nThe believers and the blind\\nAnd all the creatures great and small\\nLet me take you to the river\\nWithout a fall\\nThen one day you'll realize\\nYou're all the same within his eyes\\nThat's all I've got to say\\nJust like before\\n\\n[Chorus][X2]\\n\\n\"},\n", " {'_id': 309648,\n", " 'lyrics': \"i am going to take a little walk on the wild side i am going to loosen up and get me some gas i am going to get me some action go crazy driving in the fast lane my baby left me alone she done me dirty and i am feeling so lonely so come home come home if you don't you are going to break my heart man on the prowl you better watch out i am on the loose and i am looking for trouble so look out look out i am a man on the prowl i don't want to be a rock and roll steady i just want to be low down trash i want to go to the movies all i want to do is sit on my ass so honey come home don't leave me when i am feeling so lonely come home come home if you don't you are going to break my heart man on the prowl you better watch out i am on the loose and i am looking for trouble so look out look out i am a man on the prowl well i keep dreaming about my baby but it isn't going to get me nowhere i want to teach my baby dancing but i am not fred astaire so baby look out i am a man on the prowl look out - man on the prowl - yeah baby baby baby look out - man on the prowl baby come home i am on the loose and i'm looking for trouble baby come home - oh yeah cause i am a man on the prowl so honey come home - come home because i am a man on the prowl - yeah man on the prowl\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI am going to take a little walk on the wild side\\nI am going to loosen up and get me some gas\\nI am going to get me some action\\nGo crazy, driving in the fast lane\\nMy baby left me alone\\nShe done me dirty and I am feeling so lonely\\nSo come home, come home\\nIf you don't you are going to break my heart\\n\\n[Chorus]\\nMan on the prowl\\nYou better watch out\\nI am on the loose and I am looking for trouble\\nSo look out, look out\\nI am a man on the prowl\\n\\n[Verse 2]\\nI don't want to be a rock and roll steady\\nI just want to be low down trash\\nI want to go to the movies\\nAll I want to do is sit on my ass\\nSo honey come home\\nDon't leave me when I am feeling so lonely\\nCome home, come home\\nIf you don't you are going to break my heart\\n\\n[Chorus]\\nMan on the prowl\\nYou better watch out\\nI am on the loose and I am looking for trouble\\nSo look out, look out\\nI am a man on the prowl\\n\\n[Verse 3]\\nWell I keep dreaming about my baby\\nBut it isn't going to get me nowhere\\nI want to teach my baby dancing\\nBut I am not Fred Astaire\\nSo baby look out, I am a man on the prowl\\nLook out - man on the prowl - yeah\\nBaby, baby, baby look out - man on the prowl\\nBaby come home\\nI am on the loose and I'm looking for trouble\\nBaby come home - oh yeah\\nCause I am a man on the prowl\\nSo honey come home - come home\\nBecause I am a man on the prowl - yeah\\nMan on the prowl\\n\\n\"},\n", " {'_id': 1337518,\n", " 'lyrics': \"queen the works man on the prowl (mercury) i'm gonna take a little walk on the wild side i'm gonna loosen up and get me some gas i'm gonna get me some action go crazy driving in the fast lane my baby left me alone she done me dirty and i'm feeling so lonely so come home come home if you don't you're gonna break my heart man on the prowl you better watch out i'm on the loose and i'm looking for trouble so look out - look out i'm a man on the prowl i don't wanna be a rock 'n' roll steady i just wanna be low down trash i wanna go to the movies all i wanna do is sit on my ass so honey come home don't leave me when i'm feeling so lonely come home - come home if you don't you're gonna break my heart man on the prowl you better watch out i'm on the loose and i'm looking for trouble so look out - look out i'm a man on the prowl well i keep dreaming about my baby but it ain't gonna get me nowhere i wanna teach my baby dancin' but i ain't no fred astaire so baby look out - i'm a man on the prowl look out - man on the prowl - yeah baby baby baby look out - man on the prowl baby come home i'm on the loose and i'm looking for trouble baby come home - oh yeah cause i'm a man on the prowl so honey come home - come home cause i'm a man on the prowl - yeah man on the prowl\",\n", " 'original_lyrics': \"\\n\\nQueen\\nThe Works\\nMan On The Prowl (Mercury)\\nI'm gonna take a little walk on the wild side\\nI'm gonna loosen up and get me some gas\\nI'm gonna get me some action\\nGo crazy, driving in the fast lane\\nMy baby left me alone\\nShe done me dirty and I'm feeling so lonely\\nSo come home, come home\\nIf you don't you're gonna break my heart\\nMan on the prowl\\nYou better watch out\\nI'm on the loose and I'm looking for trouble\\nSo look out - look out\\nI'm a man on the prowl\\nI don't wanna be a rock 'n' roll steady\\nI just wanna be low down trash\\nI wanna go to the movies\\nAll I wanna do is sit on my ass\\nSo honey come home\\nDon't leave me when I'm feeling so lonely\\nCome home - come home\\nIf you don't you're gonna break my heart\\nMan on the prowl\\nYou better watch out\\nI'm on the loose and I'm looking for trouble\\nSo look out - look out\\nI'm a man on the prowl\\nWell I keep dreaming about my baby\\nBut it ain't gonna get me nowhere\\nI wanna teach my baby dancin'\\nBut I ain't no Fred Astaire\\nSo baby look out - I'm a man on the prowl\\nLook out - man on the prowl - yeah\\nBaby, baby, baby look out - man on the prowl\\nBaby come home\\nI'm on the loose and I'm looking for trouble\\nBaby come home - oh yeah\\nCause I'm a man on the prowl\\nSo honey come home - come home\\nCause I'm a man on the prowl - yeah\\nMan on the prowl\\n\\n\"},\n", " {'_id': 308799,\n", " 'lyrics': \"had to make do with a worn out rock and roll scene the old bop is getting tired need a rest well you know what i mean fifty eight that was great but it's over now and that's all something harder's coming up going to really knock a hole in the wall going to hit you grab you hard make you feel ten feet tall well i hope this baby's going to come along soon you don't know it could happen any old rainy afternoon with the temperature down and the juke box blowing no fuse and my musical life's feeling like a long sunday school cruise and you know there's one thing every single body could use yeah listen to me baby let me tell you what it's all about modern times rock and roll modern times rock and roll get you high heeled guitar boots and some groovy clothes get a hair piece on your chest and a ring through your nose find a nice little man who says he's going to make you a real big star stars in your eyes and ants in your pants think you should go far everybody in this bum sucking world going to know just who you are look out modern times rock and roll\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nHad to make do with a worn out rock and roll scene\\nThe old bop is getting tired need a rest\\nWell you know what I mean\\nFifty eight that was great\\nBut it's over now and That's all\\nSomething harder's coming up\\nGoing to really knock a hole in the wall\\nGoing to hit you grab you hard\\nMake you feel ten feet tall\\n\\nWell I hope this baby's going to come along soon\\nYou don't know it could happen any old rainy afternoon\\nWith the temperature down\\nAnd the juke box blowing no fuse\\nAnd my musical life's feeling\\nLike a long Sunday School cruise\\nAnd you know there's one thing\\nEvery single body could use\\nYeah listen to me baby\\nLet me tell you what it's all about\\nModern times rock and roll\\nModern times rock and roll\\n\\n[Guitar solo]\\n\\nGet you high heeled guitar boots and some groovy clothes\\nGet a hair piece on your chest\\nAnd a ring through your nose\\nFind a nice little man who says\\nHe's going to make you a real big star\\nStars in your eyes and ants in your pants\\nThink you should go far\\nEverybody in this bum sucking world\\nGoing to know just who you are\\nLook out\\n\\n[Outro]\\nModern times rock and roll\\n\\n\"},\n", " {'_id': 1995147,\n", " 'lyrics': \"had to make do with a worn out rock and roll scene the old bop is gettin' tired need a rest well you know what i mean fifty eight that was great but it's over now and that's all somethin' harder's coming up gonna really knock a hole in the wall gonna hit ya grab you hard make you feel ten feet tall well i hope this baby's gonna come along soon you don't know it could happen any ol' rainy afternoon with the temperature down and the jukebox blowin' no fuse and my musical life's feelin' like a long sunday school cruise and you know there's one thing every single body could use yeah listen to me baby let me tell you what it's all about modern times rock and roll modern times rock and roll get you high heeled guitar boots and some groovy clothes get a hair piece on your chest and a ring through your nose find a nice little man who says he's gonna make you a real big star stars in your eyes and ants in your pants think you should go far everybody in this bum sucking world gonna know just who you are look out modern times rock and roll\",\n", " 'original_lyrics': \"\\n\\nHad to make do with a worn out rock and roll scene\\nThe old bop is gettin' tired need a rest\\nWell you know what I mean\\nFifty eight that was great\\nBut it's over now and That's all\\nSomethin' harder's coming up\\nGonna really knock a hole in the wall\\nGonna hit ya grab you hard\\nMake you feel ten feet tall\\n\\nWell I hope this baby's gonna come along soon\\nYou don't know it could happen any ol' rainy afternoon\\nWith the temperature down\\nAnd the jukebox blowin' no fuse\\nAnd my musical life's feelin'\\nLike a long Sunday School cruise\\nAnd you know there's one thing\\nEvery single body could use\\nYeah listen to me baby\\nLet me tell you what it's all about\\nModern times rock and roll\\nModern times rock and roll\\n\\nGet you high heeled guitar boots and some groovy clothes\\nGet a hair piece on your chest\\nAnd a ring through your nose\\nFind a nice little man who says\\nHe's gonna make you a real big star\\nStars in your eyes and ants in your pants\\nThink you should go far\\nEverybody in this bum sucking world\\nGonna know just who you are\\nLook out\\n\\nModern times rock and roll\\n\\n\"},\n", " {'_id': 309037,\n", " 'lyrics': \"if you’re feeling tired and lonely uninspired and lonely if you’re thinking how the days seem long all you’re given is what you’ve been given a thousand times before just more more more of that jazz more no more of that jazz give me no more no more of that jazz only football gives us thrills rock'n'roll just pays the bills only our team is the real team bring out the dogs get on your feet lay on the floor can’t help thinking i’ve heard that line before just more more more of that jazz more no more of that jazz give me no more no more of that jazz oh no matter fool got no business hanging round and telling lies bicycle races are coming your way if you can’t beat ‘em join them fun it oh you’re gonna let it all hang out fat bottomed girls you make the rocking world go round no more no more no more of that jazz\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nIf you’re feeling tired and lonely\\nUninspired and lonely\\nIf you’re thinking how the days seem long\\nAll you’re given\\nIs what you’ve been given\\nA thousand times before\\n\\n[Chorus]\\nJust more, more\\nMore of that jazz\\nMore, no more of that jazz\\nGive me no more\\nNo more of that jazz\\n\\n[Verse 2]\\nOnly football gives us thrills\\nRock'n'roll just pays the bills\\nOnly our team is the real team\\nBring out the dogs, get on your feet\\nLay on the floor\\nCan’t help thinking I’ve heard that line before\\n\\n[Chorus]\\nJust more more\\nMore of that jazz\\nMore no more of that jazz\\nGive me no more\\nNo more of that jazz\\n\\n[Verse 2]\\nOh, no matter\\nFool got no business hanging round and telling lies\\nBicycle races are coming your way\\nIf you can’t beat ‘em join them\\nFun it\\nOh, you’re gonna let it all hang out\\nFat bottomed girls you make the rocking world go round\\n\\n[Outro]\\nNo more, no more, no more\\nOf that jazz\\n\\n\"},\n", " {'_id': 310164,\n", " 'lyrics': \"i don't want to sleep with you i don't need the passion too i don't want a stormy affair to make me feel my life is heading somewhere all i want is the comfort and care just to know that my woman gives me sweet mother love ah ha i've walked too long in this lonely lane i've had enough of this same old game i'm a man of the world and they say that i'm strong but my heart is heavy and my hope is gone out in the city in the cold world outside i don't want pity just a safe place to hide mama please let me back inside i don't want to make no waves but you can give me all the love that i crave i can't take it if you see me cry i long for peace before i die all i want is to know that you're there you're going to give me all your sweet mother love ah ha (mother love) my body's aching but i can't sleep my dreams are all the company i keep got such a feeling as the sun goes down i'm coming home to my sweet mother love (mother love mother love love love love love) god works in mysterious ways eeeeh dop de dop dep dop i think i'm going back to the things i learnt so well in my youth\",\n", " 'original_lyrics': \"\\n\\n[Verse 1: Freddie Mercury]\\nI don't want to sleep with you\\nI don't need the passion too\\nI don't want a stormy affair\\n\\nTo make me feel my life is heading somewhere\\nAll I want is the comfort and care\\nJust to know that my woman gives me sweet\\nMother love ah ha\\n\\nI've walked too long in this lonely lane\\nI've had enough of this same old game\\nI'm a man of the world and they say that I'm strong\\n\\nBut my heart is heavy, and my hope is gone\\nOut in the city, in the cold world outside\\nI don't want pity, just a safe place to hide\\nMama please, let me back inside\\n\\nI don't want to make no waves\\nBut you can give me all the love that I crave\\nI can't take it if you see me cry\\nI long for peace before I die\\n\\nAll I want is to know that you're there\\nYou're going to give me all your sweet\\nMother love ah ha (mother love)\\n\\n[Chorus: Brian May]\\nMy body's aching, but I can't sleep\\nMy dreams are all the company I keep\\nGot such a feeling as the sun goes down\\nI'm coming home to my sweet\\nMother love\\n\\n[Outro]\\n(Mother love mother love love love love love)\\nGod works in mysterious ways\\nEeeeh dop, de dop, dep dop\\nI think I'm going back to the things I learnt so well in my youth\\n\\n\"},\n", " {'_id': 309019,\n", " 'lyrics': \"ibrahim ibrahim ibrahim allah allah allah allah we'll pray for you hey mustapha mustapha mustapha ibrahim mustapha mustapha mustapha ibrahim mustapha ibrahim mustapha ibrahim allah allah allah we'll pray for you mustapha ibrahim al havra kris vanin allah allah allah we'll pray for you mustapha hey mustapha mustapha ibrahim mustapha ibrahim hey allah-i allah-i allah-i ibra-ibra-ibrahim yeah ibrahim ibrahim ibrahim allah allah allah-i hey mustapha mustapha - allah-i na stolei mustapha mustapha - achtar es na sholei mustapha mustapha - mochamut dei ya low eshelei mustapha mustapha - ai ai ai ai ahelei mustapha mustapha ist avil ahiln avil ahiln adhim mustapha salaam aleikum mustapha ibrahim mustapha ibrahim allah allah allah we'll pray for you mustapha ibrahim al havra kris vanin allah allah allah we'll pray for you mustapha hey mustapha mustapha ibrahim mustapha ibrahim hey allah-i allah-i allah-i ibra-ibra-ibrahim yeah ibrahim ibrahim ibrahim allah allah allah-i hey mustapha mustapha mustapha mustapha mustapha mustapha mustapha mustapha mustapha mustapha vontap ist ahiln avil ahiln adhim mustapha aleikum salaam hey\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nIbrahim, Ibrahim, Ibrahim\\nAllah, Allah, Allah, Allah we'll pray for you\\nHey!\\nMustapha, Mustapha, Mustapha Ibrahim\\nMustapha, Mustapha, Mustapha Ibrahim\\n\\n[Chorus 1]\\nMustapha Ibrahim, Mustapha Ibrahim\\nAllah, Allah, Allah we'll pray for you\\nMustapha Ibrahim, al havra kris vanin\\nAllah, Allah, Allah we'll pray for you\\nMustapha, hey! Mustapha\\nMustapha Ibrahim, Mustapha Ibrahim, hey!\\n\\n[Chorus 2]\\nAllah-I, Allah-I, Allah-I\\nIbra-Ibra-Ibrahim, yeah!\\nIbrahim, Ibrahim, Ibrahim\\nAllah Allah Allah-I hey!\\n\\n[Verse 2]\\nMustapha Mustapha - Allah-I na stolei\\nMustapha Mustapha - Achtar es na sholei\\nMustapha Mustapha - Mochamut dei ya low eshelei\\nMustapha Mustapha - ai ai ai ai ahelei\\nMustapha\\nMustapha\\nIst avil ahiln avil ahiln adhim Mustapha\\nSalaam Aleikum!\\n\\n[Chorus 1]\\nMustapha Ibrahim, Mustapha Ibrahim\\nAllah, Allah, Allah we'll pray for you\\nMustapha Ibrahim, al havra kris vanin\\nAllah, Allah, Allah we'll pray for you\\nMustapha, hey! Mustapha\\nMustapha Ibrahim, Mustapha Ibrahim, hey!\\n\\n[Chorus 2]\\nAllah-I, Allah-I, Allah-I\\nIbra-Ibra-Ibrahim, yeah!\\nIbrahim, Ibrahim, Ibrahim\\nAllah Allah Allah-I hey!\\n\\nMustapha Mustapha\\nMustapha Mustapha\\nMustapha Mustapha\\nMustapha Mustapha\\nMustapha\\nMustapha\\nVontap ist ahiln avil ahiln adhim Mustapha\\nAleikum Salaam hey\\n\\n\"},\n", " {'_id': 309766,\n", " 'lyrics': \"turn it up a bit please my baby baby does my baby does me good my baby does my baby does me my baby does me good my lady understands understands me right she understands me she understands me understands me right my baby cares she really cares she knows what's really right for me does me good then she hurts me so she winds me up and then lets me go turns me on and then tells me no she's just a pussy cat my baby loves me my baby loves me my baby cuffs me one day she tells me that she cares another day she tells me she don't love me she really really does me oooh now people do you believe this do you oooh oooh she really really really really really really does me\",\n", " 'original_lyrics': \"\\n\\nTurn it up a bit please\\n\\nMy baby\\nBaby does\\nMy baby does me good\\nMy baby does\\nMy baby does me\\nMy baby does me good\\n\\nMy lady\\nUnderstands\\nUnderstands me right\\nShe understands me\\nShe understands me\\nUnderstands me right\\n\\nMy baby cares\\nShe really cares\\nShe knows what's really right for me\\nDoes me good then she hurts me so\\nShe winds me up and then lets me go\\nTurns me on and then tells me no\\nShe's just a pussy cat\\n\\nMy baby loves me\\nMy baby loves me\\nMy baby cuffs me\\nOne day she tells me that she cares\\nAnother day she tells me she don't love me\\nShe really really does me\\n\\nOooh\\nNow people do you believe this\\nDo you\\nOooh\\n\\nOooh\\nShe really really really really really really\\nDoes me\\n\\n\"},\n", " {'_id': 1141109,\n", " 'lyrics': \"turn it up a bit please my baby baby does my baby does me good my baby does my baby does me my baby does me good my lady understands understands me right she understands me she understands me understands me right mmmmmmm my baby cares she really cares she knows what's really right for me does me good then she hurts me so she winds me up then lets me go turns me on and then tells me no she's just a pussy cat my baby loves me my baby loves me (ooh) my baby cuffs me (ooh) one day she'll tells me that she cares another day she tells me she don't love me she really really does me ooh people do you believe this do you oo ooh ah ooh ooh ooh ooh she really really really really really really aah does me hey\",\n", " 'original_lyrics': \"\\n\\nTurn it up a bit please\\nMy baby\\nBaby does\\nMy baby does, me good\\nMy baby does\\nMy baby does me\\nMy baby does me good\\nMy lady\\nUnderstands\\nUnderstands me right\\nShe understands me\\nShe understands me\\nUnderstands me right\\nMmmmmmm\\nMy baby cares\\nShe really cares\\nShe knows what's really right for me\\nDoes me good then she hurts me so\\nShe winds me up then lets me go\\nTurns me on and then tells me no\\nShe's just a pussy cat\\nMy baby loves me\\nMy baby loves me (ooh)\\nMy baby cuffs me (ooh)\\nOne day she'll tells me that she cares\\nAnother day she tells me she don't love me\\nShe really really does me\\nOoh, people do you believe this ?, do you ?\\nOo ooh, ah\\nOoh ooh ooh\\nOoh she really really really really really really aah, does me, hey\\n\\n\"},\n", " {'_id': 308689,\n", " 'lyrics': \"in the land where horses born with eagle wings and honey bees have lost their stings there's singing forever lion's den with fallow deer and rivers made from wine so clear flow on and on forever dragons fly like sparrows thru' the air and baby lambs where samson dares to go on on on on on on my fairy king can see things | he rules the air and turns the tides that are not there for you and me | oh yeah he guides the winds my fairy king can do right and nothing wrong then came man to savage in the night to run like thieves and to kill like knives to take away the power from the magic hand to bring about the ruin to the promised land they turn the milk into sour like the blue in the blood of my veins why can't you see it fire burning in hell with the cry of screaming pain son of heaven set me free and let me go sea turn dry no salt from sand seasons fly no helping hand teeth don't shine like pearls for the poor man's eyes someone someone has drained the color from my wings broken my fairy circle ring and shamed the king in all his pride changed the winds and wronged the tides mother mercury (mercury) look what they've done to me i cannot run i cannot hide\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nIn the land where horses born with eagle wings\\nAnd honey bees have lost their stings\\nThere's singing forever\\nLion's den with fallow deer\\nAnd rivers made from wine so clear\\nFlow on and on forever\\nDragons fly like sparrows thru' the air\\nAnd baby lambs where Samson dares\\nTo go on on on on on on\\n\\n[First voice] [Second Voice]\\nMy fairy king can see things | He rules the air and turns the tides\\nThat are not there for you and me | Oh yeah he guides the winds\\n\\nMy fairy king can do right and nothing wrong\\nThen came man to savage in the night\\nTo run like thieves and to kill like knives\\nTo take away the power from the magic hand\\nTo bring about the ruin to the promised land\\n\\nThey turn the milk into sour\\nLike the blue in the blood of my veins\\nWhy can't you see it\\nFire burning in hell with the cry of screaming pain\\nSon of heaven set me free and let me go\\nSea turn dry no salt from sand\\nSeasons fly no helping hand\\nTeeth don't shine like pearls for the poor man's eyes\\n\\nSomeone someone has drained the color from my wings\\nBroken my fairy circle ring\\nAnd shamed the king in all his pride\\nChanged the winds and wronged the tides\\nMother mercury (mercury)\\nLook what they've done to me\\nI cannot run I cannot hide\\n\\n\"},\n", " {'_id': 1226136,\n", " 'lyrics': \"queen queen my fairy king (mercury) in the land where horses born with eagle wings and honey bees have lost their stings there's singing forever lion's den with fallow deer and rivers made from wine so clear flow on and on forever dragons fly like sparrows thru' the air and baby lambs where samson dares to go on on on on on on my fairy king can see things he rules the air and turns the tides that are not there for you and me ohh yeah he guides the winds my fairy king can do right and nothing wrong then came man to savage in the night to run like thieves and to kill like knives to take away the power from the magic hand to bring about the ruin to the promised land they turn the milk into sour like the blue in the blood of my veins why can't you see it fire burnin' in hell with the cry of screaming pain son of heaven set me free and let me go sea turn dry no salt from sand teeth don't shine like pearls for the poor man's eyes someone someone has drained the colour from my wings broken my fairy circle ring and shamed the king in all his pride changed the winds and wronged the tides mother mercury (mercury) look what they've done to me i cannot run i cannot hide\",\n", " 'original_lyrics': \"\\n\\nQueen\\nQueen\\nMy Fairy King (Mercury)\\nIn the land where horses born with eagle wings\\nAnd honey bees have lost their stings\\nThere's singing forever\\nLion's den with fallow deer\\nAnd rivers made from wine so clear\\nFlow on and on forever\\nDragons fly like sparrows thru' the air\\nAnd baby lambs where Samson dares\\nTo go on on on on on on\\nMy fairy king can see things He rules the air and turns the tides\\nThat are not there for you and me Ohh yeah he guides the winds\\nMy fairy king can do right and nothing wrong\\nThen came man to savage in the night\\nTo run like thieves and to kill like knives\\nTo take away the power from the magic hand\\nTo bring about the ruin to the promised land\\nThey turn the milk into sour\\nLike the blue in the blood of my veins\\nWhy can't you see it\\nFire burnin' in hell with the cry of screaming pain\\nSon of heaven set me free and let me go\\nSea turn dry no salt from sand\\nTeeth don't shine like pearls for the poor man's eyes\\nSomeone someone has drained the colour from my wings\\nBroken my fairy circle ring\\nAnd shamed the king in all his pride\\nChanged the winds and wronged the tides\\nMother mercury (mercury)\\nLook what they've done to me\\nI cannot run I cannot hide\\n\\n\"},\n", " {'_id': 310165,\n", " 'lyrics': \"this is where we are today people going separate ways this is the way things are now in disarray i read it in the papers there's death on every page oh lord i thank the lord above my life has been saved yeah yeah yeah here we go telling lies here we go (here we go) this is the way we are today oh ho oh ho we're right back were we started from people going separate ways this is the way things are now in disarray - hey i read it in the papers there's death on every page oh oh lord i thank you for my my life has been saved my life my life has been saved my life my life has been saved i'm in no doubt i'm blind i don't know what's coming to me\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nThis is where we are today\\nPeople going separate ways\\nThis is the way things are now\\nIn disarray\\nI read it in the papers\\nThere's death on every page\\nOh Lord I thank the Lord above\\nMy life has been saved\\nYeah yeah yeah\\nHere we go\\nTelling lies\\nHere we go (here we go)\\nThis is the way we are today\\nOh ho oh ho\\nWe're right back were we started from\\nPeople going separate ways\\nThis is the way things are now\\nIn disarray - hey\\nI read it in the papers\\nThere's death on every page oh\\nOh Lord I thank you for my\\nMy life has been saved\\n\\n[Bridge]\\nMy life\\nMy life has been saved\\nMy life[x2]\\nMy life has been saved\\n\\n[Outro]\\nI'm in no doubt\\nI'm blind\\nI don't know what's coming to me\\n\\n\"},\n", " {'_id': 309015,\n", " 'lyrics': \"another party's over and i'm left cold sober my baby left me for somebody new i don't want to talk about it want to forget about it want to be intoxicated with that special brew so come and get me let me get in that sinking feeling that says my heart is on an all time low - so don't expect me to behave perfectly and wear that sunny smile my guess is i'm in for a cloudy and overcast don't try and stop me because i'm heading for that stormy weather soon i'm causing a mild sensation with this new occupation i'm permanently glued to this extraordinary mood so now move over and let me take over with my melancholy blues i'm causing a mild sensation with this new occupation i'm in the news i'm just getting used to my new exposure come into my enclosure and meet my melancholy blues\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nAnother party's over\\nAnd I'm left cold sober\\nMy baby left me for somebody new\\nI don't want to talk about it\\nWant to forget about it\\nWant to be intoxicated with that special brew\\n\\n[Bridge]\\nSo come and get me\\nLet me\\nGet in that sinking feeling\\nThat says my heart is on an all time low - so\\nDon't expect me\\nTo behave perfectly\\nAnd wear that sunny smile\\nMy guess is I'm in for a cloudy and overcast\\nDon't try and stop me\\nBecause I'm heading for that stormy weather soon\\n\\n[Verse 2]\\nI'm causing a mild sensation\\nWith this new occupation\\nI'm permanently glued\\nTo this extraordinary mood, so now move over\\nAnd let me take over\\nWith my melancholy blues\\n\\n[Interlude]\\n\\n[Verse 3]\\nI'm causing a mild sensation\\nWith this new occupation\\nI'm in the news\\nI'm just getting used to my new exposure\\nCome into my enclosure\\nAnd meet my melancholy blues\\n\\n\"},\n", " {'_id': 309526,\n", " 'lyrics': \"no i'll never look back in anger no i'll never find me an answer you promised me you'd keep in touch i read your letter and it hurt me so much i said i'd never never be angry with you i don't wanna feel like a stranger no 'cause i'd rather stay out of danger i read your letter so many times i got your meaning between the lines i said i'd never never be angry with you i must be strong so she won't know how much i miss her i only hope as time goes on i'll forget her my body's aching can't sleep at night i'm too exhausted to start a fight and if i see her with another guy i'll eat my heart out 'cos i love love love love her come on baby let's get together i'll love you baby i'll love you forever i'm trying hard to stay away what made you change what did i say oh i need your loving tonight\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nNo I'll never, look back in anger\\nNo I'll never, find me an answer\\nYou promised me, you'd keep in touch\\nI read your letter and it hurt me so much\\nI said I'd never, never be angry with you\\nI don't wanna feel like a stranger, no\\n'Cause I'd rather stay out of danger\\nI read your letter so many times\\nI got your meaning between the lines\\nI said I'd never, never be angry with you\\nI must be strong so she won't know how much I miss her\\nI only hope as time goes on, I'll forget her\\nMy body's aching, can't sleep at night\\nI'm too exhausted to start a fight\\nAnd if I see her with another guy\\nI'll eat my heart out\\n'cos I love, love, love, love her\\nCome on baby, let's get together\\nI'll love you baby, I'll love you forever\\nI'm trying hard, to stay away\\nWhat made you change, what did I say\\nOh I need your loving tonight\\n\\n\"},\n", " {'_id': 1170883,\n", " 'lyrics': \"a hand above the water an angel reaching for the sky is it raining in heaven - do you want us to cry and everywhere the broken-hearted on every lonely avenue no-one could reach them no-one but you one by one only the good die young they're only flyin' too close to the sun and life goes on - without you another tricky situation i get to drownin' in the blues and i find myself thinkin' well - what would you do yea - it was such an operation forever paying every due hell you made a sensation you found a way through - and one by one only the good die young they're only flyin' too close to the sun we'll remember - forever and now the party must be over i guess we'll never understand the sense of your leaving was it the way it was planned and so we grace another table and raise our glasses one more time there's a face at the window and i ain't never never sayin' goodbye one by one only the good die young they're only flyin' too close to the sun cryin' for nothing cryin' for no-one no-one but you\",\n", " 'original_lyrics': \"\\n\\nA hand above the water\\nAn angel reaching for the sky\\nIs it raining in Heaven -\\nDo you want us to cry?\\n\\nAnd everywhere the broken-hearted\\nOn every lonely avenue\\nNo-one could reach them\\nNo-one but you\\n\\nOne by one\\nOnly the Good die young\\nThey're only flyin' too close to the sun\\nAnd life goes on -\\nWithout you...\\n\\nAnother Tricky Situation\\nI get to drownin' in the Blues\\nAnd I find myself thinkin'\\nWell - what would you do?\\n\\nYea! - it was such an operation\\nForever paying every due\\nHell, you made a sensation\\nYou found a way through - and\\n\\nOne by one\\nOnly the Good die young\\nThey're only flyin' too close to the sun\\nWe'll remember -\\nForever...\\n\\nAnd now the party must be over\\nI guess we'll never understand\\nThe sense of your leaving\\nWas it the way it was planned?\\n\\nAnd so we grace another table\\nAnd raise our glasses one more time\\nThere's a face at the window\\nAnd I ain't never, never sayin' goodbye...\\n\\nOne by one\\nOnly the Good die young\\nThey're only flyin' too close to the sun\\nCryin' for nothing\\nCryin' for no-one\\nNo-one but you\\n\\n\"},\n", " {'_id': 308888,\n", " 'lyrics': \"here i stand look around around around but you won't see me now i'm here(x3) now i'm there(x3) i'm just a just a new man yes you made me live again a baby i was when you took my hand and the light of the night burned bright and the people all stared didn't understand but you knew my name on sight whatever came of you and me america's new bride to be - don't worry baby i'm safe and sound down in the dungeon just peaches and me don't i love her so yes she made me live again yeah a thin moon me in a smoke-screen sky where the beams of your love light chase don't move don't speak don't feel no pain with a rain running down my face your matches still light up the sky and many a tear lives on in my eye down in the city just hoople and me don't i love him so whatever comes of you and me i love to leave my memory with you now i'm here think i'll stay around around around we'll be down in the city just as you and me don't i love you so\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nHere I stand\\nLook around around around\\nBut you won't see me\\n\\n[Chorus]\\nNow I'm here(x3)\\nNow I'm there(x3)\\nI'm just a, just a new man!\\nYes you made me live again\\n\\n[Verse 2]\\nA baby I was when you took my hand\\nAnd the light of the night burned bright\\nAnd the people all stared didn't understand\\nBut you knew my name on sight\\n\\n[Second Chorus]\\nWhatever came of you and me\\nAmerica's new bride to be - don't worry baby I'm safe and sound\\nDown in the dungeon just Peaches and me\\nDon't I love her so\\nYes she made me live again Yeah!\\n\\n[Verse 4]\\nA thin moon me in a smoke-screen sky\\nWhere the beams of your love light chase\\nDon't move, don't speak, don't feel no pain\\nWith a rain running down my face\\n\\n[Verse 5]\\nYour matches still light up the sky\\nAnd many a tear lives on in my eye\\nDown in the city just Hoople and me\\nDon't I love him so\\n\\n[Second Chorus]\\nWhatever comes of you and me\\nI love to leave my memory with you\\n\\n[Outro - Final Chorus]\\nNow I'm here\\nThink I'll stay around around around\\nWe'll be down in the city just as you and me\\nDon't I love you so\\n\\n\"},\n", " {'_id': 1285558,\n", " 'lyrics': \"queen greatest hits now i'm here (may) here i stand look around around around but you won't see me now i'm here now i'm there i'm just a just a new man yes you made me live again a baby i was when you took my hand and the light of the night burned bright and the people all stared didn't understand but you knew my name on sight whatever came of you and me america's new bride to be - don't worry baby i'm safe and sound down in the dungeon just peaches 'n' me don't i love her so a thin moon me in a smoke-screen sky where the beams of your lovelight chase don't move don't speak don't feel no pain with a rain running down my face your matches still light up the sky and many a tear lives on in my eye down in the city just hoople 'n' me don't i love him so whatever comes of you and me i love to leave my memory with you now i'm here think i'll stay around around around we'll be down in the city justa you 'n' me don't i love you so\",\n", " 'original_lyrics': \"\\n\\nQueen\\nGreatest Hits\\nNow I'm Here (May)\\nHere I stand\\nLook around around around\\nBut you won't see me\\nNow I'm here, Now I'm there, I'm just a\\nJust a new man\\nYes you made me live again\\nA baby I was when you took my hand\\nAnd the light of the night burned bright\\nAnd the people all stared didn't understand\\nBut you knew my name on sight\\nWhatever came of you and me\\nAmerica's new bride to be - don't worry baby I'm safe and sound\\nDown in the dungeon just Peaches 'n' me\\nDon't I love her so\\nA thin moon me in a smoke-screen sky\\nWhere the beams of your lovelight chase\\nDon't move, don't speak, don't feel no pain\\nWith a rain running down my face\\nYour matches still light up the sky\\nAnd many a tear lives on in my eye\\nDown in the city just Hoople 'n' me\\nDon't I love him so\\nWhatever comes of you and me\\nI love to leave my memory with you\\nNow I'm here\\nThink I'll stay around around around\\nWe'll be down in the city justa you 'n' me\\nDon't I love you so\\n\\n\"},\n", " {'_id': 1952068,\n", " 'lyrics': \"here i stand (here i stand) look around around around around (around around around around) but you won't see me (you won't see me) now i'm here (now i'm here) now i'm there (now i'm there) i'm just a just a new man yes you made me live again a baby i was when you took my hand and the light of the night burned bright and the people all stared didn't understand but you knew my name on sight whatever came of you and me america's new bride to be don't worry baby i'm safe and sound down in the dungeon just peaches and me don't i love her so yes she made me live again yeah a thin moon me in the smoke screen sky where the beams of your love light chase don't move don't speak don't feel no pain with the rain running down my face your matches still light up the sky and many a tear lives on in my eye down in the city just hoople and me don't i love him so don't i love him so whatever comes of you and me i love to leave my memories with you now i'm here (now i'm here) think i'll stay around around around (around around around around) down in the city just you and me (down in the city just you and me) don't i love you so go go go little queenie\",\n", " 'original_lyrics': \"\\n\\nHere I stand (here I stand..)\\nLook around around around around\\n(Around around around around..)\\nBut you won't see me (you won't see me..)\\nNow I'm here (now I'm here..)\\nNow I'm there (now I'm there..)\\nI'm just a just a new man\\nYes you made me live again\\n\\nA baby I was when you took my hand\\nAnd the light of the night burned bright\\nAnd the people all stared didn't understand\\nBut you knew my name on sight\\nWhatever came of you and me?\\nAmerica's new bride to be\\nDon't worry baby I'm safe and sound\\nDown in the dungeon just Peaches and me\\nDon't I love her so?\\nYes she made me live again Yeah!\\n\\nA thin moon me in the smoke screen sky\\nWhere the beams of your love light chase\\nDon't move don't speak don't feel no pain\\nWith the rain running down my face\\nYour matches still light up the sky\\nAnd many a tear lives on in my eye\\nDown in the city just Hoople and me\\nDon't I love him so don't I love him so?\\n\\nWhatever comes of you and me\\nI love to leave my memories with you\\n\\nNow I'm here (now I'm here.)\\nThink I'll stay around around around\\n(Around around around around..)\\nDown in the city just you and me\\n(Down in the city just you and me..)\\n\\nDon't I love you so?\\n\\nGo Go Go Little Queenie\\n\\n\"},\n", " {'_id': 1981728,\n", " 'lyrics': \"here i stand (here i stand) look around around around around (around around around around) but you won't see me (you won't see me) now i'm here (now i'm here) now i'm there (now i'm there) i'm just a just a new man yes you made me live again a baby i was when you took my hand and the light of the night burned bright and the people all stared didn't understand but you knew my name on sight whatever came of you and me america's new bride to be don't worry baby i'm safe and sound down in the dungeon just peaches and me don't i love her so yes she made me live again yeah a thin moon me in the smoke screen sky where the beams of your love light chase don't move don't speak don't feel no pain with the rain running down my face your matches still light up the sky and many a tear lives on in my eye down in the city just hoople and me don't i love him so don't i love him so whatever comes of you and me i love to leave my memories with you now i'm here (now i'm here) think i'll stay around around around (around around around around) down in the city just you and me (down in the city just you and me) don't i love you so go go go little queenie\",\n", " 'original_lyrics': \"\\n\\nHere I stand (here I stand..)\\nLook around around around around\\n(Around around around around..)\\nBut you won't see me (you won't see me..)\\nNow I'm here (now I'm here..)\\nNow I'm there (now I'm there..)\\nI'm just a just a new man\\nYes you made me live again\\n\\nA baby I was when you took my hand\\nAnd the light of the night burned bright\\nAnd the people all stared didn't understand\\nBut you knew my name on sight\\nWhatever came of you and me?\\nAmerica's new bride to be\\nDon't worry baby I'm safe and sound\\nDown in the dungeon just Peaches and me\\nDon't I love her so?\\nYes she made me live again Yeah!\\n\\nA thin moon me in the smoke screen sky\\nWhere the beams of your love light chase\\nDon't move don't speak don't feel no pain\\nWith the rain running down my face\\nYour matches still light up the sky\\nAnd many a tear lives on in my eye\\nDown in the city just Hoople and me\\nDon't I love him so don't I love him so?\\n\\nWhatever comes of you and me\\nI love to leave my memories with you\\n\\nNow I'm here (now I'm here.)\\nThink I'll stay around around around\\n(Around around around around..)\\nDown in the city just you and me\\n(Down in the city just you and me..)\\n\\nDon't I love you so?\\n\\nGo Go Go Little Queenie\\n\\n\"},\n", " {'_id': 308857,\n", " 'lyrics': 'now once upon a time - an old man told me a fable when the piper is gone - and the soup is cold on your table and if the black crow flies to find a new destination - that is the sign come tonight come to the ogre sight come to the ogre-battle-fight he gives a great big cry and he can swallow up the ocean with a mighty tongue he catches flies - the palm of his hand is incredible one great big eye - has a focus in your direction now the battle is on come tonight come to the ogre sight come to the ogre-battle-fight the ogre men are still inside the two-way mirror mountain got to keep down right out of sight you can\\'t see in but they can see out \"keep a look out\" the ogre-men are coming out from the two-way mirror mountain they\\'re running up behind you and they\\'re coming all about can\\'t go east because you got to go south ogre-men are going home and the great big fight is over bugle blow the trumpet cry ogre battle lives for ever more you can come along you can come along come to ogre battle',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nNow once upon a time - an old man told me a fable\\nWhen the piper is gone - and the soup is cold on your table\\nAnd if the black crow flies to find a new destination - that is the sign\\n\\n[Chorus]\\nCome tonight\\nCome to the ogre sight\\nCome to the ogre-battle-fight\\n\\n[Verse 2]\\nHe gives a great big cry and he can swallow up the ocean\\nWith a mighty tongue he catches flies - the palm of his hand is incredible\\nOne great big eye - has a focus in your direction\\nNow the battle is on\\n\\n[Chorus]\\nCome tonight\\nCome to the ogre sight\\nCome to the ogre-battle-fight\\n\\n[Verse 3]\\nThe ogre men are still inside\\nThe two-way mirror mountain\\nGot to keep down right out of sight\\nYou can\\'t see in but they can see out\\n\"Keep a look out\"\\nThe ogre-men are coming out\\nFrom the two-way mirror mountain\\nThey\\'re running up behind you and they\\'re coming all about\\nCan\\'t go east because you got to go south\\nOgre-men are going home\\nAnd the great big fight is over\\nBugle blow, the trumpet cry\\nOgre battle lives for ever more\\nYou can come along\\nYou can come along\\nCome to ogre battle\\n\\n'},\n", " {'_id': 2013333,\n", " 'lyrics': 'fa fa fa fa fa fa fa fa fa faa now once upon a time - an old man told me a fable when the piper is gone - and the soup is cold on your table and if the black crow flies to find a new destination that is the sign come tonight come to the ogre sight come to the ogre-battle-fight he gives a great big cry and he can swallow up the ocean with a mighty tongue he catches flies - the palm of a hand incredible size one great big eye - has a focus in your direction now the battle is on yeah yeah yeah come tonight come to the ogre sight come to the ogre-battle-fight fa fa fa fa faa hoooa the ogre-men are still inside the two-way mirror mountain you gotta keep down right out of sight you can\\'t see in but they can see out \"ooh keep a look out\" the ogre-men are coming out from the two-way mirror mountain they\\'re running up behind and they\\'re coming all about can\\'t go east \\'cause you gotta go south aaargh aaaaaaaarghh ogre-men are going home the great big fight is over bugle blow let trumpet cry ogre battle lives for ever more - oh oh oh you can come along you can come along come to ogre battle fa fa fa fa faa',\n", " 'original_lyrics': '\\n\\nFa fa fa fa fa\\nFa fa fa fa faa\\nNow once upon a time - an old man told me a fable\\nWhen the piper is gone - and the soup is cold on your table\\nAnd if the black crow flies to find a new destination\\nThat is the sign\\nCome tonight\\nCome to the ogre sight\\nCome to the ogre-battle-fight\\n\\nHe gives a great big cry and he can swallow up the ocean\\nWith a mighty tongue he catches flies - the palm of a hand incredible size\\nOne great big eye - has a focus in your direction\\nNow the battle is on\\nYeah yeah yeah\\nCome tonight\\nCome to the ogre sight\\nCome to the ogre-battle-fight\\n\\nFa fa fa fa faa\\nHoooa\\n\\nThe ogre-men are still inside\\nThe two-way mirror mountain\\nYou gotta keep down right out of sight\\nYou can\\'t see in, but they can see out\\n\"Ooh keep a look out\"\\nThe ogre-men are coming out\\nFrom the two-way mirror mountain\\nThey\\'re running up behind and they\\'re coming all about\\nCan\\'t go east \\'cause you gotta go south\\n\\nAaargh\\nAaaaaaaarghh\\nOgre-men are going home\\nThe great big fight is over\\nBugle blow, let trumpet cry\\nOgre battle lives for ever more - oh oh oh\\nYou can come along\\nYou can come along\\nCome to ogre battle\\nFa fa fa fa faa\\n\\n'},\n", " {'_id': 1962194,\n", " 'lyrics': 'fa fa fa fa fa fa fa fa fa faa now once upon a time - an old man told me a fable when the piper is gone - and the soup is cold on your table and if the black crow flies to find a new destination that is the sign come tonight come to the ogre sight come to the ogre-battle-fight he gives a great big cry and he can swallow up the ocean with a mighty tongue he catches flies - the palm of a hand incredible size one great big eye - has a focus in your direction now the battle is on yeah yeah yeah come tonight come to the ogre sight come to the ogre-battle-fight fa fa fa fa faa hoooa the ogre-men are still inside the two-way mirror mountain you gotta keep down right out of sight you can\\'t see in but they can see out \"ooh keep a look out\" the ogre-men are coming out from the two-way mirror mountain they\\'re running up behind and they\\'re coming all about can\\'t go east \\'cause you gotta go south aaargh aaaaaaaarghh ogre-men are going home the great big fight is over bugle blow let trumpet cry ogre battle lives for ever more - oh oh oh you can come along you can come along come to ogre battle fa fa fa fa faa',\n", " 'original_lyrics': '\\n\\nFa fa fa fa fa\\nFa fa fa fa faa\\nNow once upon a time - an old man told me a fable\\nWhen the piper is gone - and the soup is cold on your table\\nAnd if the black crow flies to find a new destination\\nThat is the sign\\nCome tonight\\nCome to the ogre sight\\nCome to the ogre-battle-fight\\n\\nHe gives a great big cry and he can swallow up the ocean\\nWith a mighty tongue he catches flies - the palm of a hand incredible size\\nOne great big eye - has a focus in your direction\\nNow the battle is on\\nYeah yeah yeah\\nCome tonight\\nCome to the ogre sight\\nCome to the ogre-battle-fight\\n\\nFa fa fa fa faa\\nHoooa\\n\\nThe ogre-men are still inside\\nThe two-way mirror mountain\\nYou gotta keep down right out of sight\\nYou can\\'t see in, but they can see out\\n\"Ooh keep a look out\"\\nThe ogre-men are coming out\\nFrom the two-way mirror mountain\\nThey\\'re running up behind and they\\'re coming all about\\nCan\\'t go east \\'cause you gotta go south\\n\\nAaargh\\nAaaaaaaarghh\\nOgre-men are going home\\nThe great big fight is over\\nBugle blow, let trumpet cry\\nOgre battle lives for ever more - oh oh oh\\nYou can come along\\nYou can come along\\nCome to ogre battle\\nFa fa fa fa faa\\n\\n'},\n", " {'_id': 309604,\n", " 'lyrics': \"(god works in mysterious ways mysterious ways) (ah) hey one man one goal (ha) one mission one heart one soul just one solution one flash of light yeah one god one vision one flesh one bone one true religion one voice one hope one real decision whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh give me one vision yeah no wrong no right i'm going to tell you there's no black and no white no blood no stain all we need is (one worldwide vision) one flesh one bone one true religion one voice one hope one real decision whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-yeah whoa-yeah whoa-yeah i had a dream when i was young a dream of sweet illusion a glimpse of hope and unity and visions of one sweet union (but a cold wind blows) (and a dark rain falls) and in my heart it shows look what they've done to my dream yeah one vision (so) give me your hands give me your hearts i'm ready there's only one direction one world (and) one nation yeah one vision no hate no fight just excitation all through the night it's a celebration whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-oh-oh-whoa-oh-oh yeah (one one one one one one) (hey) (one vision) (one vision) (one vision) (one vision) one flesh one bone one true religion one voice one hope one real decision give me one night yeah give me one hope hey just give me ah one man one man one bar one night one day hey hey just gimme gimme gimme gimme fried chicken (vision) (god works in mysterious ways mysterious ways)\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\n(God works in mysterious ways, mysterious ways)\\n(Ah...)\\n\\n[Verse 1]\\nHey!\\nOne man, one goal\\n(Ha!) One mission\\nOne heart, one soul\\nJust one solution\\nOne flash of light\\nYeah, one god, one vision\\n\\n[Chorus]\\nOne flesh, one bone, one true religion\\nOne voice, one hope, one real decision\\nWhoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh\\nGive me one vision\\nYeah!\\n\\n[Verse 2]\\nNo wrong, no right\\nI'm going to tell you there's no black and no white\\nNo blood, no stain\\nAll we need is (one worldwide vision)\\n\\n[Chorus]\\nOne flesh, one bone, one true religion\\nOne voice, one hope, one real decision\\nWhoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-yeah\\nWhoa-yeah, whoa-yeah!\\n\\n[Bridge 1]\\nI had a dream when I was young\\nA dream of sweet illusion\\nA glimpse of hope and unity\\nAnd visions of one sweet union\\n(But a cold wind blows)\\n(And a dark rain falls)\\nAnd in my heart it shows\\nLook what they've done to my dream, yeah\\n\\n[Bridge 2]\\nOne vision!\\n(So) Give me your hands\\nGive me your hearts\\nI'm ready!\\nThere's only one direction\\nOne world, (and) one nation\\nYeah, one vision\\n\\n[Verse 3]\\nNo hate, no fight\\nJust excitation\\nAll through the night\\nIt's a celebration\\nWhoa-ooh-whoa-ooh-whoa-ooh-whoa-ooh-whoa-oh-oh-whoa-oh-oh yeah\\n\\n[Bridge 3]\\n(One, one, one, one, one, one)\\n(Hey!)\\n(One vision)\\n(One vision)\\n(One vision)\\n(One vision)\\n\\n[Final Chorus]\\nOne flesh, one bone, one true religion\\nOne voice, one hope, one real decision\\n\\n[Outro]\\nGive me one night, yeah\\nGive me one hope, hey\\nJust give me, ah\\nOne man, one man\\nOne bar, one night\\nOne day, hey, hey\\nJust gimme, gimme, gimme, gimme\\nFried chicken!\\n(Vision) [fading]\\n(God works in mysterious ways, mysterious ways)\\n\\n\"},\n", " {'_id': 2011042,\n", " 'lyrics': \"god works in mysterious ways mysterious ways hey one man one goal hah one mission one heart one soul just one solution one flash of light yeah one god one vision one flesh one bone one true religion one voice one hope one real decision woah woah woah woah woah woah gimme one vision ah hey no wrong no right i'm gonna tell you there's no black and no white no blood no stain all we need is one worldwide vision one flesh one bone one true religion one race one hope one real decision woah woah woah woah woah oh yeah oh yeah oh yeah i had a dream when i was young a dream of sweet illusion a glimpse of hope and unity and visions of one sweet union but a cold wind blows and a dark rain falls and in my heart it shows look what they've done to my dreams yeah (one vision) so give me your hands give me your hearts i'm ready there's only one direction one world one nation yeah one vision no hate no fight just excitation all through the night it's a celebration woah woah woah woah whoa-oh whoa-oh yeah (one-one-one-one-one-one) (one vision) (one vision) (one vision) one flesh one bone one true religion one voice one hope one real decision gimme one light yeah gimme one hope hey just gimme ah one man (one man) one bar (one night) one day (hey-hey) just gimme gimme gimme gimme fried chicken\",\n", " 'original_lyrics': \"\\n\\n[backmasked]God works in mysterious ways... Mysterious ways...\\n\\nHey!\\nOne man\\nOne goal\\nHah, one mission\\nOne heart\\nOne soul\\nJust one solution\\nOne flash\\nOf light\\nYeah, one God, one vision\\n\\nOne flesh, one bone, one true religion\\nOne voice, one hope, one real decision\\nWoah, woah, woah, woah, woah, woah, gimme one vision, ah!\\nHey!\\n\\nNo wrong\\nNo right\\nI'm gonna tell you, there's no black and no white\\nNo blood\\nNo stain\\nAll we need is one worldwide vision\\n\\nOne flesh, one bone, one true religion\\nOne race, one hope, one real decision\\nWoah, woah, woah, woah, woah, oh yeah! Oh yeah! Oh yeah!\\n\\nI had a dream\\nWhen I was young\\nA dream of sweet illusion\\nA glimpse of hope and unity\\nAnd visions of one sweet union\\nBut a cold wind blows\\nAnd a dark rain falls\\nAnd in my heart it shows\\nLook what they've done to my dreams, yeah!\\n\\n(One vision)\\nSo give me your hands\\nGive me your hearts, I'm ready!\\nThere's only one direction\\nOne world\\nOne nation\\nYeah, one vision\\n\\nNo hate, no fight, just excitation\\nAll through the night, it's a celebration\\nWoah, woah, woah, woah, whoa-oh, whoa-oh, yeah!\\n\\n(One-one-one-one-one-one...)\\n(One vision)\\n(One vision)\\n(One vision)\\n\\nOne flesh, one bone, one true religion\\nOne voice, one hope, one real decision\\nGimme one light\\nYeah, gimme one hope, hey!\\nJust gimme, ah!\\nOne man (one man), one bar (one night), one day (hey-hey)\\nJust gimme, gimme, gimme, gimme fried chicken!\\n\\n\"},\n", " {'_id': 1998125,\n", " 'lyrics': \"god works in mysterious ways mysterious ways hey one man one goal hah one mission one heart one soul just one solution one flash of light yeah one god one vision one flesh one bone one true religion one voice one hope one real decision woah woah woah woah woah woah gimme one vision ah hey no wrong no right i'm gonna tell you there's no black and no white no blood no stain all we need is one worldwide vision one flesh one bone one true religion one race one hope one real decision woah woah woah woah woah oh yeah oh yeah oh yeah i had a dream when i was young a dream of sweet illusion a glimpse of hope and unity and visions of one sweet union but a cold wind blows and a dark rain falls and in my heart it shows look what they've done to my dreams yeah (one vision) so give me your hands give me your hearts i'm ready there's only one direction one world one nation yeah one vision no hate no fight just excitation all through the night it's a celebration woah woah woah woah whoa-oh whoa-oh yeah (one-one-one-one-one-one) (one vision) (one vision) (one vision) one flesh one bone one true religion one voice one hope one real decision gimme one light yeah gimme one hope hey just gimme ah one man (one man) one bar (one night) one day (hey-hey) just gimme gimme gimme gimme fried chicken\",\n", " 'original_lyrics': \"\\n\\n[backmasked]God works in mysterious ways... Mysterious ways...\\n\\nHey!\\nOne man\\nOne goal\\nHah, one mission\\nOne heart\\nOne soul\\nJust one solution\\nOne flash\\nOf light\\nYeah, one God, one vision\\n\\nOne flesh, one bone, one true religion\\nOne voice, one hope, one real decision\\nWoah, woah, woah, woah, woah, woah, gimme one vision, ah!\\nHey!\\n\\nNo wrong\\nNo right\\nI'm gonna tell you, there's no black and no white\\nNo blood\\nNo stain\\nAll we need is one worldwide vision\\n\\nOne flesh, one bone, one true religion\\nOne race, one hope, one real decision\\nWoah, woah, woah, woah, woah, oh yeah! Oh yeah! Oh yeah!\\n\\nI had a dream\\nWhen I was young\\nA dream of sweet illusion\\nA glimpse of hope and unity\\nAnd visions of one sweet union\\nBut a cold wind blows\\nAnd a dark rain falls\\nAnd in my heart it shows\\nLook what they've done to my dreams, yeah!\\n\\n(One vision)\\nSo give me your hands\\nGive me your hearts, I'm ready!\\nThere's only one direction\\nOne world\\nOne nation\\nYeah, one vision\\n\\nNo hate, no fight, just excitation\\nAll through the night, it's a celebration\\nWoah, woah, woah, woah, whoa-oh, whoa-oh, yeah!\\n\\n(One-one-one-one-one-one...)\\n(One vision)\\n(One vision)\\n(One vision)\\n\\nOne flesh, one bone, one true religion\\nOne voice, one hope, one real decision\\nGimme one light\\nYeah, gimme one hope, hey!\\nJust gimme, ah!\\nOne man (one man), one bar (one night), one day (hey-hey)\\nJust gimme, gimme, gimme, gimme fried chicken!\\n\\n\"},\n", " {'_id': 888596,\n", " 'lyrics': \"(god works in mysterious ways) one man one goal one mission one heart one soal just one solution one flash of light yeah one god one vision one flesh one bone one true religion one voice one hope one real decision wowowowo gimme one vision no wrong no right im gonna tell you there's no black and no white no blood no stain all we need is one world wide vision one flesh one bone one true religion one race one hope one real decision wowowowo oh yeah oh yeah oh yeah i had a dream when i was young a dream of sweet illusion a glimpse of hope and unity and visions of one sweet union but a cold wind blows and a dark rain falls and in my heart it shows look what they've done to my dreams so give me your hands give me your hearts im ready there's only one direction one world one nation yeah one vision no hate no fight just excitation all through the night its a celebration wowowowo yeah one one one one one vision one flesh one bone one true religion one voice one hope one real decision gimme one light gimme one hope just gimme one man one man one bar one night one day hey hey just gimme gimme gimme gimme fried chicken\",\n", " 'original_lyrics': \"\\n\\n(God works in mysterious ways)\\nOne man one goal one mission\\nOne heart one soal just one solution\\nOne flash of light yeah one God one vision\\nOne flesh one bone\\nOne true religion\\nOne voice one hope\\nOne real decision\\nWowowowo gimme one vision\\nNo wrong no right\\nIm gonna tell you there's no black and no white\\nNo blood no stain\\nAll we need is one world wide vision\\nOne flesh one bone\\nOne true religion\\nOne race one hope\\nOne real decision\\nWowowowo oh yeah oh yeah oh yeah\\nI had a dream\\nWhen I was young\\nA dream of sweet illusion\\nA glimpse of hope and unity\\nAnd visions of one sweet union\\nBut a cold wind blows\\nAnd a dark rain falls\\nAnd in my heart it shows\\nLook what they've done to my dreams\\nSo give me your hands\\nGive me your hearts\\nIm ready\\nThere's only one direction\\nOne world one nation\\nYeah one vision\\nNo hate no fight\\nJust excitation\\nAll through the night\\nIts a celebration wowowowo yeah\\nOne one one one...\\nOne vision...\\nOne flesh one bone\\nOne true religion\\nOne voice one hope\\nOne real decision\\nGimme one light\\nGimme one hope\\nJust gimme\\nOne man one man\\nOne bar one night\\nOne day hey hey\\nJust gimme gimme gimme gimme\\nFried chicken\\n\\n\"},\n", " {'_id': 1843942,\n", " 'lyrics': \"just one year of love is better than a lifetime alone one sentimental moment in your arms is like a shooting star right through my heart its always a rainy day without you i'm a prisoner of love inside you i'm falling apart all around you yeah my heart cries out to your heart i'm lonely but you can save me my hand reaches out for your hand i'm cold but you light the fire in me my lips search for your lips i'm hungry for your touch theres so much left unspoken and all i can do is surrender to the moment just surrender and no one ever told me that love would hurt so much oooh yes it hurts and pain is so close to pleasure and all i can do is surrender to your love just surrender to your love just one year of love is better than a lifetime alone one sentimental moment in your arms is like a shooting star right through my heart its always a rainy day without you i'm a prisoner of love inside you i'm falling apart all around you and all i can do is surrender\",\n", " 'original_lyrics': \"\\n\\nJust one year of love\\nIs better than A lifetime alone\\nOne sentimental moment in your arms\\nIs like A shooting star right through my heart\\nIts always A rainy day without you\\nI'm A prisoner of love inside you\\nI'm falling apart all around you, yeah\\nMy heart cries out to your heart\\nI'm lonely but you can save me\\nMy hand reaches out for your hand\\nI'm cold but you light the fire in me\\nMy lips search for your lips\\nI'm hungry for your touch\\nTheres so much left unspoken\\nAnd all I can do is surrender\\nTo the moment just surrender\\nAnd no one ever told me that love would hurt so much\\nOooh yes it hurts\\nAnd pain is so close to pleasure\\nAnd all I can do is surrender to your love\\nJust surrender to your love\\nJust one year of love\\nIs better than A lifetime alone\\nOne sentimental moment in your arms\\nIs like A shooting star right through my heart\\nIts always A rainy day without you\\nI'm A prisoner of love inside you\\nI'm falling apart all around you\\nAnd all I can do is surrender\\n\\n\"},\n", " {'_id': 309622,\n", " 'lyrics': \"just one year of love is better than a lifetime alone one sentimental moment in your arms is like a shooting star right through my heart it's always a rainy day without you i'm a prisoner of love inside you - i'm falling apart all around you - yeah my heart cries out to your heart i'm lonely but you can save me my hand reaches out for your hand i'm cold but you light the fire in me my lips search for your lips i'm hungry for your touch there's so much left unspoken and all i can do is surrender to the moment just surrender and no one ever told me that love would hurt so much (oooh yes it hurts) and pain is so close to pleasure and all i can do is surrender to your love (just surrender to your love) just one year of love is better than a lifetime alone one sentimental moment in your arms is like a shooting star right through my heart it's always a rainy day without you i'm a prisoner of love inside you i'm falling apart all around you and all i can do is surrender\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nJust one year of love\\nIs better than a lifetime alone\\nOne sentimental moment in your arms\\nIs like a shooting star right through my heart\\nIt's always a rainy day without you\\nI'm a prisoner of love inside you -\\nI'm falling apart all around you - yeah\\nMy heart cries out to your heart\\nI'm lonely but you can save me\\nMy hand reaches out for your hand\\nI'm cold but you light the fire in me\\nMy lips search for your lips\\nI'm hungry for your touch\\nThere's so much left unspoken\\nAnd all I can do is surrender\\nTo the moment just surrender\\nAnd no one ever told me that love would hurt so much\\n(Oooh yes it hurts)\\nAnd pain is so close to pleasure\\nAnd all I can do is surrender to your love\\n(Just surrender to your love)\\nJust one year of love\\nIs better than a lifetime alone\\nOne sentimental moment in your arms\\nIs like a shooting star right through my heart\\nIt's always a rainy day without you\\nI'm a prisoner of love inside you\\nI'm falling apart all around you\\nAnd all I can do is surrender\\n\\n\"},\n", " {'_id': 309658,\n", " 'lyrics': \"ooh ooh pain is so close to pleasure oh yeah sunshine and rainy weather go hand in hand together all your life ooh ooh pain is so close to pleasure everybody knows one day we love each other then we're fighting one another all the time when i was young and just getting started and people talked to me they sounded broken hearted then i grew up and got my imagination and all i wanted was to start a new relation so in love but love had a bad reaction i was looking for good old satisfaction but pain is all i got when all i needed was some love and affection ooh ooh pain is so close to pleasure yeah yeah sunshine and rainy weather go hand in hand together all your life pain and pleasure ooh ooh pain and pleasure when your plans go wrong and you turn out the light but inside your mind you have to put up a fight where are the answers that we're all searching for there's nothing in this world to be sure of anymore but if you're feeling happy someone else is always sad let the sweetness on love wipe the tears from your face for better for worse so let's make the best of the rest of our years ooh ooh pain is so close to pleasure i told you so sunshine and rainy weather go hand in hand together all your life pain is so close to pleasure yeah yeah sunshine and rainy weather go hand in hand together all your life all your life pain - pleasure\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nOoh, ooh, pain is so close to pleasure, oh yeah\\nSunshine and rainy weather go hand in hand together all your life\\nOoh, Ooh, pain is so close to pleasure everybody knows\\nOne day we love each other then we're fighting one another all the time\\nWhen I was young and just getting started\\nAnd people talked to me they sounded broken hearted\\nThen I grew up and got my imagination\\nAnd all I wanted was to start a new relation\\nSo in love but love had a bad reaction\\nI was looking for good old satisfaction\\nBut pain is all I got when all I needed was some love and affection\\nOoh, ooh, pain is so close to pleasure, yeah, yeah\\nSunshine and rainy weather go hand in hand together all your life\\nPain and pleasure, Ooh, Ooh, pain and pleasure\\nWhen your plans go wrong and you turn out the light\\nBut inside your mind you have to put up a fight\\nWhere are the answers that we're all searching for\\nThere's nothing in this world to be sure of anymore\\nBut if you're feeling happy someone else is always sad\\nLet the sweetness on love wipe the tears from your face\\nFor better for worse\\nSo let's make the best of the rest of our years\\nOoh, ooh, pain is so close to pleasure, I told you so\\nSunshine and rainy weather go hand in hand together all your life\\nPain is so close to pleasure, yeah, yeah\\nSunshine and rainy weather go hand in hand together all your life\\nAll your life\\nPain - pleasure...\\n\\n\"},\n", " {'_id': 2075856,\n", " 'lyrics': \"ooh ooh pain is so close to pleasure oh yeah sunshine and rainy weather go hand in hand together all your life ooh ooh pain is so close to pleasure everybody knows one day we love each other then we're fighting one another all the time when i was young and just getting started and people talked to me they sounded broken hearted then i grew up and got my imagination and all i wanted was to start a new relation i was looking for some good old satisfaction but pain is all i got when all i needed was some love and affection ooh ooh pain is so close to pleasure yeah yeah sunshine and rainy weather go hand in hand together all your life pain and pleasure ooh ooh pain and pleasure when your plans go wrong and you turn out the light but inside of yout mind you have to put up a fight where are the answers that we're all searching for there's nothing is this world to be sure of anymore some days you're feeling good some days you're feeling bad but if you're feeling happy someone else is always sad let the sweetness on love wipe the tears from your face for better for worse so let's make the best of the rest of our years ooh ooh pain is so close to pleasure i told you so sunshine and rainy weather go hand in hand together all your life pain and pleasure ooh ooh pain is so close to pleasure yeah yeah sunshine and rainy weather go hand in hand together all your life all your life pain - pleasure\",\n", " 'original_lyrics': \"\\n\\nOoh, ooh, pain is so close to pleasure, oh yeah\\nSunshine and rainy weather go hand in hand together all your\\nLife\\nOoh, ooh, pain is so close to pleasure everybody knows\\nOne day we love each other then we're fighting one another\\nAll the time\\nWhen I was young and just getting started\\nAnd people talked to me they sounded broken hearted\\nThen I grew up and got my imagination\\nAnd all I wanted was to start a new relation\\nI was looking for some good old satisfaction\\nBut pain is all I got when all I needed was some love and\\nAffection\\nOoh, ooh, pain is so close to pleasure, yeah, yeah\\nSunshine and rainy weather go hand in hand together all your\\nLife\\nPain and pleasure. Ooh, Ooh, pain and pleasure\\nWhen your plans go wrong and you turn out the light\\nBut inside of yout mind you have to put up a fight\\nWhere are the answers that we're all searching for\\nThere's nothing is this world to be sure of anymore\\nSome days you're feeling good, some days you're feeling bad\\nBut if you're feeling happy someone else is always sad\\nLet the sweetness on love wipe the tears from your face\\nFor better for worse, so let's make the best of the rest of\\nOur years\\nOoh, ooh, pain is so close to pleasure, I told you so\\nSunshine and rainy weather go hand in hand together all your\\nLife\\nPain and pleasure ooh, ooh, pain is so close to pleasure\\nYeah, yeah\\nSunshine and rainy weather go hand in hand together all your\\nLife\\nAll your life\\nPain - pleasure...\\n\\n\"},\n", " {'_id': 309504,\n", " 'lyrics': \"open up your mind and let me step inside rest your weary head and let your heart decide it's so easy when you know the rules it's so easy all you have to do is fall in love play the game everybody play the game of love yeah when you're feeling down and your resistance is low light another cigarette and let yourself go this is your life don't play hard to get it's a free world all you have to do is fall in love play the game everybody play the game of love my game of love has just begun love runs from my head down to my toes my love is pumping through my veins (play the game) driving me insane (come come come come) come play the game play the game play the game play the game play the game everybody play the game of love this is your life don't play hard to get it's a free world all you have to do is fall in love play the game everybody play the game of love this is your life don't play hard to get it's a free world all you have to do is fall in love play the game everybody play the game of love\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nOpen up your mind and let me step inside\\nRest your weary head and let your heart decide\\n\\n[Pre-Chorus 1]\\nIt's so easy when you know the rules\\nIt's so easy, all you have to do is fall in love\\n\\n[Chorus]\\nPlay the game\\nEverybody play the game of love\\n\\nYeah\\n\\n[Verse 2]\\nWhen you're feeling down and your resistance is low\\nLight another cigarette and let yourself go\\n\\n[Pre-Chorus 2]\\nThis is your life, don't play hard to get\\nIt's a free world, all you have to do is fall in love\\n\\n[Chorus]\\nPlay the game\\nEverybody play the game of love\\n\\n[Bridge]\\nMy game of love has just begun\\nLove runs from my head down to my toes\\nMy love is pumping through my veins (play the game)\\nDriving me insane (come, come, come, come)\\nCome play the game, play the game, play the game, play the game\\n\\n[Break]\\n\\n[Chorus]\\nPlay the game\\nEverybody play the game of love\\n\\n\\n[Pre-Chorus 2 and Chorus, repeat 'til fade out]\\nThis is your life, don't play hard to get\\nIt's a free world, all you have to do is fall in love\\nPlay the game\\nEverybody play the game of love\\nThis is your life, don't play hard to get\\nIt's a free world, all you have to do is fall in love\\nPlay the game\\nEverybody play the game of love\\n\\n\"},\n", " {'_id': 1983608,\n", " 'lyrics': \"open up your mind and let me step inside rest your weary head and let your heart decide it's so easy when you know the rules it's so easy all you have to do is fall in love play the game everybody play the game of love when your feeling down and your resistance is low light another cigarette and let yourself go this is your life don't play hard to get it's a free world all you have to do is fall in love play the game everybody play the game of love my game of love has just begun love runs from my head down to my toes my love is pumping trough my veins driving me insane play the game play the game play the game play the game play the game everybody play the game of love this is your life don't play hard to get it's a free world all you have to do is fall in love play the game everybody play the game of love your life don't play hard to get it's a free world all you have to do is fall in love play the game play the game of love\",\n", " 'original_lyrics': \"\\n\\nOpen up your mind and let me step inside\\nRest your weary head and let your heart decide\\nIt's so easy when you know the rules\\nIt's so easy\\nAll you have to do is fall in love\\nPlay the game, everybody play the game\\nOf love\\nWhen your feeling down and your resistance is low\\nLight another cigarette and let yourself go\\nThis is your life, don't play hard to get\\nIt's a free world\\nAll you have to do is fall in love\\nPlay the game everybody play the game of love\\nMy game of love has just begun\\nLove runs from my head down to my toes\\nMy love is pumping trough my veins\\nDriving me insane\\nPlay the game, play the game\\nPlay the game, play the game\\nPlay the game everybody play the game of love\\nThis is your life, don't play hard to get\\nIt's a free world\\nAll you have to do is fall in love\\nPlay the game everybody play the game of love\\nYour life, don't play hard to get\\nIt's a free world\\nAll you have to do is fall in love\\nPlay the game, play the game of love\\n\\n\"},\n", " {'_id': 309698,\n", " 'lyrics': \"here we are born to be kings we're the princes of the universe here we belong fighting to survive in a world with the darkest powers and here we are we're the princes of the universe here we belong fighting for survival we've come to be the rulers of your world i am immortal i have inside me blood of kings i have no rival no man can be my equal take me to the future of your world born to be kings princes of the universe fighting and free got your world in my hand i'm here for your love and i'll make my stand we were born to be princes of the universe no man could understand my power is in my own hand ooh ooh ooh people talk about you people say you've had your day i'm a man that will go far fly the moon and reach for the stars with my sword and head held high got to pass the test first time - yeah i know that people talk about me i hear it every day but i can prove you wrong because i'm right first time yeah yeah alright watch this man fly bring on the girls here we are born to be kings we're the princes of the universe here we belong born to be kings princes of the universe fighting and free got the world in my hands i'm here for your love and i'll make my stand we were born to be princes of the universe\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nHere we are, Born to be kings\\nWe're the princes of the universe\\nHere we belong, Fighting to survive\\nIn a world with the darkest powers\\n\\nAnd here we are, we're the princes of the universe\\nHere we belong, Fighting for survival\\nWe've come to be the rulers of your world\\nI am immortal, I have inside me blood of kings\\nI have no rival, No man can be my equal\\nTake me to the future of your world\\n\\nBorn to be kings, princes of the universe\\nFighting and free, Got your world in my hand\\nI'm here for your love and I'll make my stand\\nWe were born to be princes of the universe\\n\\nNo man could understand\\nMy power is in my own hand\\nOoh, Ooh, Ooh, People talk about you\\nPeople say you've had your day\\n\\nI'm a man that will go far\\nFly the moon and reach for the stars\\nWith my sword and head held high\\nGot to pass the test first time - yeah\\nI know that people talk about me I hear it every day\\nBut I can prove you wrong because I'm right first time\\n\\nYeah. Yeah. Alright, Watch this man fly\\nBring on the girls\\n\\nHere We are. Born to be kings\\nWe're the princes of the universe\\nHere we belong\\n\\nBorn to be kings\\nPrinces of the universe. Fighting and free\\nGot the world in my hands. I'm here for your love\\nAnd I'll make my stand\\nWe were born to be princes of the universe\\n\\n\"},\n", " {'_id': 309899,\n", " 'lyrics': \"they called him a hero in the land of the free but he wouldn't shake my hand boy he disappointed me so i got my handgun and i blew him away that critter was a bad guy i had to make him pay you might fear for my reason i don't care what they say look out baby it's the season for the mad masquerade put out the fire you need a bullet like a hole in the head put out the fire don't believe what your granddaddy said she was my lover it was a shame that she died but the constitution's right on my side because i caught my lover in my neighbor's bed i got retribution filled them all full of lead i've been told it's the fashion to let me on the streets again it's nothing but a crime of passion and i'm not to blame put out the fire and let your sons and your daughters sleep sound in their beds you know a gun never killed nobody you can ask anyone people get shot by people people with guns put out the fire you need a gun like a hole in the head out out the fire just tell me that old fashioned gun law is dead\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nThey called him a hero\\nIn the land of the free\\nBut he wouldn't shake my hand boy\\nHe disappointed me\\nSo I got my handgun\\nAnd I blew him away\\nThat critter was a bad guy\\nI had to make him pay\\n\\n[Chorus]\\nYou might fear for my reason\\nI don't care what they say\\nLook out baby it's the season\\nFor the mad masquerade\\nPut out the fire\\nYou need a bullet like a hole in the head\\nPut out the fire\\nDon't believe what your granddaddy said\\n\\n[Verse 2]\\nShe was my lover\\nIt was a shame that she died\\nBut the constitution's right on my side\\nBecause I caught my lover in my neighbor's bed\\nI got retribution, filled them all full of lead\\nI've been told it's the fashion\\nTo let me on the streets again\\nIt's nothing but a crime of passion\\nAnd I'm not to blame\\nPut out the fire\\n\\n[Verse 2]\\nAnd let your sons and your daughters\\nSleep sound in their beds\\nYou know a gun never killed nobody\\nYou can ask anyone\\nPeople get shot by people\\nPeople with guns\\nPut out the fire\\nYou need a gun like a hole in the head\\nOut out the fire\\nJust tell me that old fashioned gun law!!!!!!\\nIs dead\\n\\n\"},\n", " {'_id': 1327587,\n", " 'lyrics': \"queen hot space put out the fire (may) they called him a hero in the land of the free but he wouldn't shake my hand boy he disappointed me so i got my handgun and i blew him away that critter was a bad guy i had to make him pay you might fear for my reason i don't care what they say look out baby it's the season for the mad masquerade put out the fire you need a bullet like a hole in the head put out the fire don't believe what your grandaddy said she was my lover it was a shame that she died but the constitution's right on my side cos i caught my lover in my neighbour's bed i got retribution filled 'em full of lead i've been told it's the fashion to let me on the streets again it's nothing but a crime of passion and i'm not to blame put out the fir and let yor sons and your daughters sleep sound in their beds you know a gun never killed nobody you can ask anyone people get shot by people people with guns put out the fire you ned a gun like a hole in the head out out the fire just tell me that old fashioned gun law is dead\",\n", " 'original_lyrics': \"\\n\\nQueen\\nHot Space\\nPut Out The Fire (May)\\nThey called him a hero\\nIn the land of the free\\nBut he wouldn't shake my hand boy\\nHe disappointed me\\nSo I got my handgun\\nAnd I blew him away\\nThat critter was a bad guy\\nI had to make him pay\\nYou might fear for my reason\\nI don't care what they say\\nLook out baby it's the season\\nFor the mad masquerade\\nPut out the fire\\nYou need a bullet like a hole in the head\\nPut out the fire\\nDon't believe what your grandaddy said\\nShe was my lover\\nIt was a shame that she died\\nBut the constitution's right on my side\\nCos I caught my lover in my neighbour's bed\\nI got retribution, filled 'em full of lead\\nI've been told it's the fashion\\nTo let me on the streets again\\nIt's nothing but a crime of passion\\nAnd I'm not to blame\\nPut out the fir\\nAnd let yor sons and your daughters\\nSleep sound in their beds\\nYou know a gun never killed nobody\\nYou can ask anyone\\nPeople get shot by people\\nPeople with guns\\nPut out the fire\\nYou ned a gun like a hole in the head\\nOut out the fire\\nJust tell me that old fashioned gun law!!!!!!\\nIs dead\\n\\n\"},\n", " {'_id': 309595,\n", " 'lyrics': \"i'd sit alone and watch your light my only friend through teenage nights and everything i had to know i heard it on my radio you gave them all those old time stars through wars of worlds - invaded by mars you made them laugh you made them cry you made us feel like we could fly (radio) so don't become some background noise a backdrop for the girls and boys who just don't know or just don't care and just complain when you are not there you had your time you had the power you've yet to have your finest hour radio (radio) all we hear is radio ga ga radio goo goo radio ga ga all we hear is radio ga ga radio blah blah radio what's new radio someone still loves you we watch the shows we watch the stars on videos for hours and hours we hardly need to use our ears how music changes through the years let's hope you never leave old friend like all good things on you we depend so stick around 'cause we might miss you when we grow tired of all this visual you had your time you had the power you've yet to have your finest hour radio (radio) all we hear is radio ga ga radio goo goo radio ga ga all we hear is radio ga ga (radio ca ca) radio goo goo radio ga ga all we hear is radio ga ga (radio ca ca) radio blah blah radio what's new someone still loves you (radio ga ga radio ca ca) (radio ga ga radio ca ca) (radio ga ga radio ca ca) you had your time you had the power you've yet to have your finest hour radio (radio)\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI'd sit alone and watch your light\\nMy only friend through teenage nights\\nAnd everything I had to know\\nI heard it on my radio\\n\\nYou gave them all those old time stars\\nThrough wars of worlds - invaded by Mars\\nYou made them laugh, you made them cry\\nYou made us feel like we could fly\\n(Radio)\\n\\nSo don't become some background noise\\nA backdrop for the girls and boys\\nWho just don't know or just don't care\\nAnd just complain when you are not there\\n\\n[Pre-Chorus]\\nYou had your time, you had the power\\nYou've yet to have your finest hour\\nRadio (Radio)\\n\\n[Chorus]\\nAll we hear is Radio ga ga\\nRadio goo goo\\nRadio ga ga\\nAll we hear is Radio ga ga\\nRadio blah blah\\nRadio what's new\\nRadio, someone still loves you!\\n\\n[Verse 2]\\nWe watch the shows, we watch the stars\\nOn videos for hours and hours\\nWe hardly need to use our ears\\nHow music changes through the years\\n\\nLet's hope you never leave old friend\\nLike all good things on you we depend\\nSo stick around 'cause we might miss you\\nWhen we grow tired of all this visual\\n\\n[Pre-Chorus]\\nYou had your time, you had the power\\nYou've yet to have your finest hour\\nRadio (Radio)\\n\\n[Chorus]\\nAll we hear is Radio ga ga\\nRadio goo goo\\nRadio ga ga\\nAll we hear is Radio ga ga (Radio ca ca)\\nRadio goo goo\\nRadio ga ga\\nAll we hear is Radio ga ga (Radio ca ca)\\nRadio blah blah\\nRadio what's new\\nSomeone still loves you!\\n\\n[Instrumental break]\\n(Radio ga ga Radio ca ca)\\n(Radio ga ga Radio ca ca)\\n(Radio ga ga Radio ca ca)\\n\\n[Outro]\\nYou had your time, you had the power\\nYou've yet to have your finest hour\\nRadio (Radio)\\n\\n\"},\n", " {'_id': 309752,\n", " 'lyrics': \"i can see it in your stars life is so exciting acting so bizarre your world is so inviting playing really cool and looking so mysterious your every day is full of sunshine but into every life a little rain must fall anyone who imagines they can blind you with science bully you all over with property and finance but you have position to call the shots and name the price you found success and recognition but into every life a little rain must fall you lead a fairy tale existence but into every life a little rain must fall others seem to think you are over dramatising problems at work so it's hardly surprising there's little you can do to alter their opinions you want a clean reputation but now you're facing complications because into every life a little rain must fall\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI can see it in your stars\\nLife is so exciting\\nActing so bizarre\\nYour world is so inviting\\nPlaying really cool\\nAnd looking so mysterious\\nYour every day is full of sunshine\\nBut into every life a little rain must fall\\nAnyone who imagines\\nThey can blind you with science\\nBully you all over\\nWith property and finance\\nBut you have position\\nTo call the shots and name the price\\nYou found success and recognition\\nBut into every life a little rain must fall\\nYou lead a fairy tale existence\\nBut into every life a little rain must fall\\nOthers seem to think\\nYou are over dramatising\\nProblems at work\\nSo it's hardly surprising\\nThere's little you can do\\nTo alter their opinions\\nYou want a clean reputation\\nBut now you're facing complications\\nBecause into every life a little rain must fall\\n\\n\"},\n", " {'_id': 1307929,\n", " 'lyrics': \"queen the miracle rain must fall (queen) i can see it in your stars life is so exciting acting so bizarre your world is so inviting playing really cool and looking so mysterious your every day is full of sunshine but into every life a little rain must fall anyone who imagines they can blind you with science bully you all over with property and finance but you have position to call the shots and name the price you found success and recognition but into every life a little rain must fall you lead a fairy tale existence but into every life a little rain must fall others seem to think you are over dramatising problems at work so it's hardly surprising there's little you can do to alter their opinions you want a clean reputation but now you're facing complications 'cos into every life a little rain must fall\",\n", " 'original_lyrics': \"\\n\\nQueen\\nThe Miracle\\nRain Must Fall (Queen)\\nI can see it in your stars\\nLife is so exciting\\nActing so bizarre\\nYour world is so inviting\\nPlaying really cool\\nAnd looking so mysterious\\nYour every day is full of sunshine\\nBut into every life a little rain must fall\\nAnyone who imagines\\nThey can blind you with science\\nBully you all over\\nWith property and finance\\nBut you have position\\nTo call the shots and name the price\\nYou found success and recognition\\nBut into every life a little rain must fall\\nYou lead a fairy tale existence\\nBut into every life a little rain must fall\\nOthers seem to think\\nYou are over dramatising\\nProblems at work\\nSo it's hardly surprising\\nThere's little you can do\\nTo alter their opinions\\nYou want a clean reputation\\nBut now you're facing complications\\n'Cos into every life a little rain must fall\\n\\n\"},\n", " {'_id': 310066,\n", " 'lyrics': \"ride the wild wind push the envelope don't sit on the fence (hey hey hey) ride the wind live life on the razor's edge (hey hey hey) going to ride the whirlwind it isn't dangerous - enough for me get your head down baby (yeah) we're going to ride tonight your angel eyes are shining bright i want to take your hand - lead you from this place going to leave it all behind check out of this rat race ride the wild wind (hey hey hey) ride the wild wind (hey hey hey) going to ride the wild wind it isn't dangerous - enough for me tie your hair back baby we're going to ride tonight (yeah) we got freaks to the left we got jerks to the right sometimes i get so low - i just have to ride let me take your hand let me be your guide ride the wild wind ride the wild wind (hey hey hey) the wild wind the wild wind\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nRide the wild wind\\nPush the envelope don't sit on the fence\\n(Hey hey hey)\\nRide the wind\\nLive life on the razor's edge\\n(Hey hey hey)\\nGoing to ride the whirlwind\\nIt isn't dangerous - enough for me\\n\\n[Verse 1]\\nGet your head down baby (yeah) we're going to ride tonight\\nYour angel eyes are shining bright\\nI want to take your hand - lead you from this place\\nGoing to leave it all behind\\nCheck out of this rat race\\nRide the wild wind (hey hey hey)\\nRide the wild wind (hey hey hey)\\nGoing to ride the wild wind\\nIt isn't dangerous - enough for me\\n\\n[Verse 2]\\nTie your hair back baby\\nWe're going to ride tonight (yeah)\\nWe got freaks to the left\\nWe got jerks to the right\\nSometimes I get so low - I just have to ride\\nLet me take your hand\\nLet me be your guide\\n\\n[Chorus][x2]\\n\\n[Outro]\\nRide the wild wind\\nRide the wild wind\\n(Hey hey hey)\\nThe wild wind\\nThe wild wind\\n\\n\"},\n", " {'_id': 2113598,\n", " 'lyrics': \"queen innuendo ride the wild wind (queen) ride the wild wind (push the envelope don't sit on the fence) ride the wild wind (live life on the razors edge) gonna ride the whirlwind it ain't dangerous - enough for me get your head down baby - we're gonna ride tonight your angel eyes are shining bright i wanna take your hand - lead you from this place gonna leave it all behind check out of this rat race - ride the wild wind ride the wild wind gonna ride the whirlwind - it ain't dangerous - enough for me tie your hair back baby - we're gonna ride tonight we got freaks to the left - we got jerks to the right sometimes i get so low - i just have to ride let me take your hand let me be your guide ride the wild wind (don't sit on the fence) ride the wild wind (live life on the razors edge) gonna ride the whirlwind it ain't dangerous - enough for me ride the wild wind\",\n", " 'original_lyrics': \"\\n\\nQueen\\nInnuendo\\nRide The Wild Wind (Queen)\\nRide the wild wind\\n(Push the envelope don't sit on the fence)\\nRide the wild wind\\n(Live life on the razors edge)\\nGonna ride the whirlwind\\nIt ain't dangerous - enough for me\\nGet your head down baby - we're gonna ride tonight\\nYour angel eyes are shining bright\\nI wanna take your hand - lead you from this place\\nGonna leave it all behind\\nCheck out of this rat race -\\nRide the wild wind\\nRide the wild wind\\nGonna ride the whirlwind -\\nIt ain't dangerous - enough for me\\nTie your hair back baby -\\nWe're gonna ride tonight\\nWe got freaks to the left - we got jerks to the right\\nSometimes I get so low - I just have to ride\\nLet me take your hand\\nLet me be your guide\\nRide the wild wind\\n(Don't sit on the fence)\\nRide the wild wind\\n(Live life on the razors edge)\\nGonna ride the whirlwind\\nIt ain't dangerous - enough for me\\nRide the wild wind\\n\\n\"},\n", " {'_id': 1321049,\n", " 'lyrics': \"ride the wild wind (push the envelope don't sit on the fence) ride the wild wind (live life on the razors edge) gonna ride the whirlwind it ain't dangerous - enough for me get your head down baby - we're gonna ride tonight your angel eyes are shining bright i wanna take your hand - lead you from this place gonna leave it all behind check out of this rat race - ride the wild wind ride the wild wind gonna ride the whirlwind - it ain't dangerous - enough for me tie your hair back baby - we're gonna ride tonight we got freaks to the left - we got jerks to the right sometimes i get so low - i just have to ride let me take your hand let me be your guide ride the wild wind (don't sit on the fence) ride the wild wind (live life on the razors edge) gonna ride the whirlwind it ain't dangerous - enough for me ride the wild wind\",\n", " 'original_lyrics': \"\\n\\nRide the wild wind\\n(Push the envelope don't sit on the fence)\\nRide the wild wind\\n(Live life on the razors edge)\\nGonna ride the whirlwind\\nIt ain't dangerous - enough for me\\nGet your head down baby - we're gonna ride tonight\\nYour angel eyes are shining bright\\nI wanna take your hand - lead you from this place\\nGonna leave it all behind\\nCheck out of this rat race -\\nRide the wild wind\\nRide the wild wind\\nGonna ride the whirlwind -\\nIt ain't dangerous - enough for me\\nTie your hair back baby -\\nWe're gonna ride tonight\\nWe got freaks to the left - we got jerks to the right\\nSometimes I get so low - I just have to ride\\nLet me take your hand\\nLet me be your guide\\nRide the wild wind\\n(Don't sit on the fence)\\nRide the wild wind\\n(Live life on the razors edge)\\nGonna ride the whirlwind\\nIt ain't dangerous - enough for me\\nRide the wild wind\\n\\n\"},\n", " {'_id': 1226746,\n", " 'lyrics': \"let's play the rock in rio blues baby we've come to do rock in rio with you baby eh yeah yeah woh rock in rio night baby it's rock in rio night ah ah aye everybody's having - eeeh woooh oh oh oh oh woooh woh woh woh wah get in to the rock in rio business hey rockin ah m-m-m-m-m-m-m-m-m-m-m-m-m-m wooh waaah yeah hey hey m-m-m-m-m-m-m-m-m-m-m-ah baby i like it woooh wooh woh woh woh woh woh woh woh yeah wooh this song was especially for you music lovers all you rock in rio people thank you very much\",\n", " 'original_lyrics': \"\\n\\nLet's play the rock in Rio blues baby\\nWe've come to do rock in Rio with you baby\\nEh yeah yeah\\nWoh!\\nRock in Rio night baby\\nIt's rock in Rio night\\nAh ah aye\\nEverybody's having - eeeh woooh\\nOh oh oh oh\\nWoooh woh woh woh wah\\nGet in to the rock in Rio business hey\\nRockin!\\nAh\\nM-m-m-m-m-m-m-m-m-m-m-m-m-m wooh waaah\\nYeah hey hey\\nM-m-m-m-m-m-m-m-m-m-m-ah\\nBaby I like it\\nWoooh wooh woh woh woh woh woh woh woh\\nYeah\\nWooh\\nThis song was especially for you music lovers\\nAll you rock in Rio people\\nThank you very much\\n\\n\"},\n", " {'_id': 309550,\n", " 'lyrics': \"when i hear that rock and roll it gets down to my soul when it is real rock and roll oh rock and roll you really think they like to rock in space well i don't know what do you know what do you hear on the radio coming through the air i said mama i ain't crazy i am alright alright hey c'mon baby said it's alright to rock and roll on a saturday night i said shoot and get your suit and come along with me i said c'mon baby down come and rock with me i said yeah what do you do to get to feel alive you go downtown and get some of that prime jive x2 we're gonna rock it tonight (we want some prime jive) (we want some prime jive) we are going to rock it tonight come on honey get some of that prime jive get some of that get get down come on honey - we are going to rock it tonight\",\n", " 'original_lyrics': \"\\n\\n[Prelude]\\nWhen I hear\\nThat rock and roll\\nIt gets down to my soul\\nWhen it is real rock and roll\\nOh rock and roll\\n\\n[Prelude]\\n\\n[Verse 1]\\nYou really think they like to rock in space?\\nWell I don't know\\nWhat do you know?\\nWhat do you hear?\\nOn the radio\\nComing through the air\\n\\n[Hook]\\nI said Mama\\nI ain't crazy\\nI am alright, alright\\nHey, c'mon baby said it's alright\\nTo rock and roll on a Saturday night\\nI said shoot and get your suit and come along with me\\nI said c'mon baby down come and rock with me\\nI said yeah\\n\\n[Verse 2]\\nWhat do you do\\nTo get to feel alive?\\nYou go downtown\\nAnd get some of that prime jive\\n\\n[Hook] x2\\n\\n[Verse 3]\\nWe're gonna rock it\\nTonight\\n(We want some prime jive)\\n(We want some prime jive)\\nWe are going to rock it tonight\\nCome on honey\\nGet some of that prime jive\\nGet some of that, get, get down\\nCome on honey - we are going to rock it tonight\\n\\n\"},\n", " {'_id': 1144743,\n", " 'lyrics': \"hey little babe you're changing babe are you feeling sore ain't no use in pretending you don't wanna play no more it's plain that you ain't no baby what would your mother say you're all dressed up like a lady how come you behave this way sail away sweet sister sail across the sea maybe you'll find somebody to love you half as much as me my heart is always with you no matter what you do sail away sweet sister i'll always be in love with you forgive me for what i told you my heart makes a fool of me ooh you know i'll never hold you i know that you gotta be free sail away sweet sister sail across the sea maybe you'll find somebody to love you half as much as me take it the way you want it but when they let you down my friend sail away sweet sister back to my arms again hot child don't you know you're young you've got your whole life ahead of you oohah you can throw it away too soon way too soon yeah sail away sweet sister sail across the sea maybe you'll find somebody's gonna love you half as much as me my heart is always with you no matter what you do sail away sweet sister i'll always be in love with you\",\n", " 'original_lyrics': \"\\n\\nHey little babe you're changing, babe, are you feeling sore?\\nAin't no use in pretending you don't wanna play no more\\nIt's plain that you ain't no baby, what would your mother say?\\nYou're all dressed up like a lady, how come you behave this way?\\n\\nSail away sweet sister, sail across the sea\\nMaybe you'll find somebody to love you half as much as me\\nMy heart is always with you no matter what you do\\nSail away sweet sister, I'll always be in love with you\\n\\nForgive me for what I told you, my heart makes a fool of me\\nOoh, you know I'll never hold you, I know that you gotta be free\\n\\nSail away sweet sister, sail across the sea\\nMaybe you'll find somebody to love you half as much as me\\nTake it the way you want it, but when they let you down, my friend\\nSail away sweet sister, back to my arms again\\n\\nHot child don't you know\\nYou're young, you've got your whole life ahead of you\\nOohah, you can throw it away too soon\\nWay too soon, yeah\\n\\nSail away sweet sister, sail across the sea\\nMaybe you'll find somebody's gonna love you half as much as me\\nMy heart is always with you, no matter what you do\\nSail away sweet sister, I'll always be in love with you\\n\\n\"},\n", " {'_id': 2057568,\n", " 'lyrics': 'originally performed by elton john it\\'s getting late have you seen my mates ma tell me when the boys get here it\\'s seven o\\'clock and i want to rock want to get a belly full of beer my old man\\'s drunker than a barrel full of monkeys and my old lady she don\\'t care my sister looks cute in her braces and boots a handfull of grease in her hair don\\'t give us none of your aggravation we had it with your discipline saturday night\\'s alright for fighting get a little action in get about as oiled as a diesel train gonna set this dance alight \\'cause saturday night\\'s the night i like saturday night\\'s alright alright alright well they\\'re packed pretty tight in here tonight i\\'m looking for a dolly who\\'ll see me right i may use a little muscle to get what i need i may sink a little drink and shout out she\\'s with me \" a couple of the sound that i really like are the sounds of a switchblade and a motorbike i\\'m a juvenile product of the working class whose best friend floats in the bottom of a glass',\n", " 'original_lyrics': '\\n\\nOriginally performed by Elton John\\n\\nIt\\'s getting late have you seen my mates\\nMa tell me when the boys get here\\nIt\\'s seven o\\'clock and I want to rock\\nWant to get a belly full of beer\\n\\nMy old man\\'s drunker than a barrel full of monkeys\\nAnd my old lady she don\\'t care\\nMy sister looks cute in her braces and boots\\nA handfull of grease in her hair\\n\\nDon\\'t give us none of your aggravation\\nWe had it with your discipline\\nSaturday night\\'s alright for fighting\\nGet a little action in\\n\\nGet about as oiled as a diesel train\\n\\nGonna set this dance alight\\n\\'Cause Saturday night\\'s the night I like\\nSaturday night\\'s alright alright alright\\n\\nWell they\\'re packed pretty tight in here tonight\\nI\\'m looking for a dolly who\\'ll see me right\\nI may use a little muscle to get what I need\\nI may sink a little drink and shout out She\\'s with me! \"\\n\\nA couple of the sound that I really like\\nAre the sounds of a switchblade and a motorbike\\nI\\'m a juvenile product of the working class\\nWhose best friend floats in the bottom of a glass\\n\\n'},\n", " {'_id': 1948890,\n", " 'lyrics': \"it started off so well they said we made a perfect pair i clothed myself in your glory and your love how i loved you how i cried the years of care and loyalty were nothing but a sham it seems the years belie we lived a lie i love you till i die save me save me save me i can't face this life alone save me save me save me i'm naked and i'm far from home the slate will soon be clean i'll erase the memories to start again with somebody new was it all wasted all that love i hang my head and i advertise a soul for sale or rent i have no heart i'm cold inside i have no real intent save me save me save me i can't face this life alone save me save me save me i'm naked and i'm far from home each night i cry i still believe the lie i love you till i die save me save me save me don't let me face my life alone save me save me ooh i'm naked and i'm far from home\",\n", " 'original_lyrics': \"\\n\\nIt started off so well\\nThey said we made a perfect pair\\nI clothed myself in your glory and your love\\nHow I loved you\\nHow I cried...\\nThe years of care and loyalty\\nWere nothing but a sham it seems\\nThe years belie we lived a lie\\nI love you till I die\\nSave me save me save me\\nI can't face this life alone\\nSave me save me save me...\\nI'm naked and I'm far from home\\n\\nThe slate will soon be clean\\nI'll erase the memories\\nTo start again with somebody new\\nWas it all wasted\\nAll that love?...\\nI hang my head and I advertise\\nA soul for sale or rent\\nI have no heart I'm cold inside\\nI have no real intent\\nSave me save me save me\\nI can't face this life alone\\nSave me save me save me...\\nI'm naked and I'm far from home\\n\\nEach night I cry I still believe the lie\\nI love you till I die\\nSave me save me save me\\nDon't let me face my life alone\\nSave me save me ooh...\\nI'm naked and I'm far from home\\n\\n\"},\n", " {'_id': 310119,\n", " 'lyrics': 'the harder we play the faster we fall when we think that we know it all we know nothing at all the letter arrives like a bolt from the blue so what is left of your lives all your dreams lost to you say it is not true say it today when i open my eyes will it all go away say it is not true say it is not real cannot be happening to you cannot be happening to me {verse 2} it is hard not to cry it is hard to believe so much heartache and pain so much reason to grieve with the wonders of science all the knowledge we have stored magic cocktails for lives people just cannot afford {chorus}',\n", " 'original_lyrics': '\\n\\n[Intro]\\nThe harder we play\\nThe faster we fall\\nWhen we think that we know it all\\nWe know nothing at all\\n\\n[Verse 1]\\nThe letter arrives\\nLike a bolt from the blue\\nSo what is left of your lives\\nAll your dreams lost to you\\n\\n[Chorus]\\nSay it is not true\\nSay it today\\nWhen I open my eyes\\nWill it all go away\\nSay it is not true\\nSay it is not real\\nCannot be happening to you\\nCannot be happening to me\\n\\n{Verse 2}\\nIt is hard not to cry\\nIt is hard to believe\\nSo much heartache and pain\\nSo much reason to grieve\\nWith the wonders of science\\nAll the knowledge we have stored\\nMagic cocktails for lives\\nPeople just cannot afford\\n\\n{Chorus}[x4]\\n\\n'},\n", " {'_id': 308929,\n", " 'lyrics': \"seaside - whenever you stroll along with me i'm merely contemplating what you feel inside meanwhile i ask you to be my clementine you say you will if you could but you can't - i love you madly let my imagination run away with you gladly a brand new angle - highly commendable - seaside rendezvous i feel so romantic - can we do it again can we do it again can we do it again sometime (ooh i like that) fantastic c'est la vie mesdames et messieurs and at the peak of the season the mediterranean this time of year it's so fashionable i feel like dancing - in the rain can i have a volunteer just keep right on dancing what a damn jolly good idea it's such a jollification - as a matter of fact so tres charmant my dear underneath the moonlight - together we'll sail across the sea reminiscing every night meantime - i ask you to be my valentine you say you'd have to tell your daddy if you can i'll be your valentino we'll ride upon an omnibus and then the casino get a new facial - start a sensational seaside rendezvous - so adorable seaside rendezvous ooh ooh seaside rendezvous give us a kiss\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nSeaside - whenever you stroll along with me I'm merely contemplating what\\nYou feel inside meanwhile I ask you to be my Clementine\\nYou say you will if you could, but you can't - I love you madly\\nLet my imagination run away with you gladly\\nA brand new angle - highly commendable - Seaside Rendezvous\\n\\nI feel so romantic - can we do it again\\nCan we do it again\\nCan we do it again sometime (ooh, I like that)\\nFantastic, c'est la vie Mesdames et messieurs\\nAnd at the peak of the season, the\\nMediterranean , this time of year, it's so fashionable\\nI feel like dancing - in the rain\\nCan I have a volunteer\\nJust keep right on dancing\\nWhat a damn jolly good idea\\nIt's such a jollification - as a matter of fact\\nSo tres charmant my dear\\n\\nUnderneath the moonlight - together we'll sail across the sea\\nReminiscing every night\\nMeantime - I ask you to be my valentine\\nYou say you'd have to tell your daddy if you can\\nI'll be your Valentino\\nWe'll ride upon an omnibus and then the casino\\nGet a new facial - start a sensational\\n\\n[Outro]\\nSeaside Rendezvous - so adorable\\nSeaside Rendezvous, ooh ooh\\nSeaside Rendezvous\\nGive us a kiss\\n\\n\"},\n", " {'_id': 308869,\n", " 'lyrics': \"well she's gone gone this morning see what a fool i've been for so long see what a fool i've been didn't leave no letter didn't leave no warning i guess i'm all to blame oh lord guess i'm all to blame my little dog isn’t too hungry he kept on barking said it just it just don't seem the same well i got so lonely went and told my neighbor she said mm mm mm mm mm oh lord what a fool i've been and she told what to do well she's gone gone this morning see what a fool i've been for so long see what a fool i've been\",\n", " 'original_lyrics': \"\\n\\nWell she's gone gone this morning\\nSee what a fool I've been\\nFor so long\\nSee what a fool I've been\\n\\nDidn't leave no letter didn't leave no warning\\nI guess I'm all to blame oh lord\\nGuess I'm all to blame\\nMy little dog isn’t too hungry he kept on barking\\nSaid it just it just don't seem the same\\nWell i got so lonely\\nWent and told my neighbor\\nShe said mm mm mm mm mm\\nOh lord what a fool I've been\\nAnd she told what to do\\n\\nWell she's gone gone this morning\\nSee what a fool I've been\\nFor so long\\nSee what a fool I've been\\n\\n\"},\n", " {'_id': 3242912,\n", " 'lyrics': \"pnb rock - selfish (queen/ female remix) selfish selfish selfish selfishyeah i'm selfish i want you all to myself i swear you don't need nobody else i swear i want you all to myself selfish selfish selfish selfish now that you got me here boy you keep on playing with me why does it feel like you righteous don't match up to what u be saying to me say you want me to your self but u flirt with everyone else you buddy buddy with all them females you bad for my health cuz you not ready for no commitment but you can't stand to see me with another man but i get so tired of being lonely cuz you never ever here to hold me its supposed to be me and only me boy what will it take for u to see that i'm selfish i want you all to my self i swear you don't need nobody else i swear i want you all to myself selfish selfish selfish selfish selfish selfish i'm selfish i want you all to myself i swear you don't need nobody else i swear i want you all to myself because i'm selfish i want you all to myself i swear you don't need nobody else i swear because i'm selfish i want you all to my self i swear you don't need nobody else i swear i want you all to my self because i'm selfish i want you all to my self yeahyeah i hate that i love you but i can not trust you i hate that my heart is in and i can move on easily but boy i really dont want to start again why can't you be faithful why is it so hard to see what's right in front of you i keep on telling my self that you youngin got growin to do why you wanna be seen so bad why u gotta be a lady's man is everything we had worth loosing cuz i den gave it everything i had man it hurts so bad when u love someone that don't love you back it's a proven fact boy you proved to that your selfish you want me all to your self i know but you just gotta let the groupies go you want me all to your selfish boy you so selfish you want me all to your self i know but imma need you to let them go boy i what i wanna make understand is that i'm selfish i want you all to myself i swear you don't need nobody else i swear i want yo all to my self because i'm selfish i want you all to myself you don't need nobody else i swear i want yo all to my self because i'm selfish i want you all to my self i swear you don't need nobody else i swear i want you all to my self because i'm selfish i want you all to my self yeah yeah selfish selfish selfish selfish selfish selfish\",\n", " 'original_lyrics': \"\\n\\nPnB Rock - Selfish (Queen/ Female remix)\\n[Intro]\\nSelfish Selfish\\nSelfish Selfish....yeah\\n\\nI'm selfish\\nI want you all to myself I swear\\nYou don't need nobody else I swear\\nI want you all to myself\\nSelfish\\nSelfish Selfish Selfish\\n\\n[Verse 1]\\nNow that you got me here\\nBoy you keep on playing with me\\nWhy does it feel like you righteous\\nDon't match up to what u be saying to me\\nSay you want me to your self\\nBut u flirt with everyone else\\nYou buddy buddy with all them females\\nYou bad for my health\\nCuz you not ready for no commitment\\nBut you can't stand to see me with another man\\nBut i get so tired of being lonely\\nCuz you never ever here to hold me\\nIts supposed to be me and only me\\nBoy what will it take for u to see that\\n\\n[Chorus]\\nI'm selfish\\nI want you all to my self i swear\\nYou don't need nobody else i swear\\nI want you all to myself\\nSelfish\\nSelfish Selfish Selfish\\nSelfish Selfish\\nI'm selfish\\nI want you all to myself i swear\\nYou don't need nobody else i swear\\nI want you all to myself\\nBecause i'm selfish\\nI want you all to myself i swear\\nYou don't need nobody else i swear\\nBecause i'm selfish\\nI want you all to my self i swear\\nYou don't need nobody else i swear\\nI want you all to my self\\nBecause i'm selfish\\nI want you all to my self\\nYeah,yeah\\n\\n[Verse 2]\\nI hate that i love you but i can not trust you\\nI hate that my heart is in\\nAnd i can move on easily\\nBut boy i really dont want to start again\\nWhy can't you be faithful\\nWhy is it so hard to see what's right in front of you\\nI keep on telling my self that you youngin got growin to do\\nWhy you wanna be seen so bad\\nWhy u gotta be a lady's man\\nIs everything we had worth loosing\\nCuz i den gave it everything i had\\nMan it hurts so bad when u love someone\\nThat don't love you back\\nIt's a proven fact\\nBoy you proved to that your selfish\\nYou want me all to your self i know\\nBut you just gotta let the groupies go\\nYou want me all to your selfish\\nBoy you so selfish\\nYou want me all to your self i know\\nBut imma need you to let them go\\nBoy i what i wanna make understand is that\\n\\n[Chorus]\\nI'm selfish\\nI want you all to myself i swear\\nYou don't need nobody else i swear\\nI want yo all to my self\\nBecause i'm selfish\\nI want you all to myself\\nYou don't need nobody else i swear\\nI want yo all to my self\\nBecause i'm selfish\\nI want you all to my self i swear\\nYou don't need nobody else i swear\\nI want you all to my self\\nBecause i'm selfish\\nI want you all to my self\\nYeah yeah\\nSelfish Selfish Selfish\\nSelfish Selfish Selfish\\n\\n\"},\n", " {'_id': 1490895,\n", " 'lyrics': \"self made man this track is believed to have been written by brian and was recorded in 1990 for 'innuendo' it is dominated by drums and keyboards and the vocals are mainly sung by brian with some from freddie there are essentially two versions available which are similar but have changes originating from the studio or a queen convention (which adds audience noise) the studio version has percussion from the start whereas the intro to the convention version is about 10 seconds longer but the percussion begins after 24 seconds the rest of the track seems the same but the convention version fades out about 29 seconds earlier a 245 edit of the convention version is also available lengths 419 (convention) and 439 (studio) ooh see your face - you've got no-one to love you back you better better win this place - you know it's the promised land don't let it hold you don't let it you better you bet it it's gonna hold you you bet it's gonna take control that tears your soul trust - that'll make you self believe to be a self made man turn that stuff - that defines your role to be ooh to be a self made man get a heavy job - don't let them moguls waste your time (she's going down the line) to be a self made man do you wanna be my honey do you wanna be my girl do you have the time to meet me do you wanna be my honey do you wanna be my girl do you have the time to meet me yeah self made self made man ooh girl gotta make yourself believe gotta turn that stuff see your face know i'm a made man in this place known promised land self made man self be a self made man do-do-do-do do-do-do-do be a self made man do-do-do-do do-do-do-do be a self made man self made man self made man\",\n", " 'original_lyrics': \"\\n\\nSelf Made Man\\nThis track is believed to have been written by Brian, and was recorded in 1990 for 'Innuendo'. It is dominated by drums and keyboards, and the vocals are mainly sung by Brian, with some from Freddie. There are essentially two versions available, which are similar but have changes, originating from the studio or a Queen Convention (which adds audience noise). The studio version has percussion from the start, whereas the intro to the convention version is about 10 seconds longer but the percussion begins after 24 seconds. The rest of the track seems the same, but the convention version fades out about 29 seconds earlier. A 2:45 edit of the convention version is also available. Lengths 4:19 (convention) and 4:39 (studio)\\nOoh\\nSee your face - you've got no-one to love you back\\nYou better, better win this place - you know it's the promised land\\nDon't let it hold you\\nDon't let it\\nYou better\\nYou bet it\\nIt's gonna hold you\\nYou bet it's gonna take control\\nThat tears your soul\\nTrust - that'll make you self believe\\nTo be a self made man\\nTurn that stuff - that defines your role to be, ooh\\nTo be a self made man\\nGet a heavy job - don't let them moguls waste your time (she's going down the line)\\nTo be a self made man\\nDo you wanna be my honey?\\nDo you wanna be my girl?\\nDo you have the time to meet me?\\nDo you wanna be my honey?\\nDo you wanna be my girl?\\nDo you have the time to meet me?\\nYeah\\nSelf made, self made man\\nOoh, girl gotta make yourself believe\\nGotta turn that stuff, see your face, know I'm a made man\\nIn this place, known promised land\\nSelf made man\\nSelf\\nBe a self made man\\nDo-do-do-do, do-do-do-do, be a self made man\\nDo-do-do-do, do-do-do-do, be a self made man\\nSelf made man\\nSelf made man\\n\\n\"},\n", " {'_id': 308828,\n", " 'lyrics': \"fear me you lords and lady preachers i descend upon your earth from the skies i command your very souls you unbelievers bring before me what is mine the seven seas of rhye can you hear me you peers and privvy counselors i stand before you naked to the eyes i will destroy any man who dares abuse my trust i swear that you'll be mine the seven seas of rhye sister - i live and lie for you mister - do and i'll die you are mine i possess you i belong to you forever storm the master-marathon i'll fly through by flash and thunder-fire i'll survive then i'll defy the laws of nature and come out alive then i'll get you be gone with you - you shod and shady senators give out the good leave out the bad evil cries i challenge the mighty titan and his troubadours and with a smile i'll take you to the seven seas of rhye\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nFear me you lords and lady preachers\\nI descend upon your earth from the skies\\nI command your very souls you unbelievers\\nBring before me what is mine\\nThe seven seas of rhye\\n\\n[Verse 2]\\nCan you hear me you peers and privvy counselors\\nI stand before you naked to the eyes\\nI will destroy any man who dares abuse my trust\\nI swear that you'll be mine\\nThe seven seas of rhye\\n\\nSister - I live and lie for you\\nMister - do and I'll die\\nYou are mine I possess you\\nI belong to you forever\\n\\n[Verse 3]\\nStorm the master-marathon I'll fly through\\nBy flash and thunder-fire I'll survive\\nThen I'll defy the laws of nature and come out alive\\nThen I'll get you\\n\\n[Verse 4]\\nBe gone with you - you shod and shady senators\\nGive out the good, leave out the bad evil cries\\nI challenge the mighty titan and his troubadours\\nAnd with a smile\\nI'll take you to the seven seas of rhye\\n\\n\"},\n", " {'_id': 1964418,\n", " 'lyrics': \"fear me you lords and lady preachers i descend upon your earth from the skies i command your very souls you unbelievers bring before me what is mine the seven seas of rhye can you hear me you peers and privvy counselors i stand before you naked to the eyes i will destroy any man who dares abuse my trust i swear that you'll be mine the seven seas of rhye sister - i live and lie for you mister - do and i'll die you are mine i possess you i belong to you forever storm the master-marathon i'll fly through by flash and thunder-fire i'll survive then i'll defy the laws of nature and come out alive then i'll get you be gone with you - you shod and shady senators give out the good leave out the bad evil cries i challenge the mighty titan and his troubadours and with a smile i'll take you to the seven seas of rhye\",\n", " 'original_lyrics': \"\\n\\nFear me you lords and lady preachers\\nI descend upon your earth from the skies\\nI command your very souls you unbelievers\\nBring before me what is mine\\nThe seven seas of rhye\\nCan you hear me you peers and privvy counselors\\nI stand before you naked to the eyes\\nI will destroy any man who dares abuse my trust\\nI swear that you'll be mine\\nThe seven seas of rhye\\nSister - i live and lie for you\\nMister - do and i'll die\\nYou are mine i possess you\\nI belong to you forever\\nStorm the master-marathon i'll fly through\\nBy flash and thunder-fire i'll survive\\nThen i'll defy the laws of nature and come out alive\\nThen i'll get you\\nBe gone with you - you shod and shady senators\\nGive out the good, leave out the bad evil cries\\nI challenge the mighty titan and his troubadours\\nAnd with a smile\\nI'll take you to the seven seas of rhye\\n\\n\"},\n", " {'_id': 1843974,\n", " 'lyrics': \"queen miscellaneous seven seas of rhye (remix) fear me you lords and lady preachers i descend upon your earth from the skies i command your very souls you unbelievers bring before me what is mine the seven seas of rhye can you hear me you peers and privvy counselors i stand before you naked to the eyes i will destroy any man who dares abuse my trust i swear that you'll be mine the seven seas of rhye sister - i live and lie for you mister - do and i'll die you are mine i possess you i belong to you forever storm the master-marathon i'll fly through by flash and thunder-fire i'll survive then i'll defy the laws of nature and come out alive then i'll get you be gone with you - you shod and shady senators give out the good leave out the bad evil cries i challenge the mighty titan and his troubadours and with a smile i'll take you to the seven seas of rhye\",\n", " 'original_lyrics': \"\\n\\nQueen\\nMiscellaneous\\nSeven Seas Of Rhye (Remix)\\nFear me you lords and lady preachers\\nI descend upon your earth from the skies\\nI command your very souls you unbelievers\\nBring before me what is mine\\nThe seven seas of rhye\\nCan you hear me you peers and privvy counselors\\nI stand before you naked to the eyes\\nI will destroy any man who dares abuse my trust\\nI swear that you'll be mine\\nThe seven seas of rhye\\nSister - I live and lie for you\\nMister - do and I'll die\\nYou are mine I possess you\\nI belong to you forever\\nStorm the master-marathon I'll fly through\\nBy flash and thunder-fire I'll survive\\nThen I'll defy the laws of nature and come out alive\\nThen I'll get you\\nBe gone with you - you shod and shady senators\\nGive out the good, leave out the bad evil cries\\nI challenge the mighty titan and his troubadours\\nAnd with a smile\\nI'll take you to the seven seas of rhye\\n\\n\"},\n", " {'_id': 1722355,\n", " 'lyrics': 'words and music by freddie mercury shes a s*** lady she can do it then shed kick you out of bed tricky talking baby she can rock and roll and leave you for dead blow hot and cold blow hot and cold she can give you the business give you the business she blows she blows hot and cold shes a modern lady she can fight it out man to man shes a dirty so and so - she can do it do it do it she can blow hot and cold blow hot and cold she can give you the business give you the business she blows she blows hot and cold hey give me the business baby she can give you the business yeah shes a dirty so and so hey she blows she blows she blows hot and cold shes a s*** lady she can bring you to a very sticky end s*** talking tricky talking baby she can rock and roll and leave you for dead blow hot and cold she blows hot and cold she can give you the business give you the business she blows she blows hot and cold hey hey hot and cold hey blow hot and cold come on and do it come on and give me the business give me the business baby she blows she blows hot and cold',\n", " 'original_lyrics': '\\n\\nWords and music by freddie mercury\\n\\nShes a s*** lady she can do it then shed kick you out of bed\\nTricky talking baby she can rock and roll and leave you for dead\\nBlow hot and cold blow hot and cold\\nShe can give you the business give you the business\\nShe blows she blows hot and cold\\n\\nShes a modern lady she can fight it out man to man\\nShes a dirty so and so - she can do it do it do it she can\\nBlow hot and cold blow hot and cold\\nShe can give you the business give you the business\\nShe blows she blows hot and cold\\n\\nHey give me the business baby\\nShe can give you the business yeah\\nShes a dirty so and so\\nHey she blows she blows she blows hot and cold\\n\\nShes a s*** lady she can bring you to a very sticky end\\nS*** talking tricky talking baby\\nShe can rock and roll and leave you for dead\\n\\nBlow hot and cold\\nShe blows hot and cold\\nShe can give you the business give you the business\\nShe blows she blows hot and cold\\n\\nHey hey\\nHot and cold\\nHey\\nBlow hot and cold\\nCome on and do it\\nCome on and give me the business\\nGive me the business baby\\nShe blows she blows hot and cold\\n\\n'},\n", " {'_id': 308999,\n", " 'lyrics': \"well you're just 17 and all you want to do is disappear you know what i mean there's a lot of space between your ears the way that you touch don't feel nothing hey hey hey hey it was the dna hey hey hey hey that made me this way do you know do you know do you know just how i feel do you know do you know do you know just how i feel sheer heart attack sheer heart attack real cardiac i feel so in-articulate gotta feeling got to feeling got to feeling like i'm paralyzed it isn’t no it isn’t no it isn’t no it isn’t no surprise turn on the tv let it drip right down in your eyes hey hey hey hey it was the dna hey hey hey hey that made me this way do you know do you know do you know just how i feel do you know do you know do you know just how i feel sheer heart attack sheer heart attack real cardiac i feel so in-articulate do you know do you know do you know just how i feel do you know do you know do you know just how i feel do you know do you know do you know just how i feel do you know do you know do you know just how i feel sheer heart attack sheer heart attack real cardiac\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nWell you're just 17 and all you want to do is disappear\\nYou know what I mean there's a lot of space between your ears\\nThe way that you touch don't feel nothing\\n\\n[Pre-Chorus]\\nHey hey hey hey, it was the DNA\\nHey hey hey hey, that made me this way\\nDo you know, do you know, do you know, just how I feel\\nDo you know, do you know, do you know, just how I feel\\n\\n[Chorus]\\nSheer heart attack\\nSheer heart attack\\nReal cardiac\\n\\n[Verse 2]\\nI feel so in-articulate\\nGotta feeling, got to feeling, got to feeling, like I'm paralyzed\\nIt isn’t no, it isn’t no, it isn’t no, it isn’t no surprise\\nTurn on the TV let it drip right down in your eyes\\n\\n[Pre-Chorus]\\nHey hey hey hey, it was the DNA\\nHey hey hey hey, that made me this way\\nDo you know, do you know, do you know, just how I feel\\nDo you know, do you know, do you know, just how I feel\\n\\n[Chorus]\\nSheer heart attack\\nSheer heart attack\\nReal cardiac\\n\\n[Verse 3]\\nI feel so in-articulate\\nDo you know, do you know, do you know just how I feel\\nDo you know, do you know, do you know just how I feel\\nDo you know, do you know, do you know just how I feel\\nDo you know, do you know, do you know just how I feel\\n\\n[Chorus]\\nSheer heart attack\\nSheer heart attack\\nReal cardiac\\n\\n\"},\n", " {'_id': 308913,\n", " 'lyrics': \"i love she makes me she is my heart she is my love i know i'm jealous of her she makes me need she is my love who knows who she'll make me as i lie in her cocoon and the world will surely heal my ills i'm warm and terrified she makes me so i know the day i leave her i'll love her still she is my love she knows where my dreams will end i'll follow as they grow but the world will know how long i'll take and if i'm very slow she makes me so she is my love\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI love\\nShe makes me\\nShe is my heart\\nShe is my love\\nI know\\nI'm jealous of her\\nShe makes me need\\nShe is my love\\nWho knows who she'll make me\\nAs I lie in her cocoon\\nAnd the world will surely heal my ills\\nI'm warm and terrified\\nShe makes me so\\nI know the day I leave her\\nI'll love her still\\n\\n[Chorus][x2]\\nShe is my love\\n\\n[Verse 2]\\nShe knows where my dreams will end\\nI'll follow as they grow\\nBut the world will know how long I'll take\\nAnd if I'm very slow she makes me so\\n\\n[Outro]\\nShe is my love\\n\\n\"},\n", " {'_id': 1567578,\n", " 'lyrics': \"i love she makes me she is my heart she is my love she is my love i know you're jealous of her she makes me need she is my love she is my love who knows who she'll make me as i lie in her cocoon but the world will surely heal my ills i'm warm and terrified she makes me so i know the day i leave her i'd love her still she is my love she is my love who knows where my dreams will end i'll follow as they grow but the world will know how long i'll take and if i'm very slow she makes me so she is my love she is my love\",\n", " 'original_lyrics': \"\\n\\nI love\\nShe makes me\\nShe is my heart\\nShe is my love\\nShe is my love\\nI know you're jealous of her\\nShe makes me need\\nShe is my love\\nShe is my love\\nWho knows who she'll make me\\nAs I lie in her cocoon\\nBut the world will surely heal my ills\\nI'm warm and terrified\\nShe makes me so\\nI know the day I leave her\\nI'd love her still\\nShe is my love\\nShe is my love\\nWho knows where my dreams will end\\nI'll follow as they grow\\nBut the world will know\\nHow long I'll take\\nAnd if I'm very slow\\nShe makes me so\\nShe is my love\\nShe is my love\\n\\n\"},\n", " {'_id': 2990344,\n", " 'lyrics': \"like silver salmon she falls they're all burning even at em all yeah deep inside they're all burning look out silver salmon look out look out look out the silver salmon all along the silver skies ah more alarming all the need for silver ah went away salmon look out look out silver salmon ooh yeah seems to me sometimes the trees she burns leaves her body lies a burning and falls into the cold sunrise ooh ooh ow ooh silver silver salmon silver silver riding on the silver salmon she can ride the burning sky yeah\",\n", " 'original_lyrics': \"\\n\\nLike silver salmon\\nShe falls\\nThey're all burning\\nEven at em all, yeah\\nDeep inside they're all burning\\n\\nLook out silver salmon\\nLook out, look out, look out the silver salmon\\n\\nAll along the silver skies, ah\\nMore alarming\\nAll the need for silver, ah\\nWent away\\n\\nSalmon\\nLook out, look out silver salmon\\nOoh, yeah\\n\\nSeems to me sometimes the trees\\nShe burns leaves\\nHer body lies a burning\\nAnd falls into the cold sunrise\\n\\nOoh, ooh, ow\\nOoh\\nSilver, silver salmon\\nSilver, silver\\nRiding on the silver salmon\\nShe can ride the burning sky, yeah\\n\\n\"},\n", " {'_id': 309010,\n", " 'lyrics': \"i was nothing but a city boy my trumpet was my only toy i've been blowing my horn since i knew i was born but there isn’t nobody wants to know i've been sleeping on the sidewalk rollin' down the road i may get hungry but i sure don't want to go home so round the corner comes a limousine and the biggest grin i've ever seen come on sonny won't you sign right along the dotted line what you saying are you playing sure you don't mean me i've been sleeping on the sidewalk rollin' down the road i may get hungry but i sure don't want to go home they took me to a room without a table they said blow your trumpet into here i played around as well as i was able and soon we had the record of the year i was a legend all through the land i was blowing to a million fans nothing' was a-missing all the people want to listen you'd have thought i was a happy man and i was sleeping like a princess never touch the road i don't get hungry and i sure don't want to go home (have to have some fun ) now they tell me that i isn’t so fashionable an' i owe the man a million bucks a year so i told them where to stick the fancy label it's just me and the road from here back to playing and laying i'm back on the game sleeping on the sidewalk\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI was nothing but a city boy\\nMy trumpet was my only toy\\nI've been blowing my horn\\nSince I knew I was born\\nBut there isn’t nobody wants to know\\n\\n[Chorus]\\nI've been\\nSleeping on the sidewalk\\nRollin' down the road\\nI may get hungry\\nBut I sure don't want to go home\\n\\n[Verse 2]\\nSo round the corner comes a limousine\\nAnd the biggest grin I've ever seen\\nCome on sonny won't you sign\\nRight along the dotted line\\nWhat you saying Are you playing\\nSure you don't mean me?\\n\\n[Chorus]\\nI've been\\nSleeping on the sidewalk\\nRollin' down the road\\nI may get hungry\\nBut I sure don't want to go home\\n\\n[Verse 3]\\nThey took me to a room without a table\\nThey said blow your trumpet into here\\nI played around as well as I was able\\nAnd soon we had the record of the year\\nI was a legend all through the land\\nI was blowing to a million fans\\nNothing' was a-missing\\nAll the people want to listen\\nYou'd have thought I was a happy man\\n\\n[Chorus]\\nAnd I was\\nSleeping like a princess\\nNever touch the road\\nI don't get hungry\\nAnd I sure don't want to go home\\n(have to have some fun. . .)\\n\\n[Verse 4]\\nNow they tell me that I isn’t so fashionable\\nAn' I owe the man a million bucks a year\\nSo I told them where to stick the fancy label\\nIt's just me and the road from here\\nBack to playing and laying\\nI'm back on the game\\nSleeping on the sidewalk\\n\\n\"},\n", " {'_id': 118908,\n", " 'lyrics': \"can anybody find me somebody to love each morning i get up i die a little can barely stand on my feet (take a look at yourself in the mirror and cry) take a look in the mirror and cry lord what you're doing to me i have spent all my years in believing you but i just can't get no relief lord somebody (somebody) ooh somebody (somebody) can anybody find me somebody to love i work hard (he works hard) every day of my life i work till i ache my bones at the end (at the end of the day) i take home my hard-earned pay all on my own (yes on my knees on) i get down (down) on my knees (knees) and i start to pray (praise the lord) till the tears run down from my eyes lord somebody (somebody) ooh somebody (somebody) can anybody find me somebody to love (he works hard) everyday (everyday) i try and i try and i try but everybody wants to put me down they say i'm goin' crazy they say i got a lot of water in my brain no i got no common sense (he's got) got nobody left to believe no no no no (oh lord) ooh somebody ooh (somebody) anybody find me somebody to love (anybody find me someone to love) got no feel i got no rhythm i just keep losing my beat (just keep losing and losing) i'm okay i'm alright (he's alright he's alright) i ain't gonna face no defeat (yeah yeah) i just gotta get out of this prison cell someday i'm gonna be free lord find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love somebody (somebody) somebody (somebody) somebody (find me) (somebody find me somebody to love) can (anybody find me) somebody to love (find me somebody to love) ooh (find me somebody to love) every somebody (find me somebody to love) somebody somebody somebody to love (find me somebody to love) find me find me find me find me find me somebody to love (find me somebody to love) ooh (find me somebody to love) somebody find me find me somebody to love (find me somebody to love) anybody anywhere anybody find me somebody to love find me find me find me\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nCan anybody find me somebody to love?\\n\\n[Verse 1]\\nEach morning I get up I die a little\\nCan barely stand on my feet\\n(Take a look at yourself in the mirror and cry) Take a look in the mirror and cry\\nLord what you're doing to me\\nI have spent all my years in believing you\\nBut I just can't get no relief, Lord\\n\\n[Chorus]\\nSomebody (somebody)\\nOoh somebody (somebody)\\nCan anybody find me\\nSomebody to love?\\n\\n[Verse 2]\\nI work hard (he works hard)\\nEvery day of my life\\nI work till I ache my bones\\nAt the end (at the end of the day)\\nI take home my hard-earned pay all on my own (yes, on my knees on)\\nI get down (down) on my knees (knees)\\nAnd I start to pray (praise the Lord)\\nTill the tears run down from my eyes, Lord\\n\\n[Chorus]\\nSomebody (somebody)\\nOoh somebody (somebody)\\nCan anybody find me\\nSomebody to love?\\n\\n[Verse 3]\\n(He works hard)\\nEveryday (everyday)\\nI try and I try and I try\\nBut everybody wants to put me down\\nThey say I'm goin' crazy\\nThey say I got a lot of water in my brain\\nNo, I got no common sense\\n(He's got) Got nobody left to believe\\nNo, no, no, no\\n\\n[Chorus]\\n(Oh Lord)\\nOoh somebody\\nOoh (somebody)\\nAnybody find me\\nSomebody to love\\n(Anybody find me someone to love)\\n\\n[Verse 4]\\nGot no feel, I got no rhythm\\nI just keep losing my beat (just keep losing and losing)\\nI'm okay, I'm alright (he's alright, he's alright)\\nI ain't gonna face no defeat (yeah, yeah)\\nI just gotta get out of this prison cell\\nSomeday I'm gonna be free, Lord\\n\\n[Outro]\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\n\\nSomebody (somebody)\\nSomebody (somebody)\\nSomebody (find me)\\n(Somebody find me somebody to love)\\nCan (anybody find me)\\nSomebody to love?\\n(Find me somebody to love) Ooh\\n(Find me somebody to love) Every somebody\\n(Find me somebody to love) Somebody, somebody, somebody to love\\n(Find me somebody to love) Find me, find me, find me, find me, find me somebody to love\\n(Find me somebody to love) Ooh\\n(Find me somebody to love) Somebody find me, find me somebody to love\\n(Find me somebody to love) Anybody, anywhere, anybody find me somebody to love\\nFind me, find me, find me\\n\\n\"},\n", " {'_id': 1190173,\n", " 'lyrics': \"can anybody find me somebody to love each morning i get up i die a little can barely stand on my feet (take a look at yourself) take a look in the mirror and cry lord what you're doing to me i have spent all my years in believing you but i just can't get no relief lord somebody oooh somebody can anybody find me somebody to love i work hard (he works hard) everyday of my life i work 'till i ache my bones at the end (at the end of the day) i take home (goes home) my hard earned pay all on my own (goes home on his own) i get down on my knees and i start to pray (praise the lord) 'till the tears run down from my eyes lord somebody oooh somebody can anybody find me somebody to love (he works hard) every day - i try and i try and i try - but everybody wants to put me down they say i'm going crazy they say i got a lot of water in my brain got no common sense i got nobody left to believe oh lord somebody (somebody) can anybody find me somebody to love got no feel i got no rhythm i just keep losing my beat i'm ok i'm alright i ain't gonna face no defeat i just gotta get out of this prison cell someday i'm gonna be free lord find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love somebody somebody somebody somebody somebody find me somebody find me somebody to love can anybody find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me find me find me find me somebody to love somebody to love find me somebody to love\",\n", " 'original_lyrics': \"\\n\\nCan anybody find me somebody to love?\\nEach morning I get up I die a little\\nCan barely stand on my feet (take a look at yourself)\\nTake a look in the mirror and cry\\nLord, what you're doing to me\\nI have spent all my years in believing you\\nBut I just can't get no relief, Lord!\\nSomebody oooh somebody\\nCan anybody find me somebody to love?\\nI work hard (he works hard) everyday of my life\\nI work 'till I ache my bones\\nAt the end (at the end of the day)\\nI take home (goes home) my hard earned pay all on my own (goes home on his own)\\nI get down on my knees\\nAnd I start to pray (praise the Lord)\\n'Till the tears run down from my eyes\\nLord, somebody oooh somebody\\nCan anybody find me somebody to love?\\n(He works hard)\\nEvery day - I try and I try and I try -\\nBut everybody wants to put me down\\nThey say I'm going crazy\\nThey say I got a lot of water in my brain\\nGot no common sense\\nI got nobody left to believe\\nOh Lord\\nSomebody (somebody)\\nCan anybody find me somebody to love?\\nGot no feel, I got no rhythm\\nI just keep losing my beat\\nI'm OK, I'm alright\\nI ain't gonna face no defeat\\nI just gotta get out of this prison cell\\nSomeday I'm gonna be free, Lord!\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nSomebody somebody somebody somebody somebody\\nFind me somebody find me somebody to love\\nCan anybody find me somebody to love?\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me find me find me\\nFind me somebody to love\\nSomebody to love\\nFind me somebody to love...\\n\\n\"},\n", " {'_id': 1954861,\n", " 'lyrics': \"can anybody find me somebody to love ooh each morning i get up i die a little can barely stand on my feet (take a look at yourself) take a look in the mirror and cry (and cry) lord what you're doing to me (yeah yeah) i have spent all my years in believing you but i just can't get no relief lord somebody (somebody) ooh somebody (somebody) can anybody find me somebody to love i work hard (he works hard) every day of my life i work till i ache in my bones at the end (at the end of the day) i take home my hard earned pay all on my own i get down (down) on my knees (knees) and i start to pray till the tears run down from my eyes lord somebody (somebody) ooh somebody (please) can anybody find me somebody to love (he works hard) everyday (everyday) i try and i try and i try but everybody wants to put me down they say i'm going crazy they say i got a lot of water in my brain ah got no common sense i got nobody left to believe in yeah yeah yeah yeah oh lord ooh somebody ooh somebody can anybody find me somebody to love (can anybody find me someone to love) got no feel i got no rhythm i just keep losing my beat (you just keep losing and losing) i'm ok i'm alright (he's alright he's alright) i ain't gonna face no defeat (yeah yeah) i just gotta get out of this prison cell one day (someday) i'm gonna be free lord find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love find me somebody to love love love find me somebody to love find me somebody to love somebody somebody somebody somebody somebody find me somebody find me somebody to love can anybody find me somebody to love (find me somebody to love) ooh (find me somebody to love) find me somebody somebody (find me somebody to love) somebody somebody to love find me find me find me find me find me ooh somebody to love (find me somebody to love) ooh (find me somebody to love) find me find me find me somebody to love (find me somebody to love) anybody anywhere anybody find me somebody to love love love somebody find me find me love\",\n", " 'original_lyrics': \"\\n\\nCan anybody find me somebody to love\\nOoh, each morning I get up I die a little\\nCan barely stand on my feet\\n(Take a look at yourself) Take a look in the mirror and cry (and cry)\\nLord what you're doing to me (yeah yeah)\\nI have spent all my years in believing you\\nBut I just can't get no relief, Lord!\\nSomebody (somebody) ooh somebody (somebody)\\nCan anybody find me somebody to love?\\nI work hard (he works hard) every day of my life\\nI work till I ache in my bones\\nAt the end (at the end of the day)\\nI take home my hard earned pay all on my own\\nI get down (down) on my knees (knees)\\nAnd I start to pray\\nTill the tears run down from my eyes\\nLord somebody (somebody), ooh somebody\\n(Please) can anybody find me somebody to love?\\n(He works hard)\\nEveryday (everyday) I try and I try and I try\\nBut everybody wants to put me down\\nThey say I'm going crazy\\nThey say I got a lot of water in my brain\\nAh, got no common sense\\nI got nobody left to believe in\\nYeah yeah yeah yeah\\nOh Lord\\nOoh somebody, ooh somebody\\nCan anybody find me somebody to love?\\n(Can anybody find me someone to love)\\nGot no feel, I got no rhythm\\nI just keep losing my beat (you just keep losing and losing)\\nI'm OK, I'm alright (he's alright, he's alright)\\nI ain't gonna face no defeat (yeah yeah)\\nI just gotta get out of this prison cell\\nOne day (someday) I'm gonna be free, Lord!\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love\\nFind me somebody to love love love\\nFind me somebody to love\\nFind me somebody to love\\nSomebody somebody somebody somebody\\nSomebody find me\\nSomebody find me somebody to love\\nCan anybody find me somebody to love?\\n(Find me somebody to love)\\nOoh\\n(Find me somebody to love)\\nFind me somebody, somebody (find me somebody to love) somebody, somebody to love\\nFind me, find me, find me, find me, find me\\nOoh, somebody to love (Find me somebody to love)\\nOoh (find me somebody to love)\\nFind me, find me, find me somebody to love (find me somebody to love)\\nAnybody, anywhere, anybody find me somebody to love love love!\\nSomebody find me, find me love\\n\\n\"},\n", " {'_id': 308847,\n", " 'lyrics': \"you never heard my song before the music was too loud but now i think you hear me well for now we both know how no star can light our way in this cloud of dark and fear but some day one day funny how the pages turn and hold us in between a misty castle waits for you and you shall be a queen today the cloud it hangs over us and all is grey but some day one day when i was you and you were me and we were very gone together took us nearly there the rest may not be sung so still the cloud it hangs over us and we're alone but some day one day we'll come home\",\n", " 'original_lyrics': \"\\n\\n[Guitar solo]\\n\\n[Verse 1]\\nYou never heard my song before the music was too loud\\nBut now i think you hear me well for now we both know how\\nNo star can light our way in this cloud of dark and fear\\nBut some day, one day...\\n\\n[Guitar solo]\\n\\nFunny how the pages turn and hold us in between\\nA misty castle waits for you and you shall be a queen\\nToday the cloud it hangs over us and all is grey\\nBut some day, one day...\\n\\n[Guitar solo]\\n\\nWhen i was you and you were me and we were very gone\\nTogether took us nearly there the rest may not be sung\\nSo still the cloud it hangs over us and we're alone\\nBut some day, one day...\\nWe'll come home\\n\\n[Guitar solo]\\n\\n\"},\n", " {'_id': 310070,\n", " 'lyrics': 'once i loved a butterfly do not wonder how do not ask me why but i believed what i would have been told all things that glitter cannot be gold ooooo ooo yeah all things that glitter cannot be gold those jealous minds conspired to say just let that creature fly away how can it be she has it all her pride is headed for a fall oh lord what races we run seeking our place in the sun reaching and doping we will find the right one now every day a new joy brings my butterfly grew golden wings it seems we find as we grow old some things that glitter may be gold so let us mind what is there to see before our hearts become too cold in spite of all that we have been told some things that glitter may be gold {chorus} ooooo ooo yeah some things that glitter may be gold ooooo ooo yeah some things that glitter may be gold',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nOnce I loved a butterfly\\nDo not wonder how, do not ask me why\\nBut I believed what I would have been told\\nAll things that glitter cannot be gold\\n\\n[Chorus]\\nOoooo ooo yeah\\nAll things that glitter cannot be gold\\n\\n[Verse 2]\\nThose jealous minds conspired to say\\nJust let that creature fly away\\nHow can it be she has it all\\nHer pride is headed for a fall\\n\\n[Chorus]\\n\\n[Verse 3]\\nOh Lord, what races we run\\nSeeking our place in the Sun\\nReaching and doping we will find the right one\\nNow every day a new joy brings\\nMy butterfly grew golden wings\\nIt seems we find as we grow old\\nSome things that glitter may be gold\\n\\n[Chorus]\\n\\n[Verse 4]\\nSo let us mind what is there to see\\nBefore our hearts become too cold\\nIn spite of all that we have been told\\nSome things that glitter may be gold\\n\\n{Chorus}\\nOoooo ooo yeah\\nSome things that glitter may be gold\\n\\n[Outro]\\nOoooo ooo yeah\\nSome things that glitter\\nMay be gold\\n\\n'},\n", " {'_id': 308811,\n", " 'lyrics': \"i want you oh my yeah tried to be your son and daughter rolled into one you said you'd equal any man for having your fun now didn't you feel surprise to find the cap just didn't fit the world expects a man to buckle down and to shovel shit what'll you do for loving when its only just begun i want you to be a woman tried to be a teacher and a fisher of men an equal will you lead us all the same well i travelled around the world to find a brand new word for day watching the time mustn't linger behind pardon me i have to get away what'll you think of heaven if it's back from where you came i want you to be a woman\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nI Want You\\nOh my, yeah\\n\\n[Verse 1]\\nTried to be your son and daughter rolled into one\\nYou said you'd equal any man for having your fun\\nNow didn't you feel surprise to find\\nThe cap just didn't fit?\\nThe world expects a man\\nTo buckle down and to shovel shit\\nWhat'll you do for loving\\nWhen its only just begun?\\nI want you to be a woman\\n\\n[Guitar solo]\\n\\nTried to be a teacher and a fisher of men\\nAn equal\\nWill you lead us all the same?\\nWell I travelled around the world\\nTo find a brand new word for day\\nWatching the time mustn't linger behind\\nPardon me I have to get away\\nWhat'll you think of heaven\\nIf it's back from where you came?\\nI want you to be a woman\\n\\n\"},\n", " {'_id': 1940559,\n", " 'lyrics': \"i want you to be a woman tried to be a son and daughter rolled into one you said you'd equal any man for having your fun now didn't you feel surprised to find the cap just didn't fit the world expects a man to buckle down and to shovel shit what'll you do for loving when it's only just begun i want you to be a woman tried to be a teacher and a fisher of men an equal people preacher will you lead us all the same well i travelled all round the world a brand new word for day watching the time mustn't linger behind pardon me i have to get away what'll you think of heaven if it's back from where you came i want you to be a woman i want you to be a woman yeah\",\n", " 'original_lyrics': \"\\n\\nI want you\\n\\nTo be a woman\\n\\nTried to be a son and daughter rolled into one\\nYou said you'd equal any man for having your fun\\nNow didn't you feel surprised to find\\nThe cap just didn't fit\\nThe world expects a man\\nTo buckle down and to shovel shit\\nWhat'll you do for loving\\nWhen it's only just begun?\\nI want you to be a woman\\n\\nTried to be a teacher and a fisher of men\\nAn equal people preacher\\nWill you lead us all the same?\\nWell I travelled all round the world\\nA brand new word for day\\nWatching the time mustn't linger behind\\nPardon me I have to get away\\nWhat'll you think of heaven\\nIf it's back from where you came?\\nI want you to be a woman\\nI want you to be a woman yeah\\n\\n\"},\n", " {'_id': 1958274,\n", " 'lyrics': \"i want you to be a woman tried to be a son and daughter rolled into one you said you'd equal any man for having your fun now didn't you feel surprised to find the cap just didn't fit the world expects a man to buckle down and to shovel shit what'll you do for loving when it's only just begun i want you to be a woman tried to be a teacher and a fisher of men an equal people preacher will you lead us all the same well i travelled all round the world a brand new word for day watching the time mustn't linger behind pardon me i have to get away what'll you think of heaven if it's back from where you came i want you to be a woman i want you to be a woman yeah\",\n", " 'original_lyrics': \"\\n\\nI want you\\n\\nTo be a woman\\n\\nTried to be a son and daughter rolled into one\\nYou said you'd equal any man for having your fun\\nNow didn't you feel surprised to find\\nThe cap just didn't fit\\nThe world expects a man\\nTo buckle down and to shovel shit\\nWhat'll you do for loving\\nWhen it's only just begun?\\nI want you to be a woman\\n\\nTried to be a teacher and a fisher of men\\nAn equal people preacher\\nWill you lead us all the same?\\nWell I travelled all round the world\\nA brand new word for day\\nWatching the time mustn't linger behind\\nPardon me I have to get away\\nWhat'll you think of heaven\\nIf it's back from where you came?\\nI want you to be a woman\\nI want you to be a woman yeah\\n\\n\"},\n", " {'_id': 311674,\n", " 'lyrics': \"god bless my soul here he comes now the man with the most how does he do it sure he's got style he's so heavy he's a trip can do anything anything anything he's my soul brother he's my best friend he's my champion and he will rock you rock you rock you because he's the saviour of the universe he can make you keep yourself alive make yourself alive ooh brother cause he's somebody somebody you can love he's my soul brother when you're under pressure feeling under pressure yeah pressure yeah pressure he won't let you down when you're under pressure oh feeling under pressure yeah pressure so he won't let you down my brother won't let you down he won't he won't he won't let you down he can do anything anything anything he's my soul brother yeah yeah yeah yeah yeah yeah yeah ooh soul brother anything (soul brother) anything (soul brother) anything (soul brother) he's my soul brother brother brother brother brother anything (soul brother) anything (soul brother) anything (soul brother) he's my soul brother soul brother he can do anything he can do anything because he's my soul brother\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nGod bless my soul here he comes now\\nThe man with the most how does he do it?\\nSure he's got style he's so heavy\\nHe's a trip can do anything\\nAnything anything\\nHe's my soul brother\\nHe's my best friend he's my champion\\nAnd he will rock you rock you rock you\\nBecause he's the saviour of the universe\\nHe can make you keep yourself alive\\nMake yourself alive\\nOoh brother cause he's somebody somebody\\nYou can love\\nHe's my soul brother\\nWhen you're under pressure feeling under pressure\\nYeah pressure yeah pressure\\nHe won't let you down\\nWhen you're under pressure\\nOh feeling under pressure yeah pressure\\nSo he won't let you down\\nMy brother won't let you down\\nHe won't he won't he won't let you down\\nHe can do anything anything anything\\nHe's my soul brother\\n\\n[Chorus]\\nYeah yeah yeah yeah yeah yeah yeah\\nOoh soul brother anything (soul brother)\\nAnything (soul brother) anything (soul brother)\\nHe's my soul brother brother brother brother brother\\nAnything (soul brother) anything (soul brother) anything\\n(soul brother)\\nHe's my soul brother\\n\\n[Outro]\\nSoul brother he can do anything\\nHe can do anything\\nBecause he's my soul brother\\n\\n\"},\n", " {'_id': 2065707,\n", " 'lyrics': \"taylor and john deacon god bless my soul here he comes now the man with the most how does he do it sure he's got style he's so heavy he's a trip can do anything anything anything he's my soul brother he's my best friend he's my champion and he will rock you rock you rock you 'cause he's the saviour of the universe he can make you keep yourself alive make yourself alive ooh brother cause he's somebody somebody he can love he's my soul brother when you're under pressure feeling under pressure yeah pressure yeah pressure he won't let you down when you're under pressure oh feeling under pressure yeah pressure so he won't let you down my brother won't let you down he won't he won't he won't let you down he can do anything anything anything he's my soul brother yeah yeah yeah yeah yeah yeah yeah ooh soul brother anything (soul brother) anything (soul brother) anything (soul brother) he's my soul brother brother brother brother brother anything (soul brother) anything (soul brother) anything (soul brother) he's my soul brother soul brother he can do anything he can do anything 'cause he's my soul brother\",\n", " 'original_lyrics': \"\\n\\nTaylor and John Deacon\\n\\nGod bless my soul here he comes now\\nThe man with the most how does he do it?\\nSure he's got style he's so heavy\\nHe's a trip can do anything\\nAnything anything\\nHe's my soul brother\\n\\nHe's my best friend he's my champion\\nAnd he will rock you rock you rock you\\n'Cause he's the saviour of the universe\\nHe can make you keep yourself alive\\nMake yourself alive\\nOoh brother cause he's somebody somebody\\nHe can love\\nHe's my soul brother\\n\\nWhen you're under pressure feeling under pressure\\nYeah pressure yeah pressure\\nHe won't let you down\\nWhen you're under pressure\\nOh feeling under pressure yeah pressure\\nSo he won't let you down\\nMy brother won't let you down\\nHe won't he won't he won't let you down\\nHe can do anything anything anything\\nHe's my soul brother\\n\\nYeah yeah yeah yeah yeah yeah yeah\\nOoh soul brother anything (soul brother)\\nAnything (soul brother) anything (soul brother)\\nHe's my soul brother brother brother brother brother\\nAnything (soul brother) anything (soul brother) anything\\n(soul brother)\\nHe's my soul brother\\n\\nSoul brother he can do anything\\nHe can do anything\\n'Cause he's my soul brother\\n\\n\"},\n", " {'_id': 309005,\n", " 'lyrics': 'sammy was low just watching the show over and over again knew it was time he\\'d made up his mind to leave his dead life behind his boss said to him boy you\\'d better begin to get those crazy notions right out of your head sammy who do you think that you are you should\\'ve been sweeping up the emerald bar spread your wings and fly away fly away far away spread your little wings and fly away fly away far away pull yourself together because you know you should do better that\\'s because you\\'re a free man he spends his evenings alone in his hotel room keeping his thoughts to himself he\\'d be leaving soon wishing he was miles and miles away nothing in this world nothing would make him stay since he was small had no luck at all nothing came easy to him now it was time he\\'d made up his mind \"this could be my last chance\" his boss said to him \"now listen boy you\\'re always dreaming you\\'ve got no real ambition you won\\'t get very far sammy boy don\\'t you know who you are why can\\'t you be happy at the emerald bar\" so honey spread your wings and fly away fly away far away spread your little wings and fly away fly away far away pull yourself together because you know you should do better that\\'s because you\\'re a free man come on honey fly with me',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nSammy was low\\nJust watching the show\\nOver and over again\\nKnew it was time\\nHe\\'d made up his mind\\nTo leave his dead life behind\\nHis boss said to him\\nBoy you\\'d better begin\\nTo get those crazy notions right out of your head\\nSammy who do you think that you are?\\nYou should\\'ve been sweeping up the Emerald Bar\\n\\n[Chorus]\\nSpread your wings and fly away\\nFly away, far away\\nSpread your little wings and fly away\\nFly away, far away\\nPull yourself together\\nBecause you know you should do better\\nThat\\'s because you\\'re a free man\\n\\n[Bridge]\\nHe spends his evenings alone in his hotel room\\nKeeping his thoughts to himself, he\\'d be leaving soon\\nWishing he was miles and miles away\\nNothing in this world, nothing would make him stay\\n\\n[Verse 2]\\nSince he was small\\nHad no luck at all\\nNothing came easy to him\\nNow it was time\\nHe\\'d made up his mind\\n\"This could be my last chance\"\\nHis boss said to him, \"Now listen boy!\\nYou\\'re always dreaming\\nYou\\'ve got no real ambition, you won\\'t get very far\\nSammy boy, don\\'t you know who you are?\\nWhy can\\'t you be happy at the Emerald Bar?\"\\nSo honey\\n\\n[Chorus]\\nSpread your wings and fly away\\nFly away, far away\\nSpread your little wings and fly away\\nFly away, far away\\nPull yourself together\\nBecause you know you should do better\\nThat\\'s because you\\'re a free man\\n\\nCome on, honey\\nFly with me\\n\\n'},\n", " {'_id': 1755493,\n", " 'lyrics': 'queen live killers spread your wings (deacon) sammy was low just watching the show over and over again knew it was time he\\'d made up his mind to leave his dead life behind his boss said to him \"boy you\\'d better begin to get those crazy notions right out of your head sammy who do you think that you are you should\\'ve been sweeping up the emerald bar\" spread your wings and fly away fly away far away spread your little wings and fly away fly away far away pull yourself together \\'cos you know you should do better that\\'s because you\\'re a free man he spends his evenings alone in his hotel room keeping his thoughts to himself he\\'d be leaving soon wishing he was miles and miles away nothing in this world nothing would make him stay since he was small had no luck at all nothing came easy to him now it was time he\\'d made up his mind \"this could be my last chance\" his boss said to him \"now listen boy you\\'re always dreaming you\\'ve got no real ambition you won\\'t get very far sammy boy don\\'t you know who you are you should\\'ve been sweeping up the emerald bar\" so honey spread your wings and fly away fly away far away spread your little wings and fly away fly away far away pull yourself together \\'cos you know you should do better that\\'s because you\\'re a free man',\n", " 'original_lyrics': '\\n\\nQueen\\nLive Killers\\nSpread Your Wings (Deacon)\\nSammy was low\\nJust watching the show\\nOver and over again\\nKnew it was time\\nHe\\'d made up his mind\\nTo leave his dead life behind\\nHis boss said to him\\n\"Boy you\\'d better begin\\nTo get those crazy notions right out of your head\\nSammy who do you think that you are?\\nYou should\\'ve been sweeping up the Emerald Bar\"\\nSpread your wings and fly away\\nFly away, far away\\nSpread your little wings and fly away\\nFly away, far away\\nPull yourself together\\n\\'Cos you know you should do better\\nThat\\'s because you\\'re a free man\\nHe spends his evenings alone in his hotel room\\nKeeping his thoughts to himself, he\\'d be leaving soon\\nWishing he was miles and miles away\\nNothing in this world, nothing would make him stay\\nSince he was small\\nHad no luck at all\\nNothing came easy to him\\nNow it was time\\nHe\\'d made up his mind\\n\"This could be my last chance\"\\nHis boss said to him, \"Now listen boy!\\nYou\\'re always dreaming\\nYou\\'ve got no real ambition, you won\\'t get very far\\nSammy boy, don\\'t you know who you are?\\nYou should\\'ve been sweeping up the Emerald Bar\"\\nSo honey\\nSpread your wings and fly away\\nFly away, far away\\nSpread your little wings and fly away\\nFly away, far away\\nPull yourself together\\n\\'Cos you know you should do better\\nThat\\'s because you\\'re a free man\\n\\n'},\n", " {'_id': 309800,\n", " 'lyrics': \"let me show it to you yeah see what i got - i got a hell of a lot tell me what you feel is it real is it real you know i got what it takes and i can take a lot did you hear the last call baby you and me got staying power yeah you and me we got staying power staying power (i got it i got it) i wonder when we're gonna make it i wonder when we're gonna shake it rock me baby rock me c'mon you can shock me let's catch on to the groove make it move make it move you know how to shake that thing we'll work it work it work it you and i can play ball baby you and me got staying power yeah you and me we got staying power i wonder when we're gonna make it i wonder when we're gonna shake it fire down below i'm just a regular dynamo want some smooth company don't lose control just hang on out with me got to get to know each other but we got plenty of time did you hear the last call baby you and me got staying power yeah you and me we got staying power power power power i wonder when we're gonna stick it i wonder when we're gonna trick it blow baby blow let's get down and go go get yourself in the mood got to give a little bit of attitude baby don't you crash let just trash trash trash did you hear the last call baby you and me got staying power yeah you and me we got staying power (i like it) staying power yeah yeah gotcha\",\n", " 'original_lyrics': \"\\n\\nLet me show it to you yeah\\n\\nSee what I got - I got a hell of a lot\\nTell me what you feel\\nIs it real is it real?\\nYou know I got what it takes\\nAnd I can take a lot\\nDid you hear the last call baby?\\n\\nYou and me got staying power yeah!\\nYou and me we got staying power\\nStaying power (I got it I got it)\\n\\nI wonder when we're gonna make it\\nI wonder when we're gonna shake it\\nRock me baby rock me\\nC'mon you can shock me\\nLet's catch on to the groove\\nMake it move make it move\\nYou know how to shake that thing\\nWe'll work it work it work it\\nYou and I can play ball baby\\n\\nYou and me got staying power yeah\\nYou and me we got staying power\\n\\nI wonder when we're gonna make it\\nI wonder when we're gonna shake it\\nFire down below I'm just a regular dynamo\\nWant some smooth company\\nDon't lose control just hang on out with me\\nGot to get to know each other\\nBut we got plenty of time\\nDid you hear the last call baby?\\n\\nYou and me got staying power yeah\\nYou and me we got staying power\\n\\nPower power power...\\n\\nI wonder when we're gonna stick it\\nI wonder when we're gonna trick it\\nBlow baby blow let's get down and go go\\nGet yourself in the mood\\nGot to give a little bit of attitude\\nBaby don't you crash\\nLet just trash trash trash\\nDid you hear the last call baby?\\n\\nYou and me got staying power yeah\\nYou and me we got staying power\\n\\n(I like it) Staying power\\nYeah yeah\\nGotcha\\n\\n\"},\n", " {'_id': 2003438,\n", " 'lyrics': \"let me show it to you yeah see what i got - i got a hell of a lot tell me what you feel is it real is it real you know i got what it takes and i can take a lot did you hear the last call baby you and me got staying power yeah you and me we got staying power staying power (i got it i got it) i wonder when we're gonna make it i wonder when we're gonna shake it rock me baby rock me c'mon you can shock me let's catch on to the groove make it move make it move you know how to shake that thing we'll work it work it work it you and i can play ball baby you and me got staying power yeah you and me we got staying power i wonder when we're gonna make it i wonder when we're gonna shake it fire down below i'm just a regular dynamo want some smooth company don't lose control just hang on out with me got to get to know each other but we got plenty of time did you hear the last call baby you and me got staying power yeah you and me we got staying power power power power i wonder when we're gonna stick it i wonder when we're gonna trick it blow baby blow let's get down and go go get yourself in the mood got to give a little bit of attitude baby don't you crash let just trash trash trash did you hear the last call baby you and me got staying power yeah you and me we got staying power (i like it) staying power yeah yeah gotcha\",\n", " 'original_lyrics': \"\\n\\nLet me show it to you yeah\\n\\nSee what I got - I got a hell of a lot\\nTell me what you feel\\nIs it real is it real?\\nYou know I got what it takes\\nAnd I can take a lot\\nDid you hear the last call baby?\\n\\nYou and me got staying power yeah!\\nYou and me we got staying power\\nStaying power (I got it I got it)\\n\\nI wonder when we're gonna make it\\nI wonder when we're gonna shake it\\nRock me baby rock me\\nC'mon you can shock me\\nLet's catch on to the groove\\nMake it move make it move\\nYou know how to shake that thing\\nWe'll work it work it work it\\nYou and I can play ball baby\\n\\nYou and me got staying power yeah\\nYou and me we got staying power\\n\\nI wonder when we're gonna make it\\nI wonder when we're gonna shake it\\nFire down below I'm just a regular dynamo\\nWant some smooth company\\nDon't lose control just hang on out with me\\nGot to get to know each other\\nBut we got plenty of time\\nDid you hear the last call baby?\\n\\nYou and me got staying power yeah\\nYou and me we got staying power\\n\\nPower power power...\\n\\nI wonder when we're gonna stick it\\nI wonder when we're gonna trick it\\nBlow baby blow let's get down and go go\\nGet yourself in the mood\\nGot to give a little bit of attitude\\nBaby don't you crash\\nLet just trash trash trash\\nDid you hear the last call baby?\\n\\nYou and me got staying power yeah\\nYou and me we got staying power\\n\\n(I like it) Staying power\\nYeah yeah\\nGotcha\\n\\n\"},\n", " {'_id': 2052394,\n", " 'lyrics': \"that's the way i am does everybody want to know this is the way i lead my life - you know wheelin' and dealin' and a little bit of stealin' you know that's the way i grew up that's the only life i know that's the way my mother taught me there you go stealin' i gave you the key to my home i left you alone in charge of my heart hey stealin' you got me wheelin' and dealin' you play with my feelin' right from the start can't afford to pay my rent i had to use my common sense to get some money i owe - oho this guy said look in my head make some easy bread stealin' is the only way that i know stealin' yeah only way that i know yeah i like stealin' baby stealin' i gave you both my own on my own left you alone now you'll be stealin' stealin' stealin' all my heart you're my baby's heart uh uh baby let 'em bleed you're in charge of my heart you are in charge of my heart you are in charge you are in charge da da da da da da da da da da da da da da da da da da yes you are in charge of my heart i gave you the key and turned on the bed i gave you the key come on i said what have i got what have i got yes i i got the key out of my heart now get that key out of my heart of my heart come on\",\n", " 'original_lyrics': \"\\n\\nThat's the way I am\\nDoes everybody want to know\\nThis is the way I lead my life - you know\\nWheelin' and dealin'\\nAnd a little bit of stealin'\\nYou know that's the way I grew up\\nThat's the only life I know\\nThat's the way my mother taught me\\nThere you go\\n\\nStealin'\\nI gave you the key to my home\\nI left you alone in charge of my heart\\nHey stealin'\\nYou got me wheelin' and dealin'\\nYou play with my feelin'\\nRight from the start\\n\\nCan't afford to pay my rent\\nI had to use my common sense\\nTo get some money I owe - oho\\nThis guy said look in my head\\nMake some easy bread\\nStealin' is the only way that I know\\n\\nStealin' yeah only way that I know\\nYeah I like stealin' baby stealin'\\nI gave you both my own on my own\\nLeft you alone\\nNow you'll be stealin' stealin' stealin'\\nAll my heart\\nYou're my baby's heart\\nUh uh\\n\\nBaby let 'em bleed\\n\\nYou're in charge of my heart\\nYou are in charge of my heart\\nYou are in charge\\nYou are in charge\\n\\nDa da da da da da\\nDa da da da da da\\nDa da da da da da\\n\\nYes you are in charge of my heart\\nI gave you the key\\nAnd turned on the bed\\nI gave you the key\\nCome on I said what have I got\\nWhat have I got\\n\\nYes\\nI, I got the key out of my heart\\nNow get that key out of my heart\\n? of my heart\\nCome on\\n\\n\"},\n", " {'_id': 310004,\n", " 'lyrics': \"i cannot wake in the morning i cannot sleep at night i got a pain in my memory that just will not sit right you might say i am losing my mind what a shame shame shame but i do not want and i do not need to play the crying game music lights this flame in me i will not let it go and it will not let me be i am just a happy slave and oh i cannot leave it because i am still and i always will - be a believer still burning (yeah) still yearning (and the wheel's) still turning (ooh let me tell you why) we are jiving (and the beat's) still driven (and we are all) sky diving (rock and roll never die) i cannot breathe in the city got dust in my lungs i get mad in the country everything seem to go wrong you might think i am playing around but my heart is true i got reason to believe that sweet soul magic going to tear my heart in two music makes the world go round i have been flying on the wings of the sound it feels so good from way up here i am still a believer heading for the stars oh yeah still burning still yearning still burning still yearning still turning (better than every guy) we are jiving still driving sky diving (rock and roll never die) do not say that you love me i cannot go that road but do not think for a moment that my heart went cold i keep thinking about what i lost and what i might have found i went to sleep and when i woke everything had turned around still burning (yeah) still yearning still turning (a new day dawning) we are jiving still driving sky diving (early in the morning) still burning (yeah) still yearning (and the wheel's) still turning (better than every guy) we are jiving (and the beat's) still driving (and we are all) sky diving (rock and roll never die)\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI cannot wake in the morning\\nI cannot sleep at night\\nI got a pain in my memory\\nThat just will not sit right\\nYou might say I am losing my mind\\nWhat a shame, shame, shame\\nBut I do not want and I do not need\\nTo play the crying game\\nMusic lights this flame in me\\nI will not let it go and it will not let me be\\nI am just a happy slave and oh I cannot leave it\\nBecause I am still, and I always will - be a believer\\n\\n[Chorus]\\nStill burning (yeah)\\nStill yearning (and the wheel's)\\nStill turning (ooh let me tell you why)\\nWe are jiving (and the beat's)\\nStill driven (and we are all)\\nSky diving (rock and roll never die)\\n\\n[Verse 2]\\nI cannot breathe in the city\\nGot dust in my lungs\\nI get mad in the country\\nEverything seem to go wrong\\nYou might think I am playing around\\nBut my heart is true\\nI got reason to believe\\nThat sweet soul magic\\nGoing to tear my heart in two\\nMusic makes the world go round\\nI have been flying on the wings of the sound\\nIt feels so good from way up here\\nI am still a believer\\nHeading for the stars\\n\\n[Chorus]\\nOh yeah\\nStill burning, still yearning\\nStill burning\\nStill yearning\\nStill turning (better than every guy)\\nWe are jiving\\nStill driving\\nSky diving (rock and roll never die)\\n\\n[Verse 3]\\nDo not say that you love me I cannot go that road\\nBut do not think for a moment that my heart went cold\\nI keep thinking about what I lost\\nAnd what I might have found\\nI went to sleep and when I woke\\nEverything had turned around\\n\\n[Chorus]\\nStill burning (yeah)\\nStill yearning\\nStill turning (a new day dawning)\\nWe are jiving\\nStill driving\\nSky diving (early in the morning)\\n\\n[Chorus]\\nStill burning (yeah)\\nStill yearning (and the wheel's)\\nStill turning (better than every guy)\\nWe are jiving (and the beat's)\\nStill driving (and we are all)\\nSky diving (rock and roll never die)\\n\\n\"},\n", " {'_id': 308897,\n", " 'lyrics': \"sleeping very soundly on a saturday morning i was dreaming i was al capone there's a rumor going round got to clear out of town i'm smelling like a dry fish bone here come the law going to break down the door going to carry me away once more never never never get it any more got to get away from this stone cold floor crazy stone cold crazy you know rainy afternoon i got to blow a typhoon and i'm playing on my slide trombone anymore anymore cannot take it anymore got to get away from this stone cold floor crazy stone cold crazy you know walking down the street shooting people that i meet with my rubber tommy water gun here come the deputy he's going to come and get to me i got to get me get up and run they got the sirens loose i ran out of juice they're going to put me in a cell if i can't go to heaven will they let me go to hell crazy stone cold crazy you know\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nSleeping very soundly on a Saturday morning I was dreaming\\nI was Al Capone\\nThere's a rumor going round, got to clear out of town\\nI'm smelling like a dry fish bone\\nHere come the Law, going to break down the door, going to carry me\\nAway once more\\nNever, never, never get it any more\\n\\n[Chorus]\\nGot to get away from this stone cold floor\\nCrazy\\nStone cold crazy, you know\\n\\n[Verse 2]\\nRainy afternoon I got to blow a typhoon and I'm playing on\\nMy slide trombone\\nAnymore, anymore, cannot take it anymore\\n\\n[Chorus]\\nGot to get away from this stone cold floor\\nCrazy\\nStone cold crazy, you know\\n\\n[Verse 3]\\nWalking down the street, shooting people that I meet with\\nMy rubber tommy water gun\\nHere come the deputy, he's going to come and get to me\\nI got to get me get up and run\\nThey got the sirens loose\\nI ran out of juice\\nThey're going to put me in a cell, if I can't go to heaven\\nWill they let me go to hell\\nCrazy\\nStone cold crazy, you know\\n\\n\"},\n", " {'_id': 1554116,\n", " 'lyrics': \"words and music by freddie mercury stop all stop all (stop all) the fighting stop all stop all stop all the fighting stop it stop all the fighting we want to live in a better place (live in a better place) we want to make a better human race we want to live in a better place (stop all the fighting) we want to make a better human race stop all the fighting stop all the fighting don't do that don't get all excited you know that know that - not gonna like it stop all (stop all) stop all stop all the fighting we want to live in a better place (yeah yeah yeah yeah) we want to make a better human race we want to live in a better place (stop all the fighting) we want to make a better human race stop all the fighting stop all the fighting get all excited you don't have to do that youre not gonna like it that's a point of fact we want to live in a better place we want to make a better human race for you we want to live in a better place we want to make a better human race stop all the fighting stop all the fighting\",\n", " 'original_lyrics': \"\\n\\nWords and music by freddie mercury\\n\\nStop all stop all (stop all) the fighting\\nStop all stop all stop all the fighting\\nStop it stop all the fighting\\nWe want to live in a better place (live in a better place)\\nWe want to make a better human race\\nWe want to live in a better place (stop all the fighting)\\nWe want to make a better human race\\nStop all the fighting stop all the fighting\\nDon't do that don't get all excited\\nYou know that know that - not gonna like it\\nStop all (stop all) stop all stop all the fighting\\nWe want to live in a better place (yeah yeah yeah yeah)\\nWe want to make a better human race\\nWe want to live in a better place (stop all the fighting)\\nWe want to make a better human race\\nStop all the fighting stop all the fighting\\nGet all excited\\nYou don't have to do that\\nYoure not gonna like it\\nThat's a point of fact\\nWe want to live in a better place\\nWe want to make a better human race for you\\nWe want to live in a better place\\nWe want to make a better human race\\nStop all the fighting stop all the fighting\\n\\n\"},\n", " {'_id': 310129,\n", " 'lyrics': \"surf is up school is out i got a criminal urge to twist and shout i have been searching my whole life through for some perfect dream imagined in my youth follow that dream surf is up – school is out surf is up – school is out for a perfect life find a perfect girl you got to follow that dream to a perfect world i have been a searcher an adventurer too this ride still runs i want to ride with you this ride still runs want to ride with you follow that dream surf is up – school is out surf is up – school is out in the town and the country we all lay and dreamed our dreams then we found the world is tough and all is not quite what it seems got to take it by the horns got to seize your precious day got to follow your dream follow that dream follow that dream follow that dream surf is up – school is out follow that dream surf's up - school's out surf's up follow that dream surf's up - school's out surf up - school's out follow that dream follow that dream\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nSurf is up\\nSchool is out\\nI got a criminal urge to\\nTwist and shout\\n\\n[Verse 1]\\nI have been searching\\nMy whole life through\\nFor some perfect dream\\nImagined in my youth\\n\\n[Chorus]\\nFollow that dream\\nSurf is up – School is out\\nSurf is up – School is out\\n\\n[Verse 2]\\nFor a perfect life\\nFind a perfect girl\\nYou got to follow that dream\\nTo a perfect world\\nI have been a searcher\\nAn adventurer too\\nThis ride still runs\\nI want to ride with you\\nThis ride still runs\\nWant to ride with you\\n\\n[Chorus]\\nFollow that dream\\nSurf is up – School is out\\nSurf is up – School is out\\n\\n[Verse 3]\\nIn the town and the country\\nWe all lay and dreamed our dreams\\nThen we found the world is tough\\nAnd all is not quite what it seems\\nGot to take it by the horns\\nGot to seize your precious day\\nGot to follow your dream\\n\\n[Outro]\\nFollow that dream\\nFollow that dream\\nFollow that dream\\nSurf is up – School is out\\nFollow that dream\\nSurf's up - School's out\\nSurf's up\\nFollow that dream\\nSurf's up - School's out\\nSurf up - School's out\\nFollow that dream\\nFollow that dream\\n\\n\"},\n", " {'_id': 1992933,\n", " 'lyrics': \"are you ready well are you ready we gonna tear it up - yeah yeah yeah yeah yeah turn me loose it yeah yeah yeah yeah wooh hoo hey give me your mind baby give me your body yeah give me some time baby let's have a party it ain't no time for sleepin' baby soon it's round your street i'm creeping you better be ready we gonna tear it up stir it up break it up - baby you gotta tear it up shake it up make it up - as you go along tear it up - yeah square it up - yeah wake it up - baby tear it up stir it up stake it out - and you can't go wrong hey listen i love 'cos you're sweet and i love you 'cos you're naughty yeah i love you for your mind baby give me your body mmm i wanna be a toy at your birthday party wind me up - wind me up - wind me up - let me go yeah tear it up stir it up break it up - let me go tear it up shake it up make it up - as you go along tear it up - ha ha turn it up burn it up hey hey are you ready (oh yeah) yeah baby baby baby are you ready for me (oh yeah) i love you baby baby baby are you ready for love (oh yeah) are you ready - are you ready - are you ready for me hey (oh yeah) hey i love you so near i love you so far i gotta tell you baby you're driving me ga ga tear 'em up - tear it off yeah let's go wooh what are you doin' to me ha yeah yeah oh baby baby baby baby let's tear it up wooh hoo\",\n", " 'original_lyrics': \"\\n\\nAre you ready?\\nWell are you ready?\\nWe gonna tear it up - yeah yeah yeah yeah yeah\\nTurn me loose it\\nYeah yeah yeah yeah\\nWooh hoo\\n\\nHey, give me your mind baby give me your body\\nYeah, give me some time baby let's have a party\\nIt ain't no time for sleepin' baby\\nSoon it's round your street I'm creeping\\nYou better be ready\\n\\nWe gonna tear it up\\nStir it up\\nBreak it up - baby\\n\\nYou gotta tear it up\\nShake it up\\nMake it up - as you go along\\n\\nTear it up - yeah\\nSquare it up - yeah\\nWake it up - baby\\n\\nTear it up\\nStir it up\\nStake it out - and you can't go wrong\\n\\nHey, listen\\nI love 'cos you're sweet and I love you 'cos you're naughty\\nYeah, I love you for your mind baby give me your body\\nMmm, I wanna be a toy at your birthday party\\nWind me up - wind me up - wind me up - let me go, yeah\\n\\nTear it up\\nStir it up\\nBreak it up - let me go\\n\\nTear it up\\nShake it up\\nMake it up - as you go along\\n\\nTear it up - ha ha\\nTurn it up\\nBurn it up\\n\\nHey hey\\nAre you ready (oh yeah)\\nYeah, baby baby baby are you ready for me? (oh yeah)\\nI love you baby baby baby are you ready for love? (oh yeah)\\nAre you ready - are you ready - are you ready for me? hey (oh yeah)\\nHey I love you so near, I love you so far\\nI gotta tell you baby you're driving me ga ga\\n\\nTear 'em up - tear it off\\nYeah let's go\\nWooh, what are you doin' to me?\\nHa\\nYeah yeah\\nOh baby baby baby baby let's tear it up\\nWooh hoo\\n\\n\"},\n", " {'_id': 1273735,\n", " 'lyrics': \"queen live at wembley tear it up (may) we gonna tear it up break it up shake it up - baby - tear it up stir it up break it up - as you go along tear it up square it up shake it up - baby tear it up stir it up make it up - and you can't go wrong give me your mind baby give me your body give me sometime lets have a party ain't no time for sleeping soon it's round your street i'm dreaming you better be ready tear it up shake it up shake it up - baby tear it up stir it up make it up - as you go along tear it up shake it up shake it up - baby tear it up stir it up make it up oh yeah baby baby baby are you ready for love (oh yeah) baby baby baby are you ready for me (oh yeah) i love you so near i love you so far i gotta tell you baby you're driving me ga ga\",\n", " 'original_lyrics': \"\\n\\nQueen\\nLive At Wembley\\nTear It Up (May)\\nWe gonna Tear it up\\nBreak it up\\nShake it up - Baby -\\nTear it up\\nStir it up\\nBreak it up - as you go along\\nTear it up\\nSquare it up\\nShake it up - Baby\\nTear it up\\nStir it up\\nMake it up - and you can't go wrong\\nGive me your mind baby give me your body\\nGive me sometime lets have a party\\nAin't no time for sleeping\\nSoon it's round your street I'm dreaming\\nYou better be ready\\nTear it up\\nShake it up\\nShake it up - baby\\nTear it up\\nStir it up\\nMake it up - as you go along\\nTear it up\\nShake it up\\nShake it up - baby\\nTear it up\\nStir it up\\nMake it up\\nOh yeah\\nBaby baby baby are you ready for love? (Oh yeah)\\nBaby baby baby are you ready for me? (Oh yeah)\\nI love you so near, I love you so far\\nI gotta tell you baby you're driving me Ga Ga\\n\\n\"},\n", " {'_id': 308877,\n", " 'lyrics': \"my new purple shoes have been amazing the people next door and my rock 'n roll 45's have been enraging the folks on the lower floor i got a way with the girls on my block try my best be a real individual and when we go down to smokies and rock they line up like it's some kind of ritual oh give me a good guitar and you can say that my hair's a disgrace or just give me an open car i'll make the speed of light out to this place i like the good things in life but most of the best things isn’t free and this same situation just cuts like a knife when you're young and you're poor and you're crazy\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nMy new purple shoes, have been amazing the people next door\\nAnd my rock 'n roll 45's, have been enraging the folks on the lower floor\\nI got a way with the girls on my block\\nTry my best be a real individual\\nAnd when we go down to Smokies and rock\\nThey line up like it's some kind of ritual\\n\\n[Chorus]\\nOh give me a good guitar, and you can say that my hair's a disgrace\\nOr, just give me an open car, I'll make the speed of light out to this place\\n\\n[Verse 2]\\nI like the good things in life\\nBut most of the best things isn’t free\\nAnd this same situation, just cuts like a knife\\nWhen you're young, and you're poor, and you're crazy\\n\\n[Chorus]\\n\\n\"},\n", " {'_id': 1398596,\n", " 'lyrics': \"queen sheer heart attack tenement funster (taylor) my new purple shoes bin' amazin' the people next door and my rock 'n roll 45's bin' enragin' the folks on the lower floor i got a way with girls on my block try my best be a real individual and when we go down to smokies and rock they line up like it's some kinda ritual oh give me a good guitar and you can say that my hair's a disgrace or just give me an open car i'll make the speed of light outta this place i like the good things in life but most of the best things ain't free and this same situation just cuts like a knife when you're young and you're poor and you're crazy but oh give me a good guitar and you can say that my hair's a disgrace or just give me an open car i'll make the speed of light outta this place\",\n", " 'original_lyrics': \"\\n\\nQueen\\nSheer Heart Attack\\nTenement Funster (Taylor)\\nMy new purple shoes, bin' amazin' the people next door\\nAnd my rock 'n roll 45's, bin' enragin' the folks on the lower floor\\nI got a way with girls on my block\\nTry my best be a real individual\\nAnd when we go down to Smokies and rock\\nThey line up like it's some kinda ritual\\nOh give me a good guitar, and you can say that my hair's a disgrace\\nOr, just give me an open car, I'll make the speed of light outta this place\\nI like the good things in life\\nBut most of the best things ain't free\\nAnd this same situation, just cuts like a knife\\nWhen you're young, and you're poor, and you're crazy\\nBut oh, give me a good guitar, and you can say that my hair's a disgrace\\nOr, just give me an open car, I'll make the speed of light outta this place\\n\\n\"},\n", " {'_id': 1672010,\n", " 'lyrics': \"words and music by brian may when i'm gone no need to wonder if i ever think of you the same moon shines the same wind blows for both of us and time is but a paper moon be not gone though i'm gone it's as though i hold the flower that touches you a new life grows the blossom knows there's no one else could warm my heart as much as you be not gone let us cling together as the years go by oh my love my love in the quiet of the night let our candle always burn let us never lose the lessons we have learned teo torriatte konomama iko aisuruhito yo shizukana yoi ni hikario tomoshi itoshiki oshieo idaki hear my song still think of me the way you've come to think of me the nights grow long but dreams live on just close your pretty eyes and you can be with me dream on teo torriatte konomama iko aisuruhito yo shizukana yoi ni hikario tomoshi itoshiki oshieo idaki when i'm gone they'll say we were all fools and we don't understand oh be strong don't turn your heart we're all you're all we're all for all for always let us cling together as the years go by oh my love my love in the quiet of the night let our candle always burn let us never lose the lessons we have learned\",\n", " 'original_lyrics': \"\\n\\nWords and music by brian may\\n\\nWhen I'm gone no need to wonder\\nIf I ever think of you\\nThe same moon shines\\nThe same wind blows for both of us\\nAnd time is but a paper moon\\nBe not gone\\n\\nThough I'm gone it's as though\\nI hold the flower that touches you\\nA new life grows\\nThe blossom knows there's no one else\\nCould warm my heart as much as you\\nBe not gone\\n\\nLet us cling together as the years go by\\nOh my love my love\\nIn the quiet of the night\\nLet our candle always burn\\nLet us never lose the lessons we have learned\\n\\nTeo torriatte konomama iko\\nAisuruhito yo\\nShizukana yoi ni\\nHikario tomoshi\\nItoshiki oshieo idaki\\n\\nHear my song still think of me\\nThe way you've come to think of me\\nThe nights grow long\\nBut dreams live on\\nJust close your pretty eyes\\nAnd you can be with me\\nDream on\\n\\nTeo torriatte konomama iko\\nAisuruhito yo\\nShizukana yoi ni\\nHikario tomoshi\\nItoshiki oshieo idaki\\n\\nWhen I'm gone they'll say we were all fools\\nAnd we don't understand\\nOh be strong don't turn your heart\\nWe're all you're all we're all for all for always\\n\\nLet us cling together as the years go by\\nOh my love my love\\nIn the quiet of the night\\nLet our candle always burn\\nLet us never lose the lessons we have learned\\n\\n\"},\n", " {'_id': 1613174,\n", " 'lyrics': \"queen miscellaneous teo torriatte =============================================== queen - teo torriate (let us cling together) =============================================== words and music by brian may when i'm gone no need to wonder if i ever think of you the same moon shines the same wind blows for both of us and time is but a paper moon be not gone though i'm gone it's as though i hold the flower that touches you a new life grows the blossom knows there's no one else could warm my heart as much as you be not gone let us cling together as the years go by oh my love my love in the quiet of the night let our candle always burn let us never lose the lessons we have learned teo torriatte konomama iko aisuruhito yo shizukana yoi ni hikario tomoshi itoshiki oshieo idaki hear my song still think of me the way you've come to think of me the nights grow long but dreams live on just close your pretty eyes and you can be with me dream on teo torriatte konomama iko aisuruhito yo shizukana yoi ni hikario tomoshi itoshiki oshieo idaki when i'm gone they'll say we were all fools and we don't understand oh be strong don't turn your heart we're all you're all we're all for all for always let us cling together as the years go by oh my love my love in the quiet of the night let our candle always burn let us never lose the lessons we have learned\",\n", " 'original_lyrics': \"\\n\\nQueen\\nMiscellaneous\\nTeo Torriatte\\n===============================================\\nQueen - Teo Torriate (Let Us Cling Together)\\n===============================================\\nWords and music by Brian May\\nWhen I'm gone no need to wonder\\nIf I ever think of you\\nThe same moon shines\\nThe same wind blows for both of us\\nAnd time is but a paper moon\\nBe not gone\\nThough I'm gone it's as though\\nI hold the flower that touches you\\nA new life grows\\nThe blossom knows there's no one else\\nCould warm my heart as much as you\\nBe not gone\\nLet us cling together as the years go by\\nOh my love my love\\nIn the quiet of the night\\nLet our candle always burn\\nLet us never lose the lessons we have learned\\nTeo torriatte konomama iko\\nAisuruhito yo\\nShizukana yoi ni\\nHikario tomoshi\\nItoshiki oshieo idaki\\nHear my song still think of me\\nThe way you've come to think of me\\nThe nights grow long\\nBut dreams live on\\nJust close your pretty eyes\\nAnd you can be with me\\nDream on\\nTeo torriatte konomama iko\\nAisuruhito yo\\nShizukana yoi ni\\nHikario tomoshi\\nItoshiki oshieo idaki\\nWhen I'm gone they'll say we were all fools\\nAnd we don't understand\\nOh be strong don't turn your heart\\nWe're all you're all we're all for all for always\\nLet us cling together as the years go by\\nOh my love my love\\nIn the quiet of the night\\nLet our candle always burn\\nLet us never lose the lessons we have learned\\n\\n\"},\n", " {'_id': 308997,\n", " 'lyrics': \"when i'm gone don't stop to wonder if i ever think of you the same moon shines the same wind blows for both of us and time is but a paper moon be not gone though i'm gone it's just as though i hold the flower that touches you a new life grows the blossom knows there's no one else could warm my heart as much as you be not gone let us cling together as the years go by oh my love my love in the quiet of the night let our candle always burn let us never lose the lessons we have learned teo torriate konomama iko aisuruhito yo shizukana yoi ni hikario tomoshi itoshiki oshieo idaki hear my song still think of me the way you've come to think of me the nights grow long but dreams live on just close your pretty eyes and you can be with me dream on when i'm gone they'd say we're all fools and we don't understand oh be strong don't turn your heart you're all we're all for all for always\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nWhen I'm gone\\nDon't stop to wonder if I ever think of you\\nThe same moon shines\\nThe same wind blows\\nFor both of us, and time is but a paper moon. . . be not gone\\n\\nThough I'm gone\\nIt's just as though I hold the flower that touches you\\nA new life grows\\nThe blossom knows\\nThere's no one else could warm my heart as much as you. . . be not gone\\n\\nLet us cling together as the years go by\\nOh my love, my love\\nIn the quiet of the night\\nLet our candle always burn\\nLet us never lose the lessons we have learned\\n\\nTeo Torriate konomama iko\\nAisuruhito yo\\nShizukana yoi ni\\nHikario tomoshi\\nItoshiki oshieo idaki\\n\\nHear my song\\nStill think of me the way you've come to think of me\\nThe nights grow long\\nBut dreams live on\\nJust close your pretty eyes and you can be with me. . . dream on\\n\\nWhen I'm gone\\nThey'd say we're all fools and we don't understand\\nOh be strong\\nDon't turn your heart\\nYou're all\\nWe're all\\nFor all\\nFor always\\n\\n\"},\n", " {'_id': 1380692,\n", " 'lyrics': \"when i'm gone no need to wonder if i ever think of you the same moon shines the same wind blows for both of us and time is but a paper moon be not gone though i'm gone it's as though i hold the flower that touches you a new life grows the blossom knows there's no one else could warm my heart as much as you be not gone let us cling together as the years go by oh my love my love in the quiet of the night let our candle always burn let us never lose the lessons we have learned teo torriatte konomama iko aisuruhito yo shizukana yoi ni hikario tomoshi itoshiki oshieo idaki hear my song still think of me the way you've come to think of me the nights grow long but dreams live on just close your pretty eyes and you can be with me dream on teo torriatte konomama iko aisuruhito yo shizukana yoi ni hikario tomoshi itoshiki oshieo idaki when i'm gone they'll say we were all fools and we don't understand oh be strong don't turn your heart we're all you're all we're all for all for always let us cling together as the years go by oh my love my love in the quiet of the night let our candle always burn let us never lose the lessons we have learned\",\n", " 'original_lyrics': \"\\n\\nWhen I'm gone no need to wonder\\nIf I ever think of you\\nThe same moon shines\\nThe same wind blows for both of us\\nAnd time is but a paper moon\\nBe not gone\\nThough I'm gone it's as though\\nI hold the flower that touches you\\nA new life grows\\nThe blossom knows there's no one else\\nCould warm my heart as much as you\\nBe not gone\\nLet us cling together as the years go by\\nOh my love my love\\nIn the quiet of the night\\nLet our candle always burn\\nLet us never lose the lessons we have learned\\nTeo torriatte konomama iko\\nAisuruhito yo\\nShizukana yoi ni\\nHikario tomoshi\\nItoshiki oshieo idaki\\nHear my song still think of me\\nThe way you've come to think of me\\nThe nights grow long\\nBut dreams live on\\nJust close your pretty eyes\\nAnd you can be with me\\nDream on\\nTeo torriatte konomama iko\\nAisuruhito yo\\nShizukana yoi ni\\nHikario tomoshi\\nItoshiki oshieo idaki\\nWhen I'm gone they'll say we were all fools\\nAnd we don't understand\\nOh be strong don't turn your heart\\nWe're all you're all we're all for all for always\\nLet us cling together as the years go by\\nOh my love my love\\nIn the quiet of the night\\nLet our candle always burn\\nLet us never lose the lessons we have learned\\n\\n\"},\n", " {'_id': 311682,\n", " 'lyrics': \"oh my love we've had our share of tears oh my friend we've had our hopes and fears oh my friends it's been a long hard year but now it's christmas yes it's christmas thank god it's christmas the moon and stars seem awful cold and bright let's hope the snow will make this christmas right my friend the world will share this special night because it's christmas yes it's christmas thank god it's christmas for one night thank god it's christmas yeah thank god it's christmas thank god it's christmas can it be christmas let it be christmas ev'ry day oh my love we've lived in troubled days oh my friend we have the strangest ways all my friends on this one day of days thank god it's christmas yes it's christmas thank god it's christmas for one day thank god it's christmas yes it's christmas thank god it's christmas oooh yeah thank god it's christmas yes yes yes yes it's christmas thank god it's christmas for one day a very merry christmas to you all\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nOh my love we've had our share of tears\\nOh my friend we've had our hopes and fears\\nOh my friends it's been a long hard year\\nBut now it's Christmas\\nYes it's Christmas\\nThank God it's Christmas\\n\\n[Verse 1]\\nThe moon and stars seem awful cold and bright\\nLet's hope the snow will make this Christmas right\\nMy friend the world will share this special night\\nBecause it's Christmas\\nYes it's Christmas\\nThank God it's Christmas\\nFor one night\\n\\n[Chorus]\\nThank God it's Christmas yeah\\nThank God it's Christmas\\nThank God it's Christmas\\nCan it be Christmas?\\nLet it be Christmas\\nEv'ry day\\n\\n[Verse 2]\\nOh my love we've lived in troubled days\\nOh my friend we have the strangest ways\\nAll my friends on this one day of days\\nThank God it's Christmas\\nYes it's Christmas\\nThank God it's Christmas\\nFor one day\\n\\n[Outro]\\nThank God it's Christmas\\nYes it's Christmas\\nThank God it's Christmas\\nOooh yeah\\nThank God it's Christmas\\nYes yes yes yes it's Christmas\\nThank God it's Christmas\\nFor one day\\n\\nA very merry Christmas to you all\\n\\n\"},\n", " {'_id': 236587,\n", " 'lyrics': \"he's a fairy feller ah ah the fairy folk have gathered round the new moon's shine to see the feller crack a nut at night's noon time to swing his axe he swears as he climbs he dares to deliver the master stroke ploughman wagoner will' and types politician with senatorial pipe he's a dilly dally oh pedagogue squinting wears a frown and a satyr peers under lady's gown he's a dirty fellow what a dirty laddie-oh tatterdemalion and the junketer there's a thief and a dragonfly trumpeter he's my hero fairy dandy tickling the fancy of his lady friend the nymph in yellow (can we see the master stroke) what a quaere fellow ah ah ah ah ah ah ah ah ah ah ah ah soldier sailor tinker tailor ploughboy waiting to hear the sound and the archmagician presides he is the leader oberon and titania watched by a harridan mab is the queen and there's a good apothecary man come to say hello fairy dandy tickling the fancy of his lady friend the nymph in yellow what a quaere fellow the ostler stares with hands on his knees come on mister feller crack it open if you please\",\n", " 'original_lyrics': \"\\n\\n[Intro]\\nHe's a fairy feller\\n\\n[Verse 1]\\nAh ah the fairy folk have gathered\\nRound the new moon's shine\\nTo see the feller crack a nut\\nAt night's noon time\\nTo swing his axe he swears\\nAs he climbs he dares\\nTo deliver the master stroke\\nPloughman wagoner will' and types\\nPolitician with senatorial pipe\\nHe's a dilly dally oh\\nPedagogue squinting wears a frown\\nAnd a satyr peers under lady's gown\\nHe's a dirty fellow\\nWhat a dirty laddie-oh\\nTatterdemalion and the junketer\\nThere's a thief and a dragonfly trumpeter\\nHe's my hero\\nFairy dandy tickling the fancy\\nOf his lady friend\\nThe nymph in yellow (Can we see the master stroke)\\nWhat a quaere fellow\\nAh ah ah ah ah ah\\nAh ah ah ah ah ah\\nSoldier, sailor, tinker, tailor, ploughboy\\nWaiting to hear the sound\\nAnd the archmagician presides\\nHe is the leader\\nOberon and Titania watched by a harridan\\nMab is the queen and there's a good apothecary man\\nCome to say hello\\nFairy dandy tickling the fancy\\nOf his lady friend\\nThe nymph in yellow\\nWhat a quaere fellow\\nThe ostler stares with hands on his knees\\nCome on mister feller\\nCrack it open if you please\\n\\n\"},\n", " {'_id': 1946781,\n", " 'lyrics': 'ahahah aha the fairy folk have gathered round the new moon shine to see the feller crack a nut at nights noon time axe he swears as it climbs he dares to deliver ploughman \"waggoner will\" and types politician with senatorial pipe dally-o pedagogue squinting wears a frown and a satyr peers under lady\\'s gown what a dirty laddio tatterdemalion and a junketer there\\'s a thief and a dragonfly trumpeter hero fairy dandy tickling the fancy of his lady (friend) in yellow what a quaere fellow soldier sailor tinker tailor ploughboy waiting to hear the sound and the arch-magician presides he is the leader oberon and titania watched by a harridan mab is the queen and there\\'s a good apothecary-man come to say hello fairy dandy tickling the fancy of his lady (friend) in yellow what a quaere fellow the ostler stares with hands on his knees come on mr feller crack it open if you please ahaa',\n", " 'original_lyrics': '\\n\\n[Intro]\\nAhahah aha\\n\\n[Verse 1]\\nThe fairy folk have gathered round the new moon shine\\nTo see the feller crack a nut at nights noon time\\nAxe he swears, as it climbs he dares\\nTo deliver...\\n\\n[Chorus (only sung by background)]\\nPloughman, \"waggoner will\", and types\\nPolitician with senatorial pipe... dally-o\\nPedagogue squinting, wears a frown\\nAnd a satyr peers under lady\\'s gown\\nWhat a dirty laddio\\nTatterdemalion and a junketer\\nThere\\'s a thief and a dragonfly trumpeter... hero\\nFairy dandy tickling the fancy of his lady (friend)\\nIn yellow\\nWhat a quaere fellow\\n\\n[Guitar Solo]\\n\\n[Verse 2]\\nSoldier, sailor, tinker, tailor, ploughboy\\nWaiting to hear the sound\\nAnd the arch-magician presides\\nHe is the leader\\n\\n[Chorus (only sung by background)]\\nOberon and Titania watched by a harridan\\nMab is the Queen and there\\'s a good apothecary-man\\nCome to say hello\\nFairy dandy tickling the fancy of his lady (friend)\\nIn yellow\\nWhat a quaere fellow\\nThe ostler stares with hands on his knees\\nCome on mr. feller, crack it open if you please\\n\\n[Outro]\\nAhaa\\n\\n'},\n", " {'_id': 1753443,\n", " 'lyrics': \"oh yes i'm the great pretender pretending i'm doing well my need is such i pretend too much i'm lonely but no one can tell oh yes i'm the great pretender adrift in a world of my own i play the game but to my real shame you've left me to dream all alone too real is this feeling of make believe too real when i feel what my heart can't conceal oh yes i'm the great pretender just laughing and gay like a clown i seem to be what i'm not you see i'm wearing my heart like a crown pretending that you're still around yeah oh too real when i feel what my heart can't conceal oh yes i'm the great pretender just laughing and gay like a clown i seem to be what i'm not you see i'm wearing my heart like a crown pretending that you're still around\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nOh yes I'm the great pretender\\nPretending I'm doing well\\nMy need is such I pretend too much\\nI'm lonely but no one can tell\\n\\n[Verse 2]\\nOh yes I'm the great pretender\\nAdrift in a world of my own\\nI play the game but to my real shame\\nYou've left me to dream all alone\\n\\n[Bridge]\\nToo real is this feeling of make believe\\nToo real when I feel what my heart can't conceal\\n\\n[Verse 3]\\nOh yes I'm the great pretender\\nJust laughing and gay like a clown\\nI seem to be what I'm not you see\\nI'm wearing my heart like a crown\\nPretending that you're still around\\n\\n[Bridge]\\nYeah oh too real when I feel\\nWhat my heart can't conceal\\n\\n[Verse 4]\\nOh yes, I'm the great pretender\\nJust laughing and gay like a clown\\nI seem to be what I'm not you see\\nI'm wearing my heart like a crown\\nPretending that you're still around\\n\\n\"},\n", " {'_id': 309738,\n", " 'lyrics': \"i'm the invisible man i'm the invisible man incredible how you can see right through me freddie mercury when you hear a sound that you just can't place feel something move that you just can't trace when something sits on the end of your bed don't turn around when you hear me tread i'm the invisible man i'm the invisible man incredible how you can see right through me i'm the invisible man i'm the invisible man it's criminal how i can see right through you john deacon now i'm in your room and i'm in your bed and i'm in your life and i'm in your head like the cia or the fbi you'll never get close never take me alive i'm the invisible man i'm the invisible man incredible how you can see right through me i'm the invisible man i'm the invisible man it's criminal how i can see right through you hah hah hah hello hah hah hah okay hah hah hah hello-hello-hello-hello never had a real good friend - not a boy or a girl no-one knows what i've been through - let my flag unfurl so i make my mark from the edge of the world from the edge of the world from the edge of the world now i'm on your track and i'm in your mind and i'm on your back but don't look behind i'm your meanest thought i'm your darkest fear put i'll never get caught you can't shake me shake me dear i'm the invisible man i'm the invisible man incredible how you can see right through me i'm the invisible man i'm the invisible man it's criminal how i can see right through you look at me look at me roger taylor shake you shake you dear\",\n", " 'original_lyrics': \"\\n\\n[Chorus]\\nI'm the invisible man\\nI'm the invisible man\\nIncredible how you can\\nSee right through me\\n\\nFreddie Mercury\\n\\n\\n\\n[Verse 1]\\nWhen you hear a sound\\nThat you just can't place\\nFeel something move\\nThat you just can't trace\\nWhen something sits\\nOn the end of your bed\\nDon't turn around\\nWhen you hear me tread\\n\\n[Chorus]\\nI'm the invisible man\\nI'm the invisible man\\nIncredible how you can\\nSee right through me\\nI'm the invisible man\\nI'm the invisible man\\nIt's criminal how I can\\nSee right through you\\nJohn Deacon!\\n\\n[Verse 2]\\nNow I'm in your room\\nAnd I'm in your bed\\nAnd I'm in your life\\nAnd I'm in your head\\nLike the CIA\\nOr the FBI\\nYou'll never get close\\nNever take me alive\\n\\n[Chorus]\\nI'm the invisible man\\nI'm the invisible man\\nIncredible how you can\\nSee right through me\\nI'm the invisible man\\nI'm the invisible man\\nIt's criminal how I can\\nSee right through you\\n\\n[Verse 3]\\nHah, hah, hah, hello\\nHah, hah, hah, okay\\nHah, hah, hah, hello-hello-hello-hello\\nNever had a real good friend - not a boy or a girl\\nNo-one knows what I've been through - let my flag unfurl\\nSo I make my mark from the edge of the world\\nFrom the edge of the world\\nFrom the edge of the world\\n\\n[Guitar Solo]\\n\\n[Verse 4]\\nNow I'm on your track\\nAnd I'm in your mind\\nAnd I'm on your back\\nBut don't look behind\\nI'm your meanest thought\\nI'm your darkest fear\\nPut I'll never get caught\\nYou can't shake me, shake me dear\\n\\n[Chorus]\\nI'm the invisible man\\nI'm the invisible man\\nIncredible how you can\\nSee right through me\\nI'm the invisible man\\nI'm the invisible man\\nIt's criminal how I can\\nSee right through you\\n\\nLook at me look at me\\nRoger Taylor!\\n\\nShake you shake you dear\\n\\n\"},\n", " {'_id': 1292565,\n", " 'lyrics': \"i'm the invisible man i'm the invisible man incredible how you can see right through me freddie mercury when you hear a sound that you just can't place feel somethin' move that you just can't trace when something sits on the end of your bed don't turn around when you hear me tread i'm the invisible man i'm the invisible man incredible how you can see right through me i'm the invisible man i'm the invisible man it's criminal how i can see right through you john deacon and i'm in your room and i'm in your bed and i'm in your life and i'm in your head like cia or the fbi you'll never get close never take me alive i'm the invisible man i'm the invisible man incredible how you can see right through me i'm the invisible man i'm the invisible man it's criminal how i can see right through you hah hah hah hello hah hah hah ok hah hah hah hello-hello-hello-hello never had a real good friend - not a boy or girl no-one knows what i've been through - let my flag unfurl so i make my mark from the edge of the world from the edge of the world from the edge of the world brian may - brian may now i'm on your track and i'm in your mind and i'm on your back but don't look behind i'm your meanest thought i'm your darkest fear but i'll never get caught you can't shake me shake me dear i'm the invisible man i'm the invisible man incredible how you can see right through me watch me now i'm the invisible man i'm the invisible man it's criminal how i can see right through you look at me look at me r-r-r-r-roger taylor shake me shake me shake me dear sh-shake shake fun\",\n", " 'original_lyrics': \"\\n\\nI'm the invisible man\\nI'm the invisible man\\nIncredible how you can\\nSee right through me\\nFreddie Mercury\\nWhen you hear a sound\\nThat you just can't place\\nFeel somethin' move\\nThat you just can't trace\\nWhen something sits\\nOn the end of your bed\\nDon't turn around\\nWhen you hear me tread\\nI'm the invisible man\\nI'm the invisible man\\nIncredible how you can\\nSee right through me\\nI'm the invisible man\\nI'm the invisible man\\nIt's criminal how I can\\nSee right through you\\nJohn Deacon\\nAnd I'm in your room\\nAnd I'm in your bed\\nAnd I'm in your life\\nAnd I'm in your head\\nLike C.I.A\\nOr the F.B.I\\nYou'll never get close\\nNever take me alive\\nI'm the invisible man\\nI'm the invisible man\\nIncredible how you can\\nSee right through me\\nI'm the invisible man\\nI'm the invisible man\\nIt's criminal how I can\\nSee right through you\\nHah, hah, hah, hello\\nHah, hah, hah, o.k\\nHah, hah, hah, hello-hello-hello-hello\\nNever had a real good friend - not a boy or girl\\nNo-one knows what I've been through - let my flag unfurl\\nSo I make my mark from the edge of the world\\nFrom the edge of the world\\nFrom the edge of the world\\nBrian May - Brian May\\nNow I'm on your track\\nAnd I'm in your mind\\nAnd I'm on your back\\nBut don't look behind\\nI'm your meanest thought\\nI'm your darkest fear\\nBut I'll never get caught\\nYou can't shake me, shake me dear\\nI'm the invisible man\\nI'm the invisible man\\nIncredible how you can\\nSee right through me\\nWatch me now\\nI'm the invisible man\\nI'm the invisible man\\nIt's criminal how I can\\nSee right through you\\nLook at me, look at me\\nR-R-R-R-Roger Taylor\\nShake me, shake me, shake me dear\\nSh-shake\\nShake\\nFun\\n\\n\"},\n", " {'_id': 308854,\n", " 'lyrics': 'mama\\'s got a problem she don\\'t know what to say her little baby boy just left home today she\\'s got to be the loser in the end she\\'s got to be the loser in the end misuse her and you\\'ll lose her as a friend she\\'s ma on whom you can always depend she washed and fed and clothed and cared for nearly twenty years and all she gets is \"goodbye ma\" and the nighttimes for her tears she\\'s got to be the loser in the end she\\'s got to be the loser in the end misuse her and you\\'ll lose her as a friend she\\'s ma on whom you can always depend so listen mothers everywhere to just one mother\\'s son you\\'ll get forgotten on the way if you don\\'t let them have their fun forget regrets and just remember it\\'s so long since you were young you\\'re bound to be the loser in the end you\\'re bound to be the loser in the end they\\'ll choose their new shoes that\\'s not far to bend you\\'re ma on whom they can always depend',\n", " 'original_lyrics': '\\n\\nMama\\'s got a problem\\nShe don\\'t know what to say\\nHer little baby boy just left home today\\n\\nShe\\'s got to be the loser in the end\\nShe\\'s got to be the loser in the end\\nMisuse her and you\\'ll lose her as a friend\\nShe\\'s ma on whom you can always depend\\n\\nShe washed and fed, and clothed and cared\\nFor nearly twenty years\\nAnd all she gets is \"goodbye ma\"\\nAnd the nighttimes for her tears\\n\\nShe\\'s got to be the loser in the end\\nShe\\'s got to be the loser in the end\\nMisuse her and you\\'ll lose her as a friend\\nShe\\'s ma on whom you can always depend\\n\\nSo listen mothers everywhere\\nTo just one mother\\'s son\\nYou\\'ll get forgotten on the way\\nIf you don\\'t let them have their fun\\nForget regrets, and just remember\\nIt\\'s so long since you were young\\n\\nYou\\'re bound to be the loser in the end\\nYou\\'re bound to be the loser in the end\\nThey\\'ll choose their new shoes that\\'s not far to bend\\nYou\\'re ma on whom they can always depend\\n\\n'},\n", " {'_id': 308861,\n", " 'lyrics': 'do you mean it do you mean it do you mean it why don\\'t you mean it why do i follow you and where do you go ah ah ah ah ah ah ah ah ah ah ah ah you\\'ve never seen nothing like it no never in your life like going up to heaven and then coming back alive let me tell you all about it (and the world will so allow it) oooh give me a little time to choose water babies singing in a lily-pool delight blue powder monkeys praying in the dead of night here comes the black queen poking in the pile fie-fo the black queen marching single file take this take that bring them down to size (march to the black queen) put them in the cellar with the naughty boys a little bit sugar then a rub-a dub-a baby oil black on black on every finger nail and toe we\\'ve only begun - begun make this make that keep making all that noise oooh march to the black queen now i\\'ve got a belly-full you can be my sugar-baby you can be my honey-chile yes a voice from behind me reminds me spread out your wings you are an angel remember to deliver with the speed of light a little bit of love and joy everything you do bears a will and a why and a wherefore a little bit of love and joy in each and every soul lies a man and very soon he\\'ll deceive and discover but even to the end of his life he\\'ll bring a little love i reign with my left hand i rule with my right i\\'m lord of all darkness i\\'m queen of the night i\\'ve got the power - now do the march of the black queen my life is in your hands i\\'ll fo and i\\'ll fie i\\'ll be what you make me i\\'ll do what you like i\\'ll be a bad boy - i\\'ll be your bad boy i\\'ll do the march of the black queen ah ah ah ah ah i\\'ll do the march of the black queen walking true to style she\\'s vulgar abuse and vile fie-fo the black queen tattoos all her pies she boils and she bakes and she never dots her \"i\\'s\" forget your singalongs and your lullabies surrender to the city of the fireflies dance with the devil beat with the band to hell with all of you hand-in-hand but now it\\'s time to be gone la la la la forever forever ah ah ah ah ah',\n", " 'original_lyrics': '\\n\\n[Intro]\\nDo you mean it\\nDo you mean it\\nDo you mean it\\nWhy don\\'t you mean it\\nWhy do I follow you and where do you go\\n\\n[Guitar solo]\\n\\n[Verse 1]\\nAh ah ah ah ah ah ah ah ah ah ah ah\\nYou\\'ve never seen nothing like it\\nNo never in your life\\nLike going up to heaven\\nAnd then coming back alive\\nLet me tell you all about it\\n(And the world will so allow it)\\nOooh give me a little time to choose\\nWater babies singing in a lily-pool delight\\nBlue powder monkeys praying in the dead of night\\n\\nHere comes the Black Queen, poking in the pile\\nFie-fo the black queen, marching single file\\nTake this, take that, bring them down to size\\n(March to the Black Queen)\\n\\n[Guitar solo]\\n\\n[Verse 2]\\nPut them in the cellar with the naughty boys\\nA little bit sugar then a rub-a dub-a baby oil\\nBlack on, black on, every finger nail and toe\\nWe\\'ve only begun - begun\\nMake this make that, keep making all that noise\\nOooh march to the Black Queen\\nNow I\\'ve got a belly-full\\nYou can be my sugar-baby\\nYou can be my honey-chile, yes\\n\\n[Guitar solo]\\n\\n[Verse 3]\\nA voice from behind me reminds me\\nSpread out your wings you are an angel\\nRemember to deliver with the speed of light\\nA little bit of love and joy\\nEverything you do bears a will and a why and a wherefore\\nA little bit of love and joy\\nIn each and every soul lies a man\\nAnd very soon he\\'ll deceive and discover\\nBut even to the end of his life, he\\'ll bring a little love\\n\\n[Verse 4]\\nI reign with my left hand, I rule with my right\\nI\\'m lord of all darkness, I\\'m queen of the night\\nI\\'ve got the power - now do the march of the Black Queen\\nMy life is in your hands, I\\'ll fo and I\\'ll fie\\nI\\'ll be what you make me I\\'ll do what you like\\nI\\'ll be a bad boy - I\\'ll be your bad boy\\nI\\'ll do the march of the Black Queen\\nAh ah ah ah ah\\nI\\'ll do the march of the Black Queen\\n\\n[Guitar solo]\\n\\nWalking true to style\\nShe\\'s vulgar abuse and vile\\nFie-fo the black queen tattoos all her pies\\nShe boils and she bakes and she never dots her \"I\\'s\"\\n\\nForget your singalongs and your lullabies\\nSurrender to the city of the fireflies\\nDance with the devil, beat with the band\\nTo hell with all of you hand-in-hand\\nBut now it\\'s time to be gone\\nLa la la la forever, forever\\nAh ah ah ah ah\\n\\n[Intro to Funny How Love Is]\\n\\n'},\n", " {'_id': 2227094,\n", " 'lyrics': \"do you mean it do you mean it do you mean it why don't you mean it why do i follow you and where do you go ah ah ah you've never seen nothing like it no never in your life like going up to heaven and then coming back alive let me tell you all about it if the world will so allow it ooh give me a little time to choose water babies singing in a lily pool delight blue powder monkeys praying in the dead of night here comes the black queen poking in the pile fi fo the black queen marching single file take this take that bring them down to size march to the black queen put them in the cellar with the naughty boys little nigga sugar then a rub-a-dub-a-baby oil black on black on every finger nail and toe we've only begun begun make this make that keep making all that noise ooh march to the black queen now i've got a belly full you can be my sugar baby you can be my honey chile a voice from behind me reminds me spread out your wings you are an angel remember to deliver with the speed of light a little bit of love and joy everything you do bears a will and a why and a wherefore a little bit of love and joy in each and every soul lies a man and very soon he'll deceive and discover but even to the end of his life he'll bring a little love ah ah ah i reign with my left hand i rule with my right i'm lord of all darkness i'm queen of the night i've got the power now do the march of the black queen my life is in your hands i'll fo and i'll fie i'll be what you make me i'll do what you like i'll be a bad boy i'll be your bad boy i'll do the march of the black queen ah ah ah walking true to style she's vulgar abuse and vile fi fo the black queen tattoos all her pies she boils and she bakes and she never dots her i's la la la so forget your sing a-longs and your lullabies surrender to the singing of the fireflies dance to the devil in beat with the band to hell with all of you hand in hand but now it's time to be gone la la la la forever forever la la la\",\n", " 'original_lyrics': \"\\n\\nDo you mean it, do you mean it, do you mean it?\\nWhy don't you mean it?\\nWhy do I follow you, and where do you go?\\n\\nAh ah ah...\\n\\nYou've never seen nothing like it\\nNo never in your life\\nLike going up to heaven\\nAnd then coming back alive\\nLet me tell you all about it\\nIf the world will so allow it\\nOoh give me a little time to choose\\nWater babies singing in a lily pool delight\\nBlue powder monkeys praying in the dead of night\\n\\nHere comes the Black Queen poking in the pile\\nFi fo the Black Queen marching single file\\nTake this take that bring them down to size\\nMarch to the Black Queen\\n\\nPut them in the cellar with the naughty boys\\nLittle nigga sugar then a rub-a-dub-a-baby oil\\nBlack on black on every finger nail and toe\\nWe've only begun begun\\nMake this make that keep making all that noise\\nOoh march to the Black Queen\\n\\nNow I've got a belly full\\nYou can be my sugar baby\\nYou can be my honey chile\\n\\nA voice from behind me reminds me\\nSpread out your wings you are an angel\\nRemember to deliver with the speed of light\\nA little bit of love and joy\\n\\nEverything you do bears a will\\nAnd a why and a wherefore\\nA little bit of love and joy\\n\\nIn each and every soul lies a man\\nAnd very soon he'll deceive and discover\\nBut even to the end of his life\\nHe'll bring a little love\\n\\nAh ah ah...\\n\\nI reign with my left hand I rule with my right\\nI'm lord of all darkness I'm queen of the night\\nI've got the power\\nNow do the march of the Black Queen\\n\\nMy life is in your hands I'll fo and I'll fie\\nI'll be what you make me I'll do what you like\\nI'll be a bad boy I'll be your bad boy\\nI'll do the march of the Black Queen\\n\\nAh ah ah...\\n\\nWalking true to style she's vulgar abuse and vile\\nFi fo The Black Queen tattoos all her pies\\nShe boils and she bakes\\nAnd she never dots her I's\\n\\nLa la la...\\n\\nSo forget your sing a-longs and your lullabies\\nSurrender to the singing of the fireflies\\nDance to the devil in beat with the band\\nTo hell with all of you hand in hand\\nBut now it's time to be gone\\nLa la la la forever forever\\nLa la la...\\n\\n\"},\n", " {'_id': 308987,\n", " 'lyrics': \"bring out the charge of the love brigade there is spring in the air once again drink to the sound of the song parade there is music and love everywhere give a little love to me take a little love from me i want to share it with you i feel like a millionaire once we were mad we were happy we spent all our days holding hands together do you remember my love how we danced and played in the rain we laid could stay there forever and ever now i am sad you are so far away i sit counting the hours day by day come back to me how i long for your love come back to me - be happy like we used to be come back to me oh my love how i long for your love - won't you come back to me yeah my fine friend - take me with you and love me forever my fine friend - forever - ever\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nBring out the charge of the love brigade\\nThere is spring in the air once again\\nDrink to the sound of the song parade\\nThere is music and love everywhere\\nGive a little love to me\\nTake a little love from me\\nI want to share it with you\\nI feel like a millionaire\\n\\nOnce we were mad, we were happy\\nWe spent all our days holding hands together\\nDo you remember, my love\\nHow we danced and played\\nIn the rain we laid\\nCould stay there, forever and ever\\n\\nNow I am sad\\nYou are so far away\\nI sit counting the hours day by day\\nCome back to me, how I long for your love\\nCome back to me - be happy like\\nWe used to be Come back to me, oh my love\\nHow I long for your love - won't you come back to me, yeah\\nMy fine friend - take me with you and love me forever\\nMy fine friend - forever - ever\\n\\n\"},\n", " {'_id': 308700,\n", " 'lyrics': \"when i was young it came to me and i could see the sun breaking lucy was high and so was i dazzling holding the world inside once i believed in everyone everyone and anyone can see oh oh the night comes down and i get afraid of losing my way oh oh the night comes down oooh and it's dark again once i could laugh with everyone once i could see the good in me the black and the white distinctively colouring holding the world inside now all the world is grey to me nobody can see you gotta believe it oh oh the night comes down and i get afraid of losing my way oh oh the night comes down oooh and it's dark again and it's dark again and it's dark again\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nWhen I was young it came to me\\nAnd I could see the sun breaking\\nLucy was high and so was I dazzling\\nHolding the world inside\\nOnce I believed in everyone\\nEveryone and anyone can see\\n\\n[Chorus]\\nOh oh the night comes down\\nAnd I get afraid of losing my way\\nOh oh the night comes down\\nOooh and it's dark again\\n\\n[Verse 2]\\nOnce I could laugh with everyone\\nOnce I could see the good in me\\nThe black and the white distinctively colouring\\nHolding the world inside\\nNow all the world is grey to me\\nNobody can see you gotta believe it\\n\\n[Chorus]\\nOh oh the night comes down\\nAnd I get afraid of losing my way\\nOh oh the night comes down\\nOooh and it's dark again\\nAnd it's dark again\\nAnd it's dark again\\n\\n\"},\n", " {'_id': 204978,\n", " 'lyrics': \"oh oh people of the earth listen to the warning the seer he said beware the storm that gathers here listen to the wise man i dreamed i saw on a moonlit stair spreading his hand on the multitude there a man who cried for a love gone stale and ice cold hearts of charity bare i watched as fear took the old men's gaze hopes of the young in troubled graves i see no day i heard him say so grey is the face of every mortal oh oh people of the earth listen to the warning the prophet he said for soon the cold of night will fall summoned by your own hand ah ah children of the land quicken to the new life take my hand fly and find the new green bough return like the white dove he told of death as a bone white haze taking the lost and the unloved babe late too late all the wretches run these kings of beasts now counting their days from mother's love is the son estranged married his own his precious gain the earth will shake in two will break and death all round will be your dowry oh oh people of the earth listen to the warning the seer he said for those who hear and mark my words listen to the good plan oh oh oh oh and two by two my human zoo they'll be running for to come running for to come out of the rain oh flee for your life who heed me not let all your treasure make you oh fear for your life deceive you not the fires of hell will take you should death await you ah people can you hear me and now i know and now i know and now i know and now i know that you can hear me and now i know and now i know and now i know now i know now i know now i know now i know the earth will shake in two will break death all around around around around around around around around now i know now i know now i know wo wo wo wo wo wo wo wo wo listen to the wise listen to the wise listen to the wise listen to the wise listen to the wise man la la la la la la la la come here (i - you) ah ah ah ah ah listen to the man listen to the man listen to the man listen to the mad man god gave you grace to purge this place and peace all around may be your fortune oh oh children of the land love is still the answer take my hand the vision fades a voice i hear listen to the madman but still i fear and still i dare not laugh at the madman\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nOh oh people of the earth\\nListen to the warning the seer he said\\nBeware the storm that gathers here\\nListen to the wise man\\nI dreamed I saw on a moonlit stair\\nSpreading his hand on the multitude there\\nA man who cried for a love gone stale\\nAnd ice cold hearts of charity bare\\nI watched as fear took the old men's gaze\\nHopes of the young in troubled graves\\nI see no day I heard him say\\nSo grey is the face of every mortal\\nOh oh people of the earth!\\nListen to the warning the prophet he said\\nFor soon the cold of night will fall\\nSummoned by your own hand\\nAh ah children of the land\\nQuicken to the new life take my hand\\nFly and find the new green bough\\nReturn like the white dove\\nHe told of death as a bone white haze\\nTaking the lost and the unloved babe\\nLate too late all the wretches run\\nThese kings of beasts now counting their days\\nFrom mother's love is the son estranged\\nMarried his own his precious gain\\nThe earth will shake in two will break\\nAnd death all round will be your dowry\\nOh oh people of the earth\\nListen to the warning the seer he said\\nFor those who hear and mark my words\\nListen to the good plan\\nOh oh oh oh and two by two my human zoo\\nThey'll be running for to come\\nRunning for to come out of the rain\\nOh flee for your life\\nWho heed me not let all your treasure make you\\nOh fear for your life\\nDeceive you not the fires of hell will take you\\nShould death await you\\n\\n[Bridge]\\nAh people can you hear me?\\nAnd now I know and now I know\\nAnd now I know and now I know\\nThat you can hear me\\nAnd now I know and now I know\\nAnd now I know\\nNow I know\\nNow I know, now I know[x2]\\nNow I know\\nThe earth will shake in two will break\\nDeath all around around around around\\nAround around around around\\nNow I know, now I know[x5]\\nNow I know\\nWo wo wo wo wo wo wo wo wo\\nListen to the wise listen to the wise listen to the wise\\nListen to the wise listen to the wise man\\nLa la\\nLa la la la la la[x5]\\nCome Here (I - You)[x5]\\n\\n[Verse 2]\\nAh ah ah ah ah\\nListen to the man listen to the man listen to the man listen\\nTo the mad man\\nGod gave you grace to purge this place\\nAnd peace all around may be your fortune\\nOh oh children of the land\\nLove is still the answer take my hand\\nThe vision fades a voice I hear\\nListen to the madman!\\nBut still I fear and still I dare not\\nLaugh at the madman!\\n\\n\"},\n", " {'_id': 2127892,\n", " 'lyrics': \"there must be more to life than this there must be more to life than this how do we cope in a world without love mending all those broken hearts and tending to those crying faces there must be more to life than living there must be more that needs the light why should it be just a case of black or white there must be more to life than this why is this world so full of hate people dying everywhere and we destroy what we create people fighting for their human rights but we just go on saying see'est la vie so this is life there must be more to life than killing a better way for us to survive a living hope for a world fill with love and waking up just making noise there must be more to life than this there must be more to life than this a living hope for a world fill with love there must be more to life than this there must be more to life much more to life there must be more to life more to life than this\",\n", " 'original_lyrics': \"\\n\\nThere must be more to life than this\\nThere must be more to life than this\\nHow do we cope in a world without love\\nMending all those broken hearts\\nAnd tending to those crying faces\\nThere must be more to life than living\\nThere must be more that needs the light\\nWhy should it be just a case of black or white\\nThere must be more to life than this\\nWhy is this world so full of hate\\nPeople dying everywhere\\nAnd we destroy what we create\\nPeople fighting for their human rights\\nBut we just go on saying see'est la vie\\nSo this is life\\nThere must be more to life than killing\\nA better way for us to survive\\nA living hope for a world fill with love\\nAnd waking up, just making noise\\nThere must be more to life than this\\nThere must be more to life than this\\nA living hope for a world fill with love\\nThere must be more to life, than this\\nThere must be more to life, much more to life\\nThere must be more to life, more to life than this\\n\\n\"},\n", " {'_id': 1177167,\n", " 'lyrics': \"sometimes i get the feelin' i was back in the old days - long ago when we were kids when we were young things seemed so perfect - you know the days were endless we were crazy - we were young the sun was always shinin' - we just lived for fun sometimes it seems like lately - i just don't know the rest of my life's been - just a show those were the days of our lives the bad things in life were so few those days are all gone now but one thing is true - when i look and i find i still love you you can't turn back the clock you can't turn back the tide ain't that a shame i'd like to go back one time on a roller coaster ride when life was just a game no use sitting and thinkin' on what you did when you can lay back and enjoy it through your kids sometimes it seems like lately i just don't know better sit back and go - with the flow cos these are the days of our lives they've flown in the swiftness of time these days are all gone now but some things remain when i look and i find - no change those were the days of our lives the bad things in life were so few those days are all gone now but one thing's still true - when i look and i find i still love you i still love you\",\n", " 'original_lyrics': \"\\n\\nSometimes I get the feelin'\\nI was back in the old days - long ago\\nWhen we were kids, when we were young\\nThings seemed so perfect - you know\\nThe days were endless, we were crazy - we were young\\nThe sun was always shinin' - we just lived for fun\\nSometimes it seems like lately - I just don't know\\nThe rest of my life's been - just a show\\nThose were the days of our lives\\nThe bad things in life were so few\\nThose days are all gone now but one thing is true -\\nWhen I look and I find, I still love you\\nYou can't turn back the clock, you can't turn back the tide\\nAin't that a shame\\nI'd like to go back one time on a roller coaster ride\\nWhen life was just a game\\nNo use sitting and thinkin' on what you did\\nWhen you can lay back and enjoy it through your kids\\nSometimes it seems like lately I just don't know\\nBetter sit back and go - with the flow\\nCos these are the days of our lives\\nThey've flown in the swiftness of time\\nThese days are all gone now but some things remain\\nWhen I look and I find - no change\\nThose were the days of our lives\\nThe bad things in life were so few\\nThose days are all gone now but one thing's still true -\\nWhen I look and I find, I still love you\\nI still love you\\n\\n\"},\n", " {'_id': 89747,\n", " 'lyrics': \"sometimes i get the feeling i was back in the old days - long ago when we were kids when we were young things seemed so perfect - you know the days were endless we were crazy we were young the sun was always shining - we just lived for fun sometimes it seems like lately - i just don't know the rest of my life's been just a show those were the days of our lives the bad things in life were so few those days are all gone now but one thing is true when i look and i find i still love you you can't turn back the clock you can't turn back the tide ain't that a shame i'd like to go back one time on a roller coaster ride when life was just a game no use in sitting and thinking on what you did when you can lay back and enjoy it through your kids sometimes it seems like lately - i just don't know better sit back and go with the flow because these are the days of our lives they've flown in the swiftness of time these days are all gone now but some things remain when i look and i find no change those were the days of our lives - yeah the bad things in life were so few those days are all gone now but one thing's still true when i look and i find i still love you i still love you\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nSometimes I get the feeling\\nI was back in the old days - long ago\\nWhen we were kids when we were young\\nThings seemed so perfect - you know\\nThe days were endless we were crazy we were young\\nThe sun was always shining - we just lived for fun\\nSometimes it seems like lately - I just don't know\\nThe rest of my life's been just a show\\n\\n[Hook]\\nThose were the days of our lives\\nThe bad things in life were so few\\nThose days are all gone now but one thing is true\\nWhen I look and I find I still love you\\n\\n[Verse 2]\\nYou can't turn back the clock you can't turn back the tide\\nAin't that a shame\\nI'd like to go back one time on a roller coaster ride\\nWhen life was just a game\\nNo use in sitting and thinking on what you did\\nWhen you can lay back and enjoy it through your kids\\nSometimes it seems like lately - I just don't know\\nBetter sit back and go with the flow\\n\\n[Bridge]\\nBecause these are the days of our lives\\nThey've flown in the swiftness of time\\nThese days are all gone now but some things remain\\nWhen I look and I find no change\\n\\n[Hook]\\nThose were the days of our lives - yeah\\nThe bad things in life were so few\\nThose days are all gone now but one thing's still true\\nWhen I look and I find\\nI still love you\\n\\n[Outro]\\nI still love you\\n\\n\"},\n", " {'_id': 71762,\n", " 'lyrics': \"empty spaces - what are we living for abandoned places - i guess we know the score on and on does anybody know what we are looking for another hero - another mindless crime behind the curtain in the pantomime hold the line does anybody want to take it anymore the show must go on the show must go on inside my heart is breaking my make-up may be flaking but my smile still stays on whatever happens i'll leave it all to chance another heartache - another failed romance on and on does anybody know what we are living for i guess i'm learning i must be warmer now i'll soon be turning round the corner now outside the dawn is breaking but inside in the dark i'm aching to be free the show must go on the show must go on i'll face it with a grin i'm never giving in on with the show my soul is painted like the wings of butterflies fairy tales of yesterday grow but never die i can fly my friends the show must go on the show must go on i'll face it with a grin i'm never giving in on with the show i'll top the bill i'll overkill i have to find the will to carry on on with the show show must go on show must go on\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nEmpty spaces - what are we living for?\\nAbandoned places - I guess we know the score, on and on\\nDoes anybody know what we are looking for?\\nAnother hero - another mindless crime\\nBehind the curtain, in the pantomime\\nHold the line\\nDoes anybody want to take it anymore?\\n\\n[Chorus]\\nThe Show must go on\\nThe Show must go on\\nInside my heart is breaking\\nMy make-up may be flaking\\nBut my smile, still, stays on\\n\\n[Verse 2]\\nWhatever happens, I'll leave it all to chance\\nAnother heartache - another failed romance, on and on\\nDoes anybody know what we are living for?\\nI guess I'm learning\\nI must be warmer now\\nI'll soon be turning, round the corner now\\nOutside the dawn is breaking\\nBut inside in the dark I'm aching to be free!\\n\\n[Chorus]\\nThe Show must go on\\nThe Show must go on\\nI'll face it with a grin\\nI'm never giving in\\nOn with the show\\n\\n[Bridge]\\nMy soul is painted like the wings of butterflies\\nFairy tales of yesterday, grow but never die\\nI can fly, my friends\\n\\n[Chorus]\\nThe Show must go on\\nThe Show must go on\\nI'll face it with a grin\\nI'm never giving in\\nOn with the show\\n\\n[Verse 3]\\nI'll top the bill\\nI'll overkill\\nI have to find the will to carry on\\nOn with the show\\nShow must go on\\nShow must go on\\n\\n\"},\n", " {'_id': 1003511,\n", " 'lyrics': \"one dance whose steps i never could learn it's called the wedding march the grace that it takes the grace you deserve require a lighter touch i know you love dancing oh i know that you love dancing so much i know you love dancing music's a wild thing with mischief to prove i can't adjust to the way that you move music's a wild thing whatever the groove some music isn't for dancing one dance whose steps i never could learn it's called the wedding march the grace that it takes the balance and poise i still find a mystery i know you love dancing so i know that you'd hate dancing with me i know you love dancing so i know that you'd hate dancing with me\",\n", " 'original_lyrics': \"\\n\\nOne dance whose steps I never could learn\\nIt's called the wedding march\\nThe grace that it takes, the grace you deserve\\nRequire a lighter touch\\nI know you love dancing\\nOh, I know that you love dancing so much\\nI know you love dancing\\nMusic's a wild thing with mischief to prove\\nI can't adjust to the way that you move\\nMusic's a wild thing whatever the groove\\nSome music isn't for dancing\\nOne dance whose steps I never could learn\\nIt's called the wedding march\\nThe grace that it takes, the balance and poise\\nI still find a mystery\\nI know you love dancing\\nSo, I know that you'd hate dancing with me\\nI know you love dancing\\nSo, I know that you'd hate dancing with me\\n\\n\"},\n", " {'_id': 310106,\n", " 'lyrics': 'tell me something that will ease my pain i am living life in vain crying does not help me any more tell me something that will ease my mind i am walking the line trying does not get my anywhere i wander through the night all the stars are shining bright searching for a guiding light i wander through the night tell me something cause i need to know can you teach me how to live how to understand how to love and how to give anger burns in bitterness and fills me up inside i cannot face it and there is no place i can hide tell me something cause i need to know can you teach me how to live how to understand how to love and how to give anger burns in bitterness and fills me up inside without your love there is nowhere i can hide',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nTell me something that will ease my pain\\nI am living life in vain\\nCrying does not help me any more\\nTell me something that will ease my mind\\nI am walking the line\\nTrying does not get my anywhere\\n\\n[Chorus]\\nI wander through the night\\nAll the stars are shining bright\\nSearching for a guiding light\\nI wander through the night\\n\\n[Verse 2]\\nTell me something cause I need to know\\nCan you teach me how to live\\nHow to understand how to love and how to give\\nAnger burns in bitterness and fills me up inside\\nI cannot face it and there is no place I can hide\\n\\n[Chorus]\\n\\n[Verse 3]\\nTell me something cause I need to know\\nCan you teach me how to live\\nHow to understand how to love and how to give\\nAnger burns in bitterness and fills me up inside\\nWithout your love there is nowhere I can hide\\n\\n[Chorus]\\n\\n'},\n", " {'_id': 308951,\n", " 'lyrics': \"get your party gown get your pigtail down get your heart beating baby got my timing right got my act all tight it's got to be tonight my little school babe your momma says you don't and your daddy says you won't and i'm boiling up inside there is no way i'm going to lose out this time tie your mother down tie your mother down lock your daddy out of doors i don't need him nosing around tie your mother down tie your mother down give me all your love tonight you're such a dirty louse go get out of my house that's all i ever get from your family ties in fact i don't think i ever heard a single little civil word from those guys but you know i don't give a light i'm going to make out all right i've got a sweetheart hand to put a stop to all that grousing and sniping tie your mother down tie your mother down send your brother swimming with a brick that's alright tie your mother down tie your mother down or you ain't no friend of mine your momma and your daddy going to plague me until i die why can't they understand i'm just a peace loving guy tie your mother down tie your mother down get that big big big big big big daddy out the door tie your mother down yeah tie your mother down give me all your love tonight all your love tonight\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nGet your party gown\\nGet your pigtail down\\nGet your heart beating baby\\nGot my timing right\\nGot my act all tight\\nIt's got to be tonight my little\\nSchool babe\\n[Guitar solo]\\n\\nYour momma says you don't\\nAnd your Daddy says you won't\\nAnd I'm boiling up inside\\nThere is no way I'm going to lose out this time\\n\\n[Chorus]\\nTie your Mother down\\nTie your Mother down\\nLock your Daddy out of doors\\nI don't need him nosing around\\nTie your Mother down\\nTie your Mother down\\nGive me all your love tonight\\n\\n[Verse 2]\\nYou're such a dirty louse\\nGo get out of my house\\nThat's all I ever get from your\\nFamily ties, in fact I don't think I ever heard\\nA single little civil word\\nFrom those guys\\nBut you know I don't give a light\\nI'm going to make out all right\\nI've got a sweetheart hand\\nTo put a stop to all that\\nGrousing and sniping\\n\\n[Chorus]\\nTie your Mother down\\nTie your Mother down\\nSend your brother swimming with a brick\\nThat's alright\\nTie your Mother down\\nTie your Mother down\\nOr you ain't no friend of mine!\\n\\n[Verse 3]\\nYour momma and your Daddy going to\\nPlague me until I die\\nWhy can't they understand I'm just a\\nPeace loving guy\\n\\n[Chorus]\\nTie your Mother down\\nTie your Mother down\\nGet that big big big big big big\\nDaddy out the door\\nTie your mother down yeah\\nTie your mother down\\nGive me all your love tonight\\nAll your love tonight\\n\\n\"},\n", " {'_id': 309987,\n", " 'lyrics': 'with the sun in your eyes and the wind in your face to heaven you rise in a holy embrace your feet on the round your head in the clouds and you are wondering if you are never coming down in an instant the mysteries of life will unfold the myths and the dragons of time will explode here is to a real understanding of truth for compassion and grace to be given their chance too raise up your mind it is time to shine a moment down through millennium unveiling the secrets of song to be sung waters of life flowing soft to the touch wisdom remembered have we forgotten oh so much raise up your mind it is time to shine raise up your mind hey it is time to shine let us awaken from barbarity into a world of serenity beyond the rage of foolish pride and on to the golden shores of paradise raise up your mind hey it is time to shine raise up your mind hey it is time to shine raise up your mind your time to shine it is time to shine',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nWith the sun in your eyes and the wind in your face\\nTo heaven you rise in a holy embrace\\nYour feet on the round your head in the clouds\\nAnd you are wondering if you are never coming down\\nIn an instant the mysteries of life will unfold\\nThe myths and the dragons of time will explode\\nHere is to a real understanding of truth\\nFor compassion and grace to be given their chance too\\n\\n[Chorus]\\nRaise up your mind\\nIt is time to shine\\n\\n[Verse 2]\\nA moment down through millennium\\nUnveiling the secrets of song to be sung\\nWaters of life flowing soft to the touch\\nWisdom remembered have we forgotten oh so much\\n\\n[Chorus]\\nRaise up your mind\\nIt is time to shine\\nRaise up your mind\\nHey, it is time to shine\\n\\n[Verse 3]\\nLet us awaken from barbarity\\nInto a world of serenity\\nBeyond the rage of foolish pride\\nAnd on to the golden shores of paradise\\n\\n[Outro]\\nRaise up your mind\\nHey, it is time to shine\\nRaise up your mind\\nHey, it is time to shine\\nRaise up your mind\\nYour time to shine\\nIt is time to shine[x2]\\n\\n'},\n", " {'_id': 310172,\n", " 'lyrics': \"i'm just the pieces of the man i used to be too many bitter tears are raining down on me i'm far away from home and i've been facing this alone for much too long oh i feel like no one ever told the truth to me about growing up and what a struggle it would be in my tangled state of mind i've been looking back to find where i went wrong too much love will kill you if you can't make up your mind torn between a lover and the lover you leave behind you're headed for disaster cause you never read the signs too much love will kill you every time i'm just the shadow of the man i used to be and it seems there's no way out this for me i used to bring you sunshine now all i ever do is bring you down ooh how would it be if you were standing in my shoes can't you see that it's impossible to choose no there's no making sense of it every way i go i'm bound to lose oh yes too much love will kill you just as sure as none at all it'll drain the power that's in you make you plead and scream and crawl and the pain will make you crazy you're the victim of your crime too much love will kill you every time yes too much love will kill you it'll make your life a lie yes too much love will kill you and you won't understand why you'd give your life you'd sell your soul but here it comes again too much love will kill you in the end in the end\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI'm just the pieces of the man I used to be\\nToo many bitter tears are raining down on me\\nI'm far away from home\\nAnd I've been facing this alone\\nFor much too long\\nOh, I feel like no one ever told the truth to me\\nAbout growing up and what a struggle it would be\\nIn my tangled state of mind\\nI've been looking back to find\\nWhere I went wrong\\n\\n[Chorus]\\nToo much love will kill you\\nIf you can't make up your mind\\nTorn between a lover\\nAnd the lover you leave behind\\nYou're headed for disaster\\nCause you never read the signs\\nToo much love will kill you every time\\n\\n[Verse 2]\\nI'm just the shadow of the man I used to be\\nAnd it seems there's no way out this for me\\nI used to bring you sunshine\\nNow all I ever do is bring you down\\nOoh, how would it be if you were standing in my shoes\\nCan't you see that it's impossible to choose\\nNo there's no making sense of it\\nEvery way I go I'm bound to lose\\nOh yes\\n\\nToo much love will kill you\\nJust as sure as none at all\\nIt'll drain the power that's in you\\nMake you plead and scream and crawl\\nAnd the pain will make you crazy\\nYou're the victim of your crime\\nToo much love will kill you every time\\n\\nYes, too much love will kill you\\nIt'll make your life a lie\\nYes, too much love will kill you\\nAnd you won't understand why\\nYou'd give your life, you'd sell your soul\\nBut here it comes again\\nToo much love will kill you\\nIn the end\\nIn the end\\n\\n\"},\n", " {'_id': 1100005,\n", " 'lyrics': \"bop bopa a lu a whop bam boo tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo got a girl named sue she knows just what to do got a girl named sue she knows just what to do she rocks to the east she rocks to the west she's the girl that i know best tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo got a girl named daisy she almost drives me crazy got a girl named daisy she almost drives me crazy she knows how to love me yes indeed boy i don't know what you're doin' to me tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo a whop bop a lu a whop bam boo (a whop bop a lu a whop bam boo) a whop bop a lu a whop bam boo yea oh rudy tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo got a girl named daisy she almost drives me crazy got a girl named daisy she almost drives me crazy she knows how to love me yes indeed boy i don't know what you're doin' to me tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo yea hey\",\n", " 'original_lyrics': \"\\n\\nBop bopa a lu a whop bam boo\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nGot a girl named Sue, she knows just what to do\\nGot a girl named Sue, she knows just what to do\\nShe rocks to the east, she rocks to the west\\nShe's the girl that I know best\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nGot a girl named Daisy, she almost drives me crazy\\nGot a girl named Daisy, she almost drives me crazy\\nShe knows how to love me, yes indeed\\nBoy I don't know what you're doin' to me\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nA whop bop a lu a whop bam boo\\n(A whop bop a lu a whop bam boo)\\nA whop bop a lu a whop bam boo\\nYea, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nGot a girl named Daisy, she almost drives me crazy\\nGot a girl named Daisy, she almost drives me crazy\\nShe knows how to love me, yes indeed\\nBoy I don't know what you're doin' to me\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nYea, hey\\n\\n\"},\n", " {'_id': 1967873,\n", " 'lyrics': \"bop bopa a lu a whop bam boo tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo got a girl named sue she knows just what to do got a girl named sue she knows just what to do she rocks to the east she rocks to the west she's the girl that i know best tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo got a girl named daisy she almost drives me crazy got a girl named daisy she almost drives me crazy she knows how to love me yes indeed boy i don't know what you're doin' to me tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo a whop bop a lu a whop bam boo (a whop bop a lu a whop bam boo) a whop bop a lu a whop bam boo yea oh rudy tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo got a girl named daisy she almost drives me crazy got a girl named daisy she almost drives me crazy she knows how to love me yes indeed boy i don't know what you're doin' to me tutti frutti oh rudy tutti frutti oh rudy tutti frutti oh rudy a whop bop a lu a whop bam boo yea hey\",\n", " 'original_lyrics': \"\\n\\nBop bopa a lu a whop bam boo\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nGot a girl named Sue, she knows just what to do\\nGot a girl named Sue, she knows just what to do\\nShe rocks to the east, she rocks to the west\\nShe's the girl that I know best\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nGot a girl named Daisy, she almost drives me crazy\\nGot a girl named Daisy, she almost drives me crazy\\nShe knows how to love me, yes indeed\\nBoy I don't know what you're doin' to me\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nA whop bop a lu a whop bam boo\\n(A whop bop a lu a whop bam boo)\\nA whop bop a lu a whop bam boo\\nYea, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nGot a girl named Daisy, she almost drives me crazy\\nGot a girl named Daisy, she almost drives me crazy\\nShe knows how to love me, yes indeed\\nBoy I don't know what you're doin' to me\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nTutti frutti, oh Rudy\\nA whop bop a lu a whop bam boo\\nYea, hey\\n\\n\"},\n", " {'_id': 152350,\n", " 'lyrics': \"mmm num ba de dum bum ba be doo buh dum ba beh beh pressure pushing down on me pressing down on you no man ask for under pressure that burns a building down splits a family in two puts people on streets um ba ba be um ba ba be de day da ee day da - that's okay it's the terror of knowing what the world is about watching some good friends screaming 'let me out' pray tomorrow gets me higher pressure on people people on streets day day de mm hm da da da ba ba okay chipping around kick my brains around the floor these are the days it never rains but it pours ee do ba be ee da ba ba ba um bo bo be lap people on streets ee da de da de people on streets ee da de da de da de da it's the terror of knowing what the world is about watching some good friends screaming 'let me out' pray tomorrow gets me higher high pressure on people people on streets turned away from it all like a blind man sat on a fence but it don't work keep coming up with love but it's so slashed and torn why - why - why love love love love love insanity laughs under pressure we're breaking can't we give ourselves one more chance why can't we give love that one more chance why can't we give love give love give love give love give love give love give love give love give love because love's such an old fashioned word and love dares you to care for the people on the (people on streets) edge of the night and love (people on streets) dares you to change our way of caring about ourselves this is our last dance this is our last dance this is ourselves under pressure under pressure pressure\",\n", " 'original_lyrics': \"\\n\\n[Intro: Freddie Mercury]\\nMmm num ba de\\nDum bum ba be\\nDoo buh dum ba beh beh\\n\\n[Verse 1: David Bowie & Freddie Mercury]\\nPressure pushing down on me\\nPressing down on you, no man ask for\\nUnder pressure that burns a building down\\nSplits a family in two\\nPuts people on streets\\n\\n[Bridge: Freddie Mercury]\\nUm ba ba be\\nUm ba ba be\\nDe day da\\nEe day da - that's okay\\n\\n[Chorus: David Bowie & Freddie Mercury]\\nIt's the terror of knowing what the world is about\\nWatching some good friends screaming\\n'Let me out'\\nPray tomorrow gets me higher\\nPressure on people, people on streets\\n\\n[Verse 2: David Bowie & Freddie Mercury]\\nDay day de mm hm\\nDa da da ba ba\\nOkay\\nChipping around, kick my brains around the floor\\nThese are the days it never rains but it pours\\nEe do ba be\\nEe da ba ba ba\\nUm bo bo\\nBe lap\\nPeople on streets\\nEe da de da de\\nPeople on streets\\nEe da de da de da de da\\n\\n[Chorus: David Bowie & Freddie Mercury]\\nIt's the terror of knowing what the world is about\\nWatching some good friends screaming\\n'Let me out'\\nPray tomorrow gets me higher, high\\nPressure on people, people on streets\\n\\n[Bridge: David Bowie & Freddie Mercury]\\nTurned away from it all like a blind man\\nSat on a fence but it don't work\\nKeep coming up with love but it's so slashed and torn\\nWhy - why - why?\\nLove, love, love, love, love\\nInsanity laughs under pressure we're breaking\\n\\n[Verse 3: Freddie Mercury]\\nCan't we give ourselves one more chance?\\nWhy can't we give love that one more chance?\\nWhy can't we give love, give love, give love, give love\\nGive love, give love, give love, give love, give love?\\n\\n[Outro: David Bowie]\\nBecause love's such an old fashioned word\\nAnd love dares you to care for\\nThe people on the (people on streets) edge of the night\\nAnd love (people on streets) dares you to change our way of\\nCaring about ourselves\\nThis is our last dance\\nThis is our last dance\\nThis is ourselves under pressure\\nUnder pressure\\nPressure\\n\\n\"},\n", " {'_id': 309773,\n", " 'lyrics': \"what is there left for me to do in this life did i achieve what i had set in my sights am i a happy man or is this sinking sand was it all worth it was it all worth it yeah now hear my story let me tell you about it we bought a drum kit blew my own trumpet played the circuit thought we were perfect was it all worth it giving all my heart and soul and staying up all night was it all worth it living breathing rock'n'roll a godforsaken life was it all worth it was it all worth it all these years put down our money without counting the cost it didn't matter if we won if we lost yes we were vicious yes we could kill yes we were hungry yes we were brill we served a purpose like a bloody circus we were so dandy we love you madly was it all worth it living breathing rock'n'roll this godforsaken life was it all worth it was it all worth it when the hurly burly's done we went to bali saw god and dali so mystic surrealistic was it all worth it yeah yeah giving all my heart and soul staying up all night was it all worth it living breathing rock'n'roll this never ending fight was it all worth it was it all worth it yes it was a worthwhile experience it was worth it\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nWhat is there left for me to do in this life\\nDid I achieve what I had set in my sights\\nAm I a happy man or is this sinking sand\\nWas it all worth it was it all worth it\\nYeah now hear my story let me tell you about it\\nWe bought a drum kit blew my own trumpet\\nPlayed the circuit thought we were perfect\\nWas it all worth it\\nGiving all my heart and soul and staying up all\\nNight\\n\\n[Chorus]\\nWas it all worth it\\nLiving breathing rock'n'roll a godforsaken life\\nWas it all worth it was it all worth it all these years\\n\\n[Verse 2]\\nPut down our money without counting the cost\\nIt didn't matter if we won if we lost\\nYes we were vicious yes we could kill\\nYes we were hungry yes we were brill\\nWe served a purpose like a bloody circus\\nWe were so dandy we love you madly\\n\\n[Chorus]\\nWas it all worth it\\nLiving breathing rock'n'roll this godforsaken life\\nWas it all worth it was it all worth it\\nWhen the hurly burly's done\\n\\n[Guitar Solo]\\n\\n[Verse 3]\\nWe went to Bali saw God and Dali\\nSo mystic surrealistic\\nWas it all worth it yeah yeah\\nGiving all my heart and soul staying up all night\\nWas it all worth it\\nLiving breathing rock'n'roll this never ending fight\\nWas it all worth it was it all worth it\\nYes it was a worthwhile experience\\n\\n[Outro]\\nIt was worth it\\n\\n\"},\n", " {'_id': 73453,\n", " 'lyrics': \"i've paid my dues time after time i've done my sentence but committed no crime and bad mistakes i've made a few i've had my share of sand kicked in my face but i've come through (and the beat will go on and on and on and on) we are the champions my friends and we'll keep on fightingtill the end we are the champions we are the champions no time for losers cause we are the champions of the world i've taken my bows and my curtain calls you brought me fame and fortune and everything that goes with it i thank you all but it's been no bed of roses no pleasure cruise i consider it a challenge before the whole human race and i ain't gonna lose (where the beat just goes on and on and on and on) we are the champions my friends and we'll keep on fightingtill the end we are the champions we are the champions no time for losers cause we are the champions of the world we are the champions my friends and we'll keep on fightingtill the end we are the champions we are the champions no time for losers cause we are the champions\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI've paid my dues\\nTime after time\\nI've done my sentence\\nBut committed no crime\\nAnd bad mistakes\\nI've made a few\\nI've had my share of sand kicked in my face\\nBut I've come through\\n(And the beat will go on and on and on and on)\\n\\n[Chorus]\\nWe are the champions, my friends\\nAnd we'll keep on fighting...till the end\\nWe are the champions, We are the champions\\nNo time for losers cause we are the champions...\\nOf the world\\n\\n[Verse 2]\\nI've taken my bows\\nAnd my curtain calls\\nYou brought me fame and fortune and everything that goes with it\\nI thank you all\\nBut it's been no bed of roses\\nNo pleasure cruise\\nI consider it a challenge before the whole human race\\nAnd I ain't gonna lose\\n(Where the beat just goes on and on and on and on)\\n\\n[Outro]\\nWe are the champions, my friends\\nAnd we'll keep on fighting...till the end\\nWe are the champions, We are the champions\\nNo time for losers cause we are the champions...\\nOf the world\\nWe are the champions, my friends\\nAnd we'll keep on fighting...till the end\\nWe are the champions, We are the champions\\nNo time for losers cause we are the champions...\\n\\n\"},\n", " {'_id': 1272286,\n", " 'lyrics': \"queen greatest hits we are the champions (mercury) i've paid my dues - time after time - i've done my sentence but committed no crime - and bad mistakes i've made a few i've had my share of sand kicked in my face - but i've come through we are the champions - my friends and we'll keep on fighting - till the end - we are the champions - we are the champions no time for losers 'cause we are the champions - of the world - i've taken my bows and my curtain calls - you brought me fame and fortuen and everything that goes with it - i thank you all - but it's been no bed of roses no pleasure cruise - i consider it a challenge before the whole human race - and i ain't gonna lose - we are the champions - my friends and we'll keep on fighting - till the end - we are the champions - we are the champions no time for losers 'cause we are the champions - of the world -\",\n", " 'original_lyrics': \"\\n\\nQueen\\nGreatest Hits\\nWe Are The Champions (Mercury)\\nI've paid my dues -\\nTime after time -\\nI've done my sentence\\nBut committed no crime -\\nAnd bad mistakes\\nI've made a few\\nI've had my share of sand kicked in my face -\\nBut I've come through\\nWe are the champions - my friends\\nAnd we'll keep on fighting - till the end -\\nWe are the champions -\\nWe are the champions\\nNo time for losers\\n'Cause we are the champions - of the world -\\nI've taken my bows\\nAnd my curtain calls -\\nYou brought me fame and fortuen and everything that goes with it -\\nI thank you all -\\nBut it's been no bed of roses\\nNo pleasure cruise -\\nI consider it a challenge before the whole human race -\\nAnd I ain't gonna lose -\\nWe are the champions - my friends\\nAnd we'll keep on fighting - till the end -\\nWe are the champions -\\nWe are the champions\\nNo time for losers\\n'Cause we are the champions - of the world -\\n\\n\"},\n", " {'_id': 55045,\n", " 'lyrics': 'buddy you’re a boy make a big noise playing in the street gonna be a big man someday you got mud on your face you big disgrace kicking your can all over the place (singing) we will we will rock you we will we will rock you buddy you’re a young man hard man shouting in the street gonna take on the world someday you got blood on your face you big disgrace waving your banner all over the place we will we will rock you (sing it out) we will we will rock you buddy you’re an old man poor man pleading with your eyes gonna make you some peace someday you got mud on your face big disgrace somebody better put you back into your place we will we will rock you (sing it) we will we will rock you (everybody) we will we will rock you we will we will rock you alright',\n", " 'original_lyrics': '\\n\\n[Verse 1]\\nBuddy, you’re a boy, make a big noise\\nPlaying in the street, gonna be a big man someday\\nYou got mud on your face, you big disgrace\\nKicking your can all over the place (singing)\\n\\n[Chorus]\\nWe will, we will rock you\\nWe will, we will rock you\\n\\n[Verse 2]\\nBuddy, you’re a young man, hard man\\nShouting in the street, gonna take on the world someday\\nYou got blood on your face, you big disgrace\\nWaving your banner all over the place\\n\\n[Chorus]\\nWe will, we will rock you (sing it out)\\nWe will, we will rock you\\n\\n[Verse 3]\\nBuddy, you’re an old man, poor man\\nPleading with your eyes, gonna make you some peace someday\\nYou got mud on your face, big disgrace\\nSomebody better put you back into your place\\n\\n[Chorus]\\nWe will, we will rock you (sing it)\\nWe will, we will rock you (everybody)\\nWe will, we will rock you\\nWe will, we will rock you\\n\\nAlright\\n\\n'},\n", " {'_id': 1986225,\n", " 'lyrics': \"buddy you're a boy make a big noise playin' in the street gonna be a big man someday you got mud on your face you big disgrace kickin' your kind all over the place singin' we will we will rock you we will we will rock you buddy you're a young man hard man shouting in the street gonna take on the world some day you got blood on your face you big disgrace waving your banner all over the place we will we will rock you (sing it ah) we will we will rock you buddy you're an old man poor man pleading with your eyes gonna make you some peace some day you got mud on your face big disgrace somebody better put you back into your place we will we will rock you sing it hmm we will we will rock you everybody we will we will rock you uh we will we will rock you alright\",\n", " 'original_lyrics': \"\\n\\nBuddy, you're a boy, make a big noise\\nPlayin' in the street, gonna be a big man someday\\nYou got mud on your face\\nYou big disgrace\\nKickin' your kind all over the place\\n\\nSingin'\\nWe will, we will rock you\\nWe will, we will rock you\\n\\nBuddy, you're a young man, hard man\\nShouting in the street, gonna take on the world some day\\nYou got blood on your face\\nYou big disgrace\\nWaving your banner all over the place\\n\\nWe will, we will rock you (Sing it, ah)\\nWe will, we will rock you\\n\\nBuddy, you're an old man, poor man\\nPleading with your eyes, gonna make you some peace some day\\nYou got mud on your face\\nBig disgrace\\nSomebody better put you back into your place\\n\\nWe will, we will rock you\\nSing it!\\nHmm, we will, we will rock you\\nEverybody, we will, we will rock you\\nUh, we will, we will rock you\\nAlright\\n\\n\"},\n", " {'_id': 1999367,\n", " 'lyrics': \"buddy you're a boy make a big noise playin' in the street gonna be a big man someday you got mud on your face you big disgrace kickin' your kind all over the place singin' we will we will rock you we will we will rock you buddy you're a young man hard man shouting in the street gonna take on the world some day you got blood on your face you big disgrace waving your banner all over the place we will we will rock you (sing it ah) we will we will rock you buddy you're an old man poor man pleading with your eyes gonna make you some peace some day you got mud on your face big disgrace somebody better put you back into your place we will we will rock you sing it hmm we will we will rock you everybody we will we will rock you uh we will we will rock you alright\",\n", " 'original_lyrics': \"\\n\\nBuddy, you're a boy, make a big noise\\nPlayin' in the street, gonna be a big man someday\\nYou got mud on your face\\nYou big disgrace\\nKickin' your kind all over the place\\n\\nSingin'\\nWe will, we will rock you\\nWe will, we will rock you\\n\\nBuddy, you're a young man, hard man\\nShouting in the street, gonna take on the world some day\\nYou got blood on your face\\nYou big disgrace\\nWaving your banner all over the place\\n\\nWe will, we will rock you (Sing it, ah)\\nWe will, we will rock you\\n\\nBuddy, you're an old man, poor man\\nPleading with your eyes, gonna make you some peace some day\\nYou got mud on your face\\nBig disgrace\\nSomebody better put you back into your place\\n\\nWe will, we will rock you\\nSing it!\\nHmm, we will, we will rock you\\nEverybody, we will, we will rock you\\nUh, we will, we will rock you\\nAlright\\n\\n\"},\n", " {'_id': 1674035,\n", " 'lyrics': \"aah buddy you're a boy make a big noise playin' in the street gonna be a big man some day you got mud on yo' face you big disgrace kickin' your can all over the place singin' we will we will rock you we will we will rock you buddy you're a young man hard man shouting in the street gonna take on the world some day you got blood on yo' face you big disgrace wavin' your banner all over the place we will we will rock you sing it we will we will rock you buddy you're an old man poor man pleadin' with your eyes gonna make you some peace some day you got mud on your face big disgrace somebody betta put you back into your place we will we will rock you sing it we will we will rock you everybody we will we will rock you we will we will rock you alright\",\n", " 'original_lyrics': \"\\n\\nAah\\nBuddy you're a boy make a big noise\\nPlayin' in the street gonna be a big man some day\\nYou got mud on yo' face\\nYou big disgrace\\nKickin' your can all over the place\\nSingin'\\nWe will we will rock you\\nWe will we will rock you\\nBuddy you're a young man hard man\\nShouting in the street gonna take on the world some day\\nYou got blood on yo' face\\nYou big disgrace\\nWavin' your banner all over the place\\nWe will we will rock you\\nSing it\\nWe will we will rock you\\nBuddy you're an old man poor man\\nPleadin' with your eyes gonna make\\nYou some peace some day\\nYou got mud on your face\\nBig disgrace\\nSomebody betta put you back into your place\\nWe will we will rock you\\nSing it\\nWe will we will rock you\\nEverybody\\nWe will we will rock you\\nWe will we will rock you\\nAlright\\n\\n\"},\n", " {'_id': 1940954,\n", " 'lyrics': \"buddy you're a boy make a big noise playin' in the street gonna be a big man someday you got mud on your face you big disgrace kickin' your kind all over the place singin' we will we will rock you we will we will rock you buddy you're a young man hard man shouting in the street gonna take on the world some day you got blood on your face you big disgrace waving your banner all over the place we will we will rock you (sing it ah) we will we will rock you buddy you're an old man poor man pleading with your eyes gonna make you some peace some day you got mud on your face big disgrace somebody better put you back into your place we will we will rock you sing it hmm we will we will rock you everybody we will we will rock you uh we will we will rock you alright\",\n", " 'original_lyrics': \"\\n\\nBuddy, you're a boy, make a big noise\\nPlayin' in the street, gonna be a big man someday\\nYou got mud on your face\\nYou big disgrace\\nKickin' your kind all over the place\\n\\nSingin'\\nWe will, we will rock you\\nWe will, we will rock you\\n\\nBuddy, you're a young man, hard man\\nShouting in the street, gonna take on the world some day\\nYou got blood on your face\\nYou big disgrace\\nWaving your banner all over the place\\n\\nWe will, we will rock you (Sing it, ah)\\nWe will, we will rock you\\n\\nBuddy, you're an old man, poor man\\nPleading with your eyes, gonna make you some peace some day\\nYou got mud on your face\\nBig disgrace\\nSomebody better put you back into your place\\n\\nWe will, we will rock you\\nSing it!\\nHmm, we will, we will rock you\\nEverybody, we will, we will rock you\\nUh, we will, we will rock you\\nAlright\\n\\n\"},\n", " {'_id': 2257782,\n", " 'lyrics': \"buddy you're a boy make a big noise playin' in the streets gonna' be a big man some day you got mud on yo' face you big disgrace kickin' your can all over the place singin' we will we will rock you we will we will rock you buddy you're a young man hard man shoutin' in the street gonna' take on the world some day you got blood on yo' face you big disgrace wavin' your banner all over the place we will we will rock you singin' we will we will rock you buddy you're an old man poor man pleadin' with your eyes gonna' make you some peace some day you got mud on yo' face you big disgrace somebody better put you back into your place we will we will rock you singin' we will we will rock you everybody we will we will rock you we will we will rock you alright\",\n", " 'original_lyrics': \"\\n\\nBuddy you're a boy make a big noise\\nPlayin' in the streets gonna' be a big man some day\\nYou got mud on yo' face\\nYou big disgrace\\nKickin' your can all over the place\\nSingin'\\n\\nWe will, we will rock you\\nWe will, we will rock you\\n\\nBuddy you're a young man hard man\\nShoutin' in the street gonna' take on the world some day\\nYou got blood on yo' face\\nYou big disgrace\\nWavin' your banner all over the place\\n\\nWe will, we will rock you\\nSingin'\\nWe will, we will rock you\\n\\nBuddy you're an old man poor man\\nPleadin' with your eyes gonna' make you some peace some day\\nYou got mud on yo' face\\nYou big disgrace\\nSomebody better put you back into your place\\n\\nWe will, we will rock you\\nSingin'\\nWe will, we will rock you\\nEverybody\\nWe will, we will rock you\\nWe will, we will rock you\\nAlright\\n\\n\"},\n", " {'_id': 308843,\n", " 'lyrics': \"so sad her eyes smiling dark eyes so sad her eyes as it began on such a breathless night as this upon my brow the lightest kiss i walked alone and all around the air did say my lady soon will stir this way in sorrow known the white queen walks and the night grows pale stars of lovingness in her hair needing - unheard pleading - one word so sad my eyes she cannot see how did thee fare what have thee seen the mother of the willow green i call her name and 'neath her window have i stayed i loved the footsteps that she made and when she came white queen how my heart did ache and dry my lips no word would make so still i wait my goddess hear my darkest fear i speak too late it's for evermore that i wait dear friend goodbye no tear in my eyes so sad it ends as it began\",\n", " 'original_lyrics': \"\\n\\n[Chorus 1]\\nSo sad her eyes\\nSmiling dark eyes\\nSo sad her eyes\\nAs it began\\n\\n[Verse 1]\\nOn such a breathless night as this\\nUpon my brow the lightest kiss\\nI walked alone\\nAnd all around the air did say\\nMy lady soon will stir this way\\nIn sorrow known\\nThe white queen walks and\\nThe night grows pale\\nStars of lovingness in her hair\\n\\n[Chorus 2]\\nNeeding - unheard\\nPleading - one word\\nSo sad my eyes\\nShe cannot see\\n\\n[Verse 2]\\nHow did thee fare, what have thee seen\\nThe mother of the willow green\\nI call her name\\nAnd 'neath her window have i stayed\\nI loved the footsteps that she made\\nAnd when she came\\nWhite queen how my heart did ache\\nAnd dry my lips no word would make\\nSo still i wait\\nMy goddess hear my darkest fear\\nI speak too late\\nIt's for evermore that i wait\\nDear friend goodbye\\nNo tear in my eyes\\nSo sad it ends\\nAs it began\\n\\n\"},\n", " {'_id': 2004176,\n", " 'lyrics': \"so sad her eyes smiling dark eyes so sad her eyes as it began on such a breathless night as this upon my brow the lightest kiss i walked alone and all around the air did say my lady soon will stir this way in sorrow known the white queen walks and the night grows pale stars of lovingness in her hair heeding unheard pleading one word so sad her eyes she cannot see how did thee fare what have thee seen the mother of the willow green i call her name and 'neath her window have i stayed i loved the footsteps that she made and when she came white queen how my heart did ache and dry my lips no words could make so still i wait my goddess hear my darkest fear i speak too late it's forevermore that i wait dear friend goodbye no tears in my eyes so sad it ends as it began\",\n", " 'original_lyrics': \"\\n\\nSo sad her eyes\\nSmiling dark eyes\\nSo sad her eyes\\nAs it began\\n\\nOn such a breathless night as this\\nUpon my brow the lightest kiss\\nI walked alone\\nAnd all around the air did say\\nMy lady soon will stir this way\\nIn sorrow known\\n\\nThe white queen walks\\nAnd the night grows pale\\nStars of lovingness in her hair\\n\\nHeeding unheard\\nPleading one word\\nSo sad her eyes\\nShe cannot see\\n\\nHow did thee fare what have thee seen\\nThe mother of the willow green\\nI call her name\\nAnd 'neath her window have I stayed\\nI loved the footsteps that she made\\nAnd when she came\\n\\nWhite queen how my heart did ache\\nAnd dry my lips no words could make\\nSo still I wait\\n\\nMy goddess hear my darkest fear\\nI speak too late\\nIt's forevermore that I wait\\nDear friend goodbye\\nNo tears in my eyes\\nSo sad it ends as it began\\n\\n\"},\n", " {'_id': 1959261,\n", " 'lyrics': \"so sad her eyes smiling dark eyes so sad her eyes as it began on such a breathless night as this upon my brow the lightest kiss i walked alone and all around the air did say my lady soon will stir this way in sorrow known the white queen walks and the night grows pale stars of lovingness in her hair heeding unheard pleading one word so sad her eyes she cannot see how did thee fare what have thee seen the mother of the willow green i call her name and 'neath her window have i stayed i loved the footsteps that she made and when she came white queen how my heart did ache and dry my lips no words could make so still i wait my goddess hear my darkest fear i speak too late it's forevermore that i wait dear friend goodbye no tears in my eyes so sad it ends as it began\",\n", " 'original_lyrics': \"\\n\\nSo sad her eyes\\nSmiling dark eyes\\nSo sad her eyes\\nAs it began\\n\\nOn such a breathless night as this\\nUpon my brow the lightest kiss\\nI walked alone\\nAnd all around the air did say\\nMy lady soon will stir this way\\nIn sorrow known\\n\\nThe white queen walks\\nAnd the night grows pale\\nStars of lovingness in her hair\\n\\nHeeding unheard\\nPleading one word\\nSo sad her eyes\\nShe cannot see\\n\\nHow did thee fare what have thee seen\\nThe mother of the willow green\\nI call her name\\nAnd 'neath her window have I stayed\\nI loved the footsteps that she made\\nAnd when she came\\n\\nWhite queen how my heart did ache\\nAnd dry my lips no words could make\\nSo still I wait\\n\\nMy goddess hear my darkest fear\\nI speak too late\\nIt's forevermore that I wait\\nDear friend goodbye\\nNo tears in my eyes\\nSo sad it ends as it began\\n\\n\"},\n", " {'_id': 2000772,\n", " 'lyrics': \"so sad her eyes smiling dark eyes so sad her eyes as it began on such a breathless night as this upon my brow the lightest kiss i walked alone and all around the air did say my lady soon will stir this way in sorrow known the white queen walks and the night grows pale stars of lovingness in her hair heeding unheard pleading one word so sad her eyes she cannot see how did thee fare what have thee seen the mother of the willow green i call her name and 'neath her window have i stayed i loved the footsteps that she made and when she came white queen how my heart did ache and dry my lips no words could make so still i wait my goddess hear my darkest fear i speak too late it's forevermore that i wait dear friend goodbye no tears in my eyes so sad it ends as it began\",\n", " 'original_lyrics': \"\\n\\nSo sad her eyes\\nSmiling dark eyes\\nSo sad her eyes\\nAs it began\\n\\nOn such a breathless night as this\\nUpon my brow the lightest kiss\\nI walked alone\\nAnd all around the air did say\\nMy lady soon will stir this way\\nIn sorrow known\\n\\nThe white queen walks\\nAnd the night grows pale\\nStars of lovingness in her hair\\n\\nHeeding unheard\\nPleading one word\\nSo sad her eyes\\nShe cannot see\\n\\nHow did thee fare what have thee seen\\nThe mother of the willow green\\nI call her name\\nAnd 'neath her window have I stayed\\nI loved the footsteps that she made\\nAnd when she came\\n\\nWhite queen how my heart did ache\\nAnd dry my lips no words could make\\nSo still I wait\\n\\nMy goddess hear my darkest fear\\nI speak too late\\nIt's forevermore that I wait\\nDear friend goodbye\\nNo tears in my eyes\\nSo sad it ends as it began\\n\\n\"},\n", " {'_id': 309013,\n", " 'lyrics': \"i make it half past six you come at seven always try to keep me hanging round you little spoilt thing girl you kept me waiting never contemplating my point of view this comes as no surprise i'm a fool for i believed your lies but now i've seen through your disguise who needs well i don't need who needs you oh i believed you went on my knees to you how i trusted you but you turned me down but it's dog eat dog in this rat race and it leaves you bleeding lying flat on your face reaching out reaching out for a helping hand where is that helping hand oh muchachos i like it i like it well i don't need you how i was pushed around don't let it get you down you walked all over me but don't you ever give in taking one step forward slipping two steps back there's an empty feeling that you can't forget reaching out for a helping hand when i met you you were always charming couldn't sleep at night 'till you were mine you were oh so so sophisticated never interested in what i'd say i had to swallow my pride so naive you took me for a ride but now i'm the one to decide who needs well i don't need who needs you\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nI make it half past six you come at seven\\nAlways try to keep me hanging round\\nYou little spoilt thing girl you kept me waiting\\nNever contemplating my point of view\\nThis comes as no surprise\\nI'm a fool for I believed your lies\\nBut now I've seen through your disguise\\nWho needs well I don't need who needs you?\\n\\n[Chorus 1]\\nOh I believed you\\nWent on my knees to you\\nHow I trusted you\\nBut you turned me down\\nBut it's dog eat dog in this rat race\\nAnd it leaves you bleeding lying flat on your face\\nReaching out reaching out for a helping hand\\nWhere is that helping hand?\\n\\nOh muchachos\\nI like it I like it\\nWell I don't need you\\n\\n[Chorus 2]\\nHow I was pushed around\\nDon't let it get you down\\nYou walked all over me\\nBut don't you ever give in\\nTaking one step forward slipping two steps back\\nThere's an empty feeling that you can't forget\\nReaching out for a helping hand\\n\\n[Verse 2]\\nWhen I met you you were always charming\\nCouldn't sleep at night 'till you were mine\\nYou were oh so so sophisticated\\nNever interested in what I'd say\\nI had to swallow my pride\\nSo naive you took me for a ride\\nBut now I'm the one to decide\\nWho needs well I don't need who needs you?\\n\\n\"},\n", " {'_id': 309673,\n", " 'lyrics': \"there's no time for us there's no place for us what is this thing that builds our dreams yet slips away from us who wants to live forever who wants to live forever there's no chance for us it's all decided for us this world has only one sweet moment set aside for us who wants to live forever who wants to live forever who dares to love forever when love must die but touch my tears with your lips touch my world with your fingertips and we can have forever and we can love forever forever is our today who wants to live forever who wants to live forever forever is our today who waits forever anyway\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nThere's no time for us\\nThere's no place for us\\nWhat is this thing that builds our dreams, yet slips away from us\\nWho wants to live forever\\nWho wants to live forever?\\nThere's no chance for us\\nIt's all decided for us\\nThis world has only one sweet moment set aside for us\\n\\nWho wants to live forever\\nWho wants to live forever\\nWho dares to love forever\\nWhen love must die\\n\\n[Verse 2]\\nBut touch my tears with your lips\\nTouch my world with your fingertips\\nAnd we can have forever\\nAnd we can love forever\\nForever is our today\\nWho wants to live forever\\nWho wants to live forever\\nForever is our today\\nWho waits forever anyway?\\n\\n\"},\n", " {'_id': 2062295,\n", " 'lyrics': 'throw down your hat kick off your shoes i know you ain\\'t goin\\' anywhere run \\'round the town singin\\' your blues i know you ain\\'t goin\\' anywhere you\\'ve always been a good friend of mine but you\\'re always sayin\\' \"farewell\" and the only time that you\\'re satisfied is with your feet in the wishing well throw down your gun you might shoot yourself or is that what you\\'re tryin\\' to do put up a fight you believe to be right and someday the sun will shine through you\\'ve always got something to hide something you just can\\'t tell and the only time that you\\'re satisfied is with your feet in the wishing well and i know what you\\'re wishing for time in a peaceful world time in a peaceful world time in a peaceful world time in a peaceful world you\\'ve always been a good friend of mine but you\\'re always sayin\\' \"farewell\" and the only time that you\\'re satisfied is with your feet in the wishing well',\n", " 'original_lyrics': '\\n\\nThrow down your hat, kick off your shoes\\nI know you ain\\'t goin\\' anywhere\\nRun \\'round the town singin\\' your blues\\nI know you ain\\'t goin\\' anywhere\\n\\nYou\\'ve always been a good friend of mine\\nBut you\\'re always sayin\\' \"Farewell\"\\nAnd the only time that you\\'re satisfied\\nIs with your feet in the wishing well\\n\\nThrow down your gun, you might shoot yourself...\\nOr is that what you\\'re tryin\\' to do?\\nPut up a fight you believe to be right\\nAnd someday the sun will shine through\\n\\nYou\\'ve always got something to hide\\nSomething you just can\\'t tell\\nAnd the only time that you\\'re satisfied\\nIs with your feet in the wishing well\\n\\nAnd I know what you\\'re wishing for\\nTime in a peaceful world\\nTime in a peaceful world\\nTime in a peaceful world\\nTime in a peaceful world\\n\\nYou\\'ve always been a good friend of mine\\nBut you\\'re always sayin\\' \"Farewell\"\\nAnd the only time that you\\'re satisfied\\nIs with your feet in the wishing well\\n\\n'},\n", " {'_id': 310187,\n", " 'lyrics': \"you don't fool me you don't fool me you don't fool me you don't fool me you don't fool me you don't fool me those pretty eyes that sexy smile you don't fool me uh you don't rule me you're no surprise you're telling lies hey you don't fool me mmm mama said be careful of that girl mama said you know that she's no good mama said be cool don't you be no fool yup bup ba ba ba ba da da da dah you don't fool me you don't fool me you don't fool me she'll take you you don't fool me and break you you don't fool me and break you sooner or later you'll be playing by her rules baby you don't fool me yeah you don't fool me you don't have to say don't mind you don't have to teach me things i know sooner or later you'll be playing by her rules oh (fool you) oh (rule you) she'll take you (take you) and break you (break you) yeah mama said be cool mama said she'll take you for a fool she'll take you and break you ba ba ba ba ba bah bah bah da da dah dah dah na na na na nah na na na nah na na nah ah you don't fool me you don't fool me na na na na nah (you don't fool me you don't fool me) na na na nah (you don't fool me you don't fool me) na na nah ah (you don't fool me you don't fool me)\",\n", " 'original_lyrics': \"\\n\\n[Chorus][x2]\\nYou don't fool me, you don't fool me\\nYou don't fool me, you don't fool me\\nYou don't fool me\\n\\n[Verse 1]\\nYou don't fool me, those pretty eyes\\nThat sexy smile, you don't fool me, uh\\nYou don't rule me, you're no surprise\\nYou're telling lies, hey, you don't fool me\\nMmm, mama said be careful of that girl\\nMama said you know that she's no good\\nMama said be cool, don't you be no fool\\nYup bup ba ba ba ba da da da dah\\n\\n[Chorus]\\nYou don't fool me\\nYou don't fool me\\nYou don't fool me, she'll take you\\nYou don't fool me, and break you\\nYou don't fool me, and break you\\nSooner or later you'll be playing by her rules\\n\\n[Guitar Solo]\\n\\n[Bridge]\\nBaby you don't fool me, yeah\\n\\n[Verse 2]\\nYou don't fool me, you don't have to say don't mind\\nYou don't have to teach me things I know\\nSooner or later you'll be playing by her rules\\nOh (fool you) oh (rule you) she'll take you (take you)\\nAnd break you (break you)\\nYeah\\n\\n[Bridge]\\nMama said be cool\\nMama said she'll take you for a fool\\nShe'll take you and break you\\nBa ba ba ba ba bah bah bah da da dah dah dah\\n\\n[Chorus][x3]\\nNa na na na nah\\nNa na na nah\\nNa na nah ah\\nYou don't fool me, you don't fool me\\nNa na na na nah (you don't fool me, you don't fool me)\\nNa na na nah (you don't fool me, you don't fool me)\\nNa na nah ah (you don't fool me, you don't fool me)\\n\\n\"},\n", " {'_id': 276672,\n", " 'lyrics': \"{intro} ooh you make me live whatever this world can give to me it's you you're all i see ooh you make me live now honey ooh you make me live ooh you're the best friend that i ever had i've been with you such a long time you're my sunshine and i want you to know that my feelings are true i really love you oh you're my best friend ooh you make me live ooh i've been wandering round but i still come back to you in rain or shine you've stood by me girl i'm happy at home you're my best friend ooh you make me live whenever this world is cruel to me i got you to help me forgive ooh you make me live now honey ooh you make me live you're the first one when things turn out bad you know i'll never be lonely you're my only one and i love the things i really love the things that you do ooh you're my best friend ooh you make me live {bridge} i'm happy at home you're my best friend oh you're my best friend ooh you make me live you're my best friend {outro}\",\n", " 'original_lyrics': \"\\n\\n{Intro}\\n\\nOoh you make me live\\nWhatever this world can give to me\\nIt's you you're all I see\\nOoh you make me live now honey\\nOoh you make me live\\n\\nOoh you're the best friend that I ever had\\nI've been with you such a long time\\nYou're my sunshine and I want you to know\\nThat my feelings are true\\nI really love you\\nOh you're my best friend\\n\\nOoh you make me live\\n\\nOoh I've been wandering round\\nBut I still come back to you\\nIn rain or shine\\nYou've stood by me girl\\nI'm happy at home\\nYou're my best friend\\n\\nOoh you make me live\\nWhenever this world is cruel to me\\nI got you to help me forgive\\nOoh you make me live now honey\\nOoh you make me live\\n\\nYou're the first one\\nWhen things turn out bad\\nYou know I'll never be lonely\\nYou're my only one\\nAnd I love the things\\nI really love the things that you do\\nOoh you're my best friend\\n\\nOoh you make me live\\n\\n{Bridge}\\n\\nI'm happy at home\\nYou're my best friend\\nOh you're my best friend\\nOoh you make me live\\nYou're my best friend\\n\\n{Outro}\\n\\n\"},\n", " {'_id': 1052870,\n", " 'lyrics': \"you don't like crazy music you don't like rockin' you just wanna go to a movie show sit there holdin' hands you're so square baby i don't care i don't care why my heart blips i only know it does i only wanna love you baby i guess it's just because you're so square baby i don't care you don't even know any dance steps but i do i only know why i love you and i do i do a do a do a do you don't like crazy music don't like rockin' baby you just wanna go to a movie show sit there holdin' hands you're so square baby i don't care baby i don't care baby i don't care hey\",\n", " 'original_lyrics': \"\\n\\nYou don't like crazy music\\nYou don't like rockin'\\nYou just wanna go to a movie show\\nSit there, holdin' hands\\nYou're so square\\nBaby I don't care\\nI don't care why my heart blips\\nI only know it does\\nI only wanna love you, baby\\nI guess it's just because\\nYou're so square\\nBaby I don't care\\nYou don't even know any dance steps\\nBut I do\\nI only know why I love you\\nAnd I do, I do, a do, a do, a do\\nYou don't like crazy music\\nDon't like rockin', baby\\nYou just wanna go to a movie show\\nSit there holdin' hands\\nYou're so square\\nBaby I don't care\\nBaby I don't care\\nBaby I don't care, hey\\n\\n\"},\n", " {'_id': 1980554,\n", " 'lyrics': \"you don't like crazy music you don't like rockin' bands you just wanna go to a movie show and sit there holdin' hands you're so square baby i don't care i don't care why my heart flips i only know it does i only wonder why i love you baby i guess it's just because you're so square baby i don't care you don't know any dances that are new but no one else could love me like you do do do do you don't like crazy music you don't like rockin' bands you just wanna go to a movie show and sit there holdin' hands you're so square baby i don't care baby i don't care baby i don't care\",\n", " 'original_lyrics': \"\\n\\nYou don't like crazy music\\nYou don't like rockin' bands\\nYou just wanna go to a movie show\\nAnd sit there holdin' hands\\nYou're so square\\nBaby, I don't care\\n\\nI don't care why my heart flips\\nI only know it does\\nI only wonder why I love you, baby\\nI guess it's just because\\nYou're so square\\nBaby, I don't care\\n\\nYou don't know any dances that are new\\nBut no one else could love me like you do, do, do, do\\n\\nYou don't like crazy music\\nYou don't like rockin' bands\\nYou just wanna go to a movie show\\nAnd sit there holdin' hands\\nYou're so square\\nBaby, I don't care\\n\\nBaby, I don't care\\n\\nBaby, I don't care\\n\\n\"},\n", " {'_id': 308980,\n", " 'lyrics': \"look into my eyes and you'll see i'm the only one you've captured my love stolen my heart changed my life every time you make a move you destroy my mind and the way you touch i lose control and shiver deep inside you take my breath away you can reduce me to tears with a single sigh every breath that you take any sound that you make is a whisper in my ear i could give up all my life for just one kiss i would surely die if you dismiss me from your love you take my breath away so please don't go don't leave me here all by myself i get ever so lonely from time to time i will find you anywhere you go i'll be right behind you right until the ends of the earth i'll get no sleep till i find you to tell you that you just take my breath away i will find youetc i'll get no sleep until i find you to tell you when i've found you - i love you\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nLook into my eyes and you'll see\\nI'm the only one\\nYou've captured my love\\nStolen my heart\\nChanged my life\\nEvery time you make a move\\nYou destroy my mind\\nAnd the way you touch\\nI lose control and shiver deep inside\\nYou take my breath away\\n\\nYou can reduce me to tears\\nWith a single sigh\\nEvery breath that you take\\nAny sound that you make\\nIs a whisper in my ear\\nI could give up all my life for just one kiss\\nI would surely die\\nIf you dismiss me from your love\\nYou take my breath away\\n\\nSo please don't go\\nDon't leave me here all by myself\\nI get ever so lonely from time to time\\nI will find you\\nAnywhere you go, I'll be right behind you\\nRight until the ends of the earth\\nI'll get no sleep till I find you to tell you\\nThat you just take my breath\\nAway\\n\\nI will find you...etc\\nI'll get no sleep until I find you to\\nTell you when I've found you -\\nI love you\\n\\n\"},\n", " {'_id': 308860,\n", " 'lyrics': \"there's no living in my life anymore the seas have gone dry and the rain stopped falling please don't you cry anymore can't you see listen to the breeze whisper to me please don't send me to the path of nevermore even the valleys below where the rays of the sun were so warn and tender now i haven't anything to grow can't you see why did you have to leave me why did you deceive me you send me to the path of nevermore when you say you didn't love me anymore nevermore nevermore\",\n", " 'original_lyrics': \"\\n\\n[Verse 1]\\nThere's no living in my life anymore\\nThe seas have gone dry and the rain stopped falling\\nPlease don't you cry anymore\\nCan't you see?\\nListen to the breeze, whisper to me please\\nDon't send me to the path of nevermore\\n\\n[Verse 2]\\nEven the valleys below\\nWhere the rays of the sun were so warn and tender\\nNow I haven't anything to grow\\nCan't you see?\\nWhy did you have to leave me?\\nWhy did you deceive me?\\nYou send me to the path of nevermore\\nWhen you say you didn't love me anymore\\nNevermore\\nNevermore\\n\\n\"},\n", " {'_id': 3341234,\n", " 'lyrics': \"friends will be friends friends will be friends friends will be friends friends will be friends friends will be friends another red letter day so the pound has dropped and the children are creating the other half ran away taking all the cash and leaving you with the lumber got a pain in the chest doctor's on strike what you need is a rest it's not easy love but you've got friends you can trust friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hands because friends will be friends right till the end now it's a beautiful day the postman delivered a letter from your lover only a phone call away you tried to track him down but somebody stole his number as a matter of fact you're getting used to life without him in your way it's so easy love because you got friends you can trust friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hands because friends will be friends right till the end it's so easy love because you got friends you can trust friends will be friends when you're in need of love they give you care and attention friends will be friends when you're through with life and all hope is lost hold out your hands because right till the end friends will be friends\",\n", " 'original_lyrics': \"\\n\\nFriends will be friends\\nFriends will be friends\\n\\nFriends will be friends\\nFriends will be friends\\n\\nFriends will be friends\\n\\nAnother red letter day\\nSo the pound has dropped and the children are creating\\nThe other half ran away\\nTaking all the cash and leaving you with the lumber\\nGot a pain in the chest\\nDoctor's on strike what you need is a rest\\n\\nIt's not easy love but you've got friends you can trust\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hands because friends will be friends right till the end\\n\\nNow it's a beautiful day\\nThe postman delivered a letter from your lover\\nOnly a phone call away\\nYou tried to track him down but somebody stole his number\\nAs a matter of fact\\nYou're getting used to life without him in your way\\n\\nIt's so easy love because you got friends you can trust\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hands because friends will be friends right till the end\\n\\nIt's so easy love because you got friends you can trust\\nFriends will be friends\\nWhen you're in need of love they give you care and attention\\nFriends will be friends\\nWhen you're through with life and all hope is lost\\nHold out your hands because right till the end\\nFriends will be friends\\n\\n\"}]" ] }, "execution_count": 429, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(genius_tracks.find({'primary_artist.id': this_artist_genius_id,\n", " 'lyrics': {'$exists': True}}, ['lyrics', 'original_lyrics']))" ] }, { "cell_type": "code", "execution_count": 430, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 430, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tracks.update_many({'artist_id': this_artist_id, 'lyrics': ''}, {'$unset': {'lyrics': ''}})" ] }, { "cell_type": "code", "execution_count": 431, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'_id': '3doVdGo0NrKWDuiAUiWyCY',\n", " 'lyrics': \"you and me we are destined you'll agree to spend the rest of our lives with each other the rest of our days like two lovers for ever yeah for ever my bijou\"}" ] }, "execution_count": 431, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tracks.find_one({'artist_id': this_artist_id, 'lyrics': {'$exists': True}}, ['lyrics'])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Sentiment analysis\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": 432, "metadata": { "scrolled": true }, "outputs": [], "source": [ "for t in tracks.find({'artist_id': this_artist_id, \n", " 'lyrics': {'$exists': True}}, \n", " ['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": 378, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "dict_keys(['id', 'valence', 'track_number', 'artist_id', '_id', 'uri', 'ignore', 'tempo', 'original_lyrics', 'ctitle', 'preview_url', 'lyrics', 'loudness', 'album_id', 'sentiment', 'disc_number', 'artists', 'popularity', 'energy', 'type', 'available_markets', 'analysis_url', 'album', 'liveness', 'mode', 'key', 'artist_name', 'acousticness', 'lyrical_density', 'track_href', 'time_signature', 'external_ids', 'name', 'explicit', 'danceability', 'speechiness', 'duration_ms', 'external_urls', 'instrumentalness', 'href'])" ] }, "execution_count": 378, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tracks.find_one({'artist_id': this_artist_id, 'sentiment': {'$exists': True}}).keys()" ] }, { "cell_type": "code", "execution_count": 433, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "{'_id': '3doVdGo0NrKWDuiAUiWyCY',\n", " 'acousticness': 0.93,\n", " 'album': {'album_type': 'album',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'external_urls': {'spotify': 'https://open.spotify.com/album/5kffKW0sSLo6tkLg1veUGC'},\n", " 'href': 'https://api.spotify.com/v1/albums/5kffKW0sSLo6tkLg1veUGC',\n", " 'id': '5kffKW0sSLo6tkLg1veUGC',\n", " 'images': [{'height': 640,\n", " 'url': 'https://i.scdn.co/image/cba1a22ac5719b187564a82397cd088cdc543fcd',\n", " 'width': 640},\n", " {'height': 300,\n", " 'url': 'https://i.scdn.co/image/02590cce6bff83b16bddaf92311f1aef1a41b375',\n", " 'width': 300},\n", " {'height': 64,\n", " 'url': 'https://i.scdn.co/image/2cf0ff359ec65c4adb0bc57aa14b0ec44e22589f',\n", " 'width': 64}],\n", " 'name': 'Innuendo (2011 Remaster)',\n", " 'type': 'album',\n", " 'uri': 'spotify:album:5kffKW0sSLo6tkLg1veUGC'},\n", " 'album_id': '5kffKW0sSLo6tkLg1veUGC',\n", " 'analysis_url': 'https://api.spotify.com/v1/audio-analysis/3doVdGo0NrKWDuiAUiWyCY',\n", " 'artist_id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'artist_name': 'Queen',\n", " 'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d'},\n", " 'href': 'https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d',\n", " 'id': '1dfeR4HaWDbWqFHLkxsg1d',\n", " 'name': 'Queen',\n", " 'type': 'artist',\n", " 'uri': 'spotify:artist:1dfeR4HaWDbWqFHLkxsg1d'}],\n", " 'available_markets': ['AD',\n", " 'AR',\n", " 'AT',\n", " 'AU',\n", " 'BE',\n", " 'BG',\n", " 'BO',\n", " 'BR',\n", " 'CH',\n", " 'CL',\n", " 'CO',\n", " 'CR',\n", " 'CY',\n", " 'CZ',\n", " 'DE',\n", " 'DK',\n", " 'DO',\n", " 'EC',\n", " 'EE',\n", " 'ES',\n", " 'FI',\n", " 'FR',\n", " 'GB',\n", " 'GR',\n", " 'GT',\n", " 'HK',\n", " 'HN',\n", " 'HU',\n", " 'ID',\n", " 'IE',\n", " 'IS',\n", " 'IT',\n", " 'JP',\n", " 'LI',\n", " 'LT',\n", " 'LU',\n", " 'LV',\n", " 'MC',\n", " 'MT',\n", " 'MY',\n", " 'NI',\n", " 'NL',\n", " 'NO',\n", " 'NZ',\n", " 'PA',\n", " 'PE',\n", " 'PH',\n", " 'PL',\n", " 'PT',\n", " 'PY',\n", " 'SE',\n", " 'SG',\n", " 'SK',\n", " 'SV',\n", " 'TH',\n", " 'TR',\n", " 'TW',\n", " 'UY',\n", " 'VN'],\n", " 'ctitle': 'bijou',\n", " 'danceability': 0.229,\n", " 'disc_number': 1,\n", " 'duration_ms': 216867,\n", " 'energy': 0.389,\n", " 'explicit': False,\n", " 'external_ids': {'isrc': 'GBUM71106220'},\n", " 'external_urls': {'spotify': 'https://open.spotify.com/track/3doVdGo0NrKWDuiAUiWyCY'},\n", " 'href': 'https://api.spotify.com/v1/tracks/3doVdGo0NrKWDuiAUiWyCY',\n", " 'id': '3doVdGo0NrKWDuiAUiWyCY',\n", " 'instrumentalness': 0.429,\n", " 'key': 2,\n", " 'liveness': 0.353,\n", " 'loudness': -9.766,\n", " 'lyrical_density': 0.15216699636182546,\n", " 'lyrics': \"you and me we are destined you'll agree to spend the rest of our lives with each other the rest of our days like two lovers for ever yeah for ever my bijou\",\n", " 'mode': 0,\n", " 'name': 'Bijou',\n", " 'original_lyrics': \"\\n\\n[Verse]\\nYou and me we are destined you'll agree\\nTo spend the rest of our lives with each other\\nThe rest of our days like two lovers\\nFor ever\\nYeah\\nFor ever\\n\\n[Outro]\\nMy bijou\\n\\n\",\n", " 'popularity': 35,\n", " 'preview_url': None,\n", " 'sentiment': {'label': 'neutral',\n", " 'probability': {'neg': 0.24744713364651594,\n", " 'neutral': 0.6893268362245434,\n", " 'pos': 0.7525528663534841}},\n", " 'speechiness': 0.0376,\n", " 'tempo': 72.735,\n", " 'time_signature': 4,\n", " 'track_href': 'https://api.spotify.com/v1/tracks/3doVdGo0NrKWDuiAUiWyCY',\n", " 'track_number': 11,\n", " 'type': 'audio_features',\n", " 'uri': 'spotify:track:3doVdGo0NrKWDuiAUiWyCY',\n", " 'valence': 0.0562}" ] }, "execution_count": 433, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tracks.find_one({'artist_id': this_artist_id, 'sentiment': {'$exists': True}})" ] }, { "cell_type": "code", "execution_count": 434, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(640, 49)" ] }, "execution_count": 434, "metadata": {}, "output_type": "execute_result" } ], "source": [ "(tracks.find({'artist_id': this_artist_id, 'sentiment': {'$exists': True}}).count(), \n", " tracks.find({'artist_id': this_artist_id, 'sentiment': {'$exists': False}}).count())" ] }, { "cell_type": "code", "execution_count": 435, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0" ] }, "execution_count": 435, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tracks.find({'artist_id': this_artist_id, 'sentiment': {'$exists': False}, 'lyrics': {'$exists': True}}).count()" ] }, { "cell_type": "code", "execution_count": 436, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
" ], "text/plain": [ "Empty DataFrame\n", "Columns: []\n", "Index: []" ] }, "execution_count": 436, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pd.DataFrame(list(tracks.find({'artist_id': this_artist_id, \n", " 'sentiment': {'$exists': False}, \n", " 'lyrics': {'$exists': True}}, \n", " ['name', 'artist_name', 'lyrics'])))" ] }, { "cell_type": "code", "execution_count": 383, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "[]" ] }, "execution_count": 383, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(tracks.find({'artist_id': this_artist_id, \n", " 'sentiment': {'$exists': False},\n", " 'lyrics': {'$exists': True}}, \n", " ['name', 'artist_name', 'lyrics', 'original_lyrics']))" ] }, { "cell_type": "code", "execution_count": 384, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", "
" ], "text/plain": [ "Empty DataFrame\n", "Columns: []\n", "Index: []" ] }, "execution_count": 384, "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": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.5.3" } }, "nbformat": 4, "nbformat_minor": 1 }