I am also looking for a way to do this.
Depends on what you need and what you want to do, but a way to access them would be using Entity and Collections classes.
DATAMODEL_ENDPOINT = 'datamodel/model'
datamodels = Collection(self.service_wrapper.service, DATAMODEL_ENDPOINT)
for datamodel in datamodels:
// do stuff
... View more