Agent-based modeling (ABM) in Python 3+
Project description
Mesa: Agent-based modeling in Python 3+
=========================================
.. image:: https://github.com/projectmesa/mesa/workflows/build/badge.svg
:target: https://github.com/projectmesa/mesa/actions
.. image:: https://codecov.io/gh/projectmesa/mesa/branch/main/graph/badge.svg
:target: https://codecov.io/gh/projectmesa/mesa
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
`Mesa`_ is an Apache2 licensed agent-based modeling (or ABM) framework in Python.
It allows users to quickly create agent-based models using built-in core components (such as spatial grids and agent schedulers) or customized implementations; visualize them using a browser-based interface; and analyze their results using Python's data analysis tools. Its goal is to be the Python 3-based alternative to NetLogo, Repast, or MASON.
.. image:: https://github.com/projectmesa/mesa/blob/main/docs/images/Mesa_Screenshot.png
:width: 100%
:scale: 100%
:alt: A screenshot of the Schelling Model in Mesa
*Above: A Mesa implementation of the Schelling segregation model,
being visualized in a browser window and analyzed in a Jupyter
notebook.*
.. _`Mesa` : https://github.com/projectmesa/mesa/
Features
------------
* Modular components
* Browser-based visualization
* Built-in tools for analysis
* Example model library
Using Mesa
------------
Getting started quickly:
.. code-block:: bash
$ pip install mesa
You can also use `pip` to install the github version:
.. code-block:: bash
$ pip install -e git+https://github.com/projectmesa/mesa#egg=mesa
Take a look at the `examples <https://github.com/projectmesa/mesa/tree/main/examples>`_ folder for sample models demonstrating Mesa features.
For more help on using Mesa, check out the following resources:
* `Intro to Mesa Tutorial`_
* `Docs`_
* `Email list for users`_
* `PyPI`_
.. _`Intro to Mesa Tutorial` : http://mesa.readthedocs.org/en/master/tutorials/intro_tutorial.html
.. _`Docs` : http://mesa.readthedocs.org/en/master/
.. _`Email list for users` : https://groups.google.com/d/forum/projectmesa
.. _`PyPI` : https://pypi.python.org/pypi/Mesa/
Running Mesa in Docker
------------------------
You can run Mesa in a Docker container in a few ways.
If you are a Mesa developer, first `install docker-compose <https://docs.docker.com/compose/install/>`_ and then run:
.. code-block:: bash
$ docker-compose build --pull
...
$ docker-compose up -d dev # start the docker container
$ docker-compose exec dev bash # enter the docker container that has your current version of Mesa installed at /opt/mesa
$ mesa runserver examples/schelling # or any other example model in examples
The docker-compose file does two important things:
* It binds the docker container's port 8521 to your host system's port 8521 so you can interact with the running model as usual by visiting localhost:8521 on your browser
* It mounts the mesa root directory (relative to the docker-compose.yml file) into /opt/mesa and runs pip install -e on that directory so your changes to mesa should be reflected in the running container.
If you are a model developer that wants to run Mesa on a model (assuming you are currently in your top-level model
directory with the run.py file):
.. code-block:: bash
$ docker run --rm -it -p127.0.0.1:8521:8521 -v${PWD}:/code comses/mesa:dev mesa runserver /code
Contributing back to Mesa
----------------------------
If you run into an issue, please file a `ticket`_ for us to discuss. If possible, follow up with a pull request.
If you would like to add a feature, please reach out via `ticket`_ or the `dev email list`_ for discussion. A feature is most likely to be added if you build it!
* `Contributors guide`_
* `Github`_
.. _`ticket` : https://github.com/projectmesa/mesa/issues
.. _`dev email list` : https://groups.google.com/forum/#!forum/projectmesa-dev
.. _`Contributors guide` : https://github.com/projectmesa/mesa/blob/main/CONTRIBUTING.rst
.. _`Github` : https://github.com/projectmesa/mesa/
=========================================
.. image:: https://github.com/projectmesa/mesa/workflows/build/badge.svg
:target: https://github.com/projectmesa/mesa/actions
.. image:: https://codecov.io/gh/projectmesa/mesa/branch/main/graph/badge.svg
:target: https://codecov.io/gh/projectmesa/mesa
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
`Mesa`_ is an Apache2 licensed agent-based modeling (or ABM) framework in Python.
It allows users to quickly create agent-based models using built-in core components (such as spatial grids and agent schedulers) or customized implementations; visualize them using a browser-based interface; and analyze their results using Python's data analysis tools. Its goal is to be the Python 3-based alternative to NetLogo, Repast, or MASON.
.. image:: https://github.com/projectmesa/mesa/blob/main/docs/images/Mesa_Screenshot.png
:width: 100%
:scale: 100%
:alt: A screenshot of the Schelling Model in Mesa
*Above: A Mesa implementation of the Schelling segregation model,
being visualized in a browser window and analyzed in a Jupyter
notebook.*
.. _`Mesa` : https://github.com/projectmesa/mesa/
Features
------------
* Modular components
* Browser-based visualization
* Built-in tools for analysis
* Example model library
Using Mesa
------------
Getting started quickly:
.. code-block:: bash
$ pip install mesa
You can also use `pip` to install the github version:
.. code-block:: bash
$ pip install -e git+https://github.com/projectmesa/mesa#egg=mesa
Take a look at the `examples <https://github.com/projectmesa/mesa/tree/main/examples>`_ folder for sample models demonstrating Mesa features.
For more help on using Mesa, check out the following resources:
* `Intro to Mesa Tutorial`_
* `Docs`_
* `Email list for users`_
* `PyPI`_
.. _`Intro to Mesa Tutorial` : http://mesa.readthedocs.org/en/master/tutorials/intro_tutorial.html
.. _`Docs` : http://mesa.readthedocs.org/en/master/
.. _`Email list for users` : https://groups.google.com/d/forum/projectmesa
.. _`PyPI` : https://pypi.python.org/pypi/Mesa/
Running Mesa in Docker
------------------------
You can run Mesa in a Docker container in a few ways.
If you are a Mesa developer, first `install docker-compose <https://docs.docker.com/compose/install/>`_ and then run:
.. code-block:: bash
$ docker-compose build --pull
...
$ docker-compose up -d dev # start the docker container
$ docker-compose exec dev bash # enter the docker container that has your current version of Mesa installed at /opt/mesa
$ mesa runserver examples/schelling # or any other example model in examples
The docker-compose file does two important things:
* It binds the docker container's port 8521 to your host system's port 8521 so you can interact with the running model as usual by visiting localhost:8521 on your browser
* It mounts the mesa root directory (relative to the docker-compose.yml file) into /opt/mesa and runs pip install -e on that directory so your changes to mesa should be reflected in the running container.
If you are a model developer that wants to run Mesa on a model (assuming you are currently in your top-level model
directory with the run.py file):
.. code-block:: bash
$ docker run --rm -it -p127.0.0.1:8521:8521 -v${PWD}:/code comses/mesa:dev mesa runserver /code
Contributing back to Mesa
----------------------------
If you run into an issue, please file a `ticket`_ for us to discuss. If possible, follow up with a pull request.
If you would like to add a feature, please reach out via `ticket`_ or the `dev email list`_ for discussion. A feature is most likely to be added if you build it!
* `Contributors guide`_
* `Github`_
.. _`ticket` : https://github.com/projectmesa/mesa/issues
.. _`dev email list` : https://groups.google.com/forum/#!forum/projectmesa-dev
.. _`Contributors guide` : https://github.com/projectmesa/mesa/blob/main/CONTRIBUTING.rst
.. _`Github` : https://github.com/projectmesa/mesa/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Mesa-0.8.9.tar.gz
(647.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
Mesa-0.8.9-py3-none-any.whl
(668.9 kB
view details)
File details
Details for the file Mesa-0.8.9.tar.gz.
File metadata
- Download URL: Mesa-0.8.9.tar.gz
- Upload date:
- Size: 647.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
603adf98ad8a2d2db57689e9b281ffba15bd3174438d37a3668d54b921b12c18
|
|
| MD5 |
3d30f74977960a1ecd7de986d855ed55
|
|
| BLAKE2b-256 |
549a841b4836f6082338300a54fb02c5c42e1f615bc5bae05fbfff60c9da604d
|
File details
Details for the file Mesa-0.8.9-py3-none-any.whl.
File metadata
- Download URL: Mesa-0.8.9-py3-none-any.whl
- Upload date:
- Size: 668.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0c129f3bc3405e7775472ff41317dc33a1b7a155d7b66f524520b34048c9d69
|
|
| MD5 |
3960e009a1e0bb00a73a3b74045d5929
|
|
| BLAKE2b-256 |
3bf1f1d6ac8cd6e66cc2d0d1f9d631877110e87a74f113e6e3227e9054e09176
|