protoactor-python
protoactor-python copied to clipboard
Proto Actor - Ultra fast distributed actors
protoactor-python
Proto Actor - Ultra fast distributed actors
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