README.md

This commit is contained in:
Tony Garnock-Jones 2021-05-12 15:43:54 +02:00
parent 378e4b69a6
commit f4a32f08cc
1 changed files with 27 additions and 0 deletions

27
README.md Normal file
View File

@ -0,0 +1,27 @@
# mini-syndicate-py
This is a Python implementation of the Syndicate network protocol.
It does *not* yet offer a formal Actor or Facet implementation for
Python, nor any Syndicate DSL language extensions.
pip install mini-syndicate
or
git clone https://git.syndicate-lang.org/syndicate-lang/mini-syndicate-py
cd mini-syndicate-py
virtualenv -p python3 pyenv
. pyenv/bin/activate
pip install -r requirements.txt
## Running
Start a Syndicate broker (such as
[this one](https://git.syndicate-lang.org/syndicate-rs)) in one window.
Then, run
python chat.py tcp://localhost:8001#chat
several times in separate windows.