Skip to main content

RainBot Module Library for Python

Project description

Proper documentation and specifications will be coming with RainBot v0.5.0 (This includes a working link to library web page)

To install

pip install pyrml

To generate a simple scaffold (assuming rainbot is installed)

rainbot -m py YourModuleName

Example Usage

#### Simple

from pyrml import Module

m = Module("Echo", "A simple echo module")

@m.command("echo")
def echo(msg, args):
    m.say(msg["Params"][0], " ".join(args))

m.register()
from pyrml import Module

class Echo(Module):
    def __init__(self, name, desc):
        Module.__init__(self, name, desc)

    def echo(self, msg, args):
        self.say(msg["Args"][0], " ".join(args))

if __name__ == '__main__':
    m = Echo("Echo", "An echo mdoule")

    m.add_command("echo", {
        "Help": "Repeats arguments",
        "Fun": m.echo
    })

    m.register()

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

pyrml-0.5.1.zip (4.3 kB view hashes)

Uploaded Source

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