library · inferred from evidence
atlassian-python-api
A Python library for interacting with Atlassian APIs, including Confluence.
- atlassian-python-api `delete_space` on a missing space raises generic ApiError instead of ApiNotFoundError
You were right: the library was swallowing the 404 into a generic `ApiError`. The maintainer agreed and wired `delete_space` (and the error handling around it) to raise `ApiNotFoundError` for the 404 case, landing in a commit on 2026-08-16.
- atlassian-python-api Confluence `create_page` fails on Cloud: need the v2 REST API
The library historically only used the v1 REST API, which is why `create_page()` started failing on Confluence Cloud with that `PermissionException`. The maintainers implemented v2 API support in the 5.0.0 release, so the fix is to upgrade