Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Python Rest Client for Consuming Bamboo Deliverables

GN April 30, 2015

Hi there,

I was wondering if there is a python rest client  build for consuming Bamboo deliverables.

 

Thanks,

GN

 

1 answer

1 vote
rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 30, 2015

Hello GN,

Thank you for your question.

You could be running the following, if suits you:

import requests
import json

# [BAMBOO-BASE-URL], i.e.: http://localhost:8085
url = '[BAMBOO-BASE-URL]/rest/api/latest/info'
headers = {'Content-Type': 'application/json'}


# create page
# [USERNAME], i.e.: admin
# [PASSWORD], i.e.: admin
r = requests.get(url, headers=headers, auth=('[USERNAME]', '[PASSWORD]'))
print(r.status_code)
print(r.text)

If you find this answer useful, I would kindly ask you to accept it so the same will be visible to others who might be facing the same issue you have inquired.

Thank you for your understanding.

Kind regards,
Rafael P. Sperafico
Atlassian Support

Nate R December 26, 2017

That did the trick! Thanks! Very helpful!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events