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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size rapidfire-1.0.0-py3-none-any.whl (13.5 kB) | File type Wheel | Python version 3.5 | Upload date | Hashes View |
Filename, size rapidfire-1.0.0.tar.gz (11.0 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for rapidfire-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1a2e9818322c4b8ce13088808b257c81797da3d103f8c7f3c599cbd91120723 |
|
MD5 | 97aea423ace55f081e284b120105dba2 |
|
BLAKE2-256 | 459a107de2617ddf19e9990a13c85cbc8538c21ef1525dddb150f653e0a1fa17 |