Skip to content

Instantly share code, notes, and snippets.

View richieri's full-sized avatar

Ronaldo Richieri richieri

View GitHub Profile
@richieri
richieri / scrape_google_groups.py
Created February 21, 2018 14:02 — forked from punchagan/scrape_google_groups.py
A simple script to scrape a google group.
import json
from os.path import exists
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.common.exceptions import TimeoutException
class GoogleGroupsScraper(object):
""" A simple class to scrape a google group. """