google-analytics
google-analytics copied to clipboard
A command-line interface and Python API wrapper for Google Analytics.
Hi, I'm trying to get this Analytics API to load into Google's Colab I've tried this: `!pip install git+https://github.com/debrouwere/google-analytics` Which looks like it works, but when I try to import,...
This package is hardcoded for google-api-python-client 1.4.2. However, that version is obsolete and no longer works with Google's API. Please update this package to work with 2.26.1 or newer.
Unable to retrieve data via core reporting api when using ga:clientId dimension. Error: KeyError: 'Cannot find ga:clientId among the available type.' However, using the same query parameters and token, ga:clientId...
This docstring function documentation appears to be wrong: > > precision(self, precision) > For queries that should run faster, you may specify a lower precision, > and for those that...
I'm insert this code with tracking id ` { "vars" : { "gtag_id": "ID", "config" : { "ID": { "groups": "default" } } } } ` The google analytics work...
Does this lib supports GoogleAnalyticsQueryV4?
I'm trying to get a list of the top landing pages [as described here](https://github.com/debrouwere/google-analytics/wiki/Common-Queries) but this documentation is incomplete. All the examples just return a `query` object but that doesn't...
The documentation to authenticate [here](https://github.com/debrouwere/google-analytics/wiki/Authentication) is either confusing or incorrect. It says to get a client id and secret key from the API authentication section, but no such option exists....
After successfully passing step 3 in the authentication, and error pops up: ``` --------------------------------------------------------------------------- KeyError Traceback (most recent call last) in 13 json.dump(credentials, open('credentials.json', 'w')) 14 ---> 15 ga.authenticate(*credentials) ~\Anaconda3\lib\site-packages\googleanalytics\auth\__init__.py...