Describe the bug
You need to log before trying to subscribe to a channel
To Reproduce
Just launch the script youtube.py in folder youtube_subdownloader
Expected behavior
The script must handle when the user isn't connected. Either it asks the user or we hardcode it.
Screenshots

Additional context
Other details:
- The name
youtube_subdownloader is misleading, youtube_subscriber would have been better imo.
open = webdriver.Chrome() will not work if you don't have Chrome in your PATH.

Maybe, something like this 👇 would work or we make it like it must handle multiple browsers.
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(ChromeDriverManager().install())
Describe the bug
You need to log before trying to subscribe to a channel
To Reproduce
Just launch the script
youtube.pyin folderyoutube_subdownloaderExpected behavior
The script must handle when the user isn't connected. Either it asks the user or we hardcode it.
Screenshots

Additional context
Other details:
youtube_subdownloaderis misleading,youtube_subscriberwould have been better imo.open = webdriver.Chrome()will not work if you don't have Chrome in your PATH.Maybe, something like this 👇 would work or we make it like it must handle multiple browsers.