Skip to content

Instantly share code, notes, and snippets.

@DerekHawkins
Created July 29, 2019 11:50
Show Gist options
  • Save DerekHawkins/356c8568bf58683d4c84c8472ab55285 to your computer and use it in GitHub Desktop.
Save DerekHawkins/356c8568bf58683d4c84c8472ab55285 to your computer and use it in GitHub Desktop.
### Essentials ###
import pandas as pd # for working with the data
import requests # calling on various APIs used in this process
import urllib # for developing URLs for REST API calls
# Time Manipulation #
from calendar import monthrange # for developing timeframes on a monthly basis
import datetime # for compiling dates so we never have to load in time variables every month
import time # for basic time manipulaltion
# Third Party API
from google_search_console import searchconsole # a wrapper for Google's Search Console API
# Optional libraries
from tqdm import tqdm_notebook as tqdm # progress bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment