A fixture is a collection of data that Django knows how to import into a database, can be written as XML, YAML, or JSON documents. They can be used to provide initial data for models.
4
votes
0answers
55 views
How can I load a Django fixture too large to fit into memory?
I wish to load initial data using fixtures as described here
https://docs.djangoproject.com/en/dev/howto/initial-data/
This would be easy enough with a small data set. However I wish to load a ...
0
votes
0answers
23 views
DeserializationError while loading a datamigration for auth data
I want to auto populate my_app with some auth data (permission, user and group). This app was recently converted to south and only have a initial migration. For generating these fixtures, I did a ...
0
votes
0answers
35 views
What is the right way to give initial data in production with django?
I have deployed my first django app with appfog, i have provided fixtures with this command,
python manage.py dumpdata --format=json --indent=2 auth > /path/to/my/app/fixtures/initial_data.json
...
0
votes
1answer
44 views
Initial Data Django Fixtures Issue: Installed 0 object(s) from 0 fixture(s)
I am having a little trouble with importing initial data through xml files. For example I name this file in myapp/fixtures/initial_data.xml:
<?xml version="1.0" encoding="UTF-8"?>
<rows>
...
0
votes
2answers
39 views
Loading Fixtures Django
I'm trying to load some fixtures within my Django tests, but they don't seem to load.
In my settings.py, I specify:
FIXTURE_DIRS = (os.path.join(PROJECT_DIR, 'dhtmlScheduler\\fixtures\\'))
Now, ...
0
votes
1answer
74 views
django doesn't load initial fixtures while syncdb
I've got a django project with following structure:
/djninja # project dir
/djninja # main app dir
/bands # app dir
/fans # app dir
/lyrics # app dir
I've created a initial_data.yaml file ...
0
votes
0answers
28 views
Google App Engine: Django Load Fixtures
Normally we load fixtures, like:
python manage.py loaddata fixture.yaml
but to upload to google database, it was suggested on here previously:
python manage.py loaddata remote fixture.yaml , but ...
0
votes
0answers
92 views
How to modify dumpdata generated django json fixture prior to loading into database
I am a relative django newbie. I have a json fixture for the django.contrib.auth.user objects from an existing database that I want to load into my test app. The specific field I want to modify are ...
0
votes
0answers
64 views
Django database with ForeignKey and Fixture
I am trying to implement a restaurant chief website.
So basically, I have States, Cities, Restaurants and Chiefs.
Class State(models.Model):
name = models.CharField(max_length=30)
Class ...
4
votes
2answers
57 views
Install Django fixture from URL
I've got a few rather large fixtures of static data (about 20MB each) that I'd like to keep out of my repo to keep the repo size under control. Is there any way to load fixtures from a URL? I took a ...
0
votes
2answers
72 views
Django and Dynamic Example Data
I'm trying to find a way to easily generate an example/demonstration data set from initial_data.json in Django.
Essentially, the fixtures and initial_data.json do exactly what I need, except that the ...
1
vote
4answers
97 views
How to instantiate class by package_name.module_name.class_name “path”
I want to implement something a bit similar to django fixture system where in fixture you set model property which indicates a model class of fixture. It looks something like this
...
1
vote
0answers
108 views
django loading fixtures fails on unicode data
I saved a bunch of fixtures via dumpdata, here is an example:
[
{
"pk": 1,
"model": "core.question",
"fields": {
"text": "\u041a\u0430\u043a\u0438\u0445 ...
0
votes
1answer
72 views
Django Admin: Why are some fields showing up empty?
I have a Django blog with a "Post" model like so:
class Post(models.Model):
title = models.CharField(max_length=1000)
author = models.CharField(max_length=200)
pub_date = ...
1
vote
2answers
148 views
Django is ignoring my TestCase fixtures
I've got Django 1.4. In my test.py, I've got the requisite TestCase import:
from django.test import TestCase
To isolate the issue, I've added the line:
fixtures = ['westeros']
to the default ...
0
votes
2answers
175 views
How can I make a fixture out of QuerySet in django?
Django dumpdata command is broken because it does not support any reasonable way to narrow down the amount of data dumped. I need to create a fixture of various querysets (and I don't need to take ...
1
vote
1answer
235 views
Is DateTimeField with auto_now_add option enabled must has value in fixtures
I have model created field configurated as follows:
created = models.DateTimeField(auto_now_add=True)
In JSON fixtures I don't want to declare value for created, but when I try to load fixtures ...
0
votes
0answers
34 views
Django - how to tell if save is executed during fixture loading
I've adapted the snippet here: http://djangosnippets.org/snippets/2319/ to call full_clean() on a model whenever it is saved. I had to add in a line to avoid getting an error when duplicate session ...
0
votes
0answers
233 views
How to add django auth user to a group via fixture
I have a JSON fixture where I add data for auth.user and auth.group (with permissions). How do I link these users to groups within the fixture?
Django uses a related manager for doing this ...
0
votes
1answer
205 views
How best to initialize one-time-only Django objects which can't be fixtures?
I am writing an app in Django which has a few sitewide fixed objects I need to instantiate which, for one reason or another, can't be fixtures.
For example, some (e.g. Permissions) I can't hardcode a ...
0
votes
0answers
67 views
How can I create fixtures for testing when 'loaddata' doesn't work?
I am trying to create some test fixtures for an open source project I want to extend.
There is a Node model and it's subclassed by Question model.
It seem that the problem is that Node uses a custom ...
0
votes
2answers
87 views
Fixtures in raw Python?
Is there a way to have fixtures in raw Python to, for example, create initial data from external files? I have fixtures in JSON presently, and it might actually be more effective to migrate them to a ...
0
votes
1answer
64 views
Django, applications with fixtures
I am writing Django app, it is an admin interface based on jQuery Grid Plugin. Now i want to make demo of this app and to allow experiments with different data, and of course just to test it. Do you ...
1
vote
1answer
984 views
Django fixtures. JSONDecodeError
I've a Django project and I want to add test data to database. When I make syncdb like this
python ~/django/foo/manage.py syncdb
After tables are installed I've got an error
Problem installing ...
1
vote
1answer
215 views
Django's syncdb is inserting duplicated entries in auth_permission table
I have created my models in django and run manage.py syncdb
Everything was ok, until I added a new model in an existing app. When I run syncdb again, duplicated entries were inserted in ...
0
votes
1answer
195 views
Proper way to manage fixtures in django
today I had a discussion with my colleguaes about how we should manage fixtures in our django application. We cound not find any solution that would satisfy everyone, so I'm asking this question here.
...
0
votes
1answer
133 views
Django testing: How to get a database with ONLY fixture data and no IntegrityErrors (by diagnosing the source of errors)?
I'm trying to run tests with fixture data, and getting the infamous IntegrityError: column user_id is not unique error.
Now, looking at my fixtures, I can see that the ids of my User models in my ...
0
votes
2answers
154 views
syncdb not adding fixtures in 3rd party project
I've written a pretty simple Django application called django-locality which takes the headache out of working with countries and territories. It provides a lot of initial data for countries and ...
3
votes
2answers
153 views
How can I loaddata from a fixture remotely
With Django-nonrel on GAE, how do I do I load in a fixture to the server after deploying? I'm able to do it locallay via
python manage.py loaddata fixturename
But how can I do it on a deployed ...
2
votes
2answers
213 views
model.save() not called when loading Django fixtures?
I am overriding my Django model save() method, so I can do some extra sanity checking on the object. (Is save() the correct place to do this?)
It doesn't appear that my fixtures/initial_fixtures.yaml ...
5
votes
3answers
476 views
What is the best way to continuously export information from a Scrapy crawler to a Django application database?
I am trying to build a Django app that functions sort of like a store. Items are scraped from around the internet, and update the Django project database continuously over time (say every few days). I ...
4
votes
1answer
1k views
Migrating django admin auth.groups and users to a new database using fixtures
Here's the scenario:
I'm using django's admin interface and I would like to be able to load users and groups via fixtures (if this is possible.) I'm able to dump users/groups like so:
manage.py ...
7
votes
1answer
1k views
IntegrityError when loading fixture during django testing
I'm loading a fixture created with dumpdata, and getting the following exception:
Problem installing fixture 'db_dump.json': Traceback (most recent call last):
File ...
2
votes
1answer
287 views
Are django fixtures a reliable database backup?
Django n00b here. I was wondering, are django fixtures a reliable way to backup my data, instead of actually backup up the database? What if my database is very large?
Thanks.
2
votes
3answers
588 views
Import data into Django model with existing data?
I'm working on an online form builder tool (specifically for insurance agents). One of the things we would like to offer our customers is to have pre-built forms for common products (auto, home, ...
2
votes
4answers
2k views
“No fixtures found” during syncdb/schemamigration with initial_data.yaml [Django 1.3]
I have a few apps set up, to one of which I just added a fixture. I created an "initial_data.yaml" file in a subdirectory "fixtures" under the app folder, so the full path is ...
1
vote
1answer
336 views
Images in Django fixtures?
I was looking at Django fixtures in the docs, there was no mention of preloading images into the database. I can't be the only who needed to do this. Is this possible? If so how? If not, are there any ...
0
votes
1answer
236 views
create fixtures with custom manager methods, json dumps and ways to avoid type error :xxx is not json serializable
I'm trying to create a test fixture using custom manager methods as my app uses a subset of dbtables and fewer records. so i dropped the idea of using initial_data. In manager I'm doing something like ...
3
votes
2answers
670 views
How to load Django fixtures from all apps?
I'm using fixtures in my Django application but only two apps are getting their fixtures loaded.
When I manually run loaddata with --verbosity=2 I can see that it only looks in two apps although I ...
3
votes
1answer
354 views
manage.py datadump of a large database in Django 1.1 (creating testdatabase)
To be able to do some decent unittests I want to create a testdatabase. After reading the Django docs, I came to the conclusion that the best way to do this is by creating a testdatabase from the ...
2
votes
2answers
350 views
Django: Have different initial_data fixtures for different stages (testing v. production)
I have an initial_data fixture that I want to load everytime except for production. I already have different settings file for production and non-production deployments.
Any suggestions on how to ...
1
vote
2answers
403 views
Django - Fixtures in XML
Could anyone points out the docs which describes how the fixture can be done with XML?
2
votes
1answer
162 views
Can Django Syncdb handle compressed initial_data.json.tgz fixtures?
Need to keep the size of the package down, so is it possible to compress the initial data in some supported format for syncdb to pickup?
0
votes
1answer
42 views
How to recognize that Django fixtures loading is ongoing?
I have delusions that I've seen it in some piece of code and it's some variable's state. Example usage would be in signal handlers.
2
votes
2answers
444 views
Error in django unittest while loading a fixture
I am making unittests for a django app. I need some data in the database for my tests so I am using a json fixture.
I have two fixtures:
for users and it works ok.
for some webpages
The fixture ...
7
votes
1answer
396 views
Django, generic relations, make fixtures
I'm trying to add generic relations and one-to-one relations support for django-test-utils makefixture command, here is the source ...
1
vote
1answer
239 views
google-app-engine-django loading fixtures
I'm having troubles loading fixtures on GAE with google-app-engine-django. I receive an error that says "DeserializationError: Invalid model identifier: 'fcl.User'"
./manage.py ...
5
votes
1answer
546 views
Do Django Fixtures load in incorrect order when testing?
I am testing my application and I am running into an issue and I'm not sure why. I'm loading fixtures for my tests and the fixtures have foreign keys that rely on each other. They must be loaded in a ...
2
votes
1answer
1k views
Understanding Django initial_data fixture
Question
Why does Django automatically load the initial_data.json fixture when it's located inside the project directory but not located in one of the three specified locations that Django searches ...
4
votes
2answers
484 views
Django - testing using large tables of static data
I am using "manage.py test" along with a JSON fixture I created using using 'dumpdata'
My problem is that several of the tables in the fixture are very large (for example one containing the names of ...


