Painless Google Analytics
Project description
Gapy is a thin service account client for Google Analytics.
Get set up
First you need to create either a service account or client ID in your Google API Console. If you’re authenticating as a service account you’ll need to download your private key. If you’re authenticating as a web or installed application you’ll need to download your client secrets file (Download JSON in API Access list).
Then just create a gapy client and start querying. Ids, metrics and dimensions can be provided as lists or single values.
import gapy.client
# For a service account
client = gapy.client.from_private_key(
"your account name",
private_key="your private key",
storage_path="path/to/storage.db")
# For a web or installed application
client = gapy.client.from_secrets_file(
"/path/to/client_secrets.json",
storage_path="/path/to/storage.db")
)
reach_data = client.query.get("12345",
datetime(2012, 1, 1),
datetime(2012, 2, 2),
['ga:visits', 'ga:visitors'],
'ga:date')
Google API documentation
This library is a layer over the Google Python API. If you wish to work on it, it may be necessary to consult the Google Analytics API documentation.
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 gapy-1.2.0.tar.gz.
File metadata
- Download URL: gapy-1.2.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
123a806f03000e9b1acd311de94aa1f46fd97d0556773fe4f1cf17c8fea7b58e
|
|
| MD5 |
22df965c2e3efbac2be0fd062b3afeb7
|
|
| BLAKE2b-256 |
20e81d79864b6447172c2400011373bd9c8ecfbc4f4e28ef678958fb1b5437ed
|