On Wed, Apr 29, 2009 at 7:09 AM, Dennis Schmidt
<metzelti...@googlemail.com>wrote:

>
> Hi Mike,
>
> thanks a lot but that was unfortunately not what I ment. Your
> assignmements are static in
>
> In [2]: n = TestFun(name="mike", description="Testing is always
> fun.")
>
> but I need them to be dynamic. So in the above case NAME wouldn't be
> hardcoded but come from a dictionary. {'name': 'mike'} like this.


You can pass a dictionary instead of keyword arguments. This is a standard
Python, and works in general, there's nothing specific about the Django
model creation routines here:

>>> a1 = 'name'
>>> a2 = 'description'
>>> d = { a1:'mike', a2:'Testing is always fun'}
>>> tf = TestFun(**d)
>>> tf.save()
>>> TestFun.objects.all()
[<TestFun: mike>]
>>> d[a1] = 'Sue'
>>> TestFun.objects.create(**d)
<TestFun: Sue>
>>> TestFun.objects.all()
[<TestFun: mike>, <TestFun: Sue>]
>>>

Karen

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to