Skip to content

Instantly share code, notes, and snippets.

@aleenprd
Last active October 20, 2022 18:53
Show Gist options
  • Save aleenprd/54173c4e4eeac4549c82c7ee286050c9 to your computer and use it in GitHub Desktop.
Save aleenprd/54173c4e4eeac4549c82c7ee286050c9 to your computer and use it in GitHub Desktop.
IMDB Scraper Imports
# 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