diff --git a/plugin.video.alfa/addon.xml b/plugin.video.alfa/addon.xml index 66f59ab0..7c563af2 100755 --- a/plugin.video.alfa/addon.xml +++ b/plugin.video.alfa/addon.xml @@ -1,5 +1,5 @@  - + @@ -9,16 +9,21 @@ Sumario en Español - Estos son los cambios para esta versión: - - mejortorrent - - plusdede - - allcalidad - - retocados iconos - - Nuevo canal: vernovelasonline - - Nuevo servidor: downace - - Nuevo servidor: gvideo - - cinetux: Cambio de estructura - - añadido textos para "spanish (mexico)", ya no debe salir los textos en inglés en algunas partes + [B]Estos son los cambios para esta versión:[/B][CR] + [COLOR green][B]Canales agregados y arreglos[/B][/COLOR] + [I]- Cinecalidad + - Cinefox + - Mundoflv + - Metaserie + - Pelisplanet + - flashx + - xTheatre + - Playpornx[/I][CR] + [COLOR green][B]Servidores agregados y arreglos[/B][/COLOR][CR] + [I]- Flashx + - Streamcherry[/I] + + Descripción en Español English summary diff --git a/plugin.video.alfa/channels/metaserie.py b/plugin.video.alfa/channels/metaserie.py old mode 100755 new mode 100644 index e0127bde..8008c81b --- a/plugin.video.alfa/channels/metaserie.py +++ b/plugin.video.alfa/channels/metaserie.py @@ -62,12 +62,9 @@ def todas(item): logger.info() itemlist = [] data = httptools.downloadpage(item.url).data - logger.debug(data) - - patron = '
[^<]' - patron += '[^<]' - patron += '
([^<]+)<.*?div>[^<]' - patron += '|\s{2,}', "", data) + patron = '
.*?.*?' + patron +='
(.*?)<.*?div>.*?
  • \s*\s*.*?<\/span>\s*<\/span>' + data = re.sub(r'"|\n|\r|\t| |
    |\s{2,}', "", data) + logger.debug(data) + patron = 'role=article>
    .*?src=(.*?) class' matches = re.compile(patron, re.DOTALL).findall(data) - for scrapedtitle, scrapedurl, scrapedthumbnail in matches: + for scrapedurl, scrapedtitle, scrapedthumbnail in matches: url = scrapedurl thumbnail = scrapedthumbnail title = scrapedtitle