FogBugz » FogBugzPy A Python wrapper for the FogBugz API Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9.1, 0.9.2, and 0.9.3

Added some better info to README

Changeset 1a9a662e2272

Parent 01d7b6e898bf

by Profile picture of User 10Tyler G. Hicks-Wright <tghw@fogcreek.com>

Changes to one file · Browse files at 1a9a662e2272 Showing diff from parent 01d7b6e898bf Diff from another changeset...

Change 1 of 1 Show Entire File README.txt Stacked
 
8
9
10
11
 
12
 
 
13
14
15
 
8
9
10
 
11
12
13
14
15
16
17
@@ -8,8 +8,10 @@
 >>> fb = FogBugz("http://example.fogbugz.com/") # URL is to your FogBugz install  >>> fb.logon("logon@example.com", "password")  >>> resp = fb.search(q="assignedto:tyler") # All calls take named parameters, per the API ->>> resp # Responses are BeautifulSoup objects of the response XML +>>> resp # Responses are BeautifulSoup objects of the response XML.  <response><cases count="2"><case ixbug="1" operations="edit,assign,resolve,email,remind"></case><case ixbug="2" operations="edit,spam,assign,resolve,reply,forward,remind"></case></cases></response> +>>> # You shouldn't need to know too much about BeautifulSoup, but the documentation can be found here: +>>> # http://www.crummy.com/software/BeautifulSoup/documentation.html  >>> for case in resp.cases.childGenerator(): # One way to access the cases  ... print case['ixbug']  ...