mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-22 00:44:00 +01:00
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
# This file is part of Headphones.
|
|
#
|
|
# Headphones is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Headphones is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Headphones. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import re
|
|
import headphones
|
|
|
|
from headphones import db, helpers, logger, request
|
|
|
|
def update(artist_name,release_groups):
|
|
""" Pretty simple and crude function to find the artist page on metacritic,
|
|
then parse that page to get critic & user scores for albums"""
|
|
|
|
# First let's modify the artist name to fit the metacritic convention.
|
|
# We could just do a search, then take the top result, but at least this will
|
|
# cut down on api calls. If it's ineffective then we'll switch to search
|
|
|
|
replacements = {" & " : " "}
|
|
pattern = re.compile(r'\b(' + '|'.join(replacements.keys()) + r')\b')
|
|
mc_artist_name = pattern.sub(lambda x: replacements[x.group()], artist_name)
|
|
|
|
mc_artist_name = artist_name.lower().replace(" ","-")
|
|
|
|
url = "http://www.metacritic.com/person/" + mc_artist_name + "?filter-options=music&sort_options=date&num_items=100"
|
|
|
|
res = request.request_soup(url, parser='html.parser')
|
|
|
|
try:
|
|
rows = res.tbody.find_all('tr')
|
|
except:
|
|
logger.info("Unable to get metacritic scores for: %s" % artist_name)
|
|
return
|
|
|
|
myDB = db.DBConnection()
|
|
|
|
for row in rows:
|
|
title = row.a.string
|
|
for rg in release_groups:
|
|
if rg['title'].lower() == title.lower():
|
|
scores = row.find_all("span")
|
|
critic_score = scores[0].string
|
|
user_score = scores[1].string
|
|
controlValueDict = {"AlbumID": rg['id']}
|
|
newValueDict = {'CriticScore':critic_score,'UserScore':user_score}
|
|
myDB.upsert("albums", newValueDict, controlValueDict)
|
|
|
|
|
|
|