Package bank_regulation_project

Expand source code
from os.path import isfile
from os.path import dirname

version_file = '{}/version.txt'.format(dirname(__file__))

if isfile(version_file):
    with open(version_file) as version_file:
        __version__ = version_file.read().strip()

Sub-modules

bank_regulation_project.economy

This module is the central one in the bank regulation project …

bank_regulation_project.utils

This module provides several functions useful to run the simulations that we define in the economy.py file …