Last active
October 24, 2022 18:12
-
-
Save aleenprd/6b3e45ebba2885fb0f1c73c49b58c20f to your computer and use it in GitHub Desktop.
imports_scraper_classes
This file contains hidden or 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 | |
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 time import sleep | |
from typing import List |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment