Last active
October 20, 2022 18:53
-
-
Save aleenprd/54173c4e4eeac4549c82c7ee286050c9 to your computer and use it in GitHub Desktop.
IMDB Scraper Imports
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
# Data manipulation | |
import pandas as pd | |
import re as regex | |
# Scraping | |
import requests | |
from bs4 import BeautifulSoup | |
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.chrome.service import Service | |
from webdriver_manager.chrome import ChromeDriverManager | |
# Miscelaneous | |
from typing import Callable | |
from tqdm import tqdm | |
from time import time, sleep | |
from typing import List, Callable, Union |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment