aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md30
1 files changed, 15 insertions, 15 deletions
diff --git a/README.md b/README.md
index d1802b5..b8e1eb9 100644
--- a/README.md
+++ b/README.md
@@ -4,21 +4,21 @@ Python sandbox runners for executing code in isolation aka snekbox
The user sends a piece of python code to a snekbox, the snekbox executes the code and sends the result back to the users.
```
- +-------------+ +------------+ +-----------+
- | |---------->| |-------->| | >-------+
-input-> | WEBSERVER | websocket | RABBITMQ | AMQP | SNEKBOX | output |
- | |<----------| |<--------| | <-------+
- +-------------+ +------------+ +-----------+
- ^ ^ ^
- | | |- Executes python code
- | | |- Returns result
- | | +-----------------------
- | |
- | |- Messaging queues opens on demand and closes automatically
- | +-----------------------------------------------------------
- |
- |- Uses websockets for asynchronous connection between webui and webserver
- +-------------------------------------------------------------------------
+ +-------------+ +------------+ +-----------+
+ input -> | |---------->| |-------->| | >----------+
+ | WEBSERVER | websocket | RABBITMQ | AMQP | SNEKBOX | execution |
+result <- | |<----------| |<--------| | <----------+
+ +-------------+ +------------+ +-----------+
+ ^ ^ ^
+ | | |- Executes python code
+ | | |- Returns result
+ | | +-----------------------
+ | |
+ | |- Message queues opens on demand and closes automatically
+ | +---------------------------------------------------------
+ |
+ |- Uses websockets for asynchronous connection between webui and webserver
+ +-------------------------------------------------------------------------
```