diff --git a/channels/eurostreaming_actor.py b/channels/eurostreaming_actor.py index f3ff7bb4..cdb4efa5 100644 --- a/channels/eurostreaming_actor.py +++ b/channels/eurostreaming_actor.py @@ -39,6 +39,7 @@ def peliculas(item): @support.scrape def episodios(item): + # debug = True data = support.match(item, headers=headers).data if 'clicca qui per aprire' in data.lower(): data = support.match(support.match(data, patron=r'"go_to":"([^"]+)"').match.replace('\\',''), headers=headers).data @@ -47,7 +48,7 @@ def episodios(item): data = support.match(support.match(data, patron=r'

').match, headers=headers).data patronBlock = r'tab-content(?P.*?)serie-player' - patron = r'value="(?Phttp.*?)".*?data.num..(?P\d+)x(?P\d+).*?>(?P.*?)<' + patron = r'data-link="(?P<url>http.*?)".*?data.num..(?P<season>\d+)x(?P<episode>\d+)" data-title="(?P<title>[^"]+)' return locals()