Description
This is an issue I am having trying to use the Atlassian Python API's Confluence module to edit a page. So far, all I have in my code is the call to connect to the page using:
conf = Confluence(url=conf_site, username=conf_user, password=conf_pass, cloud=True)
(obviously I have real values set for the url, username, and password)
and then a call to try and get the status of a page:
status = conf.get_page_properties(page_id=x)
(again, obviously with a real value filled in for x)
and then I try to print that status. However, I get a bunch of traceback errors that look like this:
I have tried this both on a Windows PC as well as a Mac. I get the same sort of traceback errors both times. Please let me know if you have seen anything like this before or if you can point me in the right direction. Thank you.