मैं जावास्क्रिप्ट कोड से एक पायथन फ़ंक्शन को कॉल करना चाहूंगा, क्योंकि मुझे जो चाहिए उसे करने के लिए जावास्क्रिप्ट में कोई विकल्प नहीं है। क्या यह संभव है? आप काम करने के लिए नीचे स्निपेट समायोजित कर सकते हैं?
जावास्क्रिप्ट कोड:
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)