Re: I am moving my existing project backend from php to Django rest framework to create rest api's.And also i need to retain my existing data. can any one help me?

2018-12-08 Thread Wanderley S
Hi, if I understood, you have a data base and needs to expose it by creating an API. The workflow to achieve this would be: "Points" Django to your data base, inspect to create the models, review the models, create serializers, views and urls. Simple as this! Em Sáb, 8 de dez de 2018 16:13, ankit

Re: I am moving my existing project backend from php to Django rest framework to create rest api's.And also i need to retain my existing data. can any one help me?

2018-12-08 Thread nsamba taufeeq
They is a tool called mysqldump use it to dump the database into an sql file which you can then use on the remote host. There isnt need for changing db if all ypu are doing is changing from php to python. Python is equiped to connect with mysql using a module called python-mysql. On Sat, Dec 8,