从 python 脚本触发 Node-RED 流程的最佳方式
Best way to trigger a Node-RED flow from python script
我是 运行 raspberry pi 上的 Node-RED。我想在 python 脚本末尾触发一个流程,我在同一个 rpi 上 运行。最容易触发的输入节点是什么?与之一起使用的 python 代码示例是什么?我想传回一个字符串变量
将最佳设为最简单,那么http-in节点可能是最好的
使用类似这样的东西会起作用:
import urllib2
urllib2.urlopen("http://localhost:1880/start").read()
其中 http-in 节点已配置为侦听 /start
我是 运行 raspberry pi 上的 Node-RED。我想在 python 脚本末尾触发一个流程,我在同一个 rpi 上 运行。最容易触发的输入节点是什么?与之一起使用的 python 代码示例是什么?我想传回一个字符串变量
将最佳设为最简单,那么http-in节点可能是最好的
使用类似这样的东西会起作用:
import urllib2
urllib2.urlopen("http://localhost:1880/start").read()
其中 http-in 节点已配置为侦听 /start