Tagged Questions

4
votes
2answers
2k views

How do you put a file in a fixture in Django?

I can easily fill the field of a FileField or ImageField in a Django fixture with a file name, but that file doesn't exist and when I try to test my application it fails because that file doesn't ...
2
votes
1answer
55 views

Django - Foreign Keys in Fixtures

I have a fixture of "User" objects (just the default Django auth ones), and am trying to create a fixture of "Profile" objects. Each profile has a one-to-one relation to a user object, and defines ...
2
votes
2answers
601 views

cannot dump data by using python ./manage.py dumpdata app

I crated an app in Django project. For testing purpose, I would like to create fixture files. I found that I can dump my database in order to create fixture automatically if I already has data. I want ...
1
vote
2answers
90 views

formatting string output with linebreaks and tabs in Python?

Im trying to extract some data from a large batch of files and convert them to a specific (JSON) format for importing into a database using Django Fixtures I've been able to get this far: '{ {\n ...
1
vote
1answer
54 views

Importing data from scanned text into Django as YAML fixture or SQL

I'm setting up a simple Django app -- a quiz. The questions and answers come from printed sample tests that have been scanned, OCR'd and parsed. I've parsed them into Python objects like so: class ...
1
vote
3answers
208 views

initial_data fixture management in django

The django projet I'm working on has a ton of initial_data fixture data. It seems by default the only way to have data load automatically is to have a file in your app folder called fixtures, and the ...
1
vote
6answers
2k views

How to load sql fixture in Django for User model?

Does anyone knows how to load initial data for auth.User using sql fixtures? For my models, I just got have a < modelname >.sql file in a folder named sql that syncdb does it's job beautifully. But ...
0
votes
1answer
95 views

Making a django Fixture that gets 100 items from each Table, or follows foreign keys

I need to create some fixtures for django test. Does anyone know of a shortcut that lets me get x number of rows from every table in database and serialize it? Background: I have Multiple tables ...