Scrapes webpage for links filtered by element selector, store linkName and linkURL to CSV file.
(Optional, makes life easier)
Install Pipenv if you don't have it:
$ pip install pipenv
# or
$ brew install pipenvIn an empty directory, running $ pipenv install will create a Pipfile and Pipfile.lock. These are intended to replace $ pip install usage, as well as manual virtualenv management $ pipenv shell.
$ pipenv install # create Pipfile and Pipfile.lock
# if ^ doesn't work, try:
$ pipenv --python "[full path to your python3]"
$ pipenv sync # installs all packages specified in Pipfile
$ pipenv shell # spawns a shell within the virtualenv
$ exit # exit shellAll you really need from this directory is demo.py if you've got everything set up in your python environment.
$ python3 demo.py