atlassian-python-api
atlassian-python-api copied to clipboard
Atlassian Python REST API wrapper
Environment ```bash Oracle Linux 8.6 Python 3.9.13 pip 23.1.2 atlassian-python-api 3.39.0 ``` It appears that `\n` is getting appended when generating bearer token ```bash Traceback (most recent call last): File...
Hi, we have a pretty large list of projects, and when we retrieve the project list from the cloud, and the list is paginated, the library gets stuck in a...
As far as I can tell, there is currently no support for retrieving tasks from Confluence cloud. I'm happy to look into adding this, but wanted to check if this...
Hello! Warning level logging is way too chatty even in %100 success cases. There are multiple examples where the method attempts what it exactly needs to do - but library...
clean install of package under python 3.12 is not working. Loading the package via import from atlassian import Confluence throws various exceptions Traceback (most recent call last): File "C:\Program Files\JetBrains\PyCharm...
According to [Change-Log](https://developer.atlassian.com/cloud/confluence/changelog/?_ga=2.53849325.452053375.1677760751-994106626.1652863942#CHANGE-864) many functions of Confluence rest api v1 will stop working, and if I'm not mistaken, these libraries use api-rest version 1 (/wiki/rest/api/ instead of /wiki/rest/api/v2)
The examples are out of date and not working, since the signature (i.e. argument names) has changed, e.g. ```py # Trigger specific Pipeline on a specific revision of the master...
Tried this code confluence = Confluence( url= atlassian_url, username=username, password=password, api_version="cloud" ) with open("output.pdf", "wb") as pdf_file: pdf_file.write(confluence.export_page("142186113")) with open("output.pdf", "wb") as pdf_file: pdf_file.write(confluence.get_page_as_pdf("142186113")) Both giving error ------ ``` Traceback...
Our infra team have switched on rate limits on our instance (no issues with that, right thing to do), but consequently our publishing code is borked. What do people do?...
https://github.com/atlassian-api/atlassian-python-api/blob/ac0e1fe3fa612941a383e51ab527d95236108232/atlassian/bitbucket/cloud/repositories/commits.py#L37-L38 A trailing slash is always added to the URL in requests for this endpoint. If the "top" param is set, then the resulting URL will be https://api.bitbucket.org/2.0/repositories/{workspace}/{repo_slug}/commits/{commit}/. This results...