JavaScript 코드에서 Python 함수를 호출하고 싶습니다. 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
자바 스크립트로 쉽게 작성할 수없는 고급 라이브러리를 사용하는 함수를 포함합니다.
import nltk # is not in JavaScript
def processParagraph(text):
...
nltk calls
...
return lst # returns a list of strings (will be converted to JavaScript array)