Aggiornamenti VVVVID (ancora in beta)

This commit is contained in:
Alhaziel
2019-09-23 20:09:07 +02:00
parent 4b2e83ca2e
commit fa7d176469
2 changed files with 71 additions and 33 deletions

View File

@@ -1,4 +1,5 @@
import urllib2
import sys
import xbmc
def dec_ei(h):
g = 'MNOPIJKL89+/4567UVWXQRSTEFGHABCDcdefYZabstuvopqr0123wxyzklmnghij'
@@ -15,7 +16,14 @@ def dec_ei(h):
d = ''
for e in range(0,len(c)):
d += '%'+ (('0'+ (str(format(c[e],'x'))))[-2:])
return urllib2.unquote(d)
# if python 3
if sys.version_info[0] > 2:
import urllib
return urllib.parse.unquote(d)
else:
import urllib2
return urllib2.unquote(d)
def f(m):
l = list()