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
"""Lifehack to speed up going through IFTTT emails of new movies posted to Reddit | |
""" | |
import re | |
from itertools import count | |
from operator import itemgetter | |
import requests | |
from lxml import html | |
import webbrowser |