import re
html = open('sky_html.html', encoding='utf-8').read()
m = re.findall(r'https://apid.sky.it[^"\'\s<>]*', html)
print(set(m))
