https://github.com/asynkron/protoactor-python
Proto Actor - Ultra fast distributed actors
https://github.com/asynkron/protoactor-python
actor-model actors akka clustering cross-platform distributed-computing protobuf
Last synced: 1 day ago
JSON representation
Proto Actor - Ultra fast distributed actors
- Host: GitHub
- URL: https://github.com/asynkron/protoactor-python
- Owner: asynkron
- License: apache-2.0
- Created: 2017-02-03T13:28:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-30T15:17:03.000Z (about 5 years ago)
- Last Synced: 2025-04-01T04:41:32.450Z (21 days ago)
- Topics: actor-model, actors, akka, clustering, cross-platform, distributed-computing, protobuf
- Language: Python
- Size: 328 KB
- Stars: 82
- Watchers: 12
- Forks: 11
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# protoactor-python
Proto Actor - Ultra fast distributed actors[](https://gitter.im/AsynkronIT/protoactor?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[](https://travis-ci.org/AsynkronIT/protoactor-python)
# 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
```