This python library provides and API to the PhysiBoSS-Models Database. You can list models, look at their metadata, and download them.
pip install physiboss-models
To start, you need to create the Database object:
import physiboss_models as pm
db = pm.DataBase()
models = db.all()
models = db.search("invasion")
versions = db.versions(model)
db.download_model(model, path, version)
This will download a model (pre-compiled binary, config files) into the informed path. You can soecify a version, if you don't it will download the latest one.
Once loaded, you can access the model metadata with
metadata = db.current_model_info()