I am trying to parse the contents of a Confluence page (here is some documentation for reference https://atlassian-python-api.readthedocs.io/confluence.html?highlight=space#template-actions
)
I am using the following Python code:
from atlassian import Confluenceconfluence = Confluence(url='https://amun.atlassian.net/wiki/spaces/EN/pages/369361/Cash+Debt', username="name@email.com", password="PASSWORD", cloud=True)print(confluence)
I receive the following object:<atlassian.confluence.Confluence object at 0x7fde6005db5>
How can I access the contents of that object? Or is there a different way to do this entirely?
Thank you in advance!