Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/src/commit/f1f3850f9e0f30403f87a359143dfe366b479e37/libs/Js2Py-0.74.dist-info/METADATA You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/Js2Py-0.74.dist-info/METADATA

30 lines
862 B

Metadata-Version: 2.1
Name: Js2Py
Version: 0.74
Summary: JavaScript to Python Translator & JavaScript interpreter written in 100% pure Python.
Home-page: https://github.com/PiotrDabkowski/Js2Py
Author: Piotr Dabkowski
Author-email: piodrus@gmail.com
License: MIT
License-File: LICENSE.md
Requires-Dist: tzlocal >=1.2
Requires-Dist: six >=1.10
Requires-Dist: pyjsparser >=2.5.1
Translates JavaScript to Python code. Js2Py is able to translate and execute virtually any JavaScript code.
Js2Py is written in pure python and does not have any dependencies. Basically an implementation of JavaScript core in pure python.
import js2py
f = js2py.eval_js( "function $(name) {return name.length}" )
f("Hello world")
# returns 11
Now also supports ECMA 6 through js2py.eval_js6(js6_code)!
More examples at: https://github.com/PiotrDabkowski/Js2Py