cliffhanger

Results 4 comments of cliffhanger

Is there any update on this? The below example returns a generator object and its really hard trying to figure out how to process it: https://github.com/atlassian-api/atlassian-python-api/blob/master/examples/bitbucket/bitbucket_get_project_list.py @djgoku Can you please...

@djgoku The example you shared is for Bitbucket Cloud but I am looking for examples for the Bitbucket server. I am trying to get a list of all open PRs...

@djgoku Thank you for the above info. In the above example, how can I use bitbucket.repo_list(project_key) or repo_all_list("project_key") to get a list of all repos, get the repo_slug from them...

Yup, I figure out the issue. I was setting advanced_mode to true while creating the bitbucket session: ``` bitbucket = Bitbucket( url='http://abc.com', username="******", password="*****", advanced_mode=True) ``` Thank you for helping...