Pre-release
This release is a pre-release and may not be stable for production use.
A python actor framework.
Features
Easy to build concurrency with the actor model.
Lightweight. Can run millions of actors on a single thread.
Integrated supervision for managing actor lifetime and faults.
Extensible with new executors and dispatchers.
An Akka-like API.
Installation
Install from PyPI using pip:
$ pip install actors
Obligatory greeter
from actors import Actor, ActorSystem
class Greeter(Actor):
def receive(self, message):
print("Hello %s" % message)
system = ActorSystem()
greeter = system.actor_of(GreetingActor)
greeter.tell("world")
system.terminate()
Documentation
Documentation is available at http://pythonhosted.org/actors/.
Release files for actors 0.5.1b1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| actors-0.5.1b1.tar.gz | 21.3 kB | Details |
Release files / actors-0.5.1b1.tar.gz
| Download URL | actors-0.5.1b1.tar.gz |
|---|---|
| Size | 21.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2030cbc2c1c8729bd7c044e44085a2b13e923b633f36855c75d1d335d7125452
|
|
BLAKE2b-256 checksum How to use checksums |
43d83db8131a52cf4ee1db46da738fb48484dbdf9132730143af8ed753fc9e76
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |