Skip to main content

GAPandas is a Python package for accessing Google Analytics API data using Pandas for use in models, reports or visualisations

Project description

GAPandas

GAPandas is a Python package that lets you query the Google Analytics reporting API and return results in Pandas DataFrames, so they can be easily analysed, reported, or plotted in Python applications. It is a simple wrapper to Google's official API which is designed to reduce code and simplify development, especially from Jupyter Notebook environments.

Setup

GAPandas is easy to set up. First, you need to obtain a client_secrets.json keyfile from Google Analytics in order to authenticate. Google's documentation explains how to do this.

Once you have created a client_secrets.json file, download it and store it on your machine and note the path to the file. Add the associated email as a user in your Google Analytics account.

Basic example

To make a query, authenticate by running connect.get_service() passing it the path to your client_secrets.json keyfile.

from gapandas import connect, query

service = connect.get_service('path/to/client_secrets.json')

Now you have a connection, construct an API query to pass to the API. This "payload" must include a start-date and end-date, some metrics and some dimensions stored in a Python dictionary.

The queries can sometimes be fiddly to write. I recommend using the Google Analytics Query Explorer to construct a valid API query or creating a prototype in Google Sheets. In the below example, we'll fetch sessions, pageviews and bounces by date for the past 30 days.

payload = {
    'start_date': '30daysAgo',
    'end_date': 'today',
    'metrics': 'ga:sessions, ga:pageviews, ga:bounces',
    'dimensions': 'ga:date'
}

Now you can then use the query.run_query() function to pass your payload to the API, along with the service object and your Google Analytics view ID.

results = query.run_query(service, '123456789', payload)
print(results)

By default, this will return a Pandas DataFrame containing your query results. However, by passing the optional value of 'raw' at the end of the function you can also return the raw data object. The query method also provides some other features to extract data from the raw object.

results = query.run_query(service, '123456789', payload, 'raw')

You can run multiple queries in succession and use the Pandas merge() function to connect these together. Pandas also makes it very easy to write the data to a file, such as a CSV or Excel document or write it to a database. You can use the data in reports, visualisations or machine learning models with very little code.

Pagination

If you do not define max_results the API will return a default of 1000 rows in a single page. You can set this to a maximum of 10000 in your payload.

Pagination is handled automatically. GAPandas will fetch each page of results and return them all in a single DataFrame (or object if you pass the raw flag in your query.)

Changes

  • Version 0.16 - Added set_dtypes() function to set the correct dtypes and improved error handling.
  • version 0.17 - Fixed bug in use of exit()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gapandas-0.21.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

gapandas-0.21-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

Details for the file gapandas-0.21.tar.gz.

File metadata

  • Download URL: gapandas-0.21.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for gapandas-0.21.tar.gz
Algorithm Hash digest
SHA256 03fae33f3b35dad1ef5488b6b63d6d5abbd13110e156f0257f77918e26e967cf
MD5 6ef8c86ad532e1cf5156849348205da3
BLAKE2b-256 369059f7559a9f713869f8f16496d4ccb35f008ac06baa991a2120270d294c07

See more details on using hashes here.

File details

Details for the file gapandas-0.21-py3-none-any.whl.

File metadata

  • Download URL: gapandas-0.21-py3-none-any.whl
  • Upload date:
  • Size: 12.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5

File hashes

Hashes for gapandas-0.21-py3-none-any.whl
Algorithm Hash digest
SHA256 c638c36b27ae05d502c2acce3114bde2963d0a3c0af4a035751ec8549933f318
MD5 41d4eba2d582dd6e53dbe0c2f876e376
BLAKE2b-256 b7f83feac931f302cc6ce5d7af15d2b9a0a796d2e878f44dde379412164f4564

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page