Bug

Revision 2 as of 2007-07-24 14:23:56

Clear message

Bug - tutorial

General workflow

That is the way to use python-launchpad-bugs to get information on a bugreport or to edit a bugreport:

   1 >>> import launchpadbugs.connector as Connector
   2 >>> Bug = Connector.ConnectBug()
   3 >>> bug = Bug(120593)

It is also possible to get a bugreport by its url:

   3 >>> bug = Bug("https://bugs.launchpad.net/buglog-data/+bug/120593")

If you want to change the bugreport or view private bugs you have to set Bug.authentication:

   4 >>> Bug.authentication="cookie.txt"

Attributes of a bugreport

Overview

add a table of all attributes

Attachments

Get a list of attachments:

   5 >>> print bug.attachments
   6 [<Attachment (up: #8554243), (down: /home/markus/.bughelper/attachments-cache/buglog-data/120593/8554243/79140.patch)>, <Attachment (up: #8558770)>, <Attachment (up: #8554203)>, <Attachment (up: #8541039)>]

Comments