bugfix try catche request in musify
This commit is contained in:
parent
c79644d6a3
commit
5486f7f8d1
1
notes.md
1
notes.md
@ -1,4 +1,5 @@
|
|||||||
# TO DO
|
# TO DO
|
||||||
|
- LYRICS
|
||||||
- add complete search of musify (scraping of artist page etc.) as last resort
|
- add complete search of musify (scraping of artist page etc.) as last resort
|
||||||
- add a check if the songs truly are the same with non changebal attributes (length etc.)
|
- add a check if the songs truly are the same with non changebal attributes (length etc.)
|
||||||
- get additional ISRCs
|
- get additional ISRCs
|
||||||
|
@ -29,7 +29,10 @@ def get_musify_url(row):
|
|||||||
|
|
||||||
url = f"https://musify.club/search/suggestions?term={artists[0]} - {title}"
|
url = f"https://musify.club/search/suggestions?term={artists[0]} - {title}"
|
||||||
|
|
||||||
|
try:
|
||||||
r = session.get(url=url)
|
r = session.get(url=url)
|
||||||
|
except requests.exceptions.ConnectionError:
|
||||||
|
return None
|
||||||
if r.status_code == 200:
|
if r.status_code == 200:
|
||||||
autocomplete = r.json()
|
autocomplete = r.json()
|
||||||
for row in autocomplete:
|
for row in autocomplete:
|
||||||
|
Loading…
Reference in New Issue
Block a user