Workbench module that searches the Library of Congress for records of documents.
It uses the data-exploration API <https://libraryofcongress.github.io/data-exploration/requests.html>
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
test_libraryofcongress.py
- Run
pipenv run ./setup.py test
to prove it breaks - Edit
libraryofcongress.py
to make the test pass - Run
pipenv run ./setup.py test
to prove it works - Commit and submit a pull request