fix vari kodi 19

This commit is contained in:
marco
2020-02-06 22:44:38 +01:00
parent a680775c79
commit e4a83b590f
12 changed files with 25 additions and 20 deletions
+4 -1
View File
@@ -14,7 +14,10 @@ list_quality = ['default']
def findhost():
permUrl = httptools.downloadpage('https://www.cinemalibero.online/', follow_redirects=False).headers
import urlparse
try:
import urlparse
except:
import urllib.parse as urlparse
p = list(urlparse.urlparse(permUrl['location'].replace('https://www.google.com/search?q=site:', '')))
if not p[0]:
p[0] = 'https'
-7
View File
@@ -3,14 +3,7 @@
# Ringraziamo Icarus crew
# Canale per cinetecadibologna
# ------------------------------------------------------------
import re
import urlparse
from core import httptools, scrapertools
from core.item import Item
from platformcode import logger, config
from core import support
+1 -3
View File
@@ -3,10 +3,8 @@
# Ringraziamo Icarus crew
# Canale per documentaristreamingda
# ------------------------------------------------------------
import re
import urlparse
from core import httptools, scrapertools, servertools, support
from core import support
from core.item import Item
from platformcode import logger, config
+4 -1
View File
@@ -4,7 +4,10 @@
# ------------------------------------------------------------
import re
import urlparse
try:
import urlparse
except:
import urllib.parse as urlparse
from core import scrapertools, servertools, httptools
from core import tmdb