This is what I want: [Production MySQL Data] -> [Development MySQL Data]
For debugging or improvement, I occasionally need to have a copy of the data running on the production site to be present in my development environment. Obviously I don't want to actually use the production database and manually entering the data is out of the question.
Are there any admin scripts out there that allow this to happen (preferably using Django's management interface) effortlessly and painlessly? What would be ideal would be something like:
manage.py reverse_sync [appname]
Or perhaps manage.py reverse_sync [appname] 500
to get only the first 500 records.