atlassian-python-api icon indicating copy to clipboard operation
atlassian-python-api copied to clipboard

Atlassian Python REST API wrapper

Results 242 atlassian-python-api issues
Sort by recently updated
recently updated
newest added

For an repo I can enable/disable LFS. But the same is missing for the forking setting. On the the UI I can change this, so please add this also to...

I created a repository access token and I ran the below code to get my issues for a repo ``` from atlassian.bitbucket import Bitbucket bb = Bitbucket(url='https://api.bitbucket.org/', token='REPO_ACCESS_TOKEN', cloud=True) bb.get_issues(workspace,...

It is possible to set Service Level Agreements / SLA Metrics details for a given Service Desk Management project. In Jira Service Management project, those are listed at: `https://{}.atlassian.net/jira/servicedesk/projects/{}/settings/sla` which...

feature
help wanted

Is there a way to include comments when calling get_page_by_id? Maybe using the expand parameter? I haven't been able to find anything for retrieving comments, only creating them.

I have a strange problem. If I don't use monkey.patch_all, everything works fine When I use monkey.patch_all in flask, advanced_mode changes to True ```python from gevent import monkey monkey.patch_all() from...

Looks like will be great to have that info https://brizoit.atlassian.net/wiki/spaces/CCJDOCS/pages/3259727873/REST+API

Is it currently possible to add or modify users/groups in the Bitbucket repository permissions? This can be accomplished through the API, but I couldn't locate any relevant information in the...

There is an API available to obtain commits in a PR https://developer.atlassian.com/cloud/bitbucket/rest/api-group-pullrequests/#api-repositories-workspace-repo-slug-pullrequests-pull-request-id-commits-get But there is no corresponding function in the PullRequest object. I want to obtain the list of commits...

feature
bitbucket

1. add a commit "test" to dev branch 2. push to the remote branch dev 3. create a pull request from dev to master 4. use api get_commits did't return...

Hi, I'm trying to use the `q` parameter to filter the list of commits that `commits.each()` generates but that doesn't seem to work: `commits = repository.commits.each(q="hash=\"7d947c8a7c70bc72d8e77f0d1010a380ccf7c03f\"")` `for commit in commits:`...