0

I have a django admin page but i don't have the database file on my computer. How can i extract all datas from the admin page in a databse file (e.g. MyDB.sqlite) on my hard disk ?

Kozet
  • 1,103
  • 1
  • 11
  • 19

1 Answers1

0

You probably want to go through something specifically meant to support programmatic interaction with your Django site.

Checkout Django REST Framework for an example. There are others out there, too.

Peter Rowell
  • 17,605
  • 2
  • 49
  • 65