├── .gitignore ├── LICENSE ├── README.md ├── lib ├── python-function.html └── python-function.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnauorriols/node-red-contrib-python-function/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnauorriols/node-red-contrib-python-function/HEAD/README.md -------------------------------------------------------------------------------- /lib/python-function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnauorriols/node-red-contrib-python-function/HEAD/lib/python-function.html -------------------------------------------------------------------------------- /lib/python-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnauorriols/node-red-contrib-python-function/HEAD/lib/python-function.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnauorriols/node-red-contrib-python-function/HEAD/package.json --------------------------------------------------------------------------------