Covid Simulation GUI

This file contains code to run a Covid model using the biomodel package. It creates a Covid model instance and an InterfaceModel instance, and then runs the model.

 1"""
 2This file contains code to run a Covid model using the biomodel package. It creates a Covid model instance and an InterfaceModel instance, and then runs the model.
 3"""
 4from biomodel.models import Covid
 5from biomodel.gui import InterfaceModel
 6
 7if __name__ == '__main__':
 8    model = Covid()
 9
10    variation = {}
11
12    model = InterfaceModel(model, None, variation)
13    model.run()