mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
d97bb7174d
Change improve provider title processing. Change improve handling erroneous JSON responses. Change improve find show with unicode characters. Change improve result for providers Omgwtf, SpeedCD, Transmithenet, Zoogle. Change validate .torrent files that contain optional header data. Fix case where an episode status was not restored on failure. Add raise log error if no wanted qualities are found. Change add un/pw to Config/Media providers/Options for BTN API graceful fallback (can remove Api key for security). Change only download torrent once when using blackhole. Add Cloudflare module 1.6.8 (be0a536) to mitigate CloudFlare (IUAM) access validator. Add Js2Py 0.43 (c1442f1) Cloudflare dependency. Add pyjsparser 2.4.5 (cd5b829) Js2Py dependency.
32 lines
No EOL
1.2 KiB
Python
32 lines
No EOL
1.2 KiB
Python
INITIALISED = False
|
|
babel = None
|
|
babelPresetEs2015 = None
|
|
|
|
def js6_to_js5(code):
|
|
global INITIALISED, babel, babelPresetEs2015
|
|
if not INITIALISED:
|
|
import signal, warnings, time
|
|
warnings.warn('\nImporting babel.py for the first time - this can take some time. \nPlease note that currently Javascript 6 in Js2Py is unstable and slow. Use only for tiny scripts!')
|
|
|
|
from .babel import babel as _babel
|
|
babel = _babel.Object.babel
|
|
babelPresetEs2015 = _babel.Object.babelPresetEs2015
|
|
|
|
# very weird hack. Somehow this helps babel to initialise properly!
|
|
try:
|
|
babel.transform('warmup', {'presets': {}})
|
|
signal.alarm(2)
|
|
def kill_it(a,b): raise KeyboardInterrupt('Better work next time!')
|
|
signal.signal(signal.SIGALRM, kill_it)
|
|
babel.transform('stuckInALoop', {'presets': babelPresetEs2015}).code
|
|
for n in range(3):
|
|
time.sleep(1)
|
|
except:
|
|
print("Initialised babel!")
|
|
INITIALISED = True
|
|
return babel.transform(code, {'presets': babelPresetEs2015}).code
|
|
|
|
if __name__=='__main__':
|
|
print(js6_to_js5('obj={}; obj.x = function() {return () => this}'))
|
|
print()
|
|
print(js6_to_js5('const a = 1;')) |