[python-bugzilla] List of all attributes for getting a description of a bug

Cole Robinson crobinso at redhat.com
Fri Jan 9 16:24:46 UTC 2015


On 01/08/2015 02:10 PM, Ravikumar Patel wrote:
> Hello,
> 
> Could I get a list of all attributes/methods to get information of a bug from
> bugzilla. So far I know that you can get the summary and version. Not sure of
> the rest. Could you please send me the list. Thanks.
> 

Just use some code like:

  bug = bz.getbug(123456)
  print dir(bug)

or the command line like:

  bugzilla query --bug_id 112233 --raw

- Cole



More information about the python-bugzilla mailing list