On 17-8-2012 18:41, Tom wrote:

> I'm able to export the data this way, but I can't get the attributes
> of the full model as I would as if I was using the Django shell.
> Particularly important is the ID of an object, because without that I
> won't know which ID to update on the remote web service. That's why
> I'm only dealing with "created" objects for now.

Why not? You have full access to the created instance with the instance
argument passed to the post_save signal.
You could for example use:
from django.forms import model_to_dict
data = model_to_dict(instance)
print data

and you should see the pk there.

-- 
Melvyn Sopacua

-- 
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