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

Atlassian Python REST API wrapper

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

This PR fixes a datetime parsing issue when reading Bitbucket Cloud commit dates that include both an explicit timezone and a trailing 'Z', e.g. 2025-09-18T21:26:38+00:00Z Such values previously caused a...

When getting "commits" from bitbucket cloud the date attribute is returning an exception. ``` for commit in commits: print(commit) try: print(commit.date) except Exception as e: print(f"Error: {e}") ``` ### Output...

Using this; `attachments = confluence.download_attachments_from_page(confluence_page_id, path=directory) with os.scandir(directory) as entries: for entry in entries: if entry.is_file(): attach_file_to_page(parent_url + "/spaces/" + slug + "/pages/WebHome",entry.path,entry.name)` and ` attachments % ls -l 57245722...

I have been getting: ```Error listing Confluence spaces: com.atlassian.confluence.api.service.exceptions.GoneException: This deprecated endpoint has been removed.``` while using the library with an OAuth token. It appeears the `confluence.get_all_spaces()` method fails with...

The needed endpoints: Repos: List hook-scripts : https://developer.atlassian.com/server/bitbucket/rest/v906/api-group-repository/#api-api-latest-projects-projectkey-repos-repositoryslug-hook-scripts-get Remove hook-scripts: https://developer.atlassian.com/server/bitbucket/rest/v906/api-group-repository/#api-api-latest-projects-projectkey-repos-repositoryslug-hook-scripts-scriptid-delete Create/update hook-scripts: https://developer.atlassian.com/server/bitbucket/rest/v906/api-group-repository/#api-api-latest-projects-projectkey-repos-repositoryslug-hook-scripts-scriptid-put Server itself: Remove hook-script: https://developer.atlassian.com/server/bitbucket/rest/v906/api-group-system-maintenance/#api-api-latest-hook-scripts-scriptid-delete Download script: https://developer.atlassian.com/server/bitbucket/rest/v906/api-group-system-maintenance/#api-api-latest-hook-scripts-scriptid-content-get Get infos about the script: https://developer.atlassian.com/server/bitbucket/rest/v906/api-group-system-maintenance/#api-api-latest-hook-scripts-scriptid-get Upload an...

bitbucket

It is very difficult to interact with the responses, since they actually return JSON objects from the API. It would be nice to use something like dataclass or TypedDict. The...

I am trying to download the page as pdf for a given page_id. I am getting a html content back and thus a corrupted PDF file. I followed this [link](https://github.com/atlassian-api/atlassian-python-api/blob/master/examples/confluence/confluence_export_page.py)...

confluence