Skip to main content

make python function to Node-RED node

Project description

NodeRED.py

make python function to Node-RED node




🌐 install

- using pip

python -m pip install nodered.py

- using git(dev)

python -m pip install git+https://github.com/oyajiDev/NodeRED.py.git



🛠 usage

server initialize

  • default server
from noderedpy import Server, RED

server = Server(
    RED(
        os.path.join(__dirname, ".node-red"),
        "/node-red", 1880
    )
)
  • standalone(with webview)
from noderedpy import StandaloneServer, RED

server = StandaloneServer(
    RED(
        os.path.join(__dirname, ".node-red"),
        "/node-red", 1880
    )
)

register Node

@register("test")
def test(props:dict, msg:dict) -> dict:
    # user codes here
    return msg

start server

  • default server
server.start("{port}")
  • standalone(with webview)
server.start("{title}")



Todos

[x] type support for "list" and "dict"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nodered.py-0.1.1.tar.gz (9.8 kB view hashes)

Uploaded Source

Built Distribution

nodered.py-0.1.1-py3-none-any.whl (12.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page