https://github.com/opensistemas-hub/osbrain
osBrain - A general-purpose multi-agent system module written in Python
https://github.com/opensistemas-hub/osbrain
distributed-systems hacktoberfest multiagent-systems
Last synced: 5 months ago
JSON representation
osBrain - A general-purpose multi-agent system module written in Python
- Host: GitHub
- URL: https://github.com/opensistemas-hub/osbrain
- Owner: opensistemas-hub
- License: apache-2.0
- Created: 2016-07-12T16:25:13.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-11-15T16:22:58.000Z (over 6 years ago)
- Last Synced: 2025-09-25T07:16:52.596Z (9 months ago)
- Topics: distributed-systems, hacktoberfest, multiagent-systems
- Language: Python
- Homepage: https://osbrain.readthedocs.io/en/stable/
- Size: 775 KB
- Stars: 179
- Watchers: 16
- Forks: 44
- Open Issues: 61
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
|logo|
|travis| |appveyor| |version| |documentation|
|codeclimate| |codecov|
|requirements|
osBrain is a **general-purpose multi-agent system module** written in
Python and developed by `OpenSistemas `__.
Agents run independently as system processes and communicate with each
other using message passing.
osBrain uses `ØMQ `__ for efficient and flexible
message passing between agents. It also uses
`Pyro4 `__
to ease the configuration and deployment of complex systems.
Please read the
`osBrain documentation `__
for a bit more detailed introduction.
osBrain is licensed under the
`Apache License `__.
- `Documentation `__.
- `osBrain on Pypi `__.
Installing osBrain
==================
osBrain requires Python 3. Most probably, Python 3 is already packaged
for your favorite distribution (and maybe even installed by default in your
system). If you do not have Python 3 available, consider using
`Conda `__ to create a virtual
environment with Python 3.
Installing osBrain is very simple with ``pip``:
.. code-block:: bash
pip install osbrain
You should now be able to import ``osbrain`` from a python console:
.. code-block:: python
>>> import osbrain
Code examples
=============
If you want to learn how to use osBrain, refer to the
`tutorial in the documentation `__
for a set of step-by-step simple code examples.
What can you use osBrain for?
=============================
osBrain has been successfully used to develop a real-time automated-trading
platform in `OpenSistemas `__, but being a
general-purpose multi-agent system, it is not limited to this application.
Other applications include:
- Transportation.
- Logistics.
- Defense and military applications.
- Networking.
- Load balancing.
- Self-healing networks.
In general, osBrain can be used whenever a multi-agent system architecture
fits the application well:
- Autonomy of the agents.
- Local views.
- Decentralization.
.. |logo| image:: https://cdn.rawgit.com/opensistemas-hub/osbrain/master/docs/source/_static/osbrain-logo-name.svg
.. |travis| image:: https://api.travis-ci.org/opensistemas-hub/osbrain.svg?branch=master
:target: https://travis-ci.org/opensistemas-hub/osbrain
:alt: Travis build status badge
.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/opensistemas-hub/osbrain?branch=master&svg=true
:target: https://ci.appveyor.com/project/osbrain-ci/osbrain
:alt: AppVeyor build status badge
.. |version| image:: https://img.shields.io/pypi/v/osbrain.svg
:target: https://pypi.python.org/pypi/osbrain/
:alt: Latest version badge
.. |documentation| image:: https://readthedocs.org/projects/osbrain/badge/?version=stable
:target: http://osbrain.readthedocs.io/en/stable/
:alt: Documentation badge
.. |codeclimate| image:: https://codeclimate.com/github/opensistemas-hub/osbrain/badges/gpa.svg
:target: https://codeclimate.com/github/opensistemas-hub/osbrain
:alt: Code Climate badge
.. |codecov| image:: https://codecov.io/github/opensistemas-hub/osbrain/coverage.svg?branch=master
:target: https://codecov.io/github/opensistemas-hub/osbrain
:alt: Coverage (codecov) badge
.. |requirements| image:: https://requires.io/github/opensistemas-hub/osbrain/requirements.svg
:target: https://requires.io/github/opensistemas-hub/osbrain/requirements/
:alt: Requirements badge