I'm currently working on extracting data from an OLAP table using the PyCelonis library. However, I've encountered an AttributeError while attempting to retrieve the content of an analysis(olap table). Here's the code snippet I'm using:
```python
from pycelonis import get_celonis
celonis = get_celonis()
space = celonis.studio.get_space('4c************1b')
package = space.get_package('64**************de')
analysis = package.get_analysis('e7*************b')
content = analysis.get_content() # This line raises an AttributeError
The error message I'm receiving is:
AttributeError: 'Analysis' object has no attribute 'get_data'
I've checked the documentation, but it seems that the 'Analysis' object doesn't have a 'get_content' attribute. Could you please guide me on how to correctly retrieve the data or content associated with this analysis? What method or function or attribute should I use after the 'analysis' object to access the analysis data?