- Fix Rinumerazione
- Fix SerieTVvOnline
This commit is contained in:
@@ -57,6 +57,7 @@ def mainlist(item):
|
|||||||
@support.scrape
|
@support.scrape
|
||||||
def peliculas(item):
|
def peliculas(item):
|
||||||
support.info()
|
support.info()
|
||||||
|
anime = True
|
||||||
|
|
||||||
blacklist = ['DMCA', 'Contatti', 'Attenzione NON FARTI OSCURARE', 'Lista Cartoni Animati e Anime']
|
blacklist = ['DMCA', 'Contatti', 'Attenzione NON FARTI OSCURARE', 'Lista Cartoni Animati e Anime']
|
||||||
patronBlock = r'<h1>.+?</h1>(?P<block>.*?)<div class="footer_c">'
|
patronBlock = r'<h1>.+?</h1>(?P<block>.*?)<div class="footer_c">'
|
||||||
@@ -106,6 +107,7 @@ def peliculas(item):
|
|||||||
@support.scrape
|
@support.scrape
|
||||||
def episodios(item):
|
def episodios(item):
|
||||||
support.info()
|
support.info()
|
||||||
|
anime = True
|
||||||
action = 'findvideos'
|
action = 'findvideos'
|
||||||
patronBlock = r'<table>(?P<block>.*)<\/table>'
|
patronBlock = r'<table>(?P<block>.*)<\/table>'
|
||||||
patron = r'<tr><td>(?P<title>.*?)?[ ](?:Parte)?(?P<episode>\d+x\d+|\d+)(?:|[ ]?(?P<title2>.+?)?(?:avi)?)<(?P<data>.*?)<\/td><tr>'
|
patron = r'<tr><td>(?P<title>.*?)?[ ](?:Parte)?(?P<episode>\d+x\d+|\d+)(?:|[ ]?(?P<title2>.+?)?(?:avi)?)<(?P<data>.*?)<\/td><tr>'
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
# --------------------------------------------------------------------------------
|
# --------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
from core import support
|
||||||
import xbmc, xbmcgui, re, base64, inspect, sys
|
import xbmc, xbmcgui, re, base64, inspect, sys
|
||||||
from core import jsontools, tmdb, scrapertools, filetools
|
from core import jsontools, tmdb, scrapertools, filetools
|
||||||
from core.item import Item
|
from core.item import Item
|
||||||
@@ -144,9 +145,12 @@ class autorenumber():
|
|||||||
self.item.contentSerieName = self.title.rstrip('123456789 ')
|
self.item.contentSerieName = self.title.rstrip('123456789 ')
|
||||||
|
|
||||||
while not self.item.exit:
|
while not self.item.exit:
|
||||||
|
self.item.infoLabels['imdb_id'] = ''
|
||||||
|
self.item.infoLabels['tvdb_id'] = ''
|
||||||
self.item.infoLabels['tmdb_id'] = ''
|
self.item.infoLabels['tmdb_id'] = ''
|
||||||
self.item.infoLabels['year'] = '-'
|
self.item.infoLabels['year'] = '-'
|
||||||
self.item.contentType ='tvshow'
|
self.item.contentType = 'tvshow'
|
||||||
|
|
||||||
tmdb.find_and_set_infoLabels(self.item)
|
tmdb.find_and_set_infoLabels(self.item)
|
||||||
if self.item.infoLabels['tmdb_id']: self.item.exit = True
|
if self.item.infoLabels['tmdb_id']: self.item.exit = True
|
||||||
else: self.item = platformtools.dialog_info(self.item, 'tmdb')
|
else: self.item = platformtools.dialog_info(self.item, 'tmdb')
|
||||||
|
|||||||
Reference in New Issue
Block a user