I'm pretty new to python myself, but my favorite way to inspect
objects that I have found so far is the builtin method dir(). As in:

dir(Publisher.objects.get(pk=1))

dir() tells you all of the methods and attributes for a given object,
though it doesn't display the value of attributes.
--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to