Demo module written using the Python language.
Install the module by running the following command in the @thingsdb scope:
new_module('demo', 'github.com/thingsdb/module-py-demo');Optionally, you can choose a specific version by adding a @ followed with the release tag. For example: @v0.1.0.
This module does not require any config.
| Name | Description |
|---|---|
| echo | Accepts an input message (string) and returns the same message back in uppercase. |
| ping | Return with pong. |
| msg | Accepts an input message (string) and extra options. |
Syntax: echo(message)
message: The string which will be returned in uppercase.
demo.echo("Hi Demo module!").then(|reply| {
reply;
});