Search code examples
python-3.xsdkadobe-analytics

Adobe Analytics Python API


I am trying to return page hits for the last month. I am using a Python Sdk that can be found HERE

I am using the code below:

report = suite.report.element("evar3").run()

It is only returning the top 10. How can I get to provide the full list?


Solution

  • As far as the Adobe API request itself, you need to specify the top property.

    I'm not familiar with that python-sdk library you linked or even python in general so this is just an educated guess, but looking at the documentation you linked, looks like you should be able to do the following:

    report = suite.report.element("evar3",top=10).run()