When want to grab your data from Google Analytics: gagrab it.
Project description
gagrab
The official Google Analytics API is very powerfull and extensive. Sometimes, though, you just want to grab some data and have it returned in a clean format.
from service_account_auth import AuthorizedService
from gagrab import Grabber
my_ga_service = AuthorizedService('my-project-555', 'analytics', 'v3')
grabber = Grabber(my_ga_service)
data = grabber.query(
view='UA-000000-1',
metrics=['sessions', 'pageviews'],
dimensions=['browser', 'userAgeBracket']
start_date='2014-07-01',
end_date='2014-08-15',
)
Installation
To install the latest release, type:
pip install gagrab
To install the latest code directly from source, type:
pip install git+git://github.com/ambitioninc/gagrab.git
The gagrab.Grabber object requires a service_account_auth.AuthorizedService object during initialization. Installation and setup instructions for gclient-service-account-auth can be found on the github page https://github.com/ambitioninc/gclient-service-account-auth.
Documentation
Full documentation is available at http://gagrab.readthedocs.org
License
MIT License (see LICENSE)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file gagrab-0.2.0.tar.gz
.
File metadata
- Download URL: gagrab-0.2.0.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 690d69f516397c3886042102f2be8761a81a2732bba87dcc9d9bb072f365bd45 |
|
MD5 | 2981e1866da20f2c698679cb0f35dd00 |
|
BLAKE2b-256 | 0d9c21026a0e5ebaa0845706e72900b5fa1efcec3755770d960f1d15a3306d4d |