├── .github └── workflows │ ├── black.yml │ ├── release-pypi.yml │ ├── test.yml │ └── update-docs.yml ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── NEWS.md ├── Pipfile ├── README.md ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── _documents │ ├── test_line_items.py │ └── test_tags.py ├── assets │ └── receipt_public.jpg ├── test_a_docs.py ├── test_bank_statements.py ├── test_bussines_cards.py ├── test_checks.py ├── test_documents.py ├── test_errors.py ├── test_w2s.py ├── test_w8s.py └── test_w9s.py ├── tox.ini └── veryfi ├── __init__.py ├── _documents ├── __init__.py ├── line_items.py ├── pdf_split.py └── tags.py ├── _w2s ├── __init__.py └── w2_split.py ├── a_docs.py ├── bank_statements.py ├── bussines_cards.py ├── checks.py ├── client.py ├── client_base.py ├── documents.py ├── errors.py ├── w2s.py ├── w8s.py └── w9s.py /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/release-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/.github/workflows/release-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/.github/workflows/update-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/NEWS.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.22.0 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/_documents/test_line_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/_documents/test_line_items.py -------------------------------------------------------------------------------- /tests/_documents/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/_documents/test_tags.py -------------------------------------------------------------------------------- /tests/assets/receipt_public.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/assets/receipt_public.jpg -------------------------------------------------------------------------------- /tests/test_a_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_a_docs.py -------------------------------------------------------------------------------- /tests/test_bank_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_bank_statements.py -------------------------------------------------------------------------------- /tests/test_bussines_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_bussines_cards.py -------------------------------------------------------------------------------- /tests/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_checks.py -------------------------------------------------------------------------------- /tests/test_documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_documents.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_w2s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_w2s.py -------------------------------------------------------------------------------- /tests/test_w8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_w8s.py -------------------------------------------------------------------------------- /tests/test_w9s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tests/test_w9s.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/tox.ini -------------------------------------------------------------------------------- /veryfi/__init__.py: -------------------------------------------------------------------------------- 1 | from veryfi.client import * 2 | -------------------------------------------------------------------------------- /veryfi/_documents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /veryfi/_documents/line_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/_documents/line_items.py -------------------------------------------------------------------------------- /veryfi/_documents/pdf_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/_documents/pdf_split.py -------------------------------------------------------------------------------- /veryfi/_documents/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/_documents/tags.py -------------------------------------------------------------------------------- /veryfi/_w2s/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /veryfi/_w2s/w2_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/_w2s/w2_split.py -------------------------------------------------------------------------------- /veryfi/a_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/a_docs.py -------------------------------------------------------------------------------- /veryfi/bank_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/bank_statements.py -------------------------------------------------------------------------------- /veryfi/bussines_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/bussines_cards.py -------------------------------------------------------------------------------- /veryfi/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/checks.py -------------------------------------------------------------------------------- /veryfi/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/client.py -------------------------------------------------------------------------------- /veryfi/client_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/client_base.py -------------------------------------------------------------------------------- /veryfi/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/documents.py -------------------------------------------------------------------------------- /veryfi/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/errors.py -------------------------------------------------------------------------------- /veryfi/w2s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/w2s.py -------------------------------------------------------------------------------- /veryfi/w8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/w8s.py -------------------------------------------------------------------------------- /veryfi/w9s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryfi/veryfi-python/HEAD/veryfi/w9s.py --------------------------------------------------------------------------------