Actions
  Rest api ẅith python » History » Revision 6
      « Previous |
    Revision 6/18
      (diff)
      | Next »
    
    Javier Hernandez, 2010-11-09 10:15 
    
    
Using the REST API with Python¶
Here is the two well-known options for using REST API with python.
PyActiveResource example:¶
# Importing pyactiveresource
from pyactiveresource.activeresource import ActiveResource
class Issue(ActiveResource):
    _site = 'http://redmine.foo.org'
    _user = 'username'
    _password = 'password'
# Get issues
issues = Issue.find()
# Get a specific issue, from its id
issue = Issue.find(1345)
# Issue attributes
# Updating an attribute
Updated by Javier Hernandez almost 15 years ago · 6 revisions