Workbench module that parses XML or HTML and runs your XPath to give a list of results.
Basically: IMPORTXML().
First, get up and running:
pip3 install pipenv
pipenv sync
# to download dependenciespipenv run ./setup.py test
# to test
To add a feature:
- Write a test in
tests/
- Run
pipenv run ./setup.py test
to prove it breaks - Edit
scrapexpathlist.py
to make the test pass - Run
pipenv run ./setup.py test
to prove it works - Commit and submit a pull request