Здравствуйте.
Необходимо получить контекст страницы confluence
с помощью модуля - atlassian-python-api
https://github.com/AstroTech/atlassian-python-api
есть пример кода как создать новую страницу
from atlassian import Confluence
confluence = Confluence(
url='http://localhost:8090',
username='admin',
password='admin')
status = confluence.create_page(
space='DEMO',
title='This is the title',
body='This is the body. You can use <strong>HTML tags</strong>!')
print(status)
Не могу понять как получить значение контекста страницы.
Прошу помочь.