Skip to main content

A Python module for looping over a sequence of commands with a focus on high configurability and extensibility.

Project description

A Python module for looping over a sequence of commands with a focus on high configurability and extensibility.

Latest Version

The latest version of this project can be found at : http://github.com/thomst/sequence.

Installation

  • Option 1 : Install via pip

    pip install sequence
  • Option 2 : If you have downloaded the source

    python setup.py install

Documentation

How to use?

from sequence import Timer
from sequence import Sequence
from sequence import Cmd

interval = 8
timer = Timer(interval)

def f(x): print x
cmd1 = Cmd(f, args=['cmd1'], stall=3)   #stall the execution of cmd2 for 3 sec
cmd2 = Cmd(f, args=['cmd2'])            #just right now (depending on the order)
cmd3 = Cmd(f, args=['cmd3'], delay=4)   #soonest after 4 sec from loop-start
                                        #other options are available...

sequence = Sequence(timer, [cmd1, cmd2, cmd3])
sequence.go()

Reporting Bugs

Please report bugs at github issue tracker: https://github.com/thomst/sequence/issues

Author

thomst <thomaslfuss@gmx.de> Thomas Leichtfuß

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

sequence-0.3.1.tar.gz (5.4 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