这里没有提供js代码,只提供思路和python代码
首先需要在本机安装node.js环境,接着就是安装python所需要的包pip install PyEExecJs
import execjs
#实例化一个node对象
node = execjs.get()
#js源文件编译
ctx = node.compile(open('./wechat.js',encoding='utf-8').read())
#执行js函数 getPwd("{0}")是js函数名 {0}是第一个参数的意思
funcName = 'getPwd("{0}")'.format('123456')
pwd = ctx.eval(funcName)
print(pwd)