On Tue, 2006-09-26 at 13:50 +0000, James Mulholland wrote:
> Suppose I have a dictionary like this:
> 
> data = { 'a':'1', 'b':'2', 'c':'3' }
> 
> and a model like this:
> 
> class Test(models.Model):
>     a = models.CharField(maxlength=8)
>     b = models.CharField(maxlength=8)
>     b = models.CharField(maxlength=8)
> 
> I would like (in a python script) to be able to say
> 
> t = Test(data)
> t.save()
> 
> and have The Right Thing occur. Unfortunately, the script barfs at
> t.save(). Is there a way to do this? 

You're close. Try:

        t = Test(**data)
        t.save()
        
This is equivalent to Test(a = '1', b = '2', c = '3').

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to