├── .flake8 ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── publish-to-pypi.yml │ └── test.yml ├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.md ├── docs ├── Makefile ├── examples │ ├── card_builder_templates.py │ ├── cats.py │ └── simple_demo.py ├── make.bat └── source │ ├── _static │ ├── .placeholder │ └── images │ │ ├── code_app_script_style.png │ │ ├── code_python_style.png │ │ ├── gapps_logo.png │ │ ├── gapps_logo_144.png │ │ └── star.gif │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ ├── min_versions.rst │ ├── release-history.rst │ └── usage.rst ├── gapps ├── __init__.py └── cardservice │ ├── __init__.py │ ├── api.py │ ├── constants.py │ ├── decorators.py │ ├── models.py │ ├── tests │ ├── __init__.py │ ├── test_cards.py │ ├── test_decorators.py │ ├── test_models.py │ └── test_utilities.py │ └── utilities.py └── pyproject.toml /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/examples/card_builder_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/examples/card_builder_templates.py -------------------------------------------------------------------------------- /docs/examples/cats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/examples/cats.py -------------------------------------------------------------------------------- /docs/examples/simple_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/examples/simple_demo.py -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/images/code_app_script_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/_static/images/code_app_script_style.png -------------------------------------------------------------------------------- /docs/source/_static/images/code_python_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/_static/images/code_python_style.png -------------------------------------------------------------------------------- /docs/source/_static/images/gapps_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/_static/images/gapps_logo.png -------------------------------------------------------------------------------- /docs/source/_static/images/gapps_logo_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/_static/images/gapps_logo_144.png -------------------------------------------------------------------------------- /docs/source/_static/images/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/_static/images/star.gif -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/min_versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/min_versions.rst -------------------------------------------------------------------------------- /docs/source/release-history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/release-history.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /gapps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/__init__.py -------------------------------------------------------------------------------- /gapps/cardservice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/__init__.py -------------------------------------------------------------------------------- /gapps/cardservice/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/api.py -------------------------------------------------------------------------------- /gapps/cardservice/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/constants.py -------------------------------------------------------------------------------- /gapps/cardservice/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/decorators.py -------------------------------------------------------------------------------- /gapps/cardservice/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/models.py -------------------------------------------------------------------------------- /gapps/cardservice/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gapps/cardservice/tests/test_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/tests/test_cards.py -------------------------------------------------------------------------------- /gapps/cardservice/tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/tests/test_decorators.py -------------------------------------------------------------------------------- /gapps/cardservice/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/tests/test_models.py -------------------------------------------------------------------------------- /gapps/cardservice/tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/tests/test_utilities.py -------------------------------------------------------------------------------- /gapps/cardservice/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/gapps/cardservice/utilities.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futzslab/gapps/HEAD/pyproject.toml --------------------------------------------------------------------------------