fix hdmario con supporto autenticazione mail

This commit is contained in:
marco
2020-05-26 20:40:34 +02:00
parent 45ac1df0b2
commit c54eb40158
6 changed files with 97 additions and 71 deletions
+10
View File
@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from lib import js2py
import re
def unpack(source):
fun, data = re.match("""eval\((function\(p,a,c,k,e,d\){.*?})\((['"].*?)\)\)$""", source.strip(), re.MULTILINE).groups()
funPy = js2py.eval_js(fun)
return eval('funPy(' + data + ')')