On Thu, Jul 16, 2015 at 10:51 AM, Sunil Gupta <su...@planmytour.in> wrote:

> for each column in Obj
>      if column.help_text != "" :
>               print "The column ", column.verbose_name, " has value ",
> column.value
>
> expected output
>
> The column Client Id has value Test_Client_Id
>


Look at the attributes / methods of Obj. Does it have something like
.values() ? Check the help of your ORM to find out.
then, it will be similar to what you have done.

for column in Obj.values():
   if column.help_text is not None:
      print column.verbose_name


What ORM are you using?

-- 
Senthil
_______________________________________________
BangPypers mailing list
BangPypers@python.org
https://mail.python.org/mailman/listinfo/bangpypers

Reply via email to