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

Improved README

Changeset 8d8d8ba98de7

Parent 1a9a662e2272

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

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

Change 1 of 2 Show Entire File README.txt Stacked
 
2
3
4
5
 
 
 
 
 
6
 
7
8
9
 
26
27
28
29
 
30
31
32
 
2
3
4
 
5
6
7
8
9
10
11
12
13
14
 
31
32
33
 
34
35
36
37
@@ -2,8 +2,13 @@
   This Python API is simply a wrapper around the FogBugz API, with some help from Leonard Richardson's BeautifulSoup (http://www.crummy.com/software/BeautifulSoup/) and the magic of Python's __getattr__().   -A quick example: +Getting Started: +To use the FogBugz API, just put the file fogbugz.py somewhere on your Python path. It's probably easiest to add this before the import: +>>> import sys +>>> sys.path.append("""c:\code\fbapi""") +>>> from fogbugz import FogBugz   +A Quick Example:  >>> from fogbugz import FogBugz  >>> fb = FogBugz("http://example.fogbugz.com/") # URL is to your FogBugz install  >>> fb.logon("logon@example.com", "password") @@ -26,7 +31,7 @@
 >>> resp  <response><case ixbug="1" operations="edit,assign,resolve,email,remind"></case></response>   -For more info on the API +For more info on the API:  http://our.fogbugz.com/help/topics/advanced/API.html    Known Issues: