Skip to main content

rapidfire calls and displays the defined Python function from command line

Project description

SETUP

  • Init RapidFire

$ pip install rapidfire
$ rap --init
$ vi /Your/home/directory/.rapidfire.d/raprc
  • Set the value in RAPIDFIRE_PYFILE_PATH

RAPIDFIRE_PYFILE_PATH = /path/hoge.py
  • Edit sample code

$ vi /path/hoge.py
from rapidfire import task

@task
def sample():
    return ['text1', 'text2', 'text3']
  • Run RapidFire

$ rap sample

API

  • rapidfire.task(next_action, clipboard, per_page)
    • Parameters
      • next_action - For next_action, specify the function name to be executed next

      • clipboard option - Copy the result to the cripboard

      • per_page - Lines per page

Example

from rapidfire import task

@task(next_action='sample_method2', per_page=2)
def sample_method1():
    return ['text1', 'text2', 'text3']


@task(clipboard=True)
def sample_method2():
    text = sample_method1 # The value selected by sample_method1 is entered
    return ['{} is selected'.format(text)]

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

rapidfire-1.0.0.tar.gz (11.0 kB view hashes)

Uploaded Source

Built Distribution

rapidfire-1.0.0-py3-none-any.whl (13.5 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