I read about de/serializers but i couldn't find my way here. I have two apps, one where i store my data(scraped data) and another where i use the current/new data to display. I have identical models in these two apps. So i converted model of say app A to json and now i want to populate model of app B with that json . How might it be done? I didn't like to use django REST framework though.
so i did python manage.py dumpdata app_name > somefile.json
how do i populate fields of model B with the contents of somefile.json?