import urllib.request
import re

url = "https://addictedbytheproject.nl/epg_general/assets/"
req = urllib.request.Request(url, headers={'User-Agent': 'Mozilla/5.0'})
html = urllib.request.urlopen(req).read().decode('utf-8')
links = re.findall(r'href="([^"]+)"', html)
for link in links:
    if link.startswith('?') or link.startswith('/'):
        continue
    print(link)
