2012年5月14日 星期一

Pykka: Easy to use concurrency abstractions for Python by using the actor model


Pykka provides an actor API with two different implementations:

  • ThreadingActor is built on the Python Standard Library’s threading and Queue modules, and has no dependencies outside Python itself. It plays well together with non-actor threads.
  • GeventActor is built on the gevent library. gevent is a coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop. It is generally faster, but doesn’t like playing with other threads.

HOWTO Use Python in the web

This document shows how Python fits into the web. It presents some ways to integrate Python with a web server, and general practices useful for developing web sites.

2009年8月17日 星期一

WikklyText : A Python-based wiki and modular library for creating custom wikitext rendering applications

WikklyText is a Python-based wiki and modular library for creating custom wikitext rendering applications. Its wikitext engine is compatible with the TiddlyWiki markup language. It functions equally well as a wiki-on-a-stick or as a multiuser wiki behind Apache. It includes a Drupal plugin as well.
  • Licenses : GPL
  • Operating Systems : OS Independent
  • Implementation : PHP, Python

2009年8月16日 星期日

words : Software for improving your English vocabulary

words is software for improving your English vocabulary. It can useful when preparing for the GRE, GMAT, SAT, or any other vocabulary intensive examination.
  • Licenses : GPL
  • Operating Systems : OS Independent
  • Implementation : Jython, Python, Java

python-djvulibre : A set of Python bindings for the DjVuLibre library

python-djvulibre is a set of Python bindings for the DjVuLibre library, an open source implementation of DjVu.
  • Licenses : GPL GPLv2
  • Operating Systems : POSIX Linux
  • Implementation : C, Python