import urllib import json def replacedict(keys,dbport): from utilities import getArtistInfo from htmlgenerators import clean, artistLink, artistLinks, trackLink, scrobblesTrackLink clean(keys) info = getArtistInfo(keys["artist"]) imgurl = info.get("image") #desc = info.get("info") response = urllib.request.urlopen("http://[::1]:" + str(dbport) + "/artistinfo?artist=" + urllib.parse.quote(keys["artist"])) db_data = json.loads(response.read()) scrobbles = str(db_data["scrobbles"]) pos = "#" + str(db_data["position"]) credited = db_data.get("replace") includestr = " " if credited is not None: includestr = "Competing under " + artistLink(credited) + " (" + pos + ")" pos = "" included = db_data.get("associated") if included is not None and included != []: includestr = "associated: " includestr += artistLinks(included) response = urllib.request.urlopen("http://[::1]:" + str(dbport) + "/charts/tracks?artist=" + urllib.parse.quote(keys["artist"])) db_data = json.loads(response.read()) if db_data["list"] != []: maxbar = db_data["list"][0]["scrobbles"] html = "
" + artistLinks(e["track"]["artists"]) + " | " html += "" + trackLink(e["track"]) + " | " html += "" + scrobblesTrackLink(e["track"],{},amount=e["scrobbles"]) + " | " html += "" + scrobblesTrackLink(e["track"],{},percent=e["scrobbles"]*100/maxbar) + " | " html += "