Skip to main content

rallf.com Software Development Kit (SDK)

Project description

RALF Python SDK

Website GitHub license GitHub issues PyPI Python Versions Requirements Status

RALLF SDK provides the tools to create tasks for rallf robots (rallf.com) using python3.

Disclaimer! This package is in development stage (unstable), it may be potentially buggy

Installation

Using Python Package Index (PyPI)

pip3 install rallf

From source

git clone https://github.com/RobotUnion/rallf-python-sdk
cd rallf-python-sdk
pip3 install -r requirements.txt
python3 setup.py install

Getting started (hello bot-task)

In order to get started with robot task development, just run python3 -m rallf-cli create-project "hello" and it will create a basic project with the files explained below.

hello.py

# File: hello.py

from rallf import Task

'''
  Hello task opens github and returns the title of the page upon it is loaded.
  To learn more about python selenium api, see https://selenium-python.readthedocs.io/
'''
class Hello(Task):

    # implementing self.run is required for tasks, not for skills
    def run(self, input):
        # Log stuff via the available logger
        self.logger.debug('Hello Bot')

        # get a firefox instance
        browser = self.robot.devices['firefox']
        browser.get('https://github.com')
        return browser.getTitle()

Try it (rallf cli)

Run run method using the CLI

python3 -m rallf-cli run . -f run

Run run method using the jsonrpc api

echo '{"jsonrpc": "2.0", "id": 1, "method": "delegate_local", "params": {"routine": "run", "args": {}}}' | python3 -m rallf-cli run .

Get help

python3 -m rallf-cli -h

Extended usage

Task Manifest

Task manifest is mandatory for rallf.com tasks, but not necessary for developing, visit manifest reference to learn more in-deep about task manifests.

/* File manifest.json */
{
  "title": "Hello Task",
  "description": "This tasks logs hello and returns the <title> of github.com",
  "long-description": "@README.md",
  "fqtn": "com.example.hello",
  "type": "task", /* choices: task, skill */
  "main": "hello.Hello",
  "exports": ["run"], /* default: ["run"] */
  "devices": ["firefox"],
  "skills": [],
  "permissions": {
    "uris": ["https://github.com", "https://google.com"],
    "devices": ["firefox", "chrome"],
    "skills": {
      "com.example.facebook": ["likePage", "likePost"],
      "com.example.gmail": ["search", "likePost"]
    },
  }
}

Injected objects

  • self.robot this object is injected in the task creation
  • input this parameter is passed to the run(self, input) function

Inter Task Communication (ITC)

  • Call other tasks from the market (rallf.com)
  • Use robot skills

Task lifecycle callbacks

  • warmup(self) this optional method is executed some time before the task starts to speed-up the rest of calls.
  • run(self, input) this required method handles the work of the task and is triggered at start of the task.
  • cooldown(self) this optional method is called when the task is going to be some time without use.

Task vs Skill

A common question is the difference between Task and Skill inside the RALLF ecosystem, the main difference is that Tasks only have one method called run and the skill can have many, so technically a Task is a subtype of Skill, and also a Skill can implement the run method and can be used as Task too.

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

rallf-0.1.26.dev102.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rallf-0.1.26.dev102-py3-none-any.whl (17.7 kB view details)

Uploaded Python 3

File details

Details for the file rallf-0.1.26.dev102.tar.gz.

File metadata

  • Download URL: rallf-0.1.26.dev102.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.5.3

File hashes

Hashes for rallf-0.1.26.dev102.tar.gz
Algorithm Hash digest
SHA256 720eb0f4bb7b55458a24a64d6eb7733ee7dc24fb88fc7a1cf8047c6f67e2ed15
MD5 8b9b47f26c56e0e3ea63e5f5e6fd7e9a
BLAKE2b-256 8e970b4f2002e2e912258e7fdb3f9187a57d615522d42528649b5f1f7b537818

See more details on using hashes here.

File details

Details for the file rallf-0.1.26.dev102-py3-none-any.whl.

File metadata

  • Download URL: rallf-0.1.26.dev102-py3-none-any.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.5.3

File hashes

Hashes for rallf-0.1.26.dev102-py3-none-any.whl
Algorithm Hash digest
SHA256 21ce310cb906b8fcc04d6e17785a818adbeb9a8b493daf3a6a60156c47bc4b23
MD5 bd2438d4edb12d2086a8da38ee2bdc09
BLAKE2b-256 c650153ff00b641b9142dee88639a52b40ac990f9f1eb7d0c779c336d0f15a06

See more details on using hashes here.

Supported by

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