Skip to main content

An Task framework

Project description

PyWorks - a small concurrent framework for Python

Ever since i first worked with threads in Java 15 years ago, I have been
struggeling with the concept. Before that I was used to C and a homegrown "OS"
called Daros. It had Task "preemtive processes", Messages and Queues. For me
it was much easier to comprehend the one Task == one thread concept.
No synchronized keyword, only place you had to take a little care was if you
used shared memory (which was rare)

In 2004 we therefore inplemented Coworks in Java, a concurrent object model
for Java. Also known as the Task pattern. Since then we have implemented many
larger projects all over the world. The concept is easy for developers to
understand and generally performs very well.

The other evening I decided to try to implement my version of Coworks in
Python. Inspired by Donovan Preston's (@donovanpreston) talk at Pycon 2010
about his implementation of Task's in Python I decided to try my self.

Pyworks implements two types of concurrent classes: Actor and Task. Actor
is a simple concurrent class and Task is a specialized form of Actor. Actor
has a few simple methods: actor, timeout, notify and observe. Task is more
complex supporting State pattern and methods for controlled startup sequence,
configuration etc.

It is a simple as it gets. Subclasses of Task run in their own thread.
Task's can access each other by calling self.actor("SomeActor") to get
a Proxy for that Task. You can call all methods on the other Task. The Method
is sent on a Queue and executed in the other Task's thread.

If you need a return value you can use the Future patten.

Every Task can listen on other Task's via the self.observe("SomeActor")
method. A listener must implement all Output methods of the Task being
listened on.

Every Task has a State (default is it self), which handle all incoming
Methods. This means that States in Task are very easy to implement.

No thought or time whatsoever has been put into performance, this is a study
only.

run test test program by simply doing:
$ python pywork.py --run

Works on python3

Rene Nejsum
rene@pylots.com

Copyright (C) 2012-



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

pyworks-0.9.1.tar.gz (12.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyworks-0.9.1-py3-none-any.whl (14.1 kB view details)

Uploaded Python 3

File details

Details for the file pyworks-0.9.1.tar.gz.

File metadata

  • Download URL: pyworks-0.9.1.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyworks-0.9.1.tar.gz
Algorithm Hash digest
SHA256 b7fb059fd200e2c848e19ade9c10f73e2f447247257f4ee3318736a533ce6eb4
MD5 c972c209f457dd66aa7a165f28766bfb
BLAKE2b-256 aae748f6e0c50795e09c8f90bb415134669e73dd44b0d1340e5f2b7d5b091c57

See more details on using hashes here.

File details

Details for the file pyworks-0.9.1-py3-none-any.whl.

File metadata

File hashes

Hashes for pyworks-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 988c2948068cff592a51317002c3330ec0eab04c88abe54f5767e9f504f28f3e
MD5 e4b5bae7db455222c33eb766ae2fc344
BLAKE2b-256 9593789d6eb688ef5b2349191fc94c8bb6327e4ee5bd59a454f0fefc78023aec

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page