Skip to content
/ pykka Public
forked from jodal/pykka

Pykka is easy to use concurrency for Python using the actor model

License

Notifications You must be signed in to change notification settings

davisein/pykka

 
 

Repository files navigation

Pykka

image

The goal of Pykka is to provide 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.

Much of the naming in Pykka is inspired by the Akka project which implements actors on the JVM. Though, Pykka does not aim to be a Python port of Akka.

Project resources

About

Pykka is easy to use concurrency for Python using the actor model

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.8%
  • Perl 0.2%