Installing playwright
playwright is an API to automate browsers like Chrome, and Firefox. etc... It is needed to take screenshots of the reddit thread
Playwright is installed in the requirements.txt.
You can install Playwright with the PIP package manager or Conda.
Link to the installation guide: https://playwright.dev/python/docs/intro#pip
Installing playwright
pip install -r requirements.txtIf you do encounter errors, you can install it separately by running these commands:
pip install playwrightor
pip3 install playwrightInstalling headless browser
The headless browser will take the screenshots needed for the video.
python -m playwright installpython -m playwright install-depsLast updated