Me gustaría llamar a una función de Python desde el código JavaScript, porque no hay una alternativa en JavaScript para hacer lo que quiero. es posible? ¿Podría ajustar el siguiente fragmento para que funcione?
Código 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
contiene funciones que utilizan bibliotecas avanzadas que no tienen un equivalente fácil de escribir en 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)