From c99434adc43b774ee7cfabc03fbb9242807f8c57 Mon Sep 17 00:00:00 2001 From: Hellow2 Date: Wed, 1 Feb 2023 09:13:30 +0100 Subject: [PATCH] added the fetching of the sources from ma regarding artists --- src/music_kraken/pages/encyclopaedia_metallum.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/music_kraken/pages/encyclopaedia_metallum.py b/src/music_kraken/pages/encyclopaedia_metallum.py index 31523b5..deadf24 100644 --- a/src/music_kraken/pages/encyclopaedia_metallum.py +++ b/src/music_kraken/pages/encyclopaedia_metallum.py @@ -288,6 +288,12 @@ class EncyclopaediaMetallum(Page): soup = BeautifulSoup(r.text, 'html.parser') artist_source = soup.find("div", {"id": "band_links_Official"}) + """ + TODO + add a Label object to add the label sources from + TODO + maybe do merchandice stuff + """ merchandice_source = soup.find("div", {"id": "band_links_Official_merchandise"}) label_source = soup.find("div", {"id": "band_links_Labels"})