Ich möchte eine Python-Funktion aus JavaScript-Code aufrufen, da es in JavaScript keine Alternative gibt, um das zu tun, was ich will. Ist das möglich? Könnten Sie das folgende Snippet anpassen, um zu funktionieren?
JavaScript-Code:
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
enthält Funktionen mit erweiterten Bibliotheken, die in JavaScript nicht einfach zu schreiben sind:
import nltk # is not in JavaScript
def processParagraph(text):
...
nltk calls
...
return lst # returns a list of strings (will be converted to JavaScript array)