This is a piece of code that we could integrate in a future checker enhancement that consists of checking the validity of the metadata URLs.
`from IPython.display import display
import requests
url="https://cera-www.dkrz.de/WDCC/ui/cerasearch/entry?acronym=LambWTyRSetAndGaleDaysOverTheNo"
try:
response = requests.get(url)
except:
print("Not a valid url!")
else:
if response.status_code != 200:
print("Not a valid url!")
else:
print('url is valid!')`