View mechanical-google-search-console-export
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load packages # | |
library(searchConsoleR) | |
library(dplyr) | |
library(ggplot2) | |
library(writexl) | |
library(stringr) | |
# Authorize & choose Google profile # | |
scr_auth() |
View zld-r-gsc-probable-voice-0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load packages # | |
library(searchConsoleR) | |
library(dplyr) | |
library(ggplot2) | |
library(writexl) | |
library(stringr) | |
# Authorize & choose Google profile # | |
scr_auth() |
View quick-check.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os, time, httplib | |
from termcolor import colored | |
SITES = [ | |
"www.meesters-id.nl", | |
"www.carolsingers.nl", | |
] | |
while 1: |
View searchconsoler-search_analytics-databydatebypage-v0.r
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load packages | |
library(searchConsoleR) | |
library(dplyr) | |
library(ggplot2) | |
library(writexl) | |
# Authorize & choose Google profile | |
scr_auth() | |
# Specify website --- CLIENT |
View searchconsoler-add_sitemap_mechanical.r
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load packages | |
library(searchConsoleR) | |
library(dplyr) | |
library(ggplot2) | |
# Authorize & choose Google profile | |
scr_auth() | |
# Specify website --- FULL URL | |
website <- "https://sample.com" |
View chrome_headless_screenshot.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install chromedriver from https://sites.google.com/a/chromium.org/chromedriver/downloads | |
import os | |
from optparse import OptionParser | |
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
CHROME_PATH = '/usr/bin/google-chrome' |