I made a web scraper for a password protected website that scrapes data from a table in tehre. the site is protected with a login form and it feels really bad to hardcode my credentials into the script since im pretty sure u can decompile the pyinstaller exe i made from it. Whats the best option here ?
class Scraper:
def __init__(self, username, password):
self.driver = webdriver.Edge()
self.username = username
self.password = password