I have a SQL database administrate with Django (web Framework). On this database, items are only update. In other side, I have a NoSQL database (document-oriented). Sometimes, I need to migrate the SQL Data to NoSQL document forms and insert it on the NoSQL database.
I saw this question: Migrate data from relational DB to NoSQL But the answer does not suit me.
And I saw Django-nonrel can help me to get a connector to a NoSQL database.
In my case, are there tools or any solutions more appropriate than create classes and methods in Python by myself for transform SQL data to NoSQL document?