JavaScriptコードからPython関数を呼び出したいのですが、JavaScriptには私がやりたいことを実行するための代替手段がないためです。これは可能ですか?以下のスニペットを調整して機能させていただけますか?
JavaScriptコード:
var tag = document.getElementsByTagName("p")[0];
text = tag.innerHTML;
// Here I would like to call the Python interpreter with Python function
arrOfStrings = openSomehowPythonInterpreter("~/pythoncode.py", "processParagraph(text)");
~/pythoncode.py
JavaScriptで同等のものを書くのが簡単ではない高度なライブラリを使用する関数が含まれています。
import nltk # is not in JavaScript
def processParagraph(text):
...
nltk calls
...
return lst # returns a list of strings (will be converted to JavaScript array)