Welcome to SIGLA Tools’s documentation!#
SIGLA Tools#
Tools to extract SIGLA data from Google Sheets and load into MongoDB. Please see the SIGLA_Data_PROD folder on Google Drive to find documentations on acceptable Google Sheets formats.
Features#
Bin script to run SIGLA ETL pipeline.
Bin script to run external link checker.
Bin script to get the next update and verify dates to determine what data needs updating and verifying.
Bin script to run QA test to compare GoogleSheet data and data in the database.
GitHub workflows to run bin script semi/automatically on GitHub Actions.
Installation#
Stable Release: pip install siglatools
Development Head: pip install git+https://github.com/sigla-gu/siglatools.git
Documentation#
For full package documentation please visit sigla-gu.github.io/siglatools.
Development#
See CONTRIBUTING.md for information related to developing the code.
The Four Commands You Need To Know#
pip install -e .[dev]This will install your package in editable mode with all the required development dependencies (i.e.
tox).make buildThis will run
toxwhich will run all your tests in Python 3.8 as well as linting your code.make cleanThis will clean up various Python and build generated files so that you can ensure that you are working in a clean environment.
make docsThis will generate and launch a web browser to view the most up-to-date documentation for your Python package.