This is a minimal example of a web scraper that can be used as a "getting started" example as discussed in the 18-MAY-2021 Meetup.
First create a virtual environment and activate it
On Mac and Linux
python3 -m venv venv
. venv/bin/activateOn Windows
python -m venv venv
venv\Scripts\Activate.ps1Then with the virtual environment activated install the requirements
pip install -r requirements.txtRun the scraper with
python scraper.py