File size: 297 Bytes
56d74b6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # coding=utf-8
from atlassian import Confluence
confluence = Confluence(url="http://localhost:8090", username="admin", password="admin")
status = confluence.update_page(
parent_id=None,
page_id=123456,
title="This is the new title",
body="This is the new body",
)
print(status)
|