hc99's picture
Add files using upload-large-folder tool
56d74b6 verified
# 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)