python-omniture
python-omniture copied to clipboard
A high-level Python wrapper for the Adobe Omniture API.
Hi, I've been using this library for a while now. But since yesterday I ran into a new issue while running the below line : omniture.authenticate('my_username', 'my_secret') My username and...
I am not able to import the Omniture package. I am able to install it but It gives me error while import. Some information: Python : 3.7.7 OS : Mac...
error {'error': 'Bad Request', 'error_description': 'Invalid login.', 'error_uri': None} File "C:\Users\abcd\Anaconda3\lib\site-packages\omniture\__init__.py", line 31, in authenticate return Account(username, secret, endpoint) File "C:\Users\abcd\Anaconda3\lib\site-packages\omniture\account.py", line 42, in __init__ data = self.request('Company', 'GetReportSuites')['report_suites'] File...
Thanks so much for keeping up this library! I just did a minor correction to the syntax in the range() documentation on the README.
Hi Justin, I am new to omniture , but in my requirement I have to create a warehouse report in which I have custom breakdowns variables and other are standard...
@dancingcactus The setup.py is missing package `future` in `install_requires`. It is necessary to import the library. Not sure about the other packages in `requirements.txt`.
The Readme specifies that when keyword argument `days` is used with `.range()` that it is how many days _back_ from the start date. However, it is how many days _after_...
I noticed Adobe doesn't support DW yet for their v1.4 endpoint. Overriding the endpoint by running analytics = omniture.authenticate(account, secret ,endpoint="https://api.omniture.com/admin/1.3/rest/") breaks stuff down the line. Did you explore implementing...
Hello, Thanks for this awesome package, it's saved me a ton of time. One issue I have ran into is when I attempt to pass metrics as a list, I...