protoactor-python icon indicating copy to clipboard operation
protoactor-python copied to clipboard

Proto Actor - Ultra fast distributed actors

protoactor-python

Proto Actor - Ultra fast distributed actors

Join the chat at https://gitter.im/AsynkronIT/protoactor

Build Status

Getting Started

Ensure you have Python 3.6 with pip installed.

$ pip3 install virtualenv
$ virtualenv dev.venv
$ source dev.venv/bin/activate # on POSIX systems
$ .\dev.venv\Scripts\activate.ps1 # on Windows
$ pip3 install -r requirements.dev.txt

Run mypy

mypy --python-version 3.6 --fast-parser -p protoactor

Run tests

$ tox