#! /usr/bin/python3
from indico_install.utils import get_app_hashes


for app, _hash in get_app_hashes().items():
    print("{app:<15s}{_hash}".format(
        app=app,
        _hash=_hash
    ))
