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 3.41.5 fails on import with `ModuleNotFoundError: No module named 'bs4'`
Yes, 3.41.5 shipped with a broken import: `confluence.py` imports `BeautifulSoup` from bs4, but the dependency was missing from the package requirements, so any `from atlassian import Jira` crashed. The maintainer acknowledged it the same d
- atlassian-python-api Confluence `create_page` fails on Cloud: need the v2 REST API
How to fix: atlassian-python-api Confluence `create_page` fails on Cloud: need the v2 REST API. The verified fix from the maintainer thread, distilled into reusable steps.