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

Hi, I'm trying to use the `q` parameter to filter the list of pipelines that Pipelines.each() generates but that doesn't seem to work: ``` p = r.pipelines.each(q="target.ref_name=\"master\"", sort="-created_on") >>> print(next(p))...

We should use `%`, `.format`, or f-strings instead for situations when keys or values are integers, since `+` does not automatically type-convert for us.

`remove_page_history` and `remove_content_history_in_cloud` fail with error ``` requests.exceptions.HTTPError: null for uri: ``` When looking inside the module, the request returns a 404 status

help wanted
confluence

Is there a way to link a repository in Bamboo using the existing API? I'm looking to create a tool in python to link repos under a plan and also...

help wanted
bamboo

I have been using this to get the status if a PR is conflicted or not: ``` for work_space in cloud.workspaces.each(): for project in work_space.projects.each(): print(f'Checking repositories in: \'{project.name}\'.') for...

bitbucket

Hi! if it's interesting to community let's wrap that Yogi Requirements app - https://docs.requirementyogi.com/data-center/rest-api - https://developer.requirementyogi.com/ Cheers, GT

help wanted

When searching for a page (using `get_page_by_title`) if the page does not exist, this currently gets executed: ``` except (IndexError, TypeError) as e: log.error("Can't find '%s' page on the %s!",...

The API I'm using to list Bitbucket Cloud projects doesn't seem to work as expected. I'm following the documentation here: https://atlassian-python-api.readthedocs.io/bitbucket.html#bitbucket-cloud Steps to Reproduce: Use the following code to create...

help wanted
bitbucket

Hello there, im trying to generate a comment in a pull request using bitbucket cloud and im getting an error. Steps to reproduce: using this sample code block, im trying...

help wanted
bitbucket

I couldn't find a way to edit a confluence page using this SDK. My use case is to set a homepage for a space. Is it possible? thanks