Skip to content Skip to sidebar Skip to footer

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

Solution 1:

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()

Post a Comment for "Adobe Analytics Python Api"