[^<]+)'
+ action = 'findvideos'
+ # debug = True
+ return locals()
+
+
+def search(item, text):
+ support.log('search', item)
+ item.contentType = 'tvshow'
+ itemlist = []
+ text = text.replace(' ', '+')
+ item.url = host + '/index.php?story=%s&do=search&subaction=search' % (text)
+ try:
+ return peliculas(item)
+ except:
+ import sys
+ for line in sys.exc_info():
+ log('search log:', line)
+ return []
+
+
+def findvideos(item):
+ logger.info("[guardaserie_live] findvideos")
+ return support.server(item, item.url)
\ No newline at end of file
diff --git a/channels/guardaserieIcu.json b/channels/guardaserieIcu.json
new file mode 100644
index 00000000..2c31f617
--- /dev/null
+++ b/channels/guardaserieIcu.json
@@ -0,0 +1,11 @@
+{
+ "id": "guardaserieIcu",
+ "name": "Guarda Serie Icu",
+ "language": ["ita", "sub-ita"],
+ "active": true,
+ "thumbnail": "https://raw.githubusercontent.com/32Dexter/DexterRepo/master/media/guarda_serie.jpg",
+ "banner": "",
+ "categories": ["tvshow"],
+ "not_active": ["include_in_newest"],
+ "settings": []
+}
diff --git a/channels/guardaserieIcu.py b/channels/guardaserieIcu.py
new file mode 100644
index 00000000..8eb1dc2e
--- /dev/null
+++ b/channels/guardaserieIcu.py
@@ -0,0 +1,59 @@
+# -*- coding: utf-8 -*-
+# ------------------------------------------------------------
+# Canale per 'Guarda_Serie'
+# By: Napster32
+# ------------------------------------------------------------
+# Rev: 0.0
+# Update 11-06-2020
+# fix:
+# 1. Emissione
+
+# possibilità di miglioramento: gestire le novità (sezione Ultimi episodi sul sito)
+
+from core.support import log
+from core import support
+from platformcode import config
+
+host = config.get_channel_url()
+headers = [['Referer', host]]
+
+list_servers = ['mixdrop,vudeo,doodstream,onlystream']
+list_quality = ['default']
+
+@support.menu
+def mainlist(item):
+ tvshow = ['/serie']
+ return locals()
+
+@support.scrape
+def peliculas(item):
+ patronBlock = r'movies-list movies-list-full(?P.*?)footer>'
+ patron = r'(?P
[^<]+).*?(?:rel="tag">(?P[0-9]{4}))?'
+ patronNext = '.*?href=.(.*?).>'
+ action = 'episodios'
+ return locals()
+
+@support.scrape
+def episodios(item):
+ patronBlock = r'Stagione (?P[0-9]+)(?P.*?)'
+ patron = r'\s*Episodio\s*(?P[0-9]+)'
+ return locals()
+
+def search(item, text):
+ log(text)
+ itemlist = []
+ text = text.replace(' ', '+')
+ item.url = host + "/?s=" + text
+ try:
+ item.args = 'search'
+ return peliculas(item)
+ except:
+ import sys
+ for line in sys.exc_info():
+ log("%s" % line)
+
+ return []
+
+def findvideos(item):
+ support.log('findvideos', item)
+ return support.server(item, headers=headers)
\ No newline at end of file