vote up 1 vote down star

Currently I have a lot of python objects in my code similar to the following:

class MyClass():
  def __init__(self, name, friends):
      self.myName = name
      self.myFriends = [str(x) for x in friends]

Now I want to turn this into a Django model, where self.myName is a string field, and self.myFriends is a list of strings.

from django.db import models

class myDjangoModelClass():
    myName = models.CharField(max_length=64)
    myFriends = ??? # what goes here?

Since the list is such a common data structure in python, I sort of expected there to be a Django model field for it. I know I can use a ManyToMany or OneToMany relationship, but I was hoping to avoid that extra indirection in the code.

Edit:

I added this related question, which people may find useful.

flag

Indirection in the code eh? That's what you call database design these days? Those darn kids. – drozzy Jul 10 at 19:14
@drozzy: Well I probably could have used a different phrase, but basically what I meant, was I want to pass in a list of strings and get back a list of strings. I don't want to create a bunch of Friend objects, and call inst.myFriends.add(friendObj) for each of them. Not that it would be all that hard, but... – grieve Jul 10 at 20:08

6 Answers

vote up 5 vote down check

Would not this relationship be better expressed as a one-to-many foreign key relationship to a Friends table? I understand that myFriends are just strings but I would think that a better design would be to create a Friend model and have MyClass contain a foreign key realtionship to the resulting table.

link|flag
This is probably what I will end up doing, but I was really hoping the underlying structure for this would have been built in. I guess I am to o lazy. – grieve Jul 10 at 16:11
vote up 0 vote down

Using one-to-many relation (FK from Friend to parent class) will make your app more scalable (as you can trivially extend the Friend object with additional attributes beyond the simple name). And thus this is the best way

link|flag
vote up 2 vote down

"Premature optimization is the root of all evil."

With that firmly in mind, let's do this! Once your apps hit a certain point, denormalizing data is very common. Done correctly, it can save numerous expensive database lookups at the cost of a little more housekeeping.

To return a list of friend names we'll need to create a custom Django Field class that will return a list when accessed.

David Cramer posted an guide to creating a SeperatedValueField on his blog. Here is the code:

from django.db import models

class SeparatedValuesField(models.TextField):
    __metaclass__ = models.SubfieldBase

    def __init__(self, *args, **kwargs):
        self.token = kwargs.pop('token', ',')
        super(SeparatedValuesField, self).__init__(*args, **kwargs)

    def to_python(self, value):
        if not value: return
        if isinstance(value, list):
            return value
        return value.split(self.token)

    def get_db_prep_value(self, value):
        if not value: return
        assert(isinstance(value, list) or isinstance(value, tuple))
        return self.token.join([unicode(s) for s in value])

    def value_to_string(self, obj):
        value = self._get_val_from_obj(obj)

The logic of this code deals with serializing and deserializing values from the database to Python and visa-versa. Now can import and use our custom field in the model class:

from django.db import models
from custom.fields import SeparatedValuesField 

class Person(models.Model):
    name = models.CharField(max_length=64)
    friends = SeparatedValuesField()
link|flag
+1 for a great answer, but we are already doing something like this. It is really squishing all the values into one string then splitting them out. I guess I was hoping for something more like a ListofStringsField, which actually builds the separate table and makes the foreign keys automatically. I am not sure if that is possible in Django. If it is, and I find an answer, I will post it on stackoverflow. – grieve Jul 13 at 20:35
If that's the case then you're looking for initcrash's django-denorm. You'll find it on github: github.com/initcrash/django-denorm/… – jb Jul 15 at 1:07
vote up 1 vote down
class Course(models.Model):
   name = models.CharField(max_length=256)
   students = models.ManyToManyField(Student)

class Student(models.Model):
   first_name = models.CharField(max_length=256)
   student_number = models.CharField(max_length=128)
   # other fields, etc...

   friends = models.ManyToManyField('self')
link|flag
vote up 0 vote down

You can store virtually any object using a Django Pickle Field, ala this snippet:

http://www.djangosnippets.org/snippets/513/

link|flag
Which is database dependent. – drozzy Jul 10 at 19:23
No, it isn't. Read the description of the snippet. – Harold Jul 11 at 3:40
vote up 2 vote down

Remember that this eventually has to end up in a relational database. So using relations really is the common way to solve this problem. If you absolutely insist on storing a list in the object itself, you could make it for example comma-separated, and store it in a string, and then provide accessor functions that split the string into a list. With that, you will be limited to a maximum number of strings, and you will lose efficient queries.

link|flag
I am fine with the database storing it as a relation, I was hoping the Django models abstracted that portion out for me already. From the app side I am always going to want to treat it as a list of strings. – grieve Jul 10 at 15:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.