I'm using django and django-rest-framework.
I have a YAML file that represents a database. Every object has an id and data.
I want to be able to use the data as a resource in drf. I don't need to create new objects and save them, I just need to read it.
Am I supposed to use fixtures for this? Or is there a better way.