MARIO
Perform impact analysis using regional input-output tables and models.
https://github.com/it-is-me-mario/mario
Category: Industrial Ecology
Sub Category: Input Output Model
Last synced: about 20 hours ago
JSON representation
Repository metadata
Multifunctional Analysis of Regions through Input-Output
- Host: GitHub
- URL: https://github.com/it-is-me-mario/mario
- Owner: it-is-me-mario
- License: gpl-3.0
- Created: 2021-10-27T16:50:58.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-08T11:32:00.000Z (7 days ago)
- Last Synced: 2026-01-10T19:13:22.335Z (4 days ago)
- Language: Python
- Size: 30.8 MB
- Stars: 47
- Watchers: 1
- Forks: 16
- Open Issues: 31
- Releases: 11
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE
- Zenodo: .zenodo.json
README.rst
.. image:: https://avatars.githubusercontent.com/u/121170888?s=400&u=4cec21e036afea744bef6886998fa302fca02ce0&v=4
:width: 100
:align: right
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
.. image:: https://readthedocs.org/projects/mario-suite/badge/?version=latest
:target: https://mario-suite.readthedocs.io/en/latest/index.html
:alt: Documentation Status
.. image:: https://badge.fury.io/py/mariopy.svg
:target: https://badge.fury.io/py/mariopy
.. image:: https://zenodo.org/badge/421900437.svg
:target: https://zenodo.org/badge/latestdoi/421900437
*******
MARIO
*******
Multifunctional Analysis of Regions through Input-Output. (`Documents `_)
What is it
-----------
**MARIO** is a python package for handling input-output tables and models inspired by `Pymrio `_ .
MARIO aims to provide a *simple* & *intuitive* API for common IO tasks without
needing in-depth programming knowledge. MARIO supporst automatic parsing of different
structured tables such EXIOBASE, EORA, EUROSTAT, and FIGARO in different formats namely:
* Single region
* Multi region
* Hybrid tables
* Monetary tables
* Input-Output tables
* Supply-Use tables
When databases are not structured, MARIO supports parsing data from xlsx, csv, txt files
or pandas.DataFrames.
More than parsing data, MARIO includes some basic functionalities:
* Aggregation of databases
* SUT to IOT transformation
* Modifying database in terms of adding:
* New sectors, activities or commodities to the database
* Adding new extensions to the satellite account
* Scneario and shock analysis
* Backward and forward linkages analysis
* Extracting single region database from multi region databases
* Balance test
* Productivity test
* Exporting the databases into different formats for scenarios analyzed
* Interactive visualization routines
Requirements
------------
MARIO has been tested on macOS and Windows.
To run MARIO, a couple of things are needed:
#. Being in love with Input-Output :-)
#. The Python programming language
#. A number of Python adds-on packages
#. MARIO software itself
************
Installation
************
The easiest way to make MARIO software working is to use the free
conda package manager which can install the current and future MARIO
depencies in an easy and user friendly way.
To get conda, `download and install "Anaconda Distribution" `_
. Between differnet options for running python codes, we strongly suggest, `Spyder `_,
which is a free and open source scientific environment written in Python, for Python, and designed by and for scientists,
engineers and data analysts.
You can install mario using pip or from source code. It is suggested to create a new environment by running the following command in the anaconda prompt
.. code-block:: python
conda create -n mario python=3.10
If you create a new environment for mario, to use it, you need to activate the mario environment each time by writing
the following line in *Anaconda Prompt*
.. code-block:: python
conda activate mario
Now you can use pip to install mario on your environment as follow:
.. code-block:: python
pip install mariopy
You can also install from the source code!
**********
Quickstart
**********
A simple test for Input-Output Table (IOT) and Supply-Use Table (SUT) is included in mario.
To use the IOT test, call
.. code-block:: python
import mario
test_iot = mario.load_test('IOT')
and to use the SUT test, call
.. code-block:: python
test_sut = mario.load_test('SUT')
To see the configurations of the data, you can print them:
.. code-block:: python
print(test_iot)
print(test_sut)
To see specific sets of the tables like regions or value added,
get_index function can be used:
.. code-block:: python
print(test_iot.get_index('Region'))
print(test_sut.get_index('Factor of production'))
To visualize some data, various plot functions can be used:
.. code-block:: python
test_iot.plot_matrix(....)
Specific modifications on the database can be done, such as
SUT to IOT transformation:
.. code-block:: python
reformed_iot = test.to_iot(method='B')
The changes can be tracked by metadata. The history can be checked by calling:
.. code-block:: python
reformed_iot.meta_history
The new database can be saved into excel,txt or csv file:
.. code-block:: python
reformed_iot.to_excel(path='a folder//database.xlsx')
********
Citation
********
In case you use mario, you should use our peer reviewed publication (`Tahavori, Golinucci, Rinaldi, et al. `_) for citiation!
.. _RST pckgs:
*********
Read more
*********
Testing MARIO
-------------
The current version of Mario has achieved a test coverage of 49%. This coverage includes a comprehensive 100% assessment of the fundamental mathematical engine.
Additional tests are currently in active development to enhance the package's reliability.
Mario utilizes `pytest `_ as its primary tool for conducting unit tests. For a more detailed analysis of the test coverage pertaining to mario's unit tests,
you can execute the following command:
.. code-block:: python
pytest --cov=mario tests/
.. note::
* This project is under active development.
* More examples will be uploaded through time to the gallery.
* More parsers will be added to the next version.
Publications
------------
* Assessing environmental and market implications of steel decarbonisation strategies: a hybrid input-output model for the European Union (`Rinaldi et al, Environmental Research Letters, 2024 `_ )
* Assessing critical materials demand in global energy transition scenarios based on the Dynamic Extraction and Recycling Input-Output framework (DYNERIO) (`Rinaldi et al, Resources Conservation adn Recycling, 2023 `_ )
* Three different directions in which the European Union could replace Russian natural gas (`Nikas et al, Energy, 2024 `_ )
* Investigating the economic and environmental impacts of a technological shift towards hydrogen-based solutions for steel manufacture in high-renewable electricity mix scenarios for Italy (`Marco Conte et al, IOP Conf. Ser.: Earth Environ. Sci., 2022 `_)
Support Materials
-----------------
* `Input-Output analysis and modelling with MARIO Open University Course `_
License
-------
.. image:: https://www.gnu.org/graphics/gplv3-or-later.png
:target: https://www.gnu.org/licenses/gpl-3.0.en.html
This work is licensed under a `GNU GENERAL PUBLIC LICENSE `_
Supporting Institutions
-----------------------
.. image:: https://github.com/it-is-me-mario/MARIO/blob/pre-releasev0.3.0/doc/source/_static/images/enextgen.png?raw=true
:width: 120
:align: left
:target: https://www.enextgen.it/
.. image:: https://raw.githubusercontent.com/it-is-me-mario/MARIO/7cc701e2e0f23d2cdc0f01c05d6c6e33b30b682e/doc/source/_static/images/polimi.svg
:width: 200
:align: left
:target: https://polimi.it/
Owner metadata
- Name: MARIO
- Login: it-is-me-mario
- Email:
- Kind: organization
- Description: Multifunctional Analysis of Regions through Input-Output
- Website: https://mario-suite.readthedocs.io/en/latest/index.html
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/121170888?v=4
- Repositories: 1
- Last ynced at: 2023-03-09T21:42:06.052Z
- Profile URL: https://github.com/it-is-me-mario
GitHub Events
Total
- Create event: 10
- Release event: 2
- Issues event: 24
- Watch event: 6
- Delete event: 8
- Member event: 1
- Issue comment event: 4
- Push event: 92
- Pull request review comment event: 21
- Pull request review event: 26
- Pull request event: 20
- Fork event: 2
Last Year
- Create event: 3
- Release event: 1
- Issues event: 6
- Watch event: 4
- Delete event: 1
- Issue comment event: 2
- Push event: 43
- Pull request review event: 9
- Pull request review comment event: 8
- Pull request event: 9
- Fork event: 1
Committers metadata
Last synced: 2 days ago
Total Commits: 278
Total Committers: 5
Avg Commits per committer: 55.6
Development Distribution Score (DDS): 0.252
Commits in past year: 2
Committers in past year: 1
Avg Commits per committer in past year: 2.0
Development Distribution Score (DDS) in past year: 0.0
| Name | Commits | |
|---|---|---|
| Mohammad Amin Tahavori | 5****t | 208 |
| Lorenzo Rinaldi | l****3@g****m | 50 |
| Nicolò Golinucci | n****i@g****m | 11 |
| LorenzoRinaldi | l****1@g****m | 8 |
| Amedeo Felice Alberio | a****a@f****m | 1 |
Committer domains:
- fb.com: 1
Issue and Pull Request metadata
Last synced: about 1 month ago
Total issues: 71
Total pull requests: 85
Average time to close issues: 4 months
Average time to close pull requests: 23 days
Total issue authors: 7
Total pull request authors: 7
Average comments per issue: 0.46
Average comments per pull request: 0.13
Merged pull request: 70
Bot issues: 0
Bot pull requests: 0
Past year issues: 7
Past year pull requests: 11
Past year average time to close issues: N/A
Past year average time to close pull requests: about 23 hours
Past year issue authors: 4
Past year pull request authors: 3
Past year average comments per issue: 0.29
Past year average comments per pull request: 0.0
Past year merged pull request: 7
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- LorenzoRinaldi (27)
- mohammadamint (22)
- nigolred (18)
- graebnerc (1)
- adrienjacob (1)
- maximikos (1)
- CamiCit (1)
Top Pull Request Authors
- mohammadamint (49)
- LorenzoRinaldi (26)
- nigolred (4)
- geo-mathijs (2)
- CamiCit (2)
- gitter-badger (1)
- AAmedeo (1)
Top Issue Labels
- enhancement (20)
- bug (17)
- documentation (5)
- good first issue (1)
- help wanted (1)
- NXG (1)
- FUL (1)
- dependencies (1)
- deprecate (1)
Top Pull Request Labels
- enhancement (7)
- bug (2)
- dependencies (2)
- deprecate (2)
- NXG (1)
- FUL (1)
Package metadata
- Total packages: 1
-
Total downloads:
- pypi: 643 last-month
- Total dependent packages: 1
- Total dependent repositories: 1
- Total versions: 10
- Total maintainers: 2
pypi.org: mariopy
A python package for automating input-output (IO) calculations, models,visualization and scenario analysis
- Homepage: https://github.com/it-is-me-mario/MARIO
- Documentation: https://mariopy.readthedocs.io/
- Licenses: GNU General Public License v3.0
- Latest release: 0.3.5 (published 12 months ago)
- Last Synced: 2026-01-12T03:34:20.132Z (3 days ago)
- Versions: 10
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 643 Last month
-
Rankings:
- Dependent packages count: 4.744%
- Stargazers count: 11.855%
- Forks count: 11.93%
- Average: 14.644%
- Dependent repos count: 21.642%
- Downloads: 23.052%
- Maintainers (2)
Dependencies
- twine * develop
- bleach ==4.1.0 develop
- certifi ==2021.10.8 develop
- charset-normalizer ==2.0.7 develop
- colorama ==0.4.4 develop
- docutils ==0.18 develop
- idna ==3.3 develop
- importlib-metadata ==4.8.1 develop
- keyring ==23.2.1 develop
- packaging ==21.2 develop
- pkginfo ==1.7.1 develop
- pygments ==2.10.0 develop
- pyparsing ==2.4.7 develop
- pywin32-ctypes ==0.2.0 develop
- readme-renderer ==30.0 develop
- requests ==2.26.0 develop
- requests-toolbelt ==0.9.1 develop
- rfc3986 ==1.5.0 develop
- six ==1.16.0 develop
- tqdm ==4.62.3 develop
- twine ==3.4.2 develop
- urllib3 ==1.26.7 develop
- webencodings ==0.5.1 develop
- zipp ==3.6.0 develop
- IPython >=7.22.0
- ipykernel *
- nbsphinx *
- numpy >=1.21.2
- openpyxl >=3.0.6
- pandas >=1.3.3
- plotly >=4.12.0
- pymrio >=0.4.6
- sphinx >=1.6.4
- sphinx-autobuild *
- sphinx_rtd_theme >=0.2.4
- tabulate >=0.8.9
- xlsxwriter <=1.3.7
- IPython >=7.22.0
- numpy >=1.21.2
- openpyxl >=3.0.6
- pandas >=1.3.3
- plotly >=4.12.0
- pymrio *
- tabulate >=0.8.9
- xlsxwriter <=1.3.7
- IPython *
- numpy *
- openpyxl *
- pandas *
- plotly *
- pymrio *
- tabulate *
- xlsxwriter *
Score: 12.438493033624592