<div dir="ltr">Is that possible?</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 13, 2015 at 2:23 PM, Ravikumar Patel <span dir="ltr">&lt;<a href="mailto:ravikumarpatel2610@gmail.com" target="_blank">ravikumarpatel2610@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">This is a follow up question. How do I now access each bug&#39;s XML page now that I have the bug IDs I needed?</div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 13, 2015 at 1:34 PM, Cole Robinson <span dir="ltr">&lt;<a href="mailto:crobinso@redhat.com" target="_blank">crobinso@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>On 01/13/2015 12:59 PM, Ravikumar Patel wrote:<br>
&gt; Hello,<br>
&gt;<br>
&gt; I am trying to get the bug ID of all bugs from my Bugzilla account. Any<br>
&gt; suggestions as to how I am able to do so? Is it possible that to query for all<br>
&gt; projects and then access the bug IDs from each project? If so, then how?<br>
&gt;<br>
&gt; So far my code looks like this:<br>
&gt;<br>
&gt; |bz = bugzilla.Bugzilla(url=&#39;<a href="https://bugzilla.mycompany.com/xmlrpc.cgi" target="_blank">https://bugzilla.mycompany.com/xmlrpc.cgi</a>&#39;)<br>
&gt; try:<br>
</span>&gt;    bz.login(&#39;<a href="mailto:name@email.com" target="_blank">name@email.com</a> &lt;mailto:<a href="mailto:name@email.com" target="_blank">name@email.com</a>&gt;&#39;, &#39;password&#39;);<br>
<span>&gt;    print&#39;Authorization cookie received.&#39;<br>
&gt; except bugzilla.BugzillaError:<br>
&gt;    print(str(sys.exc_info()[1]))<br>
&gt;    sys.exit(1)|<br>
&gt;<br>
&gt; Here is the link to the stackoverflow question page:<br>
&gt; <a href="http://stackoverflow.com/questions/27869663/how-do-i-query-bugzilla-to-get-all-the-bug-ids-using-python-and-xml-rpc" target="_blank">http://stackoverflow.com/questions/27869663/how-do-i-query-bugzilla-to-get-all-the-bug-ids-using-python-and-xml-rpc</a><br>
&gt;<br>
&gt; I really need help on this. Any suggestions?<br>
<br>
</span>bugs = bz.query(bz.build_query(assigned_to=&quot;your-bugzilla-account&quot;))<br>
for bug in bugs:<br>
    print <a href="http://bug.id" target="_blank">bug.id</a><br>
<span><font color="#888888"><br>
- Cole<br>
<br>
<br>
<br>
</font></span></blockquote></div><br></div>
</div></div></blockquote></div><br></div>