Skip to content

Latest commit

 

History

History
79 lines (55 loc) · 1.94 KB

index.rst

File metadata and controls

79 lines (55 loc) · 1.94 KB

Pykka

Pykka is a Python implementation of the actor model. The actor model introduces some simple rules to control the sharing of state and cooperation between execution units, which makes it easier to build concurrent applications.

For details and code examples, see the Pykka documentation.

Pykka is available from PyPI. To install it, run:

pip install pykka

Pykka works with Python 3.9 or newer.

Inspiration

Much of the naming of concepts and methods in Pykka is taken from the Akka project which implements actors on the JVM. Though, Pykka does not aim to be a Python port of Akka, and supports far fewer features.

Notably, Pykka does not support the following features:

  • Supervision: Linking actors, supervisors, or supervisor groups.
  • Remoting: Communicating with actors running on other hosts.
  • Routers: Pykka does not come with a set of predefined message routers, though you may make your own actors for routing messages.

Project resources

.. toctree::
    :maxdepth: 2
    :caption: Usage

    quickstart
    examples
    runtimes/index
    testing


.. toctree::
    :maxdepth: 2
    :caption: Reference

    api/module
    api/actors
    api/proxies
    api/futures
    api/registry
    api/exceptions
    api/messages
    api/logging
    api/debug
    api/typing


License

Pykka is copyright 2010-2025 Stein Magnus Jodal and contributors. Pykka is licensed under the Apache License, Version 2.0.