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 | |
# Fix for Ubuntu builds prefixing file:// to file paths when pasting into terminal from clipboard. | |
# By faustus (2017) | |
# https://gist.github.com/firstworldproblems/74d6f826096a2c491904f7a4f8e2f951 | |
import os | |
import pyperclip | |
import time | |
class ClipboardWatcher(): |
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
#-*- coding: utf-8 -*- | |
from importlib import reload | |
from seleniumwire import webdriver | |
from seleniumwire.utils import decode | |
import certifi | |
import cgi | |
import json | |
import locale | |
import os | |
import re |
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
import furl | |
import requests | |
import htmlmin | |
from bs4 import BeautifulSoup | |
from datetime import date, datetime | |
from dateutil import parser | |
import datefinder | |
import dateparser | |
from difflib import SequenceMatcher as SM | |
from fuzzywuzzy import fuzz, process |