All Projects → jroakes → gsc-logger

jroakes / gsc-logger

Licence: other
Google Search Console Logger for Google App Engine

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gsc-logger

flight2bq
RTLSDR ADS-B dump1090 to Google BigQuery
Stars: ✭ 33 (-13.16%)
Mutual labels:  bigquery
issue-collab
A GitHub Issues searcher inspired by Hacktoberfest
Stars: ✭ 26 (-31.58%)
Mutual labels:  search-engine
firestore-to-bigquery-export
NPM package for copying and converting Cloud Firestore data to BigQuery.
Stars: ✭ 26 (-31.58%)
Mutual labels:  bigquery
hive compared bq
hive_compared_bq compares/validates 2 (SQL like) tables, and graphically shows the rows/columns that are different.
Stars: ✭ 27 (-28.95%)
Mutual labels:  bigquery
torchtrajectory
The World's First Search Engine for Trajectory Data
Stars: ✭ 28 (-26.32%)
Mutual labels:  search-engine
query-wellformedness
25,100 queries from the Paralex corpus (Fader et al., 2013) annotated with human ratings of whether they are well-formed natural language questions.
Stars: ✭ 80 (+110.53%)
Mutual labels:  search-engine
typesense-dart
Dart client for Typesense
Stars: ✭ 50 (+31.58%)
Mutual labels:  search-engine
bigquery-data-lineage
Reference implementation for real-time Data Lineage tracking for BigQuery using Audit Logs, ZetaSQL and Dataflow.
Stars: ✭ 112 (+194.74%)
Mutual labels:  bigquery
LegalQA
Korean LegalQA using SentenceKoBART
Stars: ✭ 77 (+102.63%)
Mutual labels:  search-engine
SmartImage
Reverse image search tool (SauceNao, ImgOps, trace.moe, and more)
Stars: ✭ 346 (+810.53%)
Mutual labels:  search-engine
lnx
⚡ Insanely fast, 🌟 Feature-rich searching. lnx is the adaptable, typo tollerant deployment of the tantivy search engine. Standing on the shoulders of giants.
Stars: ✭ 844 (+2121.05%)
Mutual labels:  search-engine
patzilla
PatZilla is a modular patent information research platform and data integration toolkit with a modern user interface and access to multiple data sources.
Stars: ✭ 71 (+86.84%)
Mutual labels:  search-engine
deploy-appengine
A GitHub Action that deploys source code to Google App Engine.
Stars: ✭ 184 (+384.21%)
Mutual labels:  google-appengine
FUTURE
A private, free, open-source search engine built on a P2P network
Stars: ✭ 19 (-50%)
Mutual labels:  search-engine
bulksearch
Lightweight and read-write optimized full text search library.
Stars: ✭ 108 (+184.21%)
Mutual labels:  search-engine
first-contrib-app
A search engine to find good beginner issues across Github and become an open source contributor !
Stars: ✭ 33 (-13.16%)
Mutual labels:  search-engine
sphinxql
SphinxQL query builder for Node.js. sphinxql package supports Manticore Search and Sphinx Search
Stars: ✭ 21 (-44.74%)
Mutual labels:  search-engine
fastHistory
A python tool connected to your terminal to store important commands, search them in a fast way and automatically paste them into your terminal
Stars: ✭ 24 (-36.84%)
Mutual labels:  search-engine
tag-manager
Website analytics, JavaScript error tracking + analytics, tag manager, data ingest endpoint creation (tracking pixels). GDPR + CCPA compliant.
Stars: ✭ 279 (+634.21%)
Mutual labels:  bigquery
api.rss.ui
Simple search interface around FeediRSS API.
Stars: ✭ 52 (+36.84%)
Mutual labels:  search-engine

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].