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
class ImdbReviewScraper(Scraper): | |
"""Implements methods for scraping IMDB. | |
Inherited Attributes: | |
chromedriver (chromedriver): a Chrome webdriver for Selenium. | |
Own Methods: | |
@staticmethod get_ratings_page | |
@staticmethod get_reviews_page | |
get_episodes_links |
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
class ImdbReviewScraper(Scraper): | |
"""Implements methods for scraping IMDB. | |
Inherited Attributes: | |
chromedriver (chromedriver): a Chrome webdriver for Selenium. | |
Own Methods: | |
@staticmethod get_ratings_page | |
@staticmethod get_reviews_page | |
get_episodes_links |
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
"""Python executable which scrapes IMDB for reviews.""" | |
import argparse | |
import pandas as pd | |
from time import sleep | |
from tqdm import tqdm | |
from dependencies.general import timing | |
from dependencies.scrapers import ImdbReviewScraper |
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 pandas as pd | |
from urllib import request | |
from bs4 import BeautifulSoup | |
from fake_useragent import UserAgent | |
from typing import Union | |
from time import sleep | |
class WorldPostCodeScraper: | |
"""Scraper class for https://worldpostalcode.com/.""" |
OlderNewer