Skip to content

bchaney/gsc-logger

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GSC Logger: A Tool To Log Google Search Console Data to BigQuery

Google App Engine provides a Cron service for logging daily Google Search Console(GSC): Search Analytics data to BigQuery for use in Google Data Studio or for separate analysis beyond 3 months.

Configuration

This script runs daily and pulls data as specified in config.py file to BigQuery. There is little to configure without some programming experience.
Generally, this script is designed to be a set-it-and-forget-it in that once deployed to app engine, you should be able to add your service account email as a full user to any GSC project and the Search Analytics data will be logged daily to BigQuery. By default the data is set to pull from GSC 7 days earler every day to ensure the data is available.

  • Note: This script should be deployed on the Google Account with access to your GSC data to ensure it is available to Google Data Studio
  • Note: This script has not been widely tested and is considered a POC. Use at your own risk!!!
  • Note: This script only works for Python 2.7 which is a restriction for GAE currently

More installation details located here. Developed by Technical SEO Agency, Adapt Partners

Deploying

The overview for configuring and running this sample is as follows:

1. Prerequisites

2. Clone this repository

To clone the GitHub repository to your computer, run the following command:

$ git clone https://github.com/jroakes/gsc-logger.git

Change directories to the gsc-logger directory. The exact path depends on where you placed the directory when you cloned the sample files from GitHub.

$ cd gsc-logger

3. Create a Service Account

  1. Go to https://console.cloud.google.com/projectselector/iam-admin/serviceaccounts and create a Service Account in your project.
  2. Download the json file.
  3. Upload replacing the file in the credentials directory.

4. Deploy to App Engine

  1. Configure the gcloud command-line tool to use the project your Firebase project.
$ gcloud config set project <your-project-id>
  1. Change directory to appengine/
$ cd appengine/
  1. Install the Python dependencies
$ pip install -t lib -r requirements.txt
  1. Create an App Engine App
$ gcloud app create
  1. Deploy the application to App Engine.
$ gcloud app deploy app.yaml \cron.yaml \index.yaml

4. Verify your Cron Job

Go to the Task Queue tab in AppEngine and click on Cron Jobs to verify that the daily cron is set up correctly. The job should have a Run Now button next to it.

4. Verify App

Once deployed, you should be able to load your GAE deployment url in a browser and see a screen that lists your service account email and also attached GSC sites. This screen will also list the last cron save date for each site that you have access to.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Google Search Console Logger for Google App Engine

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 90.7%
  • HTML 7.1%
  • JavaScript 2.2%