Skip to main content

Run functions as scripts

Project description

Tasker is a way to organize your scripts. If you have dozens of small scripts and you keep forgetting what they do and what parameters they take, tasker is for you. Instead of scripts you write functions, put them in a file or a couple of them, and then run the main tasker script giving them the task name and the parameters of the task like this:

run_task <task-name> [<task-parameter>]...

The help task will scan your tasks package and give you the signatures and docstrings of your tasks.

To be considered as a task, the function name should end with _task. The task name is the function name less the suffix. Suppose we have the following file stucture:

run_task
tasks/
    __init__.py
    moretasks.py

__init__.py

def one_task(p1):
    print 'in one_task, parameters:', p1

def two_task(p1, p2):
    print 'in two_task, parameters:', p1, p2

and moretasks.py

def t1_task(p1):
    print 'in t1_task, parameters:', p1

def t2_task(p1, p2=None):
    print 'in t2_task, parameters:', p1, p2

Then we can run the following examples:

run_task one foo
run_task two foo baz
run_task two foo               # fails, not enough parameters
run_task moretasks.t1 spam
run_task moretasks.t2 spam ham
run_task moretasks.t2 spam     # works too because of default value of the second parameter

To generate the run_task script in the current directory run:

python -m tasker <fully-qualified-name-of-tasks-package>  # default = "tasks"

IMPORTANT: All task parameters are strings.

You can include tasks with distribution of your project and run them all with a single installed script. Suppose your project looks like this:

someproject/
    __init__.py
    somestuff.py
    tasks/

Then you can include the following snippet in __init__.py:

def run_task():
    import tasker
    tasker.main('tasks')

then include the following in your setuptools-based setup.py:

entry_points={
    'console_scripts': [
        'someproject_task = someproject:run_task',
        ],
    }

This setup will create script someproject_task, which will know about your tasks.

Installation

pip install tasker

Origin

This was inspired by the Ruby’s rake utility. I used for some time the shovel python clone of rake until I got dissatisfied with it. The important difference of tasker (apart from simplicity) is that it does not depend on current working directory.

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

tasker-0.1.2.zip (8.3 kB view details)

Uploaded Source

Built Distribution

tasker-0.1.2-py2.py3-none-any.whl (5.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file tasker-0.1.2.zip.

File metadata

  • Download URL: tasker-0.1.2.zip
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for tasker-0.1.2.zip
Algorithm Hash digest
SHA256 dfd2ec58e06a31e9e01613e7433415397d97f7589c8828087d7d1cd1b311ea0b
MD5 7368a322cadcd4946ce0313d5639a545
BLAKE2b-256 48253a127b833038d3b7ae6f26e91ed429fbfe34c9688c4e1a2d1623c432c332

See more details on using hashes here.

File details

Details for the file tasker-0.1.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for tasker-0.1.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 526a8b286c1e4855f455a239ae1a0c5ab81facce47d345018958d4a6d1d3a804
MD5 4bdee7be818aa5c7ab70f73a8573cc83
BLAKE2b-256 8585ba5f3f566d2f9a4db635fede9d09fa5e8d94daa7c17ef74ab6b65780e13e

See more details on using hashes here.

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