@@ -16,9 +16,9 @@ osBrain is a **general-purpose multi-agent system module** written in Python.
16
16
17
17
- Agents run **independently ** as system processes and communicate with each
18
18
other using **message passing **.
19
- - Message passing is implemented using `ØMQ <http ://zeromq.org/ >`_, and in
19
+ - Message passing is implemented using `ØMQ <https ://zeromq.org/ >`_, and in
20
20
particular, the `PyZMQ <https://github.com/zeromq/pyzmq >`_ Python bindings.
21
- - `ØMQ <http ://zeromq.org/ >`_ allows for **efficient **, **asynchronous **
21
+ - `ØMQ <https ://zeromq.org/ >`_ allows for **efficient **, **asynchronous **
22
22
communication using different commonly used communication **patterns ** such
23
23
as request-reply, push-pull and publish-subscribe.
24
24
- osBrain integrates `Pyro4 <https://pythonhosted.org/Pyro4/ >`_ to ease the
@@ -59,7 +59,7 @@ taken during the development process:
59
59
#. **Isolation of agents **; creating separate system processes to avoid shared
60
60
memory and any problems derived from multi-threading development.
61
61
#. **Implementation of message passing **; making use of the modern, efficient
62
- and flexible `ØMQ <http ://zeromq.org/ >`_ library.
62
+ and flexible `ØMQ <https ://zeromq.org/ >`_ library.
63
63
#. **Ease of configuration/deployment **; making use of the very convenient,
64
64
well implemented and documented `Pyro4 <https://pythonhosted.org/Pyro4/ >`_
65
65
package.
@@ -105,7 +105,7 @@ always take this into account:
105
105
#. Pyro4 is used only for configuration, deployment, updating and debugging,
106
106
which means that the actual performance of the system should not depend
107
107
on this package.
108
- #. `ØMQ <http ://zeromq.org/ >`_ is used with the
108
+ #. `ØMQ <https ://zeromq.org/ >`_ is used with the
109
109
`PyZMQ <https://github.com/zeromq/pyzmq >`_ Python bindings, which means
110
110
that the system performance depends on the
111
111
`PyZMQ <https://github.com/zeromq/pyzmq >`_ performance.
0 commit comments