[ANN]: asyncoro: Framework for asynchronous sockets and coroutines

Giridhar Pemmasani pgiri at yahoo.com
Thu Apr 5 23:25:11 EDT 2012


asyncoro is a framework for developing concurrent programs with
asynchronous event completions and coroutines. Asynchronous
completions currently implemented in asyncoro are socket I/O
operations, sleep timers, (conditional) event notification and
semaphores. Programs developed with asyncoro will have same logic as
Python programs with synchronous sockets and threads, except for a few
syntactic changes. asyncoro supports polling mechanisms epoll, kqueue,
/dev/poll (and poll, select if necessary), and Windows I/O
Completion Ports (IOCP) for high performance and scalability, and SSL
for security.

More details about asyncoro are at http://dispy.sourceforge.net/asyncoro.html.
It can be downloaded from https://sourceforge.net/projects/dispy/files.

asyncoro is used in development of dispy (http://dispy.sourceforge.net), which
is a framework for parallel execution of computations by distributing them
across multiple processors on a single machine (SMP), multiple nodes
in a cluster, or large clusters of nodes. The computations can be
standalone programs or Python functions.

Both asyncoro and dispy have been tested with Python versions 2.7 and
3.2 under Linux, OS X and Windows.

Cheers,
Giri
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20120405/0dda80ca/attachment.html>


More information about the Python-list mailing list