79769637

Date: 2025-09-19 14:40:51
Score: 1.5
Natty:
Report link

`// install python-shell using npm

const {PythonShell} = require('python-shell');

var pyshell = new PythonShell('filename.py');

var test={}; // declaring it as empty array

pyshell.on('message', function(message) {

test=message; // giving value to test

});

var sendme = "send me";

if (msg.text.toString().toLowerCase().includes(sendme)){

bot.sendMessage(msg.chat.id, test ); /** sending it when user

triggers the conditon **/

}`

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: RDX MAYANK