Vorrei chiamare una funzione Python dal codice JavaScript, perché non esiste un'alternativa in JavaScript per fare ciò che voglio. È possibile? Potresti modificare lo snippet di seguito per farlo funzionare?
Codice 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 funzioni che utilizzano librerie avanzate che non hanno un equivalente facile da scrivere in 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)