Gediminas Rapolavicius
Gediminas Rapolavicius
Accordign to this https://github.com/debrouwere/google-analytics/blob/master/googleanalytics/query.py#L614 we can set precision using ``` query.range('2014-01-01', '2014-01-31', precision='FASTER') ``` However, it seems to be broken: ``` TypeError: range() got an unexpected keyword argument 'precision' ```...
I have the following code: ``` profile = ga.authenticate(**credentials) report = profile.core.query.segment('condition::perUser::ga:sessions>10').metrics('users').range('2015-01-01', '2015-01-31', precision='HIGHER_PRECISION').get() ``` However, it throws KeyError: ``` Traceback (most recent call last): File "/Users/ged/dev/py-ga/foobar.py", line 47, in...