Reputation: 179
has someone ever used python to query Adobe analytics API? Do you have a template of the code? I cannot find a way to query the API with python using adobe most updated documentation
thanks
Upvotes: 0
Views: 3046
Reputation: 370
I actually developed a python module to use the 1.4 version of the Analytics API. You can check it out here : http://www.datanalyst.info/python/adobe-api/adobe-analytics-api-introduction/
It will return you either a dataframe or a csv file.
Let me know what you think
Upvotes: 1
Reputation: 1744
Instead of raw requests to the REST API you might want to check out the latest version of this framework for Python >=3.5
Upvotes: 0
Reputation: 328
You have to use REST 1.4 in order to send the request and get Response in JSON then show the request as per your format.There is no specific format for that as it depends on specific requirement.
Link for API Explorer
In case you looking for sample Python Library then check A Python Library To Access Omniture's SiteCatalyst Reporting API ,though it 5 years old but to get idea it is not bad.
Upvotes: 0