I'm using `setattr()` to set attributes of a new object of a Django model.
obj = apps.get_model(app_label="theme", model_name="MyModel")
setattr(obj,"myCol",100)
obj.save()
I got this error: `TypeError: unbound method save() must be called with DataPopulationTracts2016 instance as first argument (got nothing instead)`.
I want to save the new instance of `MyModel` to the model, using `get_model()` and `setattr()` to make a new instance of the model and set its attributes. How do I make `get_model()` and `setattr()` work with `save()`?