I started programming with django. Now I have to import some data from files. What is the best way to do this in django 1.7?
I just only want to do this once, so I wrote a script, where I can put the data into the database of django. My problem at this point is, that I have to check some dependencies, before I add data to database.
I tried to check, if the Value, what I want to import, already exist in Database. But I get Error:
{AppRegistryNotReady}Models aren't loaded yes.
So I think I do something wrong.