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/local/bin/python3 | |
# -*- coding: utf-8-sig -*- | |
import os | |
import csv | |
import pyperclip | |
bpath = "C:/Program\ Files\ (x86)/Google/Chrome/Application/chrome.exe" | |
output_file = './output/monitization_results.csv' |
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
.margin.top-0{ | |
margin-top:0 | |
} | |
.margin.bottom-0{ | |
bottom-top:0 | |
} | |
.margin.top-10{ | |
margin-top:10px | |
} | |
.margin.bottom-10{ |
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/local/bin/python3 | |
# -*- coding: utf-8 -*- | |
from scrapy.crawler import CrawlerProcess | |
from scrapy.loader import ItemLoader | |
from scrapy.loader.processors import TakeFirst, MapCompose, Join | |
from scrapy import Spider, Item, Field | |
from scrapy.settings import Settings | |
# Originally built off of: |