GitXplorerGitXplorer
a

tasky

public
14 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
681f4e5a9a60a0eb838b89f320309cfb45a56242

Build against 3.6-dev

aamyreese committed 8 years ago
Unverified
f48f9e54970afe429b45228413ddf6c9a771838c

Bump to v0.8.1

aamyreese committed 8 years ago
Unverified
620a1cf87b2731e10c7dd60a93548900456a38e6

Fix bug when calling terminate() before init() finishes

aamyreese committed 8 years ago
Unverified
8c59a619911190390af8f9348f9d0c0e07d4ce11

Bump version to 0.8.0

aamyreese committed 8 years ago
Unverified
d62a0a4c3a834e07b47b0a7cb4e1567b6467338f

Reformat setup.py

aamyreese committed 8 years ago
Unverified
ceb4f3f8a42c3bd03b72711e99b7237e0b6bcb49

Build/test with Python 3.6

aamyreese committed 8 years ago

README

The README file for this repository.

Tasky

Python asyncio framework for task-based execution.

.. image:: https://travis-ci.org/jreese/tasky.svg?branch=master :target: https://travis-ci.org/jreese/tasky

Overview

Tasky provides a framework for using Python's asyncio module to encapsulate execution of your program or service as a set of distinct "tasks" with a variety of execution styles, including "periodic" tasks, timers, and more.

Tasks are defined by subclassing the appropriate type and implementing a run() method. Tasky runs tasks on the asyncio event loop, but also keeps track of which tasks are running, and can terminate automatically when all tasks are completed or after a predetermined amount of time.

Usage

The simplest type of task executes the run() once and then completes. Hello World in Tasky can be accomplished with the following code::

class HelloWorld(Task):
    async def run(self):
        print('Hello world!')

Tasky([HelloWorld]).run_until_complete()

Note the use of async def. All tasks are coroutines, meaning they have full access to the asyncio event loop.

Another common pattern is to execute code every X number of seconds, a "periodic" task similar to a cron job. In Tasky, this is possible by subclassing PeriodicTask and defining your job INTERVAL::

class Counter(PeriodicTask):
    INTERVAL = 1.0

    value = 0

    async def run(self):
        value += 1
        print(self.value)

Tasky([Counter]).run_for_time(10)

Note the use of run_for_time(). This will gracefully stop the Tasky event loop after the given number of seconds have passed. The periodic task will automatically stop running, giving us the expected output of counting to ten.

The third type of common task is a timer. The run() method is only executed once after a defined delay. If the timer is reset after execution completes, then the timer will be executed again. Otherwise, resets simply increase the time before execution back to the originally defined delay::

class Celebrate(TimerTask):
    DELAY = 10

    async def run(self):
        print('Surprise!')

Tasky([Counter, Celebrate]).run_for_time(10)

Note that we're now starting multiple tasks as once. The counter output from the previous example is accompanied by the message "Surprise!" at the end.

The last major task is a queue consumer. A shared work queue is created for one or more worker tasks of the same class, and the run() method is then called for every work item popped from the queue. Any task can insert work items directly from the class definition, or call QueueTask.close() to signal that workers should stop once the shared work queue becomes empty::

class QueueConsumer(QueueTask):
    WORKERS = 2
    MAXSIZE = 5

    async def run(self, item):
        print('consumer got {}'.format(item))
        await self.sleep(0.1)

class QueueProducer(Task):
    async def run(self):
        for i in range(10):
            item = random.randint(0, 100)
            await QueueConsumer.QUEUE.put(item)
            print('producer put {}'.format(i))
        QueueConsumer.close()

Tasky([QueueConsumer, QueueProducer]).run_until_complete()

Note that if work items need to be reprocessed, they should be manually inserted back into the shared queue by the worker.

Install

Tasky depends on syntax changes introduced in Python 3.5. You can install it from PyPI with the following command::

$ pip install tasky

License

Copyright 2016 John Reese, and licensed under the MIT license. See the LICENSE file for details.